diff --git a/.clang-format b/.clang-format index 481375f..fd2b623 100644 --- a/.clang-format +++ b/.clang-format @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT AccessModifierOffset: -1 AlignAfterOpenBracket: AlwaysBreak diff --git a/.codespellrc b/.codespellrc index 929a8d1..7dcdeff 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT [codespell] skip = assets/**,addons/** diff --git a/.gitattributes b/.gitattributes index 61c37af..3b4cd26 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT # Normalize EOL for all files that Git considers text files. * text=auto eol=lf diff --git a/.github/actions/export-game/action.yml b/.github/actions/export-game/action.yml index c609cd9..6cda89c 100644 --- a/.github/actions/export-game/action.yml +++ b/.github/actions/export-game/action.yml @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - name: Export Godot game description: Export Godot game. inputs: @@ -31,12 +27,22 @@ runs: - name: Setup Godot Templates shell: bash run: | - mkdir -v -p ~/.local/share/godot/templates - mv /root/.local/share/godot/templates/${{ inputs.godot_version }}.stable ~/.local/share/godot/templates/${{ inputs.godot_version }}.stable + mkdir -v -p ~/.local/share/godot/export_templates + mv /root/.local/share/godot/export_templates/${{ inputs.godot_version }}.stable ~/.local/share/godot/export_templates/${{ inputs.godot_version }}.stable + + - name: Install Addons + shell: bash + run: | + [ -f plug.gd ] && godot --headless -s plug.gd install || true + + - name: Import Assets + shell: bash + run: | + godot --editor --quit --headless - name: Build ${{ inputs.preset }} shell: bash run: | [ -d build ] && rm -r build mkdir -v -p build/${{ matrix.platform }} - godot --export "${{ inputs.preset }}" --headless ./build/${{ matrix.platform }}/${{ inputs.output }} + godot --export-release "${{ inputs.preset }}" --headless ./build/${{ matrix.platform }}/${{ inputs.output }} diff --git a/.github/actions/upload-artifact/action.yml b/.github/actions/upload-artifact/action.yml index bbed006..c6fa61c 100644 --- a/.github/actions/upload-artifact/action.yml +++ b/.github/actions/upload-artifact/action.yml @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT name: Upload artifact description: Upload artifact. diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 22a64e2..3cb37c6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT version: 2 updates: diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..9c9af74 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,24 @@ +{ + "regexManagers": [ + { + "fileMatch": ["^plug\\.gd$"], + "matchStrings": [ + "\\s+plug\\(\"(?.*?)\",\\ \\{\\s*\"commit\":\\ \"(?)(?.*?)\"" + ], + "depNameTemplate": "{{{gitUrl}}}", + "packageNameTemplate": "https://github.com/{{{gitUrl}}}", + "versioningTemplate": "git", + "datasourceTemplate": "git-refs" + }, + { + "fileMatch": ["^plug\\.gd$"], + "matchStrings": [ + "\\s+plug\\(\"(?.*?)\",\\ \\{\\s*\"tag\":\\ \"(?)(?.*?)\"" + ], + "depNameTemplate": "{{{gitUrl}}}", + "packageNameTemplate": "https://github.com/{{{gitUrl}}}", + "versioningTemplate": "git", + "datasourceTemplate": "git-tags" + } + ] + } diff --git a/.github/workflows/flatpak-build.yml b/.github/workflows/flatpak-build.yml index b8019a5..24147ad 100644 --- a/.github/workflows/flatpak-build.yml +++ b/.github/workflows/flatpak-build.yml @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT name: Flatpack Build diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index d26925d..3fc188b 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT name: Pre-commit @@ -18,6 +15,6 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 - name: Install GDScript Toolkit - run: pip3 install 'gdtoolkit==3.*' + run: pip3 install 'gdtoolkit==4.*' - name: Run pre-commit hooks uses: pre-commit/action@v3.0.0 diff --git a/.github/workflows/release-packaging.yml b/.github/workflows/release-packaging.yml index 91da8d9..8275caf 100644 --- a/.github/workflows/release-packaging.yml +++ b/.github/workflows/release-packaging.yml @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT name: Release Packaging @@ -10,14 +7,14 @@ on: workflow_dispatch: env: - version: 0.1.0 - godot_version: 3.5 + version: 1.4.0 + godot_version: 4.1.1 jobs: release-packaging: runs-on: ubuntu-20.04 container: - image: barichello/godot-ci:3.5 + image: barichello/godot-ci:4.1.1 strategy: fail-fast: false diff --git a/.github/workflows/reuse.yaml b/.github/workflows/reuse.yaml index bd2ef69..7e6a9e6 100644 --- a/.github/workflows/reuse.yaml +++ b/.github/workflows/reuse.yaml @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - name: REUSE Compliance Check on: diff --git a/.github/workflows/snapcraft-build.yaml b/.github/workflows/snapcraft-build.yaml index 1d9f9fb..160f809 100644 --- a/.github/workflows/snapcraft-build.yaml +++ b/.github/workflows/snapcraft-build.yaml @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT name: "Snapcraft build" diff --git a/.gitignore b/.gitignore index cb46f5b..2cd232c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,7 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - # Godot-specific ignores +.godot/ .import/ -export.cfg +gfxrecon_capture_* # Imported translations (automatically generated from CSV files) *.translation @@ -13,12 +10,10 @@ export.cfg .mono/ data_*/ -# Flatpack-specific ignors -.flatpak-builder/ - -# Snap-specific ignores -build-dir/ -*.snap +# gd-plug +.plugged/ +addons/* +!addons/gd-plug/ -.vscode/ -build/ +# Python-specific ignores +venv/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2cc1f26..70a70c1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,10 +1,6 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.4.0 hooks: - id: fix-byte-order-marker # Prevents weird UTF-8 encoding edge cases - id: check-case-conflict # Check if case-insensitive filesystems would bork @@ -18,21 +14,55 @@ repos: - id: mixed-line-ending # Consistent LF or CRLF - id: trailing-whitespace # No trailing whitespace - repo: https://github.com/codespell-project/codespell - rev: v2.2.4 + rev: v2.2.5 hooks: - id: codespell - repo: https://github.com/fsfe/reuse-tool rev: v2.0.0 hooks: - id: reuse +- repo: https://github.com/PyCQA/isort + rev: 5.12.0 + hooks: + - id: isort +- repo: https://github.com/PyCQA/bandit + rev: 1.7.5 + hooks: + - id: bandit +- repo: https://github.com/PyCQA/flake8 + rev: 6.0.0 + hooks: + - id: flake8 +- repo: https://github.com/pre-commit/mirrors-mypy + rev: v1.4.1 + hooks: + - id: mypy - repo: local hooks: + - id: lower-case-only + name: lower case only + entry: filenames must be lower-case or lower_case only + language: fail + files: '[^a-z0-9._/-]' + exclude: | + (?x)^( + LICENSES/| + public/| + CONTRIBUTING.md| + CREDITS.md| + LICENSE.md| + README.md + ) - id: check-gdscript name: check gdscript entry: gdformat language: system files: \.gd$ - exclude: ^addons/ + exclude: | + (?x)^( + addons/| + plug.gd + ) - id: check-shaders name: check shaders entry: clang-format @@ -47,4 +77,8 @@ repos: entry: gdlint language: system files: \.gd$ - exclude: ^addons/ + exclude: | + (?x)^( + addons/| + plug.gd + ) diff --git a/.reuse/dep5 b/.reuse/dep5 index d180add..ad69da2 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -3,8 +3,54 @@ Upstream-Name: Marble Upstream-Contact: Florian Vazelle Source: https://github.com/MechanicalFlower/Marble -# Sample paragraph, commented out: -# -# Files: src/* -# Copyright: $YEAR $NAME <$CONTACT> -# License: ... +Files: * +Copyright: 2022-present Florian Vazelle +License: MIT + +# Addons + +Files: addons/flexible_toon_shader/* +Copyright: 2021 John Wigg +License: MIT +Source: https://github.com/CaptainProton42/FlexibleToonShaderGD + +Files: addons/fps_graph_overlay/* +Copyright: 2023 Sander Vanhove +License: MIT +Source: https://github.com/SanderVanhove/godot-fps-graph-overlay + +Files: addons/kanban_tasks/* +Copyright: 2022-2023 HolonProduction +License: MIT +Source: https://github.com/HolonProduction/godot_kanban_tasks + +Files: addons/lod/* +Copyright: 2020 Hugo Locurcio and contributors +License: MIT +Source: https://github.com/godot-extended-libraries/godot-lod + +# Models + +Files: assets/blocks/* +Copyright: 2019 Zylann +License: MIT +Source: https://github.com/Zylann/marbles + +# Textures + +Files: assets/icons/* +Copyright: 2023 Icons8 +License: LicenseRef-linksware +Source: https://icons8.com/ + +Files: assets/marble/* +Copyright: 2017-2023 Lennart Demes +License: CC0-1.0 +Source: https://ambientcg.com/view?id=Ground037 + +# Fonts + +Files: assets/fonts/box_pixies.ttf +Copyright: 2020 Heaven Castro +License: CC0-1.0 +Source: https://www.fontspace.com/boxpixies-font-f27657 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4306af6..98b0bc0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,8 +1,3 @@ - # Contributing diff --git a/CREDITS.md b/CREDITS.md new file mode 100644 index 0000000..03120b7 --- /dev/null +++ b/CREDITS.md @@ -0,0 +1,13 @@ +# Credits + +## Addons +- "[addons/flexible_toon_shader/*](https://github.com/CaptainProton42/FlexibleToonShaderGD)" by **John Wigg** licensed under [MIT](https://spdx.org/licenses/MIT.html) +- "[addons/fps_graph_overlay/*](https://github.com/SanderVanhove/godot-fps-graph-overlay)" by **Sander Vanhove** licensed under [MIT](https://spdx.org/licenses/MIT.html) +- "[addons/kanban_tasks/*](https://github.com/HolonProduction/godot_kanban_tasks)" by **HolonProduction** licensed under [MIT](https://spdx.org/licenses/MIT.html) +- "[addons/lod/*](https://github.com/godot-extended-libraries/godot-lod)" by **Hugo Locurcio and contributors** licensed under [MIT](https://spdx.org/licenses/MIT.html) +- "[assets/blocks/*](https://github.com/Zylann/marbles)" by **Zylann** licensed under [MIT](https://spdx.org/licenses/MIT.html) +## Assets +### Textures +- "[assets/icons/*](https://icons8.com/)" by **Icons8** licensed under [LicenseRef-linksware](https://spdx.org/licenses/LicenseRef-linksware.html) +### Fonts +- "[assets/fonts/box_pixies.ttf](https://www.fontspace.com/boxpixies-font-f27657)" by **Heaven Castro** licensed under [CC0-1.0](https://spdx.org/licenses/CC0-1.0.html) diff --git a/LICENSE.md b/LICENSE.md index c384067..05c494b 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright © 2022 Florian Vazelle +Copyright © 2022-present Florian Vazelle Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md index 4237544..a9528f3 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,9 @@ -
# ⚽ Marble -![Godot Badge](https://img.shields.io/badge/godot-3.5-blue?logo=Godot-Engine&logoColor=white) ![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white) ![license](https://img.shields.io/badge/license-MIT-green?logo=open-source-initiative&logoColor=white) +![Godot Badge](https://img.shields.io/badge/godot-4.1-blue?logo=Godot-Engine&logoColor=white) ![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white) ![license](https://img.shields.io/badge/license-MIT-green?logo=open-source-initiative&logoColor=white) A marble race minigame, made with [Godot Engine](https://godotengine.org/). diff --git a/addons/flexible_toon_shader/FlexibleToonMaterial.tres b/addons/flexible_toon_shader/FlexibleToonMaterial.tres deleted file mode 100644 index 8380919..0000000 --- a/addons/flexible_toon_shader/FlexibleToonMaterial.tres +++ /dev/null @@ -1,28 +0,0 @@ -; SPDX-FileCopyrightText: 2021 John Wigg -; -; SPDX-License-Identifier: MIT -; -; Source: https://github.com/CaptainProton42/FlexibleToonShaderGD - -[gd_resource type="ShaderMaterial" load_steps=2 format=2] - -[ext_resource path="res://addons/flexible_toon_shader/flexible_toon.shader" type="Shader" id=1] - -[resource] -resource_local_to_scene = true -shader = ExtResource( 1 ) -shader_param/albedo = Color( 1, 1, 1, 1 ) -shader_param/clamp_diffuse_to_max = false -shader_param/cuts = 3 -shader_param/wrap = 0.0 -shader_param/steepness = 1.0 -shader_param/use_attenuation = true -shader_param/use_specular = true -shader_param/specular_strength = 1.0 -shader_param/specular_shininess = 16.0 -shader_param/use_rim = true -shader_param/rim_width = 8.0 -shader_param/rim_color = Color( 1, 1, 1, 1 ) -shader_param/use_ramp = false -shader_param/use_borders = false -shader_param/border_width = 0.01 diff --git a/addons/flexible_toon_shader/HatchToonMaterial.tres b/addons/flexible_toon_shader/HatchToonMaterial.tres deleted file mode 100644 index 23b5ab7..0000000 --- a/addons/flexible_toon_shader/HatchToonMaterial.tres +++ /dev/null @@ -1,24 +0,0 @@ -; SPDX-FileCopyrightText: 2021 John Wigg -; -; SPDX-License-Identifier: MIT -; -; Source: https://github.com/CaptainProton42/FlexibleToonShaderGD - -[gd_resource type="ShaderMaterial" load_steps=3 format=2] - -[ext_resource path="res://addons/flexible_toon_shader/hatch_toon.shader" type="Shader" id=1] -[ext_resource path="res://addons/flexible_toon_shader/hatch.png" type="Texture" id=2] - -[resource] -shader = ExtResource( 1 ) -shader_param/albedo = Color( 1, 1, 1, 1 ) -shader_param/cuts = 2 -shader_param/wrap = 0.0 -shader_param/steepness = 1.0 -shader_param/use_attenuation = true -shader_param/use_rim = false -shader_param/rim_width = 8.0 -shader_param/rim_color = Color( 1, 1, 1, 1 ) -shader_param/hatch_scale = 2.0 -shader_param/use_triplanar = true -shader_param/hatch_texture = ExtResource( 2 ) diff --git a/addons/flexible_toon_shader/flexible_toon.shader b/addons/flexible_toon_shader/flexible_toon.shader deleted file mode 100644 index 1b9631d..0000000 --- a/addons/flexible_toon_shader/flexible_toon.shader +++ /dev/null @@ -1,129 +0,0 @@ -// SPDX-FileCopyrightText: 2021 John Wigg -// -// SPDX-License-Identifier: MIT -// -// Source: https://github.com/CaptainProton42/FlexibleToonShaderGD - -shader_type spatial; - -//render_mode ambient_light_disabled; - -const float PI = 3.1415926536f; - -uniform vec4 albedo : hint_color = vec4(1.0f); -uniform sampler2D albedo_texture : hint_albedo; -uniform vec3 uv1_scale = vec3(0.0f); -uniform bool clamp_diffuse_to_max = false; - -uniform int cuts : hint_range(1, 8) = 3; -uniform float wrap : hint_range(-2.0f, 2.0f) = 0.0f; -uniform float steepness : hint_range(1.0f, 8.0f) = 1.0f; - -uniform bool use_attenuation = true; - -uniform bool use_specular = true; -uniform float specular_strength : hint_range(0.0f, 1.0f) = 1.0f; -uniform float specular_shininess : hint_range(0.0f, 32.0f) = 16.0f; -uniform sampler2D specular_map : hint_albedo; - -uniform bool use_rim = true; -uniform float rim_width : hint_range(0.0f, 16.0f) = 8.0f; -uniform vec4 rim_color : hint_color = vec4(1.0f); - -uniform bool use_ramp = false; -uniform sampler2D ramp : hint_albedo; - -uniform bool use_borders = false; -uniform float border_width = 0.01f; - -varying vec3 triplanar_pos; -varying vec3 power_normal; -varying vec3 world_normal; -varying vec3 object_normal; - - -float split_specular(float specular) { - return step(0.5f, specular); -} - -vec4 triplanar_texture(sampler2D p_sampler, vec3 p_weights, vec3 p_triplanar_pos) { - vec4 samp = vec4(0.0); - samp += texture(p_sampler, p_triplanar_pos.xy) * p_weights.z; - samp += texture(p_sampler, p_triplanar_pos.xz) * p_weights.y; - samp += texture(p_sampler, p_triplanar_pos.zy * vec2(-1.0,1.0)) * p_weights.x; - return samp; -} - -void vertex() { - world_normal = vec3(0, 1.0, 0); - object_normal = NORMAL; - - power_normal = pow(abs(NORMAL), vec3(10.0)); - power_normal = normalize(power_normal); - - triplanar_pos = VERTEX.xyz * vec3(1.0, -1.0, 1.0); -} - -void fragment() { - vec4 albedo_tex = triplanar_texture(albedo_texture, power_normal, triplanar_pos * uv1_scale); - ALBEDO = albedo.rgb * albedo_tex.rgb; -} - -void light() { - // Attenuation. - float attenuation = 1.0f; - if (use_attenuation) { - attenuation = ATTENUATION.x; - } - - // Diffuse lighting. - float NdotL = dot(NORMAL, LIGHT); - float diffuse_amount = NdotL + (attenuation - 1.0) + wrap; - //float diffuse_amount = NdotL * attenuation + wrap; - diffuse_amount *= steepness; - float cuts_inv = 1.0f / float(cuts); - float diffuse_stepped = clamp(diffuse_amount + mod(1.0f - diffuse_amount, cuts_inv), 0.0f, 1.0f); - - // Calculate borders. - float border = 0.0f; - if (use_borders) { - float corr_border_width = length(cross(NORMAL, LIGHT)) * border_width * steepness; - border = step(diffuse_stepped - corr_border_width, diffuse_amount) - - step(1.0 - corr_border_width, diffuse_amount); - } - - // Apply diffuse result to different styles. - vec3 diffuse = ALBEDO.rgb * LIGHT_COLOR / PI; - if (use_ramp) { - diffuse *= texture(ramp, vec2(diffuse_stepped * (1.0f - border), 0.0f)).rgb; - } else { - diffuse *= diffuse_stepped * (1.0f - border); - } - - if (clamp_diffuse_to_max) { - // Clamp diffuse to max for multiple light sources. - DIFFUSE_LIGHT = max(DIFFUSE_LIGHT, diffuse); - } else { - DIFFUSE_LIGHT += diffuse; - } - - // Specular lighting. - if (use_specular) { - vec3 H = normalize(LIGHT + VIEW); - float NdotH = dot(NORMAL, H); - float specular_amount = max(pow(NdotH, specular_shininess*specular_shininess), 0.0f) - * texture(specular_map, UV).r - * attenuation; - specular_amount = split_specular(specular_amount); - SPECULAR_LIGHT += specular_strength * specular_amount * LIGHT_COLOR; - } - - // Simple rim lighting. - if (use_rim) { - float NdotV = dot(NORMAL, VIEW); - float rim_light = pow(1.0 - NdotV, rim_width); - DIFFUSE_LIGHT += rim_light * rim_color.rgb * rim_color.a * LIGHT_COLOR / PI; - } - - ALPHA = 1.0; -} diff --git a/addons/flexible_toon_shader/hatch.png b/addons/flexible_toon_shader/hatch.png deleted file mode 100644 index ff8663f..0000000 Binary files a/addons/flexible_toon_shader/hatch.png and /dev/null differ diff --git a/addons/flexible_toon_shader/hatch.png.import b/addons/flexible_toon_shader/hatch.png.import deleted file mode 100644 index 9484d29..0000000 --- a/addons/flexible_toon_shader/hatch.png.import +++ /dev/null @@ -1,44 +0,0 @@ -# SPDX-FileCopyrightText: 2021 John Wigg -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/CaptainProton42/FlexibleToonShaderGD - -[remap] - -importer="texture" -type="StreamTexture" -path.s3tc="res://.import/hatch.png-50153c061352b32d8c3be4f28f3c0cb2.s3tc.stex" -path.etc2="res://.import/hatch.png-50153c061352b32d8c3be4f28f3c0cb2.etc2.stex" -path.etc="res://.import/hatch.png-50153c061352b32d8c3be4f28f3c0cb2.etc.stex" -metadata={ -"imported_formats": [ "s3tc", "etc2", "etc" ], -"vram_texture": true -} - -[deps] - -source_file="res://addons/flexible_toon_shader/hatch.png" -dest_files=[ "res://.import/hatch.png-50153c061352b32d8c3be4f28f3c0cb2.s3tc.stex", "res://.import/hatch.png-50153c061352b32d8c3be4f28f3c0cb2.etc2.stex", "res://.import/hatch.png-50153c061352b32d8c3be4f28f3c0cb2.etc.stex" ] - -[params] - -compress/mode=2 -compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 -compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=false -flags/srgb=1 -process/fix_alpha_border=true -process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false -process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 diff --git a/addons/flexible_toon_shader/hatch.png.license b/addons/flexible_toon_shader/hatch.png.license deleted file mode 100644 index 1319be3..0000000 --- a/addons/flexible_toon_shader/hatch.png.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2021 John Wigg -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/CaptainProton42/FlexibleToonShaderGD diff --git a/addons/flexible_toon_shader/hatch_toon.shader b/addons/flexible_toon_shader/hatch_toon.shader deleted file mode 100644 index 8fe4458..0000000 --- a/addons/flexible_toon_shader/hatch_toon.shader +++ /dev/null @@ -1,105 +0,0 @@ -// SPDX-FileCopyrightText: 2021 John Wigg -// -// SPDX-License-Identifier: MIT -// -// Source: https://github.com/CaptainProton42/FlexibleToonShaderGD - -shader_type spatial; - -//render_mode ambient_light_disabled; - -const float PI = 3.1415926536f; - -const mat2 ORIENTATION_STRAIGHT = mat2(vec2(1.0f, 0.0f), vec2(0.0f, 1.0f)); -const mat2 ORIENTATION_CROSS = mat2(vec2(0.0f, 1.0f), vec2(1.0, 0.0f)); - -uniform vec4 albedo : hint_color = vec4(1.0f); -uniform sampler2D albedo_texture : hint_albedo; - -uniform int cuts : hint_range(1, 8) = 2; -uniform float wrap : hint_range(-2.0f, 2.0f) = 0.0f; -uniform float steepness : hint_range(1.0f, 8.0f); - -uniform bool use_attenuation = true; - -uniform bool use_rim = false; -uniform float rim_width : hint_range(0.0f, 16.0f) = 8.0f; -uniform vec4 rim_color : hint_color = vec4(1.0f); - -uniform float hatch_scale = 2.0f; -uniform bool use_triplanar = true; -uniform sampler2D hatch_texture : hint_albedo; - -varying vec3 vertex_pos; -varying vec3 normal; - -vec4 triplanar_texture(sampler2D p_sampler,vec3 p_weights,vec3 p_triplanar_pos, mat2 orientation) { - p_weights = abs(p_weights); - p_weights /= p_weights.x+p_weights.y+p_weights.z; - vec4 samp=vec4(0.0); - samp+= texture(p_sampler,orientation*p_triplanar_pos.xy) * p_weights.z; - samp+= texture(p_sampler,orientation*p_triplanar_pos.xz) * p_weights.y; - samp+= texture(p_sampler,orientation*p_triplanar_pos.zy * vec2(-1.0,1.0)) * p_weights.x; - return samp; -} - -float split_hatch(float diffuse, vec2 uv, vec3 weights, vec3 pos) { - float value = 1.0f; - float k = round((1.0f - diffuse) * float(cuts)) - 0.5; - for (float i = 0.0f; i < k; ++i) { - float offset = 2.0 * i / float(cuts); - - if (i >= float(cuts) / 2.0) { - if (use_triplanar) { - value *= triplanar_texture(hatch_texture, weights, pos + vec3(offset), ORIENTATION_CROSS).r; - } else { - value *= texture(hatch_texture, uv.yx + vec2(offset)).r; - } - } else { - if (use_triplanar) { - value *= triplanar_texture(hatch_texture, weights, pos + vec3(offset), ORIENTATION_STRAIGHT).r; - } else { - value *= texture(hatch_texture, uv.xy + vec2(offset)).r; - } - } - - } - return value; -} - -void vertex() { - vertex_pos = VERTEX; - normal = NORMAL; -} - -void fragment() { - ALBEDO = albedo.rgb * texture(albedo_texture, UV).rgb; -} - -void light() { - // Attenuation. - float attenuation = 1.0f; - if (use_attenuation) { - attenuation = ATTENUATION.x; - } - - // Diffuse lighting. - float NdotL = dot(NORMAL, LIGHT); - float diffuse_amount = NdotL + (attenuation - 1.0) + wrap; - diffuse_amount *= steepness; - float cuts_inv = 1.0f / float(cuts); - float diffuse_stepped = clamp(diffuse_amount + mod(1.0f - diffuse_amount, cuts_inv), 0.0f, 1.0f); - - // Apply diffuse result to different styles. - vec3 diffuse = ALBEDO.rgb * LIGHT_COLOR / PI; - diffuse *= split_hatch(diffuse_stepped, hatch_scale*UV, normal, hatch_scale*vertex_pos); - - DIFFUSE_LIGHT = max(DIFFUSE_LIGHT, diffuse); - - // Simple rim lighting. - if (use_rim) { - float NdotV = dot(NORMAL, VIEW); - float rim_light = pow(1.0 - NdotV, rim_width); - DIFFUSE_LIGHT += rim_light * rim_color.rgb * rim_color.a * LIGHT_COLOR / PI; - } -} diff --git a/addons/fps_graph_overlay/FPSGraphOverlay.gd b/addons/fps_graph_overlay/FPSGraphOverlay.gd deleted file mode 100644 index 5c3b6dc..0000000 --- a/addons/fps_graph_overlay/FPSGraphOverlay.gd +++ /dev/null @@ -1,62 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Sander Vanhove -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/SanderVanhove/godot-fps-graph-overlay - -extends CanvasLayer - -export(float) var point_interval_seconds: float = 1 -export(int) var points_on_screen: int = 120 -export(int) var max_fps: int = 60 -export(bool) var enable_f12_shortcut: bool = true - -onready var _line: Line2D = $Line -onready var _timer: Timer = $Timer -onready var _label: Label = $Label - - -onready var _window_size: Vector2 = _line.get_viewport_rect().size -onready var _line_width_margin: float = _line.width / 2.0 -var _x_delta: float - - -func _ready() -> void: - visible = false - - _x_delta = _window_size.x / points_on_screen - - points_on_screen += 1 - - for i in points_on_screen: - _line.add_point(Vector2(_x_delta * i, _window_size.y - _line_width_margin)) - - _timer.start(point_interval_seconds) - var _c = _timer.connect("timeout", self, "_on_timer_timeout") - - -func _input(event: InputEvent) -> void: - if not enable_f12_shortcut: - return - if not event is InputEventKey or not event.physical_scancode == KEY_F12 or not event.is_pressed(): - return - - visible = !visible - - -func add_point() -> void: - for i in range(1, points_on_screen): - _line.points[i - 1] = _line.points[i] - Vector2(_x_delta, 0) - - var fps: int = Engine.get_frames_per_second() - - _line.points[-1] = Vector2( - _window_size.x, - range_lerp(fps, 0, max_fps, _window_size.y - _line_width_margin, _line_width_margin) - ) - - _label.text = str(fps) - - -func _on_timer_timeout() -> void: - add_point() diff --git a/addons/fps_graph_overlay/FPSGraphOverlay.tscn b/addons/fps_graph_overlay/FPSGraphOverlay.tscn deleted file mode 100644 index 7ae6886..0000000 --- a/addons/fps_graph_overlay/FPSGraphOverlay.tscn +++ /dev/null @@ -1,50 +0,0 @@ -; SPDX-FileCopyrightText: 2023 Sander Vanhove -; -; SPDX-License-Identifier: MIT -; -; Source: https://github.com/SanderVanhove/godot-fps-graph-overlay - -[gd_scene load_steps=6 format=2] - -[ext_resource path="res://addons/fps_graph_overlay/FPSGraphOverlay.gd" type="Script" id=1] - -[sub_resource type="Shader" id=8] -code = "shader_type canvas_item; - -uniform sampler2D gradient; - -void fragment() { - COLOR = texture(gradient, vec2(SCREEN_UV.y, 0.0)); -}" - -[sub_resource type="Gradient" id=10] -offsets = PoolRealArray( 0, 0.0688073, 0.238532, 0.444954, 1 ) -colors = PoolColorArray( 1, 0, 0, 1, 1, 0.0910375, 0.0120563, 1, 1, 0.737404, 0.0976563, 1, 0.0820883, 0.978916, 0.00784101, 1, 0.00195313, 1, 0, 1 ) - -[sub_resource type="GradientTexture" id=11] -gradient = SubResource( 10 ) -width = 1000 - -[sub_resource type="ShaderMaterial" id=9] -shader = SubResource( 8 ) -shader_param/gradient = SubResource( 11 ) - -[node name="FPSGraphOverlay" type="CanvasLayer"] -layer = 100 -script = ExtResource( 1 ) - -[node name="Line" type="Line2D" parent="."] -modulate = Color( 1, 1, 1, 0.392157 ) -material = SubResource( 9 ) - -[node name="Timer" type="Timer" parent="."] - -[node name="Label" type="Label" parent="."] -anchor_left = 1.0 -anchor_top = 1.0 -anchor_right = 1.0 -anchor_bottom = 1.0 -margin_left = -55.0 -margin_top = -14.0 -text = "60" -align = 2 diff --git a/addons/fps_graph_overlay/plugin.cfg b/addons/fps_graph_overlay/plugin.cfg deleted file mode 100644 index cc7cdb1..0000000 --- a/addons/fps_graph_overlay/plugin.cfg +++ /dev/null @@ -1,19 +0,0 @@ -; SPDX-FileCopyrightText: 2023 Sander Vanhove -; -; SPDX-License-Identifier: MIT -; -; Source: https://github.com/SanderVanhove/godot-fps-graph-overlay - -[plugin] - -name="FPS Graph Overlay" -description="A configurable FPS overlay. - -Adds FPSGraphOverlay.tscn to Autoloads. Open overlay using F12 while the game is running. - -Open res://addons/FPSGraphOverlay.tscn to configure. - -The F12 shortkey can be disabled. To open the overlay yourself, just set it's `visible` property." -author="Sander Vanhove" -version="1.0.0" -script="plugin.gd" diff --git a/addons/fps_graph_overlay/plugin.gd b/addons/fps_graph_overlay/plugin.gd deleted file mode 100644 index 729a1f2..0000000 --- a/addons/fps_graph_overlay/plugin.gd +++ /dev/null @@ -1,16 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Sander Vanhove -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/SanderVanhove/godot-fps-graph-overlay - -tool -extends EditorPlugin - - -func _enter_tree() -> void: - add_autoload_singleton("FPSGraphOverlay", "res://addons/fps_graph_overlay/FPSGraphOverlay.tscn") - - -func _exit_tree() -> void: - remove_autoload_singleton("FPSGraphOverlay") diff --git a/addons/gd-plug/plug.gd b/addons/gd-plug/plug.gd new file mode 100644 index 0000000..7ebf0ef --- /dev/null +++ b/addons/gd-plug/plug.gd @@ -0,0 +1,1015 @@ +@tool +extends SceneTree + +signal updated(plugin) + +const VERSION = "0.2.5" +const DEFAULT_PLUGIN_URL = "https://git::@github.com/%s.git" +const DEFAULT_PLUG_DIR = "res://.plugged" +const DEFAULT_CONFIG_PATH = DEFAULT_PLUG_DIR + "/index.cfg" +const DEFAULT_USER_PLUG_SCRIPT_PATH = "res://plug.gd" +const DEFAULT_BASE_PLUG_SCRIPT_PATH = "res://addons/gd-plug/plug.gd" + +const ENV_PRODUCTION = "production" +const ENV_TEST = "test" +const ENV_FORCE = "force" +const ENV_KEEP_IMPORT_FILE = "keep_import_file" +const ENV_KEEP_IMPORT_RESOURCE_FILE = "keep_import_resource_file" + +const MSG_PLUG_START_ASSERTION = "_plug_start() must be called first" + +var project_dir +var installation_config = ConfigFile.new() +var logger = _Logger.new() + +var _installed_plugins +var _plugged_plugins = {} + +var _threads = [] +var _mutex = Mutex.new() +var _start_time = 0 +var threadpool = _ThreadPool.new(logger) + + +func _init(): + threadpool.connect("all_thread_finished", request_quit) + project_dir = DirAccess.open("res://") + +func _initialize(): + var args = OS.get_cmdline_args() + # Trim unwanted args passed to godot executable + for arg in Array(args): + args.remove_at(0) + if "plug.gd" in arg: + break + + for arg in args: + # NOTE: "--key" or "-key" will always be consumed by godot executable, see https://github.com/godotengine/godot/issues/8721 + var key = arg.to_lower() + match key: + "detail": + logger.log_format = _Logger.DEFAULT_LOG_FORMAT_DETAIL + "debug", "d": + logger.log_level = _Logger.LogLevel.DEBUG + "quiet", "q", "silent": + logger.log_level = _Logger.LogLevel.NONE + "production": + OS.set_environment(ENV_PRODUCTION, "true") + "test": + OS.set_environment(ENV_TEST, "true") + "force": + OS.set_environment(ENV_FORCE, "true") + "keep-import-file": + OS.set_environment(ENV_KEEP_IMPORT_FILE, "true") + "keep-import-resource-file": + OS.set_environment(ENV_KEEP_IMPORT_RESOURCE_FILE, "true") + + logger.debug("cmdline_args: %s" % args) + _start_time = Time.get_ticks_msec() + _plug_start() + if args.size() > 0: + _plugging() + match args[0]: + "init": + _plug_init() + "install", "update": + _plug_install() + "uninstall": + _plug_uninstall() + "clean": + _plug_clean() + "upgrade": + _plug_upgrade() + "status": + _plug_status() + "version": + logger.info(VERSION) + _: + logger.error("Unknown command %s" % args[0]) + # NOTE: Do no put anything after this line except request_quit(), as _plug_*() may call request_quit() + request_quit() + +func _process(delta): + threadpool.process(delta) + +func _finalize(): + _plug_end() + threadpool.stop() + logger.info("Finished, elapsed %.3fs" % ((Time.get_ticks_msec() - _start_time) / 1000.0)) + +func _on_updated(plugin): + pass + +func _plugging(): + pass + +func request_quit(exit_code=-1): + if threadpool.is_all_thread_finished() and threadpool.is_all_task_finished(): + quit(exit_code) + return true + logger.debug("Request quit declined, threadpool is still running") + return false + +# Index installed plugins, or create directory "plugged" if not exists +func _plug_start(): + logger.debug("Plug start") + if not project_dir.dir_exists(DEFAULT_PLUG_DIR): + if project_dir.make_dir(ProjectSettings.globalize_path(DEFAULT_PLUG_DIR)) == OK: + logger.debug("Make dir %s for plugin installation") + if installation_config.load(DEFAULT_CONFIG_PATH) == OK: + logger.debug("Installation config loaded") + else: + logger.debug("Installation config not found") + _installed_plugins = installation_config.get_value("plugin", "installed", {}) + +# Install plugin or uninstall plugin if unlisted +func _plug_end(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + var test = !OS.get_environment(ENV_TEST).is_empty() + if not test: + installation_config.set_value("plugin", "installed", _installed_plugins) + if installation_config.save(DEFAULT_CONFIG_PATH) == OK: + logger.debug("Plugged config saved") + else: + logger.error("Failed to save plugged config") + else: + logger.warn("Skipped saving of plugged config in test mode") + _installed_plugins = null + +func _plug_init(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + logger.info("Init gd-plug...") + if FileAccess.file_exists(DEFAULT_USER_PLUG_SCRIPT_PATH): + logger.warn("%s already exists!" % DEFAULT_USER_PLUG_SCRIPT_PATH) + else: + var file = FileAccess.open(DEFAULT_USER_PLUG_SCRIPT_PATH, FileAccess.WRITE) + file.store_string(INIT_PLUG_SCRIPT) + file.close() + logger.info("Created %s" % DEFAULT_USER_PLUG_SCRIPT_PATH) + +func _plug_install(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + threadpool.active = false + logger.info("Installing...") + for plugin in _plugged_plugins.values(): + var installed = plugin.name in _installed_plugins + if installed: + var installed_plugin = get_installed_plugin(plugin.name) + if (installed_plugin.dev or plugin.dev) and OS.get_environment(ENV_PRODUCTION): + logger.info("Remove dev plugin for production: %s" % plugin.name) + threadpool.enqueue_task(uninstall_plugin.bind(installed_plugin)) + else: + threadpool.enqueue_task(update_plugin.bind(plugin)) + else: + threadpool.enqueue_task(install_plugin.bind(plugin)) + + var removed_plugins = [] + for plugin in _installed_plugins.values(): + var removed = not (plugin.name in _plugged_plugins) + if removed: + removed_plugins.append(plugin) + if removed_plugins: + threadpool.disconnect("all_thread_finished", request_quit) + if not threadpool.is_all_thread_finished(): + threadpool.active = true + await threadpool.all_thread_finished + threadpool.active = false + logger.debug("All installation finished! Ready to uninstall removed plugins...") + threadpool.connect("all_thread_finished", request_quit) + for plugin in removed_plugins: + threadpool.enqueue_task(uninstall_plugin.bind(plugin), Thread.PRIORITY_LOW) + threadpool.active = true + +func _plug_uninstall(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + threadpool.active = false + logger.info("Uninstalling...") + for plugin in _installed_plugins.values(): + var installed_plugin = get_installed_plugin(plugin.name) + threadpool.enqueue_task(uninstall_plugin.bind(installed_plugin), Thread.PRIORITY_LOW) + threadpool.active = true + +func _plug_clean(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + threadpool.active = false + logger.info("Cleaning...") + var plugged_dir = DirAccess.open(DEFAULT_PLUG_DIR) + plugged_dir.include_hidden = true + plugged_dir.list_dir_begin() # TODOGODOT4 fill missing arguments https://github.com/godotengine/godot/pull/40547 + var file = plugged_dir.get_next() + while not file.is_empty(): + if plugged_dir.current_is_dir(): + if not (file in _installed_plugins): + logger.info("Remove %s" % file) + threadpool.enqueue_task(directory_delete_recursively.bind(plugged_dir.get_current_dir() + "/" + file)) + file = plugged_dir.get_next() + plugged_dir.list_dir_end() + threadpool.active = true + +func _plug_upgrade(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + threadpool.active = false + logger.info("Upgrading gd-plug...") + plug("imjp94/gd-plug") + var gd_plug = _plugged_plugins["gd-plug"] + OS.set_environment(ENV_FORCE, "true") # Required to overwrite res://addons/gd-plug/plug.gd + threadpool.enqueue_task(install_plugin.bind(gd_plug)) + threadpool.disconnect("all_thread_finished", request_quit) + if not threadpool.is_all_thread_finished(): + threadpool.active = true + await threadpool.all_thread_finished + threadpool.active = false + logger.debug("All installation finished! Ready to uninstall removed plugins...") + threadpool.connect("all_thread_finished", request_quit) + threadpool.enqueue_task(directory_delete_recursively.bind(gd_plug.plug_dir)) + threadpool.active = true + +func _plug_status(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + threadpool.active = false + logger.info("Installed %d plugin%s" % [_installed_plugins.size(), "s" if _installed_plugins.size() > 1 else ""]) + var new_plugins = _plugged_plugins.duplicate() + var has_checking_plugin = false + var removed_plugins = [] + for plugin in _installed_plugins.values(): + logger.info("- {name} - {url}".format(plugin)) + new_plugins.erase(plugin.name) + var removed = not (plugin.name in _plugged_plugins) + if removed: + removed_plugins.append(plugin) + else: + threadpool.enqueue_task(check_plugin.bind(_plugged_plugins[plugin.name])) + has_checking_plugin = true + if has_checking_plugin: + logger.info("\n", true) + threadpool.disconnect("all_thread_finished", request_quit) + threadpool.active = true + await threadpool.all_thread_finished + threadpool.active = false + threadpool.connect("all_thread_finished", request_quit) + logger.debug("Finished checking plugins, ready to proceed") + if new_plugins: + logger.info("\nPlugged %d plugin%s" % [new_plugins.size(), "s" if new_plugins.size() > 1 else ""]) + for plugin in new_plugins.values(): + var is_new = not (plugin.name in _installed_plugins) + if is_new: + logger.info("- {name} - {url}".format(plugin)) + if removed_plugins: + logger.info("\nUnplugged %d plugin%s" % [removed_plugins.size(), "s" if removed_plugins.size() > 1 else ""]) + for plugin in removed_plugins: + logger.info("- %s removed" % plugin.name) + var plug_directory = DirAccess.open(DEFAULT_PLUG_DIR) + var orphan_dirs = [] + if plug_directory.get_open_error() == OK: + plug_directory.list_dir_begin() # TODOGODOT4 fill missing arguments https://github.com/godotengine/godot/pull/40547 + var file = plug_directory.get_next() + while not file.is_empty(): + if plug_directory.current_is_dir(): + if not (file in _installed_plugins): + orphan_dirs.append(file) + file = plug_directory.get_next() + plug_directory.list_dir_end() + if orphan_dirs: + logger.info("\nOrphan directory, %d found in %s, execute \"clean\" command to remove" % [orphan_dirs.size(), DEFAULT_PLUG_DIR]) + for dir in orphan_dirs: + logger.info("- %s" % dir) + threadpool.active = true + + if has_checking_plugin: + request_quit() + +# Index & validate plugin +func plug(repo, args={}): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + repo = repo.strip_edges() + var plugin_name = get_plugin_name_from_repo(repo) + if plugin_name in _plugged_plugins: + logger.info("Plugin already plugged: %s" % plugin_name) + return + var plugin = {} + plugin.name = plugin_name + plugin.url = "" + if ":" in repo: + plugin.url = repo + elif repo.find("/") == repo.rfind("/"): + plugin.url = DEFAULT_PLUGIN_URL % repo + else: + logger.error("Invalid repo: %s" % repo) + plugin.plug_dir = DEFAULT_PLUG_DIR + "/" + plugin.name + + var is_valid = true + plugin.include = args.get("include", []) + is_valid = is_valid and validate_var_type(plugin, "include", TYPE_ARRAY, "Array") + plugin.exclude = args.get("exclude", []) + is_valid = is_valid and validate_var_type(plugin, "exclude", TYPE_ARRAY, "Array") + plugin.branch = args.get("branch", "") + is_valid = is_valid and validate_var_type(plugin, "branch", TYPE_STRING, "String") + plugin.tag = args.get("tag", "") + is_valid = is_valid and validate_var_type(plugin, "tag", TYPE_STRING, "String") + plugin.commit = args.get("commit", "") + is_valid = is_valid and validate_var_type(plugin, "commit", TYPE_STRING, "String") + if not plugin.commit.is_empty(): + var is_valid_commit = plugin.commit.length() == 40 + if not is_valid_commit: + logger.error("Expected full length 40 digits commit-hash string, given %s" % plugin.commit) + is_valid = is_valid and is_valid_commit + plugin.dev = args.get("dev", false) + is_valid = is_valid and validate_var_type(plugin, "dev", TYPE_BOOL, "Boolean") + plugin.on_updated = args.get("on_updated", "") + is_valid = is_valid and validate_var_type(plugin, "on_updated", TYPE_STRING, "String") + plugin.install_root = args.get("install_root", "") + is_valid = is_valid and validate_var_type(plugin, "install_root", TYPE_STRING, "String") + + if is_valid: + _plugged_plugins[plugin.name] = plugin + logger.debug("Plug: %s" % plugin) + else: + logger.error("Failed to plug %s, validation error" % plugin.name) + +func install_plugin(plugin): + var test = !OS.get_environment(ENV_TEST).is_empty() + var can_install = OS.get_environment(ENV_PRODUCTION).is_empty() if plugin.dev else true + if can_install: + logger.info("Installing plugin %s..." % plugin.name) + var result = is_plugin_downloaded(plugin) + if result != OK: + result = downlaod(plugin) + else: + logger.info("Plugin already downloaded") + + if result == OK: + install(plugin) + else: + logger.error("Failed to install plugin %s with error code %d" % [plugin.name, result]) + +func uninstall_plugin(plugin): + var test = !OS.get_environment(ENV_TEST).is_empty() + logger.info("Uninstalling plugin %s..." % plugin.name) + uninstall(plugin) + directory_delete_recursively(plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test}) + +func update_plugin(plugin, checking=false): + if not (plugin.name in _installed_plugins): + logger.info("%s new plugin" % plugin.name) + return true + + var git = _GitExecutable.new(ProjectSettings.globalize_path(plugin.plug_dir), logger) + var installed_plugin = get_installed_plugin(plugin.name) + var changes = compare_plugins(plugin, installed_plugin) + var should_clone = false + var should_pull = false + var should_reinstall = false + + if plugin.tag or plugin.commit: + for rev in ["tag", "commit"]: + var freeze_at = plugin[rev] + if freeze_at: + logger.info("%s frozen at %s \"%s\"" % [plugin.name, rev, freeze_at]) + break + else: + var ahead_behind = [] + if git.fetch("origin " + plugin.branch if plugin.branch else "origin").exit == OK: + ahead_behind = git.get_commit_comparison("HEAD", "origin/" + plugin.branch if plugin.branch else "origin") + var is_commit_behind = !!ahead_behind[1] if ahead_behind.size() == 2 else false + if is_commit_behind: + logger.info("%s %d commits behind, update required" % [plugin.name, ahead_behind[1]]) + should_pull = true + else: + logger.info("%s up to date" % plugin.name) + + if changes: + logger.info("%s changed %s" % [plugin.name, changes]) + should_reinstall = true + if "url" in changes or "branch" in changes or "tag" in changes or "commit" in changes: + logger.info("%s repository setting changed, update required" % plugin.name) + should_clone = true + + if not checking: + if should_clone: + logger.info("%s cloning from %s..." % [plugin.name, plugin.url]) + var test = !OS.get_environment(ENV_TEST).is_empty() + uninstall(get_installed_plugin(plugin.name)) + directory_delete_recursively(plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test}) + if downlaod(plugin) == OK: + install(plugin) + elif should_pull: + logger.info("%s pulling updates from %s..." % [plugin.name, plugin.url]) + uninstall(get_installed_plugin(plugin.name)) + if git.pull().exit == OK: + install(plugin) + elif should_reinstall: + logger.info("%s reinstalling..." % plugin.name) + uninstall(get_installed_plugin(plugin.name)) + install(plugin) + +func check_plugin(plugin): + update_plugin(plugin, true) + +func downlaod(plugin): + logger.info("Downloading %s from %s..." % [plugin.name, plugin.url]) + var test = !OS.get_environment(ENV_TEST).is_empty() + var global_dest_dir = ProjectSettings.globalize_path(plugin.plug_dir) + if project_dir.dir_exists(plugin.plug_dir): + directory_delete_recursively(plugin.plug_dir) + project_dir.make_dir(plugin.plug_dir) + var result = _GitExecutable.new(global_dest_dir, logger).clone(plugin.url, global_dest_dir, {"branch": plugin.branch, "tag": plugin.tag, "commit": plugin.commit}) + if result.exit == OK: + logger.info("Successfully download %s" % [plugin.name]) + else: + logger.info("Failed to download %s" % plugin.name) + # Make sure plug_dir is clean when failed + directory_delete_recursively(plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test}) + project_dir.remove(plugin.plug_dir) # Remove empty directory + return result.exit + +func install(plugin): + var include = plugin.get("include", []) + if include.is_empty(): # Auto include "addons/" folder if not explicitly specified + include = ["addons/"] + if OS.get_environment(ENV_FORCE).is_empty() and OS.get_environment(ENV_TEST).is_empty(): + var is_exists = false + var dest_files = directory_copy_recursively(plugin.plug_dir, "res://" + plugin.install_root, {"include": include, "exclude": plugin.exclude, "test": true, "silent_test": true}) + for dest_file in dest_files: + if project_dir.file_exists(dest_file): + logger.warn("%s attempting to overwrite file %s" % [plugin.name, dest_file]) + is_exists = true + if is_exists: + logger.warn("Installation of %s terminated to avoid overwriting user files, you may disable safe mode with command \"force\"" % plugin.name) + return ERR_ALREADY_EXISTS + + logger.info("Installing files for %s..." % plugin.name) + var test = !OS.get_environment(ENV_TEST).is_empty() + var dest_files = directory_copy_recursively(plugin.plug_dir, "res://" + plugin.install_root, {"include": include, "exclude": plugin.exclude, "test": test}) + plugin.dest_files = dest_files + logger.info("Installed %d file%s for %s" % [dest_files.size(), "s" if dest_files.size() > 1 else "", plugin.name]) + if plugin.name != "gd-plug": + set_installed_plugin(plugin) + if plugin.on_updated: + if has_method(plugin.on_updated): + logger.info("Execute post-update function for %s" % plugin.name) + _on_updated(plugin) + call(plugin.on_updated, plugin.duplicate()) + emit_signal("updated", plugin) + return OK + +func uninstall(plugin): + var test = !OS.get_environment(ENV_TEST).is_empty() + var keep_import_file = !OS.get_environment(ENV_KEEP_IMPORT_FILE).is_empty() + var keep_import_resource_file = !OS.get_environment(ENV_KEEP_IMPORT_RESOURCE_FILE).is_empty() + var dest_files = plugin.get("dest_files", []) + logger.info("Uninstalling %d file%s for %s..." % [dest_files.size(), "s" if dest_files.size() > 1 else "",plugin.name]) + directory_remove_batch(dest_files, {"test": test, "keep_import_file": keep_import_file, "keep_import_resource_file": keep_import_resource_file}) + logger.info("Uninstalled %d file%s for %s" % [dest_files.size(), "s" if dest_files.size() > 1 else "",plugin.name]) + remove_installed_plugin(plugin.name) + +func is_plugin_downloaded(plugin): + if not project_dir.dir_exists(plugin.plug_dir + "/.git"): + return + + var git = _GitExecutable.new(ProjectSettings.globalize_path(plugin.plug_dir), logger) + return git.is_up_to_date(plugin) + +# Get installed plugin, thread safe +func get_installed_plugin(plugin_name): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + _mutex.lock() + var installed_plugin = _installed_plugins[plugin_name] + _mutex.unlock() + return installed_plugin + +# Set installed plugin, thread safe +func set_installed_plugin(plugin): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + _mutex.lock() + _installed_plugins[plugin.name] = plugin + _mutex.unlock() + +# Remove installed plugin, thread safe +func remove_installed_plugin(plugin_name): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + _mutex.lock() + var result = _installed_plugins.erase(plugin_name) + _mutex.unlock() + return result + +func directory_copy_recursively(from, to, args={}): + var include = args.get("include", []) + var exclude = args.get("exclude", []) + var test = args.get("test", false) + var silent_test = args.get("silent_test", false) + var dir = DirAccess.open(from) + dir.include_hidden = true + var dest_files = [] + if dir.get_open_error() == OK: + dir.list_dir_begin() # TODOGODOT4 fill missing arguments https://github.com/godotengine/godot/pull/40547 + var file_name = dir.get_next() + while not file_name.is_empty(): + var source = dir.get_current_dir() + ("/" if dir.get_current_dir() != "res://" else "") + file_name + var dest = to + ("/" if to != "res://" else "") + file_name + + if dir.current_is_dir(): + dest_files += directory_copy_recursively(source, dest, args) + else: + for include_key in include: + if include_key in source: + var is_excluded = false + for exclude_key in exclude: + if exclude_key in source: + is_excluded = true + break + if not is_excluded: + if test: + if not silent_test: logger.warn("[TEST] Writing to %s" % dest) + else: + dir.make_dir_recursive(to) + if dir.copy(source, dest) == OK: + logger.debug("Copy from %s to %s" % [source, dest]) + dest_files.append(dest) + break + file_name = dir.get_next() + dir.list_dir_end() + else: + logger.error("Failed to access path: %s" % from) + + return dest_files + +func directory_delete_recursively(dir_path, args={}): + var remove_empty_directory = args.get("remove_empty_directory", true) + var exclude = args.get("exclude", []) + var test = args.get("test", false) + var silent_test = args.get("silent_test", false) + var dir = DirAccess.open(dir_path) + dir.include_hidden = true + if dir.get_open_error() == OK: + dir.list_dir_begin() # TODOGODOT4 fill missing arguments https://github.com/godotengine/godot/pull/40547 + var file_name = dir.get_next() + while not file_name.is_empty(): + var source = dir.get_current_dir() + ("/" if dir.get_current_dir() != "res://" else "") + file_name + + if dir.current_is_dir(): + var sub_dir = directory_delete_recursively(source, args) + if remove_empty_directory: + if test: + if not silent_test: logger.warn("[TEST] Remove empty directory: %s" % sub_dir.get_current_dir()) + else: + if source.get_file() == ".git": + var empty_dir_path = ProjectSettings.globalize_path(source) + var exit = FAILED + match OS.get_name(): + "Windows": + empty_dir_path = "\"%s\"" % empty_dir_path + empty_dir_path = empty_dir_path.replace("/", "\\") + var cmd = "rd /s /q %s" % empty_dir_path + exit = OS.execute("cmd", ["/C", cmd]) + "X11", "OSX", "Server": + empty_dir_path = "\'%s\'" % empty_dir_path + var cmd = "rm -rf %s" % empty_dir_path + exit = OS.execute("bash", ["-c", cmd]) + # Hacks to remove .git, as git pack files stop it from being removed + # See https://stackoverflow.com/questions/1213430/how-to-fully-delete-a-git-repository-created-with-init + if exit == OK: + logger.debug("Remove empty directory: %s" % sub_dir.get_current_dir()) + else: + logger.debug("Failed to remove empty directory: %s" % sub_dir.get_current_dir()) + else: + if dir.remove(sub_dir.get_current_dir()) == OK: + logger.debug("Remove empty directory: %s" % sub_dir.get_current_dir()) + else: + var excluded = false + for exclude_key in exclude: + if source in exclude_key: + excluded = true + break + if not excluded: + if test: + if not silent_test: logger.warn("[TEST] Remove file: %s" % source) + else: + if dir.remove(file_name) == OK: + logger.debug("Remove file: %s" % source) + file_name = dir.get_next() + dir.list_dir_end() + else: + logger.error("Failed to access path: %s" % dir_path) + + if remove_empty_directory: + dir.remove(dir.get_current_dir()) + + return dir + +func directory_remove_batch(files, args={}): + var remove_empty_directory = args.get("remove_empty_directory", true) + var keep_import_file = args.get("keep_import_file", false) + var keep_import_resource_file = args.get("keep_import_resource_file", false) + var test = args.get("test", false) + var silent_test = args.get("silent_test", false) + var dirs = {} + for file in files: + var file_dir = file.get_base_dir() + var file_name =file.get_file() + var dir = dirs.get(file_dir) + + if not dir: + dir = DirAccess.open(file_dir) + dirs[file_dir] = dir + + if file.ends_with(".import"): + if not keep_import_file: + _remove_import_file(dir, file, keep_import_resource_file, test, silent_test) + else: + if test: + if not silent_test: logger.warn("[TEST] Remove file: " + file) + else: + if dir.remove(file_name) == OK: + logger.debug("Remove file: " + file) + if not keep_import_file: + _remove_import_file(dir, file + ".import", keep_import_resource_file, test, silent_test) + + for dir in dirs.values(): + var slash_count = dir.get_current_dir().count("/") - 2 # Deduct 2 slash from "res://" + if test: + if not silent_test: logger.warn("[TEST] Remove empty directory: %s" % dir.get_current_dir()) + else: + if dir.remove(dir.get_current_dir()) == OK: + logger.debug("Remove empty directory: %s" % dir.get_current_dir()) + # Dumb method to clean empty ancestor directories + logger.debug("Removing emoty ancestor directory for %s..." % dir.get_current_dir()) + var current_dir = dir.get_current_dir() + for i in slash_count: + current_dir = current_dir.get_base_dir() + var d = DirAccess.open(current_dir) + if d.get_open_error() == OK: + if test: + if not silent_test: logger.warn("[TEST] Remove empty ancestor directory: %s" % d.get_current_dir()) + else: + if d.remove(d.get_current_dir()) == OK: + logger.debug("Remove empty ancestor directory: %s" % d.get_current_dir()) + +func _remove_import_file(dir, file, keep_import_resource_file=false, test=false, silent_test=false): + if not dir.file_exists(file): + return + + if not keep_import_resource_file: + var import_config = ConfigFile.new() + if import_config.load(file) == OK: + var metadata = import_config.get_value("remap", "metadata", {}) + var imported_formats = metadata.get("imported_formats", []) + if imported_formats: + for format in imported_formats: + _remove_import_resource_file(dir, import_config, "." + format, test) + else: + _remove_import_resource_file(dir, import_config, "", test) + if test: + if not silent_test: logger.warn("[TEST] Remove import file: " + file) + else: + if dir.remove(file) == OK: + logger.debug("Remove import file: " + file) + else: + # TODO: Sometimes Directory.remove() unable to remove random .import file and return error code 1(Generic Error) + # Maybe enforce the removal from shell? + logger.warn("Failed to remove import file: " + file) + +func _remove_import_resource_file(dir, import_config, import_format="", test=false): + var import_resource_file = import_config.get_value("remap", "path" + import_format, "") + var checksum_file = import_resource_file.trim_suffix("." + import_resource_file.get_extension()) + ".md5" if import_resource_file else "" + if import_resource_file: + if dir.file_exists(import_resource_file): + if test: + logger.info("[IMPORT] Remove import resource file: " + import_resource_file) + else: + if dir.remove(import_resource_file) == OK: + logger.debug("Remove import resource file: " + import_resource_file) + if checksum_file: + checksum_file = checksum_file.replace(import_format, "") + if dir.file_exists(checksum_file): + if test: + logger.info("[IMPORT] Remove import checksum file: " + checksum_file) + else: + if dir.remove(checksum_file) == OK: + logger.debug("Remove import checksum file: " + checksum_file) + +func compare_plugins(p1, p2): + var changed_keys = [] + for key in p1.keys(): + var v1 = p1[key] + var v2 = p2[key] + if v1 != v2: + changed_keys.append(key) + return changed_keys + +func get_plugin_name_from_repo(repo): + repo = repo.replace(".git", "").trim_suffix("/") + return repo.get_file() + +func validate_var_type(obj, var_name, type, type_string): + var value = obj.get(var_name) + var is_valid = typeof(value) == type + if not is_valid: + logger.error("Expected variable \"%s\" to be %s, given %s" % [var_name, type_string, value]) + return is_valid + +const INIT_PLUG_SCRIPT = \ +"""extends "res://addons/gd-plug/plug.gd" + +func _plugging(): + # Declare plugins with plug(repo, args) + # For example, clone from github repo("user/repo_name") + # plug("imjp94/gd-YAFSM") # By default, gd-plug will only install anything from "addons/" directory + # Or you can explicitly specify which file/directory to include + # plug("imjp94/gd-YAFSM", {"include": ["addons/"]}) # By default, gd-plug will only install anything from "addons/" directory + pass +""" + +class _GitExecutable extends RefCounted: + var cwd = "" + var logger + + func _init(p_cwd, p_logger): + cwd = p_cwd + logger = p_logger + + func _execute(command, output=[], read_stderr=false): + var cmd = "cd '%s' && %s" % [cwd, command] + # NOTE: OS.execute() seems to ignore read_stderr + var exit = FAILED + match OS.get_name(): + "Windows": + cmd = cmd.replace("\'", "\"") # cmd doesn't accept single-quotes + cmd = cmd if read_stderr else "%s 2> nul" % cmd + logger.debug("Execute \"%s\"" % cmd) + exit = OS.execute("cmd", ["/C", cmd], output, read_stderr) + "macOS", "Linux", "FreeBSD", "NetBSD", "OpenBSD", "BSD": + cmd if read_stderr else "%s 2>/dev/null" % cmd + logger.debug("Execute \"%s\"" % cmd) + exit = OS.execute("bash", ["-c", cmd], output, read_stderr) + var unhandled_os: + logger.error("Unexpected OS: %s" % unhandled_os) + logger.debug("Execution ended(code:%d): %s" % [exit, output]) + return exit + + func init(): + logger.debug("Initializing git at %s..." % cwd) + var output = [] + var exit = _execute("git init", output) + logger.debug("Successfully init" if exit == OK else "Failed to init") + return {"exit": exit, "output": output} + + func clone(src, dest, args={}): + logger.debug("Cloning from %s to %s..." % [src, dest]) + var output = [] + var branch = args.get("branch", "") + var tag = args.get("tag", "") + var commit = args.get("commit", "") + var command = "git clone --depth=1 --progress '%s' '%s'" % [src, dest] + if branch or tag: + command = "git clone --depth=1 --single-branch --branch %s '%s' '%s'" % [branch if branch else tag, src, dest] + elif commit: + return clone_commit(src, dest, commit) + var exit = _execute(command, output) + logger.debug("Successfully cloned from %s" % src if exit == OK else "Failed to clone from %s" % src) + return {"exit": exit, "output": output} + + func clone_commit(src, dest, commit): + var output = [] + if commit.length() < 40: + logger.error("Expected full length 40 digits commit-hash to clone specific commit, given {%s}" % commit) + return {"exit": FAILED, "output": output} + + logger.debug("Cloning from %s to %s @ %s..." % [src, dest, commit]) + var result = init() + if result.exit == OK: + result = remote_add("origin", src) + if result.exit == OK: + result = fetch("%s %s" % ["origin", commit]) + if result.exit == OK: + result = reset("--hard", "FETCH_HEAD") + return result + + func fetch(rm="--all"): + logger.debug("Fetching %s..." % rm.replace("--", "")) + var output = [] + var exit = _execute("git fetch %s" % rm, output) + logger.debug("Successfully fetched" if exit == OK else "Failed to fetch") + return {"exit": exit, "output": output} + + func pull(): + logger.debug("Pulling...") + var output = [] + var exit = _execute("git pull --rebase", output) + logger.debug("Successfully pulled" if exit == OK else "Failed to pull") + return {"exit": exit, "output": output} + + func remote_add(name, src): + logger.debug("Adding remote %s@%s..." % [name, src]) + var output = [] + var exit = _execute("git remote add %s '%s'" % [name, src], output) + logger.debug("Successfully added remote" if exit == OK else "Failed to add remote") + return {"exit": exit, "output": output} + + func reset(mode, to): + logger.debug("Resetting %s %s..." % [mode, to]) + var output = [] + var exit = _execute("git reset %s %s" % [mode, to], output) + logger.debug("Successfully reset" if exit == OK else "Failed to reset") + return {"exit": exit, "output": output} + + func get_commit_comparison(branch_a, branch_b): + var output = [] + var exit = _execute("git rev-list --count --left-right %s...%s" % [branch_a, branch_b], output) + var raw_ahead_behind = output[0].split("\t") + var ahead_behind = [] + for msg in raw_ahead_behind: + ahead_behind.append(msg.to_int()) + return ahead_behind if exit == OK else [] + + func get_current_branch(): + var output = [] + var exit = _execute("git rev-parse --abbrev-ref HEAD", output) + return output[0] if exit == OK else "" + + func get_current_tag(): + var output = [] + var exit = _execute("git describe --tags --exact-match", output) + return output[0] if exit == OK else "" + + func get_current_commit(): + var output = [] + var exit = _execute("git rev-parse --short HEAD", output) + return output[0] if exit == OK else "" + + func is_detached_head(): + var output = [] + var exit = _execute("git rev-parse --short HEAD", output) + return (!!output[0]) if exit == OK else true + + func is_up_to_date(args={}): + if fetch().exit == OK: + var branch = args.get("branch", "") + var tag = args.get("tag", "") + var commit = args.get("commit", "") + + if branch: + if branch == get_current_branch(): + return FAILED if is_detached_head() else OK + elif tag: + if tag == get_current_tag(): + return OK + elif commit: + if commit == get_current_commit(): + return OK + + var ahead_behind = get_commit_comparison("HEAD", "origin") + var is_commit_behind = !!ahead_behind[1] if ahead_behind.size() == 2 else false + return FAILED if is_commit_behind else OK + return FAILED + +class _ThreadPool extends RefCounted: + signal all_thread_finished() + + var active = true + + var _threads = [] + var _finished_threads = [] + var _mutex = Mutex.new() + var _tasks = [] + var logger + + func _init(p_logger): + logger = p_logger + _threads.resize(OS.get_processor_count()) + + func _execute_task(task): + var thread = _get_thread() + var can_execute = thread + if can_execute: + task.thread = weakref(thread) + var callable = task.get("callable") + thread.start(_execute.bind(task), task.priority) + logger.debug("Execute task %s.%s() " % [callable.get_object(), callable.get_method()]) + return can_execute + + func _execute(args): + var callable = args.get("callable") + callable.call() + _mutex.lock() + var thread = args.thread.get_ref() + _threads[_threads.find(thread)] = null + _finished_threads.append(thread) + var all_finished = is_all_thread_finished() + _mutex.unlock() + + logger.debug("Execution finished %s.%s() " % [callable.get_object(), callable.get_method()]) + if all_finished: + logger.debug("All thread finished") + emit_signal("all_thread_finished") + + func _flush_tasks(): + if _tasks.size() == 0: + return + + var executed = true + while executed: + var task = _tasks.pop_front() + if task != null: + executed = _execute_task(task) + if not executed: + _tasks.push_front(task) + else: + executed = false + + func _flush_threads(): + for i in _finished_threads.size(): + var thread = _finished_threads.pop_front() + if not thread.is_alive(): + thread.wait_to_finish() + + func enqueue_task(callable, priority=1): + enqueue({"callable": callable, "priority": priority}) + + func enqueue(task): + var can_execute = false + if active: + can_execute = _execute_task(task) + if not can_execute: + _tasks.append(task) + + func process(delta): + if active: + _flush_tasks() + _flush_threads() + + func stop(): + _tasks.clear() + _flush_threads() + + func _get_thread(): + var thread + for i in OS.get_processor_count(): + var t = _threads[i] + if t: + if not t.is_started(): + thread = t + break + else: + thread = Thread.new() + _threads[i] = thread + break + return thread + + func is_all_thread_finished(): + for i in _threads.size(): + if _threads[i]: + return false + return true + + func is_all_task_finished(): + for i in _tasks.size(): + if _tasks[i]: + return false + return true + +class _Logger extends RefCounted: + enum LogLevel { + ALL, DEBUG, INFO, WARN, ERROR, NONE + } + const DEFAULT_LOG_FORMAT_DETAIL = "[{time}] [{level}] {msg}" + const DEFAULT_LOG_FORMAT_NORMAL = "{msg}" + + var log_level = LogLevel.INFO + var log_format = DEFAULT_LOG_FORMAT_NORMAL + var log_time_format = "{year}/{month}/{day} {hour}:{minute}:{second}" + + func debug(msg, raw=false): + _log(LogLevel.DEBUG, msg, raw) + + func info(msg, raw=false): + _log(LogLevel.INFO, msg, raw) + + func warn(msg, raw=false): + _log(LogLevel.WARN, msg, raw) + + func error(msg, raw=false): + _log(LogLevel.ERROR, msg, raw) + + func _log(level, msg, raw=false): + if log_level <= level: + if raw: + printraw(format_log(level, msg)) + else: + print(format_log(level, msg)) + + func format_log(level, msg): + return log_format.format({ + "time": log_time_format.format(get_formatted_datatime()), + "level": LogLevel.keys()[level], + "msg": msg + }) + + func get_formatted_datatime(): + var datetime = Time.get_datetime_dict_from_system() + datetime.year = "%04d" % datetime.year + datetime.month = "%02d" % datetime.month + datetime.day = "%02d" % datetime.day + datetime.hour = "%02d" % datetime.hour + datetime.minute = "%02d" % datetime.minute + datetime.second = "%02d" % datetime.second + return datetime diff --git a/addons/kanban_tasks/board.gd b/addons/kanban_tasks/board.gd deleted file mode 100644 index 425f597..0000000 --- a/addons/kanban_tasks/board.gd +++ /dev/null @@ -1,404 +0,0 @@ -# SPDX-FileCopyrightText: 2022-2023 HolonProduction -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/HolonProduction/godot_kanban_tasks - -tool -extends Control - -signal categories_changed() -signal tasks_changed() -signal stages_changed() -signal columns_changed() -signal settings_changed() - -const save_path := "res://addons/kanban_tasks/data.json" - -const column_scene := preload("res://addons/kanban_tasks/column.tscn") -const stage_scene := preload("res://addons/kanban_tasks/stage.tscn") -const task_scene := preload("res://addons/kanban_tasks/task.tscn") - -var columns = [] -var stages = [] -var tasks = [] -var categories = [] -var show_details_preview: bool = true setget set_show_details_preview -func set_show_details_preview(val): - show_details_preview = val - emit_signal('settings_changed') - -var shortcut_delete := ShortCut.new() -var shortcut_duplicate := ShortCut.new() -var shortcut_new := ShortCut.new() -var shortcut_rename := ShortCut.new() -var shortcut_search := ShortCut.new() -var shortcut_confirm := ShortCut.new() - -onready var search_bar: LineEdit = $Header/HBoxContainer/Search -onready var button_search_details: Button = $Header/HBoxContainer/SearchDetails -onready var button_settings: Button = $Header/HBoxContainer/Settings -onready var button_help: Button = $Header/HBoxContainer/Help -onready var column_holder: HBoxContainer = $MarginContainer/ScrollContainer/Columns - -onready var details_dialog := $Dialogs/Details -onready var documentation_dialog := $Dialogs/Documentation -onready var settings_dialog := $Dialogs/Settings - -class Category: - signal changed() - var title: String setget set_title - var color: Color setget set_color - func set_title(val): - title = val - emit_signal("changed") - func set_color(val): - color = val - emit_signal("changed") - - func _init(title: String, color: Color): - self.title = title - self.color = color - func serialize()->Dictionary: - return { - "title": title, - "color": color.to_html(false), - } - -func setup_shortcuts(): - # delete - var delete = InputEventKey.new() - if OS.get_name() == "OSX": - delete.scancode = KEY_BACKSPACE - delete.command = true - else: - delete.scancode = KEY_DELETE - shortcut_delete.shortcut = delete - - # duplicate - var dupe = InputEventKey.new() - if OS.get_name() == "OSX": - dupe.scancode = KEY_D - dupe.command = true - else: - dupe.scancode = KEY_D - dupe.control = true - shortcut_duplicate.shortcut = dupe - - # new - var new = InputEventKey.new() - if OS.get_name() == "OSX": - new.scancode = KEY_A - new.command = true - else: - new.scancode = KEY_A - new.control = true - shortcut_new.shortcut = new - - # rename - var rename = InputEventKey.new() - rename.scancode = KEY_F2 - shortcut_rename.shortcut = rename - - # search - var search = InputEventKey.new() - if OS.get_name() == "OSX": - search.scancode = KEY_F - search.command = true - else: - search.scancode = KEY_F - search.control = true - shortcut_search.shortcut = search - - # confirm - var confirm = InputEventKey.new() - confirm.scancode = KEY_ENTER - shortcut_confirm.shortcut = confirm - - -func _ready(): - setup_shortcuts() - setup_board() - - search_bar.connect("text_changed", self, "__on_filter_changed") - search_bar.connect("text_entered", self, "__on_filter_entered") - button_search_details.connect("toggled", self, "__on_filter_changed") - button_help.connect("pressed", self, "__on_documentation_button_clicked") - button_settings.connect("pressed", self, "__on_settings_button_clicked") - - connect("categories_changed", self, "save_data") - connect("tasks_changed", self, "save_data") - connect("columns_changed", self, "save_data") - connect("stages_changed", self, "save_data") - connect("settings_changed", self, "save_data") - - notification(NOTIFICATION_THEME_CHANGED) - -func get_details_dialog(): - return details_dialog - -func construct_category(title: String, color: Color): - var cat = Category.new(title, color) - categories.append(cat) - cat.connect("changed", self, "save_data") - emit_signal("categories_changed") - return cat -func category_index(cat, unsafe = false): - if not unsafe: - assert(cat in categories, "You have to construct categories by using the board.") - return categories.find(cat) -func delete_category(cat): - categories.erase(cat) - emit_signal("categories_changed") - -func _unhandled_key_input(event): - if not can_handle_shortcut(self): - return - - if not event.is_echo() and event.is_pressed() and shortcut_search.is_shortcut(event): - search_bar.grab_focus() - get_tree().set_input_as_handled() - -func construct_task(title:String="Task", details:String="", category=categories[0]): - var scene = task_scene.instance() - scene.connect("change", self, "save_data") - tasks.append(scene) - scene.init(self, title, details, category) - emit_signal("tasks_changed") - return scene -func task_index(task, unsafe = false): - if not unsafe: - assert(task in tasks, "You have to construct tasks by using the board.") - return tasks.find(task) -func delete_task(scene): - if scene.is_inside_tree(): - scene.get_owner().remove_task(scene) - tasks.erase(scene) - scene.queue_free() - emit_signal("tasks_changed") - -func construct_stage(title:String="Stage", tasks:Array=[]): - var scene = stage_scene.instance() - scene.connect("change", self, "save_data") - stages.append(scene) - scene.init(self, title, tasks) - emit_signal("stages_changed") - return scene -func stage_index(stage, unsafe = false): - if not unsafe: - assert(stage in stages, "You have to construct stages by using the board.") - return stages.find(stage) -func delete_stage(scene): - if scene.is_inside_tree(): - scene.get_owner().remove_stage(scene) - stages.erase(scene) - scene.queue_free() - emit_signal("stages_changed") - -func construct_column(stages:Array=[]): - var scene = column_scene.instance() - scene.connect("change", self, "save_data") - columns.append(scene) - scene.init(self, stages) - emit_signal("columns_changed") - return scene -func column_index(column, unsafe = false): - if not unsafe: - assert(column in columns, "You have to construct columns by using the board.") - return columns.find(column) -func delete_column(scene): - if scene.is_inside_tree(): - column_holder.remove_child(scene) - columns.erase(scene) - scene.queue_free() - emit_signal("columns_changed") - -func can_handle_shortcut(node): - return get_focus_owner() and (node.is_a_parent_of(get_focus_owner()) or get_focus_owner()==node) - -func clear_board(): - for c in column_holder.get_children(): - c.queue_free() - columns = [] - stages = [] - categories = [] - emit_signal("categories_changed") - emit_signal("columns_changed") - emit_signal("stages_changed") - emit_signal("tasks_changed") - -func load_data()->Dictionary: - var file := File.new() - var res = file.open(save_path, File.READ) - if res != OK: - return default_data() - - res = JSON.parse(file.get_as_text()) - if res.error != OK: - return default_data() - file.close() - - res = res.result - - for category in res["categories"]: - category["color"] = Color(category["color"]) - - for task in res["tasks"]: - task["category"] = int(task["category"]) - - for stage in res["stages"]: - var tasks_i = [] - for t in stage["tasks"]: - tasks_i.append(int(t)) - stage["tasks"] = tasks_i - - for column in res["columns"]: - var stages_i = [] - for t in column["stages"]: - stages_i.append(int(t)) - column["stages"] = stages_i - - - return res - -func default_data(): - return { - "settings": { - "show_details_preview": true, - }, - "columns": [ - { - "stages": [0], - }, - { - "stages": [1], - }, - { - "stages": [2], - }, - ], - "stages": [ - { - "title": "Todo", - "tasks": [], - }, - { - "title": "Doing", - "tasks": [], - }, - { - "title": "Done", - "tasks": [], - }, - ], - "tasks": [], - "categories": [ - {"title": "Task", "color": Color.cornflower} - ], - } - -func serialze(): - var res = { - "settings": { - "show_details_preview": show_details_preview, - }, - "categories": [], - "columns": [], - "stages": [], - "tasks": [], - } - for category in categories: - res["categories"].append(category.serialize()) - for column in columns: - res["columns"].append(column.serialize()) - for stage in stages: - res["stages"].append(stage.serialize()) - for task in tasks: - res["tasks"].append(task.serialize()) - return res - -func save_data(): - var data = serialze() - - var file := File.new() - var res = file.open(save_path, File.WRITE) - if res != OK: - push_warning("Could not save board data.") - - var string = JSON.print(data, " ") - - file.store_string(string) - file.close() - -func setup_board(): - clear_board() - var data = load_data() - - if data.has("settings"): - if data["settings"].has("show_details_preview"): - show_details_preview = data["settings"]["show_details_preview"] - - for c in data["categories"]: - construct_category(c["title"], - c["color"]) - - for t in data["tasks"]: - construct_task( - t["title"], - t["details"], - categories[t["category"]]) - - for s in data["stages"]: - construct_stage( - s["title"], - s["tasks"]) - - for c in data["columns"]: - var column = construct_column(c["stages"]) - column_holder.add_child(column) - - emit_signal("categories_changed") - emit_signal("columns_changed") - emit_signal("stages_changed") - emit_signal("tasks_changed") - emit_signal('settings_changed') - -func _notification(what): - match(what): - NOTIFICATION_THEME_CHANGED: - if is_instance_valid(search_bar): - search_bar.right_icon = get_icon("Search", "EditorIcons") - if is_instance_valid(button_settings): - button_settings.icon = get_icon("Tools", "EditorIcons") - if is_instance_valid(button_help): - button_help.icon = get_icon("Help", "EditorIcons") - if is_instance_valid(button_search_details): - button_search_details.icon = get_icon("MultiLine", "EditorIcons") - -func reset_filter(): - search_bar.text = "" - __update_filter() - -func show_documentation(): - documentation_dialog.popup_centered() - -func show_settings(): - settings_dialog.popup_centered() - -func __update_filter(): - for t in tasks: - t.apply_filter(search_bar.text, button_search_details.pressed) - -# do not use parameters -# method is bound to diffrent signals -func __on_filter_changed(param1=null): - __update_filter() - -func __on_filter_entered(filter): - button_search_details.grab_focus() - -func __on_documentation_button_clicked(): - show_documentation() - -func __on_settings_button_clicked(): - show_settings() diff --git a/addons/kanban_tasks/board.tscn b/addons/kanban_tasks/board.tscn deleted file mode 100644 index e657b40..0000000 --- a/addons/kanban_tasks/board.tscn +++ /dev/null @@ -1,463 +0,0 @@ -; SPDX-FileCopyrightText: 2022-2023 HolonProduction -; -; SPDX-License-Identifier: MIT -; -; Source: https://github.com/HolonProduction/godot_kanban_tasks - -[gd_scene load_steps=5 format=2] - -[ext_resource path="res://addons/kanban_tasks/board.gd" type="Script" id=1] -[ext_resource path="res://addons/kanban_tasks/documentation.gd" type="Script" id=2] -[ext_resource path="res://addons/kanban_tasks/details_dialog.gd" type="Script" id=3] -[ext_resource path="res://addons/kanban_tasks/settings.gd" type="Script" id=5] - -[node name="VBoxContainer" type="VBoxContainer"] -anchor_right = 1.0 -anchor_bottom = 1.0 -mouse_filter = 0 -size_flags_horizontal = 3 -size_flags_vertical = 3 -custom_constants/separation = 0 -script = ExtResource( 1 ) - -[node name="Header" type="MarginContainer" parent="."] -margin_right = 1024.0 -margin_bottom = 31.0 -mouse_filter = 2 -custom_constants/margin_right = 5 -custom_constants/margin_top = 5 -custom_constants/margin_left = 5 -custom_constants/margin_bottom = 0 - -[node name="HBoxContainer" type="HBoxContainer" parent="Header"] -margin_left = 5.0 -margin_top = 5.0 -margin_right = 1019.0 -margin_bottom = 31.0 -custom_constants/separation = 5 - -[node name="Search" type="LineEdit" parent="Header/HBoxContainer"] -margin_right = 958.0 -margin_bottom = 26.0 -size_flags_horizontal = 3 -clear_button_enabled = true -placeholder_text = "Search" - -[node name="SearchDetails" type="Button" parent="Header/HBoxContainer"] -margin_left = 963.0 -margin_right = 975.0 -margin_bottom = 26.0 -hint_tooltip = "Search in details." -toggle_mode = true - -[node name="VSeparator" type="VSeparator" parent="Header/HBoxContainer"] -margin_left = 980.0 -margin_right = 980.0 -margin_bottom = 26.0 -custom_constants/separation = 0 - -[node name="Help" type="Button" parent="Header/HBoxContainer"] -margin_left = 985.0 -margin_right = 997.0 -margin_bottom = 26.0 -hint_tooltip = "Open documentation." -flat = true - -[node name="Settings" type="Button" parent="Header/HBoxContainer"] -margin_left = 1002.0 -margin_right = 1014.0 -margin_bottom = 26.0 -hint_tooltip = "Manage board settings." - -[node name="MarginContainer" type="MarginContainer" parent="."] -margin_top = 31.0 -margin_right = 1024.0 -margin_bottom = 600.0 -mouse_filter = 2 -size_flags_horizontal = 3 -size_flags_vertical = 3 -custom_constants/margin_right = 5 -custom_constants/margin_top = 5 -custom_constants/margin_left = 5 -custom_constants/margin_bottom = 5 - -[node name="ScrollContainer" type="ScrollContainer" parent="MarginContainer"] -margin_left = 5.0 -margin_top = 5.0 -margin_right = 1019.0 -margin_bottom = 564.0 -scroll_vertical_enabled = false - -[node name="Columns" type="HBoxContainer" parent="MarginContainer/ScrollContainer"] -margin_right = 1014.0 -margin_bottom = 559.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 -custom_constants/separation = 5 -alignment = 1 - -[node name="Dialogs" type="Control" parent="."] -margin_top = 600.0 -margin_right = 1024.0 -margin_bottom = 600.0 - -[node name="Details" type="AcceptDialog" parent="Dialogs"] -margin_right = 552.0 -margin_bottom = 450.0 -window_title = "Task" -resizable = true -script = ExtResource( 3 ) - -[node name="VBoxContainer" type="VBoxContainer" parent="Dialogs/Details"] -anchor_right = 1.0 -anchor_bottom = 1.0 -margin_left = 8.0 -margin_top = 8.0 -margin_right = -8.0 -margin_bottom = -36.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 -__meta__ = { -"_edit_use_anchors_": false -} - -[node name="HBoxContainer" type="HBoxContainer" parent="Dialogs/Details/VBoxContainer"] -margin_right = 536.0 -margin_bottom = 20.0 - -[node name="OptionButton" type="OptionButton" parent="Dialogs/Details/VBoxContainer/HBoxContainer"] -margin_right = 536.0 -margin_bottom = 20.0 -size_flags_horizontal = 3 - -[node name="PopupMenu" type="PopupMenu" parent="Dialogs/Details/VBoxContainer/HBoxContainer"] -margin_right = 16.0 -margin_bottom = 16.0 - -[node name="TextEdit" type="TextEdit" parent="Dialogs/Details/VBoxContainer"] -margin_top = 24.0 -margin_right = 536.0 -margin_bottom = 406.0 -rect_min_size = Vector2( 0, 50 ) -size_flags_vertical = 3 -wrap_enabled = true -__meta__ = { -"_edit_use_anchors_": false -} - -[node name="Documentation" type="AcceptDialog" parent="Dialogs"] -margin_right = 650.0 -margin_bottom = 450.0 -window_title = "Documentation" -resizable = true -script = ExtResource( 2 ) -__meta__ = { -"_edit_use_anchors_": false -} - -[node name="VBoxContainer" type="VBoxContainer" parent="Dialogs/Documentation"] -anchor_right = 1.0 -anchor_bottom = 1.0 -margin_left = 8.0 -margin_top = 8.0 -margin_right = -8.0 -margin_bottom = -36.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 - -[node name="RichTextLabel" type="RichTextLabel" parent="Dialogs/Documentation/VBoxContainer"] -margin_right = 634.0 -margin_bottom = 406.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 -bbcode_enabled = true -bbcode_text = "[u]How to use[/u] - -- Double click on names to change them (works on stages, tasks and categories). Using F2 will also work. -- Drag and drop the tasks to move them between stages or reorder them. -- Click the pencil icon of a task to view its details. You can also press Enter while it has focus. - -[u]Features[/u] - -- Renamable stages -- Tasks with detailed description and titles -- Search in tasks and task details -- Intuitive drag and drop usage utilising the godot build in drag and drop -- Support for shortcuts * -- Categories -- Different stage layouts with multiple stages per column -- Supports all editor themes including light ones - -* uses godot defaults because the custom shortcuts cannot be accessed - -[u]Where is the data stored?[/u] - -The data is stored inside of the addon folder (res://addons/kanban_tasks/data.json). -Currently some features require editing the file to use. Do this before adding tasks to prevent save file corruption. You can have a look at the examples folder on github for some example data configurations. - - -[center]Leave a star on [url=https://github.com/HolonProduction/godot_kanban_tasks]Github[/url][/center] -" -text = "How to use - -- Double click on names to change them (works on stages, tasks and categories). Using F2 will also work. -- Drag and drop the tasks to move them between stages or reorder them. -- Click the pencil icon of a task to view its details. You can also press Enter while it has focus. - -Features - -- Renamable stages -- Tasks with detailed description and titles -- Search in tasks and task details -- Intuitive drag and drop usage utilising the godot build in drag and drop -- Support for shortcuts * -- Categories -- Different stage layouts with multiple stages per column -- Supports all editor themes including light ones - -* uses godot defaults because the custom shortcuts cannot be accessed - -Where is the data stored? - -The data is stored inside of the addon folder (res://addons/kanban_tasks/data.json). -Currently some features require editing the file to use. Do this before adding tasks to prevent save file corruption. You can have a look at the examples folder on github for some example data configurations. - - -Leave a star on Github -" - -[node name="Settings" type="AcceptDialog" parent="Dialogs"] -margin_right = 975.0 -margin_bottom = 675.0 -theme_type_variation = "EditorSettingsDialog" -window_title = "Settings" -resizable = true -script = ExtResource( 5 ) - -[node name="TabContainer" type="TabContainer" parent="Dialogs/Settings"] -anchor_right = 1.0 -anchor_bottom = 1.0 -margin_left = 8.0 -margin_top = 8.0 -margin_right = -8.0 -margin_bottom = -36.0 -tab_align = 0 - -[node name="General" type="VBoxContainer" parent="Dialogs/Settings/TabContainer"] -anchor_right = 1.0 -anchor_bottom = 1.0 -margin_left = 4.0 -margin_top = 32.0 -margin_right = -4.0 -margin_bottom = -4.0 - -[node name="Label" type="Label" parent="Dialogs/Settings/TabContainer/General"] -margin_right = 951.0 -margin_bottom = 14.0 -text = "Settings:" - -[node name="PanelContainer" type="PanelContainer" parent="Dialogs/Settings/TabContainer/General"] -margin_top = 18.0 -margin_right = 951.0 -margin_bottom = 595.0 -size_flags_vertical = 3 - -[node name="ScrollContainer" type="ScrollContainer" parent="Dialogs/Settings/TabContainer/General/PanelContainer"] -margin_left = 7.0 -margin_top = 7.0 -margin_right = 944.0 -margin_bottom = 570.0 -scroll_horizontal_enabled = false - -[node name="VBoxContainer" type="VBoxContainer" parent="Dialogs/Settings/TabContainer/General/PanelContainer/ScrollContainer"] -margin_right = 937.0 -margin_bottom = 563.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 - -[node name="ShowDetails" type="CheckBox" parent="Dialogs/Settings/TabContainer/General/PanelContainer/ScrollContainer/VBoxContainer"] -margin_right = 937.0 -margin_bottom = 24.0 -focus_mode = 0 -text = "Show description preview." - -[node name="Categories" type="VBoxContainer" parent="Dialogs/Settings/TabContainer"] -visible = false -anchor_right = 1.0 -anchor_bottom = 1.0 -margin_left = 4.0 -margin_top = 32.0 -margin_right = -4.0 -margin_bottom = -4.0 -size_flags_horizontal = 3 - -[node name="Header" type="HBoxContainer" parent="Dialogs/Settings/TabContainer/Categories"] -margin_right = 951.0 -margin_bottom = 20.0 - -[node name="Label" type="Label" parent="Dialogs/Settings/TabContainer/Categories/Header"] -margin_top = 3.0 -margin_right = 935.0 -margin_bottom = 17.0 -size_flags_horizontal = 3 -text = "Available Categories:" - -[node name="Add" type="Button" parent="Dialogs/Settings/TabContainer/Categories/Header"] -margin_left = 939.0 -margin_right = 951.0 -margin_bottom = 20.0 - -[node name="Categories" type="PanelContainer" parent="Dialogs/Settings/TabContainer/Categories"] -margin_top = 24.0 -margin_right = 951.0 -margin_bottom = 595.0 -size_flags_vertical = 3 - -[node name="ScrollContainer" type="ScrollContainer" parent="Dialogs/Settings/TabContainer/Categories/Categories"] -margin_left = 7.0 -margin_top = 7.0 -margin_right = 944.0 -margin_bottom = 564.0 -size_flags_vertical = 3 -follow_focus = true -scroll_horizontal_enabled = false - -[node name="VBoxContainer" type="VBoxContainer" parent="Dialogs/Settings/TabContainer/Categories/Categories/ScrollContainer"] -margin_right = 937.0 -margin_bottom = 68.0 -size_flags_horizontal = 3 - -[node name="Stages" type="VBoxContainer" parent="Dialogs/Settings/TabContainer"] -visible = false -anchor_right = 1.0 -anchor_bottom = 1.0 -margin_left = 4.0 -margin_top = 32.0 -margin_right = -4.0 -margin_bottom = -4.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 - -[node name="Header" type="HBoxContainer" parent="Dialogs/Settings/TabContainer/Stages"] -margin_right = 951.0 -margin_bottom = 24.0 - -[node name="Label" type="Label" parent="Dialogs/Settings/TabContainer/Stages/Header"] -margin_top = 5.0 -margin_right = 740.0 -margin_bottom = 19.0 -size_flags_horizontal = 3 -text = "Edit Stage Layout:" - -[node name="CheckBox" type="CheckBox" parent="Dialogs/Settings/TabContainer/Stages/Header"] -margin_left = 744.0 -margin_right = 951.0 -margin_bottom = 24.0 -focus_mode = 0 -text = "Warn about empty deletion." - -[node name="PanelContainer" type="PanelContainer" parent="Dialogs/Settings/TabContainer/Stages"] -margin_top = 28.0 -margin_right = 951.0 -margin_bottom = 595.0 -size_flags_vertical = 3 - -[node name="ScrollContainer" type="ScrollContainer" parent="Dialogs/Settings/TabContainer/Stages/PanelContainer"] -margin_left = 7.0 -margin_top = 7.0 -margin_right = 944.0 -margin_bottom = 560.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 - -[node name="CenterContainer" type="CenterContainer" parent="Dialogs/Settings/TabContainer/Stages/PanelContainer/ScrollContainer"] -margin_right = 937.0 -margin_bottom = 553.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 - -[node name="ColumnHolder" type="HBoxContainer" parent="Dialogs/Settings/TabContainer/Stages/PanelContainer/ScrollContainer/CenterContainer"] -margin_left = 337.0 -margin_top = 202.0 -margin_right = 599.0 -margin_bottom = 350.0 - -[node name="AddColumn" type="VBoxContainer" parent="Dialogs/Settings/TabContainer/Stages/PanelContainer/ScrollContainer/CenterContainer/ColumnHolder"] -margin_left = 222.0 -margin_right = 262.0 -margin_bottom = 148.0 - -[node name="Add" type="Button" parent="Dialogs/Settings/TabContainer/Stages/PanelContainer/ScrollContainer/CenterContainer/ColumnHolder/AddColumn"] -margin_right = 40.0 -margin_bottom = 104.0 -rect_min_size = Vector2( 40, 100 ) -focus_mode = 0 -size_flags_vertical = 3 - -[node name="Empty" type="Button" parent="Dialogs/Settings/TabContainer/Stages/PanelContainer/ScrollContainer/CenterContainer/ColumnHolder/AddColumn"] -self_modulate = Color( 1, 1, 1, 0 ) -margin_top = 108.0 -margin_right = 40.0 -margin_bottom = 148.0 -rect_min_size = Vector2( 40, 40 ) -text = "+" - -[node name="Warning" type="Control" parent="Dialogs/Settings/TabContainer/Stages/PanelContainer"] -margin_left = 7.0 -margin_top = 7.0 -margin_right = 944.0 -margin_bottom = 560.0 -mouse_filter = 2 - -[node name="WarningSign" type="Button" parent="Dialogs/Settings/TabContainer/Stages/PanelContainer/Warning"] -visible = false -anchor_left = 1.0 -anchor_right = 1.0 -margin_left = -12.0 -margin_bottom = 20.0 -grow_horizontal = 0 -hint_tooltip = "Adding to much stages can overflow the editor. - -Recommended maximum: 4*3" -focus_mode = 0 -flat = true - -[node name="ConfirmNotEmpty" type="ConfirmationDialog" parent="Dialogs"] -margin_left = 8.0 -margin_top = 8.0 -margin_right = 337.0 -margin_bottom = 124.0 -rect_min_size = Vector2( 250, 87.5 ) -window_title = "Delete Stage" - -[node name="VBoxContainer" type="VBoxContainer" parent="Dialogs/ConfirmNotEmpty"] -anchor_right = 1.0 -anchor_bottom = 1.0 -margin_left = 8.0 -margin_top = 8.0 -margin_right = -8.0 -margin_bottom = -36.0 - -[node name="Label" type="Label" parent="Dialogs/ConfirmNotEmpty/VBoxContainer"] -margin_right = 320.0 -margin_bottom = 48.0 -text = "You are deleting a stage which has tasks assigned. - -The tasks will be assigned to the following stage:" -align = 1 - -[node name="OptionButton" type="OptionButton" parent="Dialogs/ConfirmNotEmpty/VBoxContainer"] -margin_top = 52.0 -margin_right = 320.0 -margin_bottom = 72.0 -size_flags_horizontal = 3 - -[node name="ConfirmEmpty" type="ConfirmationDialog" parent="Dialogs"] -margin_left = 8.0 -margin_top = 8.0 -margin_right = 276.0 -margin_bottom = 96.0 -rect_min_size = Vector2( 250, 87.5 ) -window_title = "Delete Stage" -dialog_text = "Do you really want to delete this stage? -You can not undo this." diff --git a/addons/kanban_tasks/column.gd b/addons/kanban_tasks/column.gd deleted file mode 100644 index 5b6d692..0000000 --- a/addons/kanban_tasks/column.gd +++ /dev/null @@ -1,56 +0,0 @@ -# SPDX-FileCopyrightText: 2022-2023 HolonProduction -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/HolonProduction/godot_kanban_tasks - -tool -extends Control - - -var board - -# currently the array is filled with indexes in the init call -# but upon _ready objects get stored inside (when they where loaded) -# this behaviour results in the unusability of it before the _ready call -# this could be changed when/if godot supports parameters for -# .instance() like it works with .new() -var stages: Array - -onready var stage_holder := $VBoxContainer - -signal change() - -func init(board, stages): - self.board = board - - self.stages = stages - -func _ready(): - for s in stages.duplicate(): - add_stage(board.stages[s], true) - stages.erase(s) - -func add_stage(stage: Node, silent = false): - if stage.is_inside_tree(): - stage.get_owner().remove_stage(stage, silent) - stage_holder.add_child(stage) - stage.set_owner(self) - stages.append(stage) - if is_inside_tree() and not silent: - emit_signal("change") - -func serialize(): - var s = [] - for i in stages: - s.append(board.stage_index(i)) - var res = { - "stages": s - } - return res - -func remove_stage(stage: Node, silent = false): - stage_holder.remove_child(stage) - stages.erase(stage) - if is_inside_tree() and not silent: - emit_signal("change") diff --git a/addons/kanban_tasks/column.tscn b/addons/kanban_tasks/column.tscn deleted file mode 100644 index b80dd86..0000000 --- a/addons/kanban_tasks/column.tscn +++ /dev/null @@ -1,24 +0,0 @@ -; SPDX-FileCopyrightText: 2022-2023 HolonProduction -; -; SPDX-License-Identifier: MIT -; -; Source: https://github.com/HolonProduction/godot_kanban_tasks - -[gd_scene load_steps=2 format=2] - -[ext_resource path="res://addons/kanban_tasks/column.gd" type="Script" id=1] - -[node name="Column" type="ScrollContainer"] -margin_right = 40.0 -margin_bottom = 40.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 -scroll_horizontal_enabled = false -script = ExtResource( 1 ) - -[node name="VBoxContainer" type="VBoxContainer" parent="."] -margin_right = 40.0 -margin_bottom = 40.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 -custom_constants/separation = 5 diff --git a/addons/kanban_tasks/data.json b/addons/kanban_tasks/data.json deleted file mode 100644 index 5bf9e16..0000000 --- a/addons/kanban_tasks/data.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "settings": { - "show_details_preview": true - }, - "categories": [ - { - "title": "Task", - "color": "6b6b6d" - }, - { - "title": "Bug", - "color": "bb1c37" - }, - { - "title": "Feature", - "color": "3acc11" - } - ], - "columns": [ - { - "stages": [ - 0 - ] - }, - { - "stages": [ - 1 - ] - }, - { - "stages": [ - 2 - ] - } - ], - "stages": [ - { - "title": "Todo", - "tasks": [ - 0, - 4, - 5, - 6 - ] - }, - { - "title": "Doing", - "tasks": [ - 1, - 2, - 3 - ] - }, - { - "title": "Done", - "tasks": [ - - ] - } - ], - "tasks": [ - { - "category": 2, - "title": "Add a victory animation", - "details": "" - }, - { - "category": 0, - "title": "Allow mods", - "details": "" - }, - { - "category": 2, - "title": "Add more feedbacks", - "details": "\n\n" - }, - { - "category": 0, - "title": "Add packaging", - "details": "Snap/Flathub\n" - }, - { - "category": 1, - "title": "Fix mouse capture on web", - "details": "" - }, - { - "category": 1, - "title": "Fix bad performance on 4k screen", - "details": "" - }, - { - "category": 1, - "title": "Invisible marble (obstacles)", - "details": "" - } - ] -} diff --git a/addons/kanban_tasks/data.json.license b/addons/kanban_tasks/data.json.license deleted file mode 100644 index 7c9da40..0000000 --- a/addons/kanban_tasks/data.json.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2022-2023 HolonProduction -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/HolonProduction/godot_kanban_tasks diff --git a/addons/kanban_tasks/details_dialog.gd b/addons/kanban_tasks/details_dialog.gd deleted file mode 100644 index a789b76..0000000 --- a/addons/kanban_tasks/details_dialog.gd +++ /dev/null @@ -1,66 +0,0 @@ -# SPDX-FileCopyrightText: 2022-2023 HolonProduction -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/HolonProduction/godot_kanban_tasks - -tool -extends AcceptDialog -# The dialog in which the details of a task -# can be edited (detail string, category, i.e.) - -signal change() - -onready var board: Control = get_node("../../../VBoxContainer") - -var title: String -var details: String setget __set_details -var category - -onready var details_edit: TextEdit = $VBoxContainer/TextEdit -onready var category_option: OptionButton = $VBoxContainer/HBoxContainer/OptionButton - -func _ready(): - details_edit.connect("text_changed", self, "__on_details_edit_changed") - category_option.connect("item_selected", self, "__on_category_selected") - -func show_popup(title, details, category): - if visible: - hide() - - self.title = title - __set_details(details) - self.category = category - - category_option.clear() - - for c in len(board.categories): - var i = Image.new() - i.create(16, 16, false, Image.FORMAT_RGB8) - i.fill(board.categories[c].color) - var t = ImageTexture.new() - t.create_from_image(i) - category_option.add_icon_item(t, board.categories[c].title, c) - - category_option.select(board.category_index(category)) - - window_title = self.title - details_edit.text = self.details - - popup_centered() - -func __on_category_selected(index): - category = board.categories[index] - emit_signal("change") - -func __set_details(val): - details = val - if ( - is_instance_valid(details_edit) - and not details_edit.text == val - ): - details_edit.text = val - -func __on_details_edit_changed(): - __set_details(details_edit.text) - emit_signal("change") diff --git a/addons/kanban_tasks/documentation.gd b/addons/kanban_tasks/documentation.gd deleted file mode 100644 index 3d50caf..0000000 --- a/addons/kanban_tasks/documentation.gd +++ /dev/null @@ -1,16 +0,0 @@ -# SPDX-FileCopyrightText: 2022-2023 HolonProduction -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/HolonProduction/godot_kanban_tasks - -tool -extends AcceptDialog - -onready var label := $VBoxContainer/RichTextLabel - -func _ready(): - label.connect("meta_clicked", self, "__label_meta_clicked") - -func __label_meta_clicked(meta): - OS.shell_open(meta) diff --git a/addons/kanban_tasks/edit_label/edit_label.gd b/addons/kanban_tasks/edit_label/edit_label.gd deleted file mode 100644 index e6f23a5..0000000 --- a/addons/kanban_tasks/edit_label/edit_label.gd +++ /dev/null @@ -1,123 +0,0 @@ -# SPDX-FileCopyrightText: 2022-2023 HolonProduction -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/HolonProduction/godot_kanban_tasks - -tool -extends VBoxContainer - -enum INTENTION {REPLACE, ADDITION} - -var edit: LineEdit -var label: Label -var old_focus: Control = null - -export var text: String = "" setget set_text, get_text - -export(INTENTION) var default_intention := INTENTION.ADDITION -export var double_click := true - -signal text_changed(new_text) -signal text_entered(new_text) - -func set_text(value): - text = value - update_content() - emit_signal("text_changed", text) - -func get_text(): - return text - -func update_content(val=null): - if val is String: - text = val - if label: - label.text = text - if edit: - edit.text = text - -func _ready(): - self.alignment = BoxContainer.ALIGN_CENTER - self.mouse_filter = Control.MOUSE_FILTER_PASS - - label = Label.new() - label.size_flags_horizontal = SIZE_EXPAND_FILL - label.size_flags_vertical = SIZE_SHRINK_CENTER - label.mouse_filter = Control.MOUSE_FILTER_PASS - - #TODO forward to settings - label.autowrap = true - label.max_lines_visible = 2 - - label.connect("gui_input", self, "label_input") - add_child(label) - - edit = LineEdit.new() - edit.visible = false - edit.size_flags_horizontal = SIZE_EXPAND_FILL - edit.size_flags_vertical = SIZE_FILL - edit.connect("text_entered", self, "edit_text_entered") - edit.connect("gui_input", self, "edit_input") - add_child(edit) - - update_content() - -func label_input(event): - if event is InputEventMouseButton and event.is_pressed() and event.button_index==BUTTON_LEFT and (event.is_doubleclick() if double_click else true): - show_edit() - label.accept_event() - -func edit_input(event): - if event is InputEventKey and event.is_pressed() and event.is_action("ui_cancel"): - show_label(false) - -func edit_text_entered(_new): - update_content(edit.text) - show_label() - emit_signal("text_entered") - -func _input(event): - if (event is InputEventMouseButton) and event.pressed and edit.visible: - var local = edit.make_input_local(event) - if not Rect2(Vector2(0,0), edit.rect_size).has_point(local.position): - show_label() - -func show_edit(p_intention=null): - if edit.visible: - return - - if focus_mode == FOCUS_NONE: - old_focus = get_focus_owner() - - var intention = p_intention - if intention == null: - intention = default_intention - update_content() - label.visible = false - edit.visible = true - edit.grab_focus() - match intention: - INTENTION.ADDITION: - edit.caret_position = len(edit.text) - INTENTION.REPLACE: - edit.select_all() - -func show_label(apply_changes=true): - if label.visible: - return - - if apply_changes: - update_content(edit.text) - emit_signal("text_changed", text) - - if not is_instance_valid(old_focus): - if focus_mode == FOCUS_NONE: - edit.release_focus() - else: - grab_focus() - else: - old_focus.grab_focus() - - edit.visible = false - label.visible = true diff --git a/addons/kanban_tasks/plugin.cfg b/addons/kanban_tasks/plugin.cfg deleted file mode 100644 index 12eb24e..0000000 --- a/addons/kanban_tasks/plugin.cfg +++ /dev/null @@ -1,13 +0,0 @@ -; SPDX-FileCopyrightText: 2022-2023 HolonProduction -; -; SPDX-License-Identifier: MIT -; -; Source: https://github.com/HolonProduction/godot_kanban_tasks - -[plugin] - -name="Kanban Tasks - Todo Manager" -description="Another kanban board plugin for the godot engine." -author="HolonProduction" -version="1.1" -script="plugin.gd" diff --git a/addons/kanban_tasks/plugin.gd b/addons/kanban_tasks/plugin.gd deleted file mode 100644 index 66abd2c..0000000 --- a/addons/kanban_tasks/plugin.gd +++ /dev/null @@ -1,40 +0,0 @@ -# SPDX-FileCopyrightText: 2022-2023 HolonProduction -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/HolonProduction/godot_kanban_tasks - -tool -extends EditorPlugin - -const main_panel := preload("res://addons/kanban_tasks/board.tscn") -var main_panel_instance - -func _enter_tree(): - main_panel_instance = main_panel.instance() - # Add the main panel to the editor's main viewport. - get_editor_interface().get_editor_viewport().add_child(main_panel_instance) - # Hide the main panel. Very much required. - make_visible(false) - - -func _exit_tree(): - if main_panel_instance: - main_panel_instance.queue_free() - - -func has_main_screen(): - return true - - -func make_visible(visible): - if main_panel_instance: - main_panel_instance.visible = visible - - -func get_plugin_name(): - return "Tasks" - -func get_plugin_icon(): - # Must return some kind of Texture for the icon. - return get_editor_interface().get_base_control().get_icon("MultiEdit", "EditorIcons") diff --git a/addons/kanban_tasks/settings.gd b/addons/kanban_tasks/settings.gd deleted file mode 100644 index 0fe7c4f..0000000 --- a/addons/kanban_tasks/settings.gd +++ /dev/null @@ -1,346 +0,0 @@ -# SPDX-FileCopyrightText: 2022-2023 HolonProduction -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/HolonProduction/godot_kanban_tasks - -tool -extends AcceptDialog - - -const EditLabel = preload('./edit_label/edit_label.gd') - -onready var category_container: PanelContainer = $TabContainer/Categories/Categories -onready var stages_container: PanelContainer = $TabContainer/Stages/PanelContainer -onready var general_container: PanelContainer = $TabContainer/General/PanelContainer -onready var category_holder: VBoxContainer = $TabContainer/Categories/Categories/ScrollContainer/VBoxContainer -onready var category_add: Button = $TabContainer/Categories/Header/Add -onready var board = $'../../../VBoxContainer' - -onready var show_details_check_box: CheckBox = $TabContainer/General/PanelContainer/ScrollContainer/VBoxContainer/ShowDetails - -onready var column_holder: HBoxContainer = $TabContainer/Stages/PanelContainer/ScrollContainer/CenterContainer/ColumnHolder -onready var column_add: Button = $TabContainer/Stages/PanelContainer/ScrollContainer/CenterContainer/ColumnHolder/AddColumn/Add - -onready var warning_sign: Button = $TabContainer/Stages/PanelContainer/Warning/WarningSign - - -class StageEntry extends Control: - var board - var managed_stage - - var button: Button - var cent - - func _init(p_board, p_stage): - board = p_board - managed_stage = p_stage - - func _ready(): - button = Button.new() - button.set_anchors_preset(Control.PRESET_WIDE) - button.hint_tooltip = managed_stage.title - add_child(button) - - button.focus_mode = Control.FOCUS_NONE - set_v_size_flags(SIZE_EXPAND_FILL) - rect_min_size = Vector2(70, 50) - - cent = CenterContainer.new() - cent.set_anchors_preset(Control.PRESET_WIDE) - cent.mouse_filter = Control.MOUSE_FILTER_IGNORE - button.add_child(cent) - - var plus := TextureRect.new() - plus.mouse_filter = Control.MOUSE_FILTER_IGNORE - cent.add_child(plus) - button.connect("pressed", self, "__on_delete") - - board.connect("columns_changed", self, "__on_stages_changed") - board.connect("stages_changed", self, "__on_stages_changed") - - __on_stages_changed() - - func __on_stages_changed(): - button.disabled = len(board.columns) == 1 and len(board.stages) == 1 - - func __on_delete(): - get_parent().remove_stage(self) - - func _notification(what): - match(what): - NOTIFICATION_THEME_CHANGED: - if is_instance_valid(cent): - cent.get_child(0).texture = get_icon('Remove', 'EditorIcons') - button.add_stylebox_override('normal', get_stylebox('panel', 'TabContainer')) - button.add_stylebox_override('hover', get_stylebox('read_only', 'LineEdit')) - button.add_stylebox_override('pressed', get_stylebox('read_only', 'LineEdit')) - - -class ColumnEntry extends VBoxContainer: - var board - var managed_column - - var add: Button - - var confirm_not_empty: ConfirmationDialog - var confirm_not_empty_select: OptionButton - var confirm_empty: ConfirmationDialog - var confirm_empty_check: CheckBox - - func _init(p_board, p_column): - board = p_board - managed_column = p_column - - func _ready(): - confirm_not_empty = $"../../../../../../../../ConfirmNotEmpty" - confirm_not_empty_select = $"../../../../../../../../ConfirmNotEmpty/VBoxContainer/OptionButton" - confirm_empty = $"../../../../../../../../ConfirmEmpty" - confirm_empty_check = $"../../../../../../../TabContainer/Stages/Header/CheckBox" - - add = Button.new() - add.rect_min_size = Vector2(70, 40) - add_child(add) - - var cent = CenterContainer.new() - cent.set_anchors_preset(Control.PRESET_WIDE) - cent.mouse_filter = Control.MOUSE_FILTER_IGNORE - add.add_child(cent) - add.focus_mode = Control.FOCUS_NONE - - add.connect("pressed", self, "__on_add_stage") - - var plus := TextureRect.new() - plus.mouse_filter = Control.MOUSE_FILTER_IGNORE - cent.add_child(plus) - - if len(managed_column.stages) == 0: - __on_add_stage(null) - else: - for stage in managed_column.stages: - __on_add_stage(stage) - - func remove_stage(stage): - if len(stage.managed_stage.tasks) == 0: - if confirm_empty_check.pressed: - if confirm_empty.is_connected("confirmed", self, "__on_remove_stage_confirmed"): - confirm_empty.disconnect("confirmed", self, "__on_remove_stage_confirmed") - confirm_empty.connect("confirmed", self, "__on_remove_stage_confirmed", [stage], CONNECT_ONESHOT) - confirm_empty.popup_centered() - else: - __on_remove_stage_confirmed(stage) - else: - confirm_not_empty_select.clear() - for i in board.stages: - if i != stage.managed_stage: - confirm_not_empty_select.add_item(i.title, board.stage_index(i)) - - if confirm_not_empty.is_connected("confirmed", self, "__on_move_tasks_confirmed"): - confirm_not_empty.disconnect("confirmed", self, "__on_move_tasks_confirmed") - confirm_not_empty.connect("confirmed", self, "__on_move_tasks_confirmed", [stage], CONNECT_ONESHOT) - - confirm_not_empty.popup_centered() - - func __on_move_tasks_confirmed(stage): - var target = board.stages[confirm_not_empty_select.get_item_id(confirm_not_empty_select.selected)] - for i in stage.managed_stage.tasks.duplicate(): - target.add_task(i) - __on_remove_stage_confirmed(stage) - - func __on_remove_stage_confirmed(stage): - board.delete_stage(stage.managed_stage) - if get_child_count() <= 2: - queue_free() - board.delete_column(managed_column) - else: - stage.queue_free() - - func __on_add_stage(st = null): - if st == null: - st = board.construct_stage("New Stage") - managed_column.add_stage(st) - - var stage = StageEntry.new(board, st) - add_child(stage) - move_child(add, get_child_count()-1) - - func _notification(what): - match(what): - NOTIFICATION_THEME_CHANGED: - if is_instance_valid(add): - add.get_child(0).get_child(0).texture = get_icon('Add', 'EditorIcons') - add.add_stylebox_override('normal', get_stylebox('panel', 'TabContainer')) - add.add_stylebox_override('hover', get_stylebox('read_only', 'LineEdit')) - add.add_stylebox_override('pressed', get_stylebox('read_only', 'LineEdit')) - - -class CategoryEntry extends HBoxContainer: - var title - var delete: Button - var color_picker: ColorPickerButton - var managed_category - var board - var focus_box: StyleBoxFlat - - func _init(p_board, p_category): - board = p_board - managed_category = p_category - - func _ready(): - set_h_size_flags(SIZE_EXPAND_FILL) - focus_mode = FOCUS_ALL - - title = EditLabel.new() - title.set_h_size_flags(SIZE_EXPAND_FILL) - title.text = managed_category.title - title.connect("text_changed", managed_category, "set_title") - add_child(title) - - color_picker = ColorPickerButton.new() - color_picker.rect_min_size.x = 100 - color_picker.edit_alpha = false - color_picker.color = managed_category.color - color_picker.connect("color_changed", managed_category, "set_color") - color_picker.focus_mode = Control.FOCUS_NONE - color_picker.flat = true - add_child(color_picker) - - delete = Button.new() - delete.connect("pressed", self, "__on_delete") - delete.focus_mode = FOCUS_NONE - delete.flat = true - add_child(delete) - - focus_box = StyleBoxFlat.new() - focus_box.bg_color = Color(1, 1, 1, 0.1) - - board.connect("categories_changed", self, "__on_categories_changed") - - __on_categories_changed() - - func _exit_tree(): - board.disconnect("categories_changed", self, "__on_categories_changed") - - func _unhandled_key_input(event): - if not board.can_handle_shortcut(self): - return - - if not event.is_echo() and event.is_pressed(): - if board.shortcut_rename.is_shortcut(event): - title.show_edit() - - func _notification(what): - match(what): - NOTIFICATION_THEME_CHANGED: - if is_instance_valid(delete): - delete.icon = get_icon('Remove', 'EditorIcons') - NOTIFICATION_DRAW: - if has_focus(): - focus_box.draw(get_canvas_item(), Rect2(Vector2.ZERO, get_rect().size)) - - func show_edit(intention=null): - title.show_edit(intention) - - func __on_categories_changed(): - delete.disabled = board.category_index(managed_category, true) == 0 - - func __on_delete(): - if board.category_index(managed_category) != 0: - for b in board.tasks: - if b.category == managed_category: - b.category = board.categories[0] - board.delete_category(managed_category) - queue_free() - - -func _ready(): - category_add.connect("pressed", self, "__on_add_category") - column_add.connect("pressed", self, "__on_add_column") - board.connect("stages_changed", self, "__on_stages_changed") - board.connect("columns_changed", self, "__on_stages_changed") - board.connect("settings_changed", self, "__on_settings_changed") - - show_details_check_box.pressed = board.show_details_preview - show_details_check_box.connect('pressed', self, '__on_change_show_details') - - column_add.focus_mode = Control.FOCUS_NONE - - var cent = CenterContainer.new() - cent.set_anchors_preset(Control.PRESET_WIDE) - cent.mouse_filter = Control.MOUSE_FILTER_IGNORE - column_add.add_child(cent) - - var plus := TextureRect.new() - plus.mouse_filter = Control.MOUSE_FILTER_IGNORE - cent.add_child(plus) - - yield(board, 'ready') - for category in board.categories: - category_holder.add_child(CategoryEntry.new(board, category)) - - for column in board.columns: - __on_add_column(column) - -func __on_settings_changed(): - show_details_check_box.pressed = board.show_details_preview - -func _notification(what): - match(what): - NOTIFICATION_THEME_CHANGED: - if is_instance_valid(category_container): - category_container.add_stylebox_override('panel', get_stylebox('bg', 'Tree')) - if is_instance_valid(category_add): - category_add.icon = get_icon('Add', 'EditorIcons') - if is_instance_valid(stages_container): - stages_container.add_stylebox_override('panel', get_stylebox('bg', 'Tree')) - if is_instance_valid(general_container): - general_container.add_stylebox_override('panel', get_stylebox('bg', 'Tree')) - if is_instance_valid(column_add): - column_add.get_child(0).get_child(0).texture = get_icon('Add', 'EditorIcons') - column_add.add_stylebox_override('normal', get_stylebox('panel', 'TabContainer')) - column_add.add_stylebox_override('hover', get_stylebox('read_only', 'LineEdit')) - column_add.add_stylebox_override('pressed', get_stylebox('read_only', 'LineEdit')) - if is_instance_valid(warning_sign): - warning_sign.icon = get_icon('NodeWarning', 'EditorIcons') - - -func __on_change_show_details(): - board.show_details_preview = show_details_check_box.pressed - - -func __on_add_column(column = null): - if column == null: - column = board.construct_column() - board.column_holder.add_child(column) - - var ent = ColumnEntry.new(board, column) - column.connect("change", self, "__on_stages_changed") - column.connect("tree_exiting", self, "__on_column_remove", [column]) - column_holder.add_child(ent) - column_holder.move_child(ent, column_holder.get_child_count()-2) - -func __on_column_remove(column): - column.disconnect("change", self, "__on_stages_changed") - -func __on_add_category(): - var randomizer = RandomNumberGenerator.new() - randomizer.randomize() - var color = Color.from_hsv(randomizer.randf(), randomizer.randf_range(0.8, 1.0), randomizer.randf_range(0.7, 1.0)) - - var cat = board.construct_category("New Category", color) - - var ent = CategoryEntry.new(board, cat) - category_holder.add_child(ent) - - yield(get_tree().create_timer(0.0), "timeout") - ent.grab_focus() - ent.show_edit(preload("./edit_label/edit_label.gd").INTENTION.REPLACE) - -func __on_stages_changed(): - var to_high = false - - for column in board.columns: - if len(column.stages) > 3: - to_high = true - - warning_sign.visible = to_high or len(board.columns) > 4 diff --git a/addons/kanban_tasks/stage.gd b/addons/kanban_tasks/stage.gd deleted file mode 100644 index 325e8e9..0000000 --- a/addons/kanban_tasks/stage.gd +++ /dev/null @@ -1,252 +0,0 @@ -# SPDX-FileCopyrightText: 2022-2023 HolonProduction -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/HolonProduction/godot_kanban_tasks - -tool -extends Control - -const task_script := preload("res://addons/kanban_tasks/task.gd") - -const edit_label_script := preload("res://addons/kanban_tasks/edit_label/edit_label.gd") - -onready var panel_container := $PanelContainer -onready var label_title := $PanelContainer/VBoxContainer/HBoxContainer/Title -onready var button_new := $PanelContainer/VBoxContainer/HBoxContainer/New -onready var menu_button_new := $PanelContainer/VBoxContainer/HBoxContainer/NewCategory -onready var task_holder := $PanelContainer/VBoxContainer/ScrollContainer/MarginContainer/TaskHolder -onready var scroll_container := $PanelContainer/VBoxContainer/ScrollContainer - -onready var preview_position := $PanelContainer/VBoxContainer/ScrollContainer/MarginContainer/PreviewHolder/PreviewPosition -onready var preview_color := $PanelContainer/VBoxContainer/ScrollContainer/MarginContainer/PreviewHolder/PreviewPosition/ColorRect - -var board - -var title: String setget set_title - -# currently the array is filled with indexes in the init call -# but upon _ready objects get stored inside (when they where loaded) -# this behaviour results in the unusability of it before the _ready call -# this could be changed when/if godot supports parameters for -# .instance() like it works with .new() -var tasks: Array - -signal change() - -func set_title(val): - title = val - if label_title and not label_title.text==val: - label_title.text = val - - if is_inside_tree(): - emit_signal("change") - -func init(board, title, tasks): - self.board = board - - self.title = title - self.tasks = tasks - -func _ready(): - label_title.text = title - label_title.connect("text_changed", self, "set_title") - - scroll_container.set_drag_forwarding(self) - button_new.connect("pressed", self, "__on_add_button_pressed") - - menu_button_new.connect("about_to_show", self, "__on_popup_about_to_show") - menu_button_new.get_popup().connect("id_pressed", self, "__on_category_popup_selected") - - board.connect("categories_changed", self, "__update_add_buttons") - - for t in tasks.duplicate(): - add_task(board.tasks[t], true) - tasks.erase(t) - - __update_add_buttons() - - notification(NOTIFICATION_THEME_CHANGED) - -#func mouse_exited(): - #if not Rect2(Vector2(), rect_size).has_point(get_local_mouse_position()): -# update() - -func _input(event): - if event is InputEventMouseMotion: - if not Rect2(Vector2(), rect_size).has_point(get_local_mouse_position()): - preview_position.visible = false - -func remove_task(task, silent = false): - task.set_drag_forwarding(null) - task_holder.remove_child(task) - tasks.erase(task) - if is_inside_tree() and not silent: - emit_signal("change") - -func add_task(task, silent=false): - if task.is_inside_tree(): - task.get_owner().remove_task(task, silent) - task_holder.add_child(task) - task.set_owner(self) - task.set_drag_forwarding(self) - tasks.append(task) - - if is_inside_tree() and not silent: - emit_signal("change") - -func __update_add_buttons(): - if len(board.categories)<=1: - button_new.visible = true - menu_button_new.visible = false - else: - menu_button_new.visible = true - button_new.visible = false - -func serialize(): - var t = [] - for i in tasks: - t.append(board.task_index(i)) - var res = { - "title": title, - "tasks": t - } - return res - -func __on_add_button_pressed(): - new_task() - -func new_task(category_index=0): - var task = board.construct_task() - task.set_category(board.categories[category_index]) - add_task(task) - - board.reset_filter() - - yield(get_tree().create_timer(0.0), "timeout") - task.grab_focus() - task.show_edit(edit_label_script.INTENTION.REPLACE) - -func _unhandled_key_input(event): - if not board.can_handle_shortcut(self): - return - - if not event.is_echo() and event.is_pressed(): - if board.shortcut_new.is_shortcut(event): - get_tree().set_input_as_handled() - - #if menu_button_new.visible: - __on_popup_about_to_show() - menu_button_new.get_popup().rect_position = get_global_mouse_position() - menu_button_new.get_popup().popup() - #else: - # new_task() - - elif board.shortcut_rename.is_shortcut(event): - get_tree().set_input_as_handled() - label_title.show_edit() - -func can_drop_data_fw(position, data, from): - var local_pos = (position + from.get_global_rect().position) - get_global_rect().position - return can_drop_data(local_pos, data) -func get_drag_data_fw(position, from_control): - if from_control is task_script: - return from_control.get_drag_data(position) - return null -func drop_data_fw(position, data, from): - var local_pos = (position + from.get_global_rect().position) - get_global_rect().position - return drop_data(local_pos, data) - -func can_drop_data(position, data): - preview_position.visible = true - - preview_position.rect_position.y = target_height_from_position(position) - - if data is task_script: - return true - return false -func drop_data(position, data): - var index = target_index_from_position(position) - preview_position.visible = false - if not data in tasks: - add_task(data) - - move_task(tasks.find_last(data), index) - - data.grab_focus() - -func move_task(from: int, to: int, silent=false): - if from < to: - task_holder.move_child(tasks[from], to-1) - else: - task_holder.move_child(tasks[from], to) - - #HACK proper moving should be implemented - tasks = task_holder.get_children() - - if is_inside_tree() and not silent: - emit_signal("change") - -func target_index_from_position(pos: Vector2): - var global_pos = pos + get_global_position() - - if not scroll_container.get_global_rect().has_point(global_pos): - return 0 - - var scroll_pos = global_pos - task_holder.get_global_position() - var c = 0 - for i in tasks: - var y = i.rect_position.y + i.rect_size.y/2 - if scroll_pos.y < y: - return c - c += 1 - - return len(tasks) - -func target_height_from_position(pos: Vector2): - var global_pos = pos + get_global_position() - - if not scroll_container.get_global_rect().has_point(global_pos): - return - float(task_holder.get_constant('separation')) / 2.0 - - var scroll_pos = global_pos - task_holder.get_global_position() - var c = 0.0 - for i in tasks: - var y = i.rect_position.y + i.rect_size.y/2.0 - if scroll_pos.y < y: - return c - float(task_holder.get_constant('separation')) / 2.0 - c += i.rect_size.y + task_holder.get_constant('separation') - - return c - -func _notification(what): - match(what): - NOTIFICATION_THEME_CHANGED: - if is_instance_valid(panel_container): - panel_container.add_stylebox_override("panel", get_stylebox("bg", "Tree")) - if is_instance_valid(button_new): - button_new.icon = get_icon("Add", "EditorIcons") - if is_instance_valid(preview_color): - preview_color.color = get_color("font_color_fg", "Tabs") - if is_instance_valid(menu_button_new): - menu_button_new.icon = get_icon("Add", "EditorIcons") - menu_button_new.add_stylebox_override("normal", get_stylebox("normal", "Button")) - menu_button_new.add_stylebox_override("disabled", get_stylebox("disabled", "Button")) - menu_button_new.add_stylebox_override("focus", get_stylebox("focus", "Button")) - menu_button_new.add_stylebox_override("pressed", get_stylebox("pressed", "Button")) - menu_button_new.add_stylebox_override("hover", get_stylebox("hover", "Button")) - -func __on_category_popup_selected(id): - new_task(id) - -func __on_popup_about_to_show(): - var menu: PopupMenu = menu_button_new.get_popup() - menu.clear() - menu.rect_size = Vector2.ZERO - for c in len(board.categories): - var i = Image.new() - i.create(16, 16, false, Image.FORMAT_RGB8) - i.fill(board.categories[c].color) - var t = ImageTexture.new() - t.create_from_image(i) - menu.add_icon_item(t, board.categories[c].title, c) diff --git a/addons/kanban_tasks/stage.tscn b/addons/kanban_tasks/stage.tscn deleted file mode 100644 index de0cc52..0000000 --- a/addons/kanban_tasks/stage.tscn +++ /dev/null @@ -1,143 +0,0 @@ -; SPDX-FileCopyrightText: 2022-2023 HolonProduction -; -; SPDX-License-Identifier: MIT -; -; Source: https://github.com/HolonProduction/godot_kanban_tasks - -[gd_scene load_steps=3 format=2] - -[ext_resource path="res://addons/kanban_tasks/stage.gd" type="Script" id=1] -[ext_resource path="res://addons/kanban_tasks/edit_label/edit_label.gd" type="Script" id=2] - -[node name="Stage" type="MarginContainer"] -margin_right = 300.0 -margin_bottom = 37.0 -rect_min_size = Vector2( 200, 200 ) -focus_mode = 1 -size_flags_horizontal = 3 -size_flags_vertical = 3 -custom_constants/margin_right = 0 -custom_constants/margin_top = 0 -custom_constants/margin_left = 0 -custom_constants/margin_bottom = 0 -script = ExtResource( 1 ) - -[node name="PanelContainer" type="PanelContainer" parent="."] -margin_right = 300.0 -margin_bottom = 200.0 -mouse_filter = 2 -size_flags_horizontal = 3 -size_flags_vertical = 3 - -[node name="VBoxContainer" type="VBoxContainer" parent="PanelContainer"] -margin_left = 7.0 -margin_top = 7.0 -margin_right = 293.0 -margin_bottom = 193.0 -mouse_filter = 2 -custom_constants/separation = 5 - -[node name="HBoxContainer" type="HBoxContainer" parent="PanelContainer/VBoxContainer"] -margin_right = 286.0 -margin_bottom = 20.0 -mouse_filter = 2 -custom_constants/separation = 0 - -[node name="Title" type="VBoxContainer" parent="PanelContainer/VBoxContainer/HBoxContainer"] -margin_right = 274.0 -margin_bottom = 20.0 -size_flags_horizontal = 3 -size_flags_vertical = 5 -alignment = 1 -script = ExtResource( 2 ) -default_intention = 0 - -[node name="Title2" type="Label" parent="PanelContainer/VBoxContainer/HBoxContainer"] -visible = false -margin_left = 126.0 -margin_top = 1.0 -margin_right = 252.0 -margin_bottom = 23.0 -size_flags_horizontal = 3 - -[node name="New" type="Button" parent="PanelContainer/VBoxContainer/HBoxContainer"] -margin_left = 274.0 -margin_right = 286.0 -margin_bottom = 20.0 -hint_tooltip = "Add task." -focus_mode = 0 - -[node name="NewCategory" type="MenuButton" parent="PanelContainer/VBoxContainer/HBoxContainer"] -visible = false -margin_left = 280.0 -margin_right = 292.0 -margin_bottom = 24.0 -flat = false - -[node name="HSeparator" type="HSeparator" parent="PanelContainer/VBoxContainer"] -margin_top = 25.0 -margin_right = 286.0 -margin_bottom = 25.0 -mouse_filter = 2 -custom_constants/separation = 0 - -[node name="ScrollContainer" type="ScrollContainer" parent="PanelContainer/VBoxContainer"] -margin_top = 30.0 -margin_right = 286.0 -margin_bottom = 186.0 -mouse_filter = 1 -size_flags_horizontal = 3 -size_flags_vertical = 3 -follow_focus = true -scroll_horizontal_enabled = false - -[node name="MarginContainer" type="MarginContainer" parent="PanelContainer/VBoxContainer/ScrollContainer"] -margin_right = 286.0 -margin_bottom = 10.0 -mouse_filter = 2 -size_flags_horizontal = 3 -custom_constants/margin_right = 5 -custom_constants/margin_top = 5 -custom_constants/margin_left = 5 -custom_constants/margin_bottom = 5 - -[node name="TaskHolder" type="VBoxContainer" parent="PanelContainer/VBoxContainer/ScrollContainer/MarginContainer"] -margin_left = 5.0 -margin_top = 5.0 -margin_right = 281.0 -margin_bottom = 5.0 -mouse_filter = 2 -size_flags_horizontal = 3 -custom_constants/separation = 5 - -[node name="PreviewHolder" type="Control" parent="PanelContainer/VBoxContainer/ScrollContainer/MarginContainer"] -margin_left = 5.0 -margin_top = 5.0 -margin_right = 281.0 -margin_bottom = 5.0 -mouse_filter = 2 -size_flags_horizontal = 3 -size_flags_vertical = 0 - -[node name="PreviewPosition" type="Control" parent="PanelContainer/VBoxContainer/ScrollContainer/MarginContainer/PreviewHolder"] -visible = false -anchor_top = 0.5 -anchor_right = 1.0 -anchor_bottom = 0.5 -size_flags_horizontal = 0 -size_flags_vertical = 0 -__meta__ = { -"_edit_use_anchors_": false -} - -[node name="ColorRect" type="ColorRect" parent="PanelContainer/VBoxContainer/ScrollContainer/MarginContainer/PreviewHolder/PreviewPosition"] -anchor_top = 0.5 -anchor_right = 1.0 -anchor_bottom = 0.5 -grow_vertical = 2 -rect_min_size = Vector2( 0, 1 ) -mouse_filter = 2 -color = Color( 0.8, 0.8075, 0.8275, 1 ) -__meta__ = { -"_edit_use_anchors_": false -} diff --git a/addons/kanban_tasks/task.gd b/addons/kanban_tasks/task.gd deleted file mode 100644 index ebb2c88..0000000 --- a/addons/kanban_tasks/task.gd +++ /dev/null @@ -1,253 +0,0 @@ -# SPDX-FileCopyrightText: 2022-2023 HolonProduction -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/HolonProduction/godot_kanban_tasks - -tool -extends Control - -const color_width := 8 - -onready var panel_container := $PanelContainer -onready var title_label := $PanelContainer/HBoxContainer/MarginContainer/VBoxContainer/Title -onready var details_label := $PanelContainer/HBoxContainer/MarginContainer/VBoxContainer/Details -onready var edit_button := $PanelContainer/HBoxContainer/EditButton -onready var context_menu := $ContextMenu - -signal change() - -var style_box_focus: StyleBoxFlat -var style_box_panel: StyleBoxFlat - -var board - -var title: String setget set_title -var details: String setget set_details -var category setget set_category - -func set_category(val): - if is_instance_valid(category): - category.disconnect("changed", self, "update") - category = val - category.connect("changed", self, "update") - update() - -func copy(): - var t = board.construct_task(title, details, category) - return t - -func set_title(val): - title = val - if title_label and not title_label.text==val: - title_label.text = val - - if is_inside_tree(): - emit_signal("change") - -func set_details(val): - details = val - if is_instance_valid(details_label): - details_label.visible = board.show_details_preview and not details.strip_edges().empty() - details_label.text = details - - if is_inside_tree(): - emit_signal("change") - -# forward to title_label -func show_edit(intention): - title_label.show_edit(intention) - -func init(board, title, details, category): - self.board = board - - self.title = title - self.details = details - self.category = category - -func serialize(): - var res = { - "category": board.category_index(category), - "title": title, - "details": details - } - return res - -func apply_filter(filter: String, descriptions: bool): - if filter.empty(): - visible = true - return - - var title_simple := __simplify_string(title) - var details_simple := __simplify_string(details) - var filter_simple := __simplify_string(filter) - - if ( - title_simple.matchn("*"+filter_simple+"*") - or - (details_simple.matchn("*"+filter_simple+"*") - and descriptions) - ): - visible = true - else: - visible = false - -func __simplify_string(string: String) -> String: - return string.replace(" ", "").replace("\t", "") - -func show_details(): - var d = board.get_details_dialog() - d.show_popup(title, details, category) - d.connect("change", self, "details_changed") - d.connect("popup_hide", self, "details_hidden", [], CONNECT_ONESHOT) - -func details_changed(): - var d = board.get_details_dialog() - set_title(d.title) - set_details(d.details) - set_category(d.category) - emit_signal("change") - -func details_hidden(): - var d = board.get_details_dialog() - d.disconnect("change", self, "details_changed") - -func edit_label_entered(): - grab_focus() - -func _ready(): - title_label.text = title - title_label.connect("text_changed", self, "set_title") - title_label.connect("text_entered", self, "edit_label_entered") - - details_label.visible = board.show_details_preview and not details.strip_edges().empty() - details_label.text = details - - edit_button.connect("pressed", self, "show_details") - - board.connect("settings_changed", self, "__on_settings_changed") - - context_menu.connect("id_pressed", self, "action") - - style_box_focus = StyleBoxFlat.new() - style_box_focus.set_border_width_all(1) - style_box_focus.draw_center = false - style_box_focus.border_color = category.color - - style_box_panel = StyleBoxFlat.new() - style_box_panel.set_border_width_all(0) - style_box_panel.border_width_left = color_width - style_box_panel.border_color = category.color - style_box_panel.draw_center = false - panel_container.add_stylebox_override("panel", style_box_panel) - - #notification(NOTIFICATION_THEME_CHANGED) - update() - propagate_notification(NOTIFICATION_THEME_CHANGED) - -func __on_settings_changed(): - details_label.visible = board.show_details_preview and not details.strip_edges().empty() - details_label.text = details - -#func get_tooltip(at: Vector2 = Vector2.ZERO): -# return category.title+": "+title -func update(): - hint_tooltip = category.title+": "+title - - if is_instance_valid(style_box_focus): - style_box_focus.border_color = category.color - if is_instance_valid(style_box_panel): - style_box_panel.border_color = category.color - -func _gui_input(event): - if event is InputEventMouseButton and event.button_index == BUTTON_RIGHT: - accept_event() - __update_context_menu() - context_menu.rect_position = get_global_mouse_position() - context_menu.popup() - - if event is InputEventMouseButton and event.button_index == BUTTON_LEFT and event.is_pressed() and event.is_doubleclick(): - action(ACTIONS.DETAILS) - -func _unhandled_key_input(event): - if not board.can_handle_shortcut(self): - return - if not event.is_echo() and event.is_pressed(): - if board.shortcut_delete.is_shortcut(event): - get_tree().set_input_as_handled() - action(ACTIONS.DELETE) - elif board.shortcut_rename.is_shortcut(event): - get_tree().set_input_as_handled() - action(ACTIONS.RENAME) - elif board.shortcut_confirm.is_shortcut(event): - get_tree().set_input_as_handled() - action(ACTIONS.DETAILS) - elif board.shortcut_duplicate.is_shortcut(event): - get_tree().set_input_as_handled() - action(ACTIONS.DUPLICATE) - -func get_drag_data(position): - var control = Control.new() - var rect = ColorRect.new() - control.add_child(rect) - rect.rect_size = get_rect().size - rect.rect_position = -position - rect.color = category.color - set_drag_preview(control) - return self - -enum ACTIONS { - DETAILS, - RENAME, - DELETE, - DUPLICATE -} - -func __update_context_menu(): - context_menu.clear() - context_menu.add_item("Details", ACTIONS.DETAILS) - - context_menu.add_separator() - - context_menu.add_icon_item(get_icon("Rename", "EditorIcons"), "Rename", ACTIONS.RENAME) - context_menu.set_item_shortcut(context_menu.get_item_index(ACTIONS.RENAME), board.shortcut_rename) - - context_menu.add_icon_item(get_icon("Duplicate", "EditorIcons"), "Duplicate", ACTIONS.DUPLICATE) - context_menu.set_item_shortcut(context_menu.get_item_index(ACTIONS.DUPLICATE), board.shortcut_duplicate) - - context_menu.add_icon_item(get_icon("Remove", "EditorIcons"), "Delete", ACTIONS.DELETE) - context_menu.set_item_shortcut(context_menu.get_item_index(ACTIONS.DELETE), board.shortcut_delete) - -func action(action): - match(action): - ACTIONS.DELETE: - board.delete_task(self) - emit_signal("change") - ACTIONS.DETAILS: - show_details() - ACTIONS.DUPLICATE: - var n = copy() - get_owner().add_task(n) - get_owner().move_task(len(get_owner().tasks)-1, get_owner().tasks.find(self)+1) - yield(get_tree().create_timer(0.0), "timeout") - n.grab_focus() - ACTIONS.RENAME: - if context_menu.visible: - yield(context_menu, "popup_hide") - title_label.show_edit() - -func _notification(what): - match(what): - NOTIFICATION_THEME_CHANGED: - if panel_container: - var tab_panel = get_stylebox("panel", "TabContainer") - if tab_panel is StyleBoxFlat: - style_box_panel.bg_color = tab_panel.bg_color - style_box_panel.draw_center = true - else: - style_box_panel.draw_center = false - if edit_button: - edit_button.icon = get_icon("Edit", "EditorIcons") - NOTIFICATION_DRAW: - if has_focus(): - style_box_focus.draw(get_canvas_item(), Rect2(panel_container.get_global_rect().position-get_global_rect().position, panel_container.rect_size)) diff --git a/addons/kanban_tasks/task.tscn b/addons/kanban_tasks/task.tscn deleted file mode 100644 index dcb268c..0000000 --- a/addons/kanban_tasks/task.tscn +++ /dev/null @@ -1,90 +0,0 @@ -; SPDX-FileCopyrightText: 2022-2023 HolonProduction -; -; SPDX-License-Identifier: MIT -; -; Source: https://github.com/HolonProduction/godot_kanban_tasks - -[gd_scene load_steps=4 format=2] - -[ext_resource path="res://addons/kanban_tasks/task.gd" type="Script" id=1] -[ext_resource path="res://addons/kanban_tasks/edit_label/edit_label.gd" type="Script" id=2] - -[sub_resource type="StyleBoxFlat" id=500] -bg_color = Color( 0.2, 0.23, 0.31, 1 ) -border_width_left = 8 -border_color = Color( 0.39, 0.58, 0.93, 1 ) - -[node name="Task" type="MarginContainer"] -margin_right = 40.0 -margin_bottom = 40.0 -rect_min_size = Vector2( 150, 0 ) -focus_mode = 2 -size_flags_horizontal = 3 -script = ExtResource( 1 ) - -[node name="PanelContainer" type="PanelContainer" parent="."] -show_behind_parent = true -margin_right = 150.0 -margin_bottom = 50.0 -rect_min_size = Vector2( 0, 50 ) -mouse_filter = 2 -size_flags_horizontal = 3 -size_flags_vertical = 3 -custom_styles/panel = SubResource( 500 ) - -[node name="HBoxContainer" type="HBoxContainer" parent="PanelContainer"] -margin_left = 8.0 -margin_right = 150.0 -margin_bottom = 50.0 -mouse_filter = 2 -size_flags_horizontal = 3 -size_flags_vertical = 3 -custom_constants/separation = 0 - -[node name="MarginContainer" type="MarginContainer" parent="PanelContainer/HBoxContainer"] -margin_right = 130.0 -margin_bottom = 50.0 -mouse_filter = 2 -size_flags_horizontal = 3 -size_flags_vertical = 3 -custom_constants/margin_right = 0 -custom_constants/margin_top = 5 -custom_constants/margin_left = 5 -custom_constants/margin_bottom = 5 - -[node name="VBoxContainer" type="VBoxContainer" parent="PanelContainer/HBoxContainer/MarginContainer"] -margin_left = 5.0 -margin_top = 5.0 -margin_right = 130.0 -margin_bottom = 45.0 -custom_constants/separation = -8 -alignment = 1 - -[node name="Title" type="VBoxContainer" parent="PanelContainer/HBoxContainer/MarginContainer/VBoxContainer"] -margin_top = 10.0 -margin_right = 125.0 -margin_bottom = 24.0 -custom_constants/separation = 0 -alignment = 1 -script = ExtResource( 2 ) - -[node name="Details" type="Label" parent="PanelContainer/HBoxContainer/MarginContainer/VBoxContainer"] -modulate = Color( 1, 1, 1, 0.443137 ) -margin_top = 16.0 -margin_right = 125.0 -margin_bottom = 30.0 -size_flags_horizontal = 3 -clip_text = true -max_lines_visible = 1 - -[node name="EditButton" type="Button" parent="PanelContainer/HBoxContainer"] -margin_left = 130.0 -margin_right = 142.0 -margin_bottom = 50.0 -hint_tooltip = "Edit task details." -focus_mode = 0 -flat = true - -[node name="ContextMenu" type="PopupMenu" parent="."] -margin_right = 150.0 -margin_bottom = 50.0 diff --git a/addons/lod/lod_cpu_particles.gd b/addons/lod/lod_cpu_particles.gd deleted file mode 100644 index 29f2e49..0000000 --- a/addons/lod/lod_cpu_particles.gd +++ /dev/null @@ -1,63 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/godot-extended-libraries/godot-lod - -extends CPUParticles -class_name LODCPUParticles, "lod_cpu_particles.svg" - -# If `false`, LOD won't update anymore. This can be used for performance comparison -# purposes. -export var enable_lod := true - -# The maximum particle emitting distance in units. Past this distance, particles will no longer emit. -export(float, 0.0, 1000.0, 0.1) var max_emit_distance := 50 - -# The rate at which LODs will be updated (in seconds). Lower values are more reactive -# but use more CPU, which is especially noticeable with large amounts of LOD-enabled nodes. -# Set this accordingly depending on your camera movement speed. -# The default value should suit most projects already. -# Note: Slow cameras don't need to have LOD-enabled objects update their status often. -# This can overridden by setting the project setting `lod/refresh_rate`. -var refresh_rate := 0.25 - -# The LOD bias in units. -# Positive values will decrease the detail level and improve performance. -# Negative values will improve visual appearance at the cost of performance. -# This can overridden by setting the project setting `lod/bias`. -var lod_bias := 0.0 - -# The internal refresh timer. -var timer := 0.0 - - -func _ready() -> void: - if ProjectSettings.has_setting("lod/particle_bias"): - lod_bias = ProjectSettings.get_setting("lod/particle_bias") - if ProjectSettings.has_setting("lod/refresh_rate"): - refresh_rate = ProjectSettings.get_setting("lod/refresh_rate") - - # Add random jitter to the timer to ensure LODs don't all swap at the same time. - randomize() - timer += rand_range(0, refresh_rate) - -# Despite LOD not being related to physics, we chose to run in `_physics_process()` -# to minimize the amount of method calls per second (and therefore decrease CPU usage). -func _physics_process(delta: float) -> void: - if not enable_lod: - return - - # We need a camera to do the rest. - var camera := get_viewport().get_camera() - if camera == null: - return - - if timer <= refresh_rate: - timer += delta - return - - timer = 0.0 - - var distance := camera.global_transform.origin.distance_to(global_transform.origin) + lod_bias - emitting = distance < max_emit_distance diff --git a/addons/lod/lod_cpu_particles.svg b/addons/lod/lod_cpu_particles.svg deleted file mode 100644 index 1972584..0000000 --- a/addons/lod/lod_cpu_particles.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/addons/lod/lod_cpu_particles.svg.import b/addons/lod/lod_cpu_particles.svg.import deleted file mode 100644 index d329aab..0000000 --- a/addons/lod/lod_cpu_particles.svg.import +++ /dev/null @@ -1,41 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/godot-extended-libraries/godot-lod - -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/lod_cpu_particles.svg-b3ece84e0440c5d32851b9105345db21.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://addons/lod/lod_cpu_particles.svg" -dest_files=[ "res://.import/lod_cpu_particles.svg-b3ece84e0440c5d32851b9105345db21.stex" ] - -[params] - -compress/mode=0 -compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 -compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 -process/fix_alpha_border=true -process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false -process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 diff --git a/addons/lod/lod_cpu_particles.svg.license b/addons/lod/lod_cpu_particles.svg.license deleted file mode 100644 index dd64b84..0000000 --- a/addons/lod/lod_cpu_particles.svg.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/godot-extended-libraries/godot-lod diff --git a/addons/lod/lod_particles.gd b/addons/lod/lod_particles.gd deleted file mode 100644 index 7d70cbb..0000000 --- a/addons/lod/lod_particles.gd +++ /dev/null @@ -1,63 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/godot-extended-libraries/godot-lod - -extends Particles -class_name LODParticles, "lod_particles.svg" - -# If `false`, LOD won't update anymore. This can be used for performance comparison -# purposes. -export var enable_lod := true - -# The maximum particle emitting distance in units. Past this distance, particles will no longer emit. -export(float, 0.0, 1000.0, 0.1) var max_emit_distance := 50 - -# The rate at which LODs will be updated (in seconds). Lower values are more reactive -# but use more CPU, which is especially noticeable with large amounts of LOD-enabled nodes. -# Set this accordingly depending on your camera movement speed. -# The default value should suit most projects already. -# Note: Slow cameras don't need to have LOD-enabled objects update their status often. -# This can overridden by setting the project setting `lod/refresh_rate`. -var refresh_rate := 0.25 - -# The LOD bias in units. -# Positive values will decrease the detail level and improve performance. -# Negative values will improve visual appearance at the cost of performance. -# This can overridden by setting the project setting `lod/bias`. -var lod_bias := 0.0 - -# The internal refresh timer. -var timer := 0.0 - - -func _ready() -> void: - if ProjectSettings.has_setting("lod/particle_bias"): - lod_bias = ProjectSettings.get_setting("lod/particle_bias") - if ProjectSettings.has_setting("lod/refresh_rate"): - refresh_rate = ProjectSettings.get_setting("lod/refresh_rate") - - # Add random jitter to the timer to ensure LODs don't all swap at the same time. - randomize() - timer += rand_range(0, refresh_rate) - -# Despite LOD not being related to physics, we chose to run in `_physics_process()` -# to minimize the amount of method calls per second (and therefore decrease CPU usage). -func _physics_process(delta: float) -> void: - if not enable_lod: - return - - # We need a camera to do the rest. - var camera := get_viewport().get_camera() - if camera == null: - return - - if timer <= refresh_rate: - timer += delta - return - - timer = 0.0 - - var distance := camera.global_transform.origin.distance_to(global_transform.origin) + lod_bias - emitting = distance < max_emit_distance diff --git a/addons/lod/lod_particles.svg b/addons/lod/lod_particles.svg deleted file mode 100644 index e8fb92a..0000000 --- a/addons/lod/lod_particles.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/addons/lod/lod_particles.svg.import b/addons/lod/lod_particles.svg.import deleted file mode 100644 index b8ba723..0000000 --- a/addons/lod/lod_particles.svg.import +++ /dev/null @@ -1,41 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/godot-extended-libraries/godot-lod - -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/lod_particles.svg-86d5ee48cd8c5d9e3cfcd6fa66432a55.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://addons/lod/lod_particles.svg" -dest_files=[ "res://.import/lod_particles.svg-86d5ee48cd8c5d9e3cfcd6fa66432a55.stex" ] - -[params] - -compress/mode=0 -compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 -compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 -process/fix_alpha_border=true -process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false -process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 diff --git a/addons/lod/lod_particles.svg.license b/addons/lod/lod_particles.svg.license deleted file mode 100644 index dd64b84..0000000 --- a/addons/lod/lod_particles.svg.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/godot-extended-libraries/godot-lod diff --git a/addons/lod/lod_spatial.svg b/addons/lod/lod_spatial.svg deleted file mode 100644 index c6d4fde..0000000 --- a/addons/lod/lod_spatial.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/addons/lod/lod_spatial.svg.import b/addons/lod/lod_spatial.svg.import deleted file mode 100644 index 8fbb1e0..0000000 --- a/addons/lod/lod_spatial.svg.import +++ /dev/null @@ -1,41 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/godot-extended-libraries/godot-lod - -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/lod_spatial.svg-0f291da571b0a5b87fdce289c6370d71.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://addons/lod/lod_spatial.svg" -dest_files=[ "res://.import/lod_spatial.svg-0f291da571b0a5b87fdce289c6370d71.stex" ] - -[params] - -compress/mode=0 -compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 -compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 -process/fix_alpha_border=true -process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false -process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 diff --git a/addons/lod/lod_spatial.svg.license b/addons/lod/lod_spatial.svg.license deleted file mode 100644 index dd64b84..0000000 --- a/addons/lod/lod_spatial.svg.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/godot-extended-libraries/godot-lod diff --git a/addons/lod/plugin.cfg b/addons/lod/plugin.cfg deleted file mode 100644 index 4acbadd..0000000 --- a/addons/lod/plugin.cfg +++ /dev/null @@ -1,13 +0,0 @@ -; SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -; -; SPDX-License-Identifier: MIT -; -; Source: https://github.com/godot-extended-libraries/godot-lod - -[plugin] - -name="Level of Detail (LOD)" -description="Level of Detail implementation for meshes, lights and particles." -author="Calinou" -version="1.0.0" -script="plugin.gd" diff --git a/addons/lod/plugin.gd b/addons/lod/plugin.gd deleted file mode 100644 index 677c6ca..0000000 --- a/addons/lod/plugin.gd +++ /dev/null @@ -1,8 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/godot-extended-libraries/godot-lod - -tool -extends EditorPlugin diff --git a/assets/blocks/finish_line.mtl b/assets/blocks/finish_line.mtl index 5c93a66..88a54de 100644 --- a/assets/blocks/finish_line.mtl +++ b/assets/blocks/finish_line.mtl @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender MTL File: 'marbles.blend' # Material Count: 3 diff --git a/assets/blocks/finish_line.obj b/assets/blocks/finish_line.obj index c2e1b83..d3367f0 100644 --- a/assets/blocks/finish_line.obj +++ b/assets/blocks/finish_line.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbles.blend' # www.blender.org diff --git a/assets/blocks/finish_line.obj.import b/assets/blocks/finish_line.obj.import index 21ba0c9..7f616eb 100644 --- a/assets/blocks/finish_line.obj.import +++ b/assets/blocks/finish_line.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/finish_line.obj-68148e473b312a92e041d73d4b95e99b.mesh" +uid="uid://c8keioqlqeoq5" +path="res://.godot/imported/finish_line.obj-68148e473b312a92e041d73d4b95e99b.mesh" [deps] -files=[ "res://.import/finish_line.obj-68148e473b312a92e041d73d4b95e99b.mesh" ] +files=["res://.godot/imported/finish_line.obj-68148e473b312a92e041d73d4b95e99b.mesh"] source_file="res://assets/blocks/finish_line.obj" -dest_files=[ "res://.import/finish_line.obj-68148e473b312a92e041d73d4b95e99b.mesh", "res://.import/finish_line.obj-68148e473b312a92e041d73d4b95e99b.mesh" ] +dest_files=["res://.godot/imported/finish_line.obj-68148e473b312a92e041d73d4b95e99b.mesh", "res://.godot/imported/finish_line.obj-68148e473b312a92e041d73d4b95e99b.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/forward.obj b/assets/blocks/forward.obj index caef467..4a80065 100644 --- a/assets/blocks/forward.obj +++ b/assets/blocks/forward.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbletest.blend' # www.blender.org diff --git a/assets/blocks/forward.obj.import b/assets/blocks/forward.obj.import index 70a172a..92c1af9 100644 --- a/assets/blocks/forward.obj.import +++ b/assets/blocks/forward.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/forward.obj-445d77b49ba74ed9a8c19f7dcb406dbe.mesh" +uid="uid://c0pfshvjl5cxp" +path="res://.godot/imported/forward.obj-445d77b49ba74ed9a8c19f7dcb406dbe.mesh" [deps] -files=[ "res://.import/forward.obj-445d77b49ba74ed9a8c19f7dcb406dbe.mesh" ] +files=["res://.godot/imported/forward.obj-445d77b49ba74ed9a8c19f7dcb406dbe.mesh"] source_file="res://assets/blocks/forward.obj" -dest_files=[ "res://.import/forward.obj-445d77b49ba74ed9a8c19f7dcb406dbe.mesh", "res://.import/forward.obj-445d77b49ba74ed9a8c19f7dcb406dbe.mesh" ] +dest_files=["res://.godot/imported/forward.obj-445d77b49ba74ed9a8c19f7dcb406dbe.mesh", "res://.godot/imported/forward.obj-445d77b49ba74ed9a8c19f7dcb406dbe.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/forward_down.obj b/assets/blocks/forward_down.obj index b6800d0..1a487cd 100644 --- a/assets/blocks/forward_down.obj +++ b/assets/blocks/forward_down.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbletest.blend' # www.blender.org diff --git a/assets/blocks/forward_down.obj.import b/assets/blocks/forward_down.obj.import index 1bb5aa3..d70d853 100644 --- a/assets/blocks/forward_down.obj.import +++ b/assets/blocks/forward_down.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/forward_down.obj-260a9f3d98c1b78d7b99931c4b440b00.mesh" +uid="uid://1na70ao3gxxv" +path="res://.godot/imported/forward_down.obj-260a9f3d98c1b78d7b99931c4b440b00.mesh" [deps] -files=[ "res://.import/forward_down.obj-260a9f3d98c1b78d7b99931c4b440b00.mesh" ] +files=["res://.godot/imported/forward_down.obj-260a9f3d98c1b78d7b99931c4b440b00.mesh"] source_file="res://assets/blocks/forward_down.obj" -dest_files=[ "res://.import/forward_down.obj-260a9f3d98c1b78d7b99931c4b440b00.mesh", "res://.import/forward_down.obj-260a9f3d98c1b78d7b99931c4b440b00.mesh" ] +dest_files=["res://.godot/imported/forward_down.obj-260a9f3d98c1b78d7b99931c4b440b00.mesh", "res://.godot/imported/forward_down.obj-260a9f3d98c1b78d7b99931c4b440b00.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/forward_up.obj b/assets/blocks/forward_up.obj index e2eaeff..8f808e0 100644 --- a/assets/blocks/forward_up.obj +++ b/assets/blocks/forward_up.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbletest.blend' # www.blender.org diff --git a/assets/blocks/forward_up.obj.import b/assets/blocks/forward_up.obj.import index 7d2a69d..d3873b1 100644 --- a/assets/blocks/forward_up.obj.import +++ b/assets/blocks/forward_up.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/forward_up.obj-c76cd590264498bcbf6dd0e97494d09b.mesh" +uid="uid://wv12ecai483k" +path="res://.godot/imported/forward_up.obj-c76cd590264498bcbf6dd0e97494d09b.mesh" [deps] -files=[ "res://.import/forward_up.obj-c76cd590264498bcbf6dd0e97494d09b.mesh" ] +files=["res://.godot/imported/forward_up.obj-c76cd590264498bcbf6dd0e97494d09b.mesh"] source_file="res://assets/blocks/forward_up.obj" -dest_files=[ "res://.import/forward_up.obj-c76cd590264498bcbf6dd0e97494d09b.mesh", "res://.import/forward_up.obj-c76cd590264498bcbf6dd0e97494d09b.mesh" ] +dest_files=["res://.godot/imported/forward_up.obj-c76cd590264498bcbf6dd0e97494d09b.mesh", "res://.godot/imported/forward_up.obj-c76cd590264498bcbf6dd0e97494d09b.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/hopper.obj b/assets/blocks/hopper.obj index 859a071..1267875 100644 --- a/assets/blocks/hopper.obj +++ b/assets/blocks/hopper.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbles.blend' # www.blender.org diff --git a/assets/blocks/hopper.obj.import b/assets/blocks/hopper.obj.import index 5c643ad..23d2926 100644 --- a/assets/blocks/hopper.obj.import +++ b/assets/blocks/hopper.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/hopper.obj-f608e83bd546ba28ae5837a6f15daa47.mesh" +uid="uid://df1w7nuqk33wy" +path="res://.godot/imported/hopper.obj-f608e83bd546ba28ae5837a6f15daa47.mesh" [deps] -files=[ "res://.import/hopper.obj-f608e83bd546ba28ae5837a6f15daa47.mesh" ] +files=["res://.godot/imported/hopper.obj-f608e83bd546ba28ae5837a6f15daa47.mesh"] source_file="res://assets/blocks/hopper.obj" -dest_files=[ "res://.import/hopper.obj-f608e83bd546ba28ae5837a6f15daa47.mesh", "res://.import/hopper.obj-f608e83bd546ba28ae5837a6f15daa47.mesh" ] +dest_files=["res://.godot/imported/hopper.obj-f608e83bd546ba28ae5837a6f15daa47.mesh", "res://.godot/imported/hopper.obj-f608e83bd546ba28ae5837a6f15daa47.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/hopper2.obj b/assets/blocks/hopper2.obj index d391d1a..6b372f1 100644 --- a/assets/blocks/hopper2.obj +++ b/assets/blocks/hopper2.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbles.blend' # www.blender.org diff --git a/assets/blocks/hopper2.obj.import b/assets/blocks/hopper2.obj.import index 16a816f..1309d16 100644 --- a/assets/blocks/hopper2.obj.import +++ b/assets/blocks/hopper2.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/hopper2.obj-30494c802f03d6927b75a8291f6d1803.mesh" +uid="uid://b5hpdrn7q6obi" +path="res://.godot/imported/hopper2.obj-30494c802f03d6927b75a8291f6d1803.mesh" [deps] -files=[ "res://.import/hopper2.obj-30494c802f03d6927b75a8291f6d1803.mesh" ] +files=["res://.godot/imported/hopper2.obj-30494c802f03d6927b75a8291f6d1803.mesh"] source_file="res://assets/blocks/hopper2.obj" -dest_files=[ "res://.import/hopper2.obj-30494c802f03d6927b75a8291f6d1803.mesh", "res://.import/hopper2.obj-30494c802f03d6927b75a8291f6d1803.mesh" ] +dest_files=["res://.godot/imported/hopper2.obj-30494c802f03d6927b75a8291f6d1803.mesh", "res://.godot/imported/hopper2.obj-30494c802f03d6927b75a8291f6d1803.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/hopper3.obj b/assets/blocks/hopper3.obj index 1a92706..47bfaf7 100644 --- a/assets/blocks/hopper3.obj +++ b/assets/blocks/hopper3.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbles.blend' # www.blender.org diff --git a/assets/blocks/hopper3.obj.import b/assets/blocks/hopper3.obj.import index 6f2a139..7c0ae72 100644 --- a/assets/blocks/hopper3.obj.import +++ b/assets/blocks/hopper3.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/hopper3.obj-76ebc29ceecc3591fdb2a0635f164ab9.mesh" +uid="uid://clo7cja12a1aw" +path="res://.godot/imported/hopper3.obj-76ebc29ceecc3591fdb2a0635f164ab9.mesh" [deps] -files=[ "res://.import/hopper3.obj-76ebc29ceecc3591fdb2a0635f164ab9.mesh" ] +files=["res://.godot/imported/hopper3.obj-76ebc29ceecc3591fdb2a0635f164ab9.mesh"] source_file="res://assets/blocks/hopper3.obj" -dest_files=[ "res://.import/hopper3.obj-76ebc29ceecc3591fdb2a0635f164ab9.mesh", "res://.import/hopper3.obj-76ebc29ceecc3591fdb2a0635f164ab9.mesh" ] +dest_files=["res://.godot/imported/hopper3.obj-76ebc29ceecc3591fdb2a0635f164ab9.mesh", "res://.godot/imported/hopper3.obj-76ebc29ceecc3591fdb2a0635f164ab9.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/looping.obj b/assets/blocks/looping.obj index ba11dd0..629650c 100644 --- a/assets/blocks/looping.obj +++ b/assets/blocks/looping.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbletest.blend' # www.blender.org diff --git a/assets/blocks/looping.obj.import b/assets/blocks/looping.obj.import index 9c6d3a4..5a715f2 100644 --- a/assets/blocks/looping.obj.import +++ b/assets/blocks/looping.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/looping.obj-5769ee2e40efd752be175227a45aec6d.mesh" +uid="uid://b12nn1tkrrye3" +path="res://.godot/imported/looping.obj-5769ee2e40efd752be175227a45aec6d.mesh" [deps] -files=[ "res://.import/looping.obj-5769ee2e40efd752be175227a45aec6d.mesh" ] +files=["res://.godot/imported/looping.obj-5769ee2e40efd752be175227a45aec6d.mesh"] source_file="res://assets/blocks/looping.obj" -dest_files=[ "res://.import/looping.obj-5769ee2e40efd752be175227a45aec6d.mesh", "res://.import/looping.obj-5769ee2e40efd752be175227a45aec6d.mesh" ] +dest_files=["res://.godot/imported/looping.obj-5769ee2e40efd752be175227a45aec6d.mesh", "res://.godot/imported/looping.obj-5769ee2e40efd752be175227a45aec6d.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/start_line.import b/assets/blocks/start_line.import index 343c0e5..740f17f 100644 --- a/assets/blocks/start_line.import +++ b/assets/blocks/start_line.import @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles [remap] diff --git a/assets/blocks/start_line.mtl b/assets/blocks/start_line.mtl index 9612daa..610a274 100644 --- a/assets/blocks/start_line.mtl +++ b/assets/blocks/start_line.mtl @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender MTL File: 'start_line.blend' # Material Count: 3 diff --git a/assets/blocks/start_line.obj b/assets/blocks/start_line.obj index a887ea9..f64363f 100644 --- a/assets/blocks/start_line.obj +++ b/assets/blocks/start_line.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.91.2 OBJ File: 'start_line.blend' # www.blender.org diff --git a/assets/blocks/start_line.obj.import b/assets/blocks/start_line.obj.import index b19379b..c8572d2 100644 --- a/assets/blocks/start_line.obj.import +++ b/assets/blocks/start_line.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/start_line.obj-892c20103a4fa50cd54f3b56ecf1f3e4.mesh" +uid="uid://biur4wlr2tf7i" +path="res://.godot/imported/start_line.obj-892c20103a4fa50cd54f3b56ecf1f3e4.mesh" [deps] -files=[ "res://.import/start_line.obj-892c20103a4fa50cd54f3b56ecf1f3e4.mesh" ] +files=["res://.godot/imported/start_line.obj-892c20103a4fa50cd54f3b56ecf1f3e4.mesh"] source_file="res://assets/blocks/start_line.obj" -dest_files=[ "res://.import/start_line.obj-892c20103a4fa50cd54f3b56ecf1f3e4.mesh", "res://.import/start_line.obj-892c20103a4fa50cd54f3b56ecf1f3e4.mesh" ] +dest_files=["res://.godot/imported/start_line.obj-892c20103a4fa50cd54f3b56ecf1f3e4.mesh", "res://.godot/imported/start_line.obj-892c20103a4fa50cd54f3b56ecf1f3e4.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/tube_vertical_to_horizontal.obj b/assets/blocks/tube_vertical_to_horizontal.obj index 15a61d0..dba420e 100644 --- a/assets/blocks/tube_vertical_to_horizontal.obj +++ b/assets/blocks/tube_vertical_to_horizontal.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbles.blend' # www.blender.org diff --git a/assets/blocks/tube_vertical_to_horizontal.obj.import b/assets/blocks/tube_vertical_to_horizontal.obj.import index 2226253..9f72ba2 100644 --- a/assets/blocks/tube_vertical_to_horizontal.obj.import +++ b/assets/blocks/tube_vertical_to_horizontal.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/tube_vertical_to_horizontal.obj-99f35dca5c52220cd009aeaa747f7654.mesh" +uid="uid://dlgst0aoyhihd" +path="res://.godot/imported/tube_vertical_to_horizontal.obj-99f35dca5c52220cd009aeaa747f7654.mesh" [deps] -files=[ "res://.import/tube_vertical_to_horizontal.obj-99f35dca5c52220cd009aeaa747f7654.mesh" ] +files=["res://.godot/imported/tube_vertical_to_horizontal.obj-99f35dca5c52220cd009aeaa747f7654.mesh"] source_file="res://assets/blocks/tube_vertical_to_horizontal.obj" -dest_files=[ "res://.import/tube_vertical_to_horizontal.obj-99f35dca5c52220cd009aeaa747f7654.mesh", "res://.import/tube_vertical_to_horizontal.obj-99f35dca5c52220cd009aeaa747f7654.mesh" ] +dest_files=["res://.godot/imported/tube_vertical_to_horizontal.obj-99f35dca5c52220cd009aeaa747f7654.mesh", "res://.godot/imported/tube_vertical_to_horizontal.obj-99f35dca5c52220cd009aeaa747f7654.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/turn_left2.obj b/assets/blocks/turn_left2.obj index 5173ee6..3f8f223 100644 --- a/assets/blocks/turn_left2.obj +++ b/assets/blocks/turn_left2.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbletest.blend' # www.blender.org diff --git a/assets/blocks/turn_left2.obj.import b/assets/blocks/turn_left2.obj.import index c90445c..2adfa49 100644 --- a/assets/blocks/turn_left2.obj.import +++ b/assets/blocks/turn_left2.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/turn_left2.obj-75d6b32008778f230873814f14428a6e.mesh" +uid="uid://dt0nsm4a74lgm" +path="res://.godot/imported/turn_left2.obj-75d6b32008778f230873814f14428a6e.mesh" [deps] -files=[ "res://.import/turn_left2.obj-75d6b32008778f230873814f14428a6e.mesh" ] +files=["res://.godot/imported/turn_left2.obj-75d6b32008778f230873814f14428a6e.mesh"] source_file="res://assets/blocks/turn_left2.obj" -dest_files=[ "res://.import/turn_left2.obj-75d6b32008778f230873814f14428a6e.mesh", "res://.import/turn_left2.obj-75d6b32008778f230873814f14428a6e.mesh" ] +dest_files=["res://.godot/imported/turn_left2.obj-75d6b32008778f230873814f14428a6e.mesh", "res://.godot/imported/turn_left2.obj-75d6b32008778f230873814f14428a6e.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/turn_left3.obj b/assets/blocks/turn_left3.obj index f411287..8925d71 100644 --- a/assets/blocks/turn_left3.obj +++ b/assets/blocks/turn_left3.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbletest.blend' # www.blender.org diff --git a/assets/blocks/turn_left3.obj.import b/assets/blocks/turn_left3.obj.import index 17555c5..7dd53eb 100644 --- a/assets/blocks/turn_left3.obj.import +++ b/assets/blocks/turn_left3.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/turn_left3.obj-a8b482e6a8182e57ee0a0f631bd9ec51.mesh" +uid="uid://c50bicnpwsmdy" +path="res://.godot/imported/turn_left3.obj-a8b482e6a8182e57ee0a0f631bd9ec51.mesh" [deps] -files=[ "res://.import/turn_left3.obj-a8b482e6a8182e57ee0a0f631bd9ec51.mesh" ] +files=["res://.godot/imported/turn_left3.obj-a8b482e6a8182e57ee0a0f631bd9ec51.mesh"] source_file="res://assets/blocks/turn_left3.obj" -dest_files=[ "res://.import/turn_left3.obj-a8b482e6a8182e57ee0a0f631bd9ec51.mesh", "res://.import/turn_left3.obj-a8b482e6a8182e57ee0a0f631bd9ec51.mesh" ] +dest_files=["res://.godot/imported/turn_left3.obj-a8b482e6a8182e57ee0a0f631bd9ec51.mesh", "res://.godot/imported/turn_left3.obj-a8b482e6a8182e57ee0a0f631bd9ec51.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/turn_left_covered.obj b/assets/blocks/turn_left_covered.obj index b5a7f98..26354b4 100644 --- a/assets/blocks/turn_left_covered.obj +++ b/assets/blocks/turn_left_covered.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbletest.blend' # www.blender.org diff --git a/assets/blocks/turn_left_covered.obj.import b/assets/blocks/turn_left_covered.obj.import index 9f9c3b5..158cee7 100644 --- a/assets/blocks/turn_left_covered.obj.import +++ b/assets/blocks/turn_left_covered.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/turn_left_covered.obj-6fc39e478ebbc1fcccc1a3f83ad0b2b8.mesh" +uid="uid://d3vf3v6taxkej" +path="res://.godot/imported/turn_left_covered.obj-6fc39e478ebbc1fcccc1a3f83ad0b2b8.mesh" [deps] -files=[ "res://.import/turn_left_covered.obj-6fc39e478ebbc1fcccc1a3f83ad0b2b8.mesh" ] +files=["res://.godot/imported/turn_left_covered.obj-6fc39e478ebbc1fcccc1a3f83ad0b2b8.mesh"] source_file="res://assets/blocks/turn_left_covered.obj" -dest_files=[ "res://.import/turn_left_covered.obj-6fc39e478ebbc1fcccc1a3f83ad0b2b8.mesh", "res://.import/turn_left_covered.obj-6fc39e478ebbc1fcccc1a3f83ad0b2b8.mesh" ] +dest_files=["res://.godot/imported/turn_left_covered.obj-6fc39e478ebbc1fcccc1a3f83ad0b2b8.mesh", "res://.godot/imported/turn_left_covered.obj-6fc39e478ebbc1fcccc1a3f83ad0b2b8.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/turn_right2.obj b/assets/blocks/turn_right2.obj index ccbce03..78d899c 100644 --- a/assets/blocks/turn_right2.obj +++ b/assets/blocks/turn_right2.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbletest.blend' # www.blender.org diff --git a/assets/blocks/turn_right2.obj.import b/assets/blocks/turn_right2.obj.import index 554cce1..baf7525 100644 --- a/assets/blocks/turn_right2.obj.import +++ b/assets/blocks/turn_right2.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/turn_right2.obj-f61620a053b3ab62886b5196d1e9d055.mesh" +uid="uid://wsmmupgq4ids" +path="res://.godot/imported/turn_right2.obj-f61620a053b3ab62886b5196d1e9d055.mesh" [deps] -files=[ "res://.import/turn_right2.obj-f61620a053b3ab62886b5196d1e9d055.mesh" ] +files=["res://.godot/imported/turn_right2.obj-f61620a053b3ab62886b5196d1e9d055.mesh"] source_file="res://assets/blocks/turn_right2.obj" -dest_files=[ "res://.import/turn_right2.obj-f61620a053b3ab62886b5196d1e9d055.mesh", "res://.import/turn_right2.obj-f61620a053b3ab62886b5196d1e9d055.mesh" ] +dest_files=["res://.godot/imported/turn_right2.obj-f61620a053b3ab62886b5196d1e9d055.mesh", "res://.godot/imported/turn_right2.obj-f61620a053b3ab62886b5196d1e9d055.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/turn_right3.obj b/assets/blocks/turn_right3.obj index c22094c..fb2037b 100644 --- a/assets/blocks/turn_right3.obj +++ b/assets/blocks/turn_right3.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbletest.blend' # www.blender.org diff --git a/assets/blocks/turn_right3.obj.import b/assets/blocks/turn_right3.obj.import index 31e598a..c0f2a08 100644 --- a/assets/blocks/turn_right3.obj.import +++ b/assets/blocks/turn_right3.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/turn_right3.obj-3c3fae834c68c8f07f0d11a3a0cb8b45.mesh" +uid="uid://cfu32ry2spepu" +path="res://.godot/imported/turn_right3.obj-3c3fae834c68c8f07f0d11a3a0cb8b45.mesh" [deps] -files=[ "res://.import/turn_right3.obj-3c3fae834c68c8f07f0d11a3a0cb8b45.mesh" ] +files=["res://.godot/imported/turn_right3.obj-3c3fae834c68c8f07f0d11a3a0cb8b45.mesh"] source_file="res://assets/blocks/turn_right3.obj" -dest_files=[ "res://.import/turn_right3.obj-3c3fae834c68c8f07f0d11a3a0cb8b45.mesh", "res://.import/turn_right3.obj-3c3fae834c68c8f07f0d11a3a0cb8b45.mesh" ] +dest_files=["res://.godot/imported/turn_right3.obj-3c3fae834c68c8f07f0d11a3a0cb8b45.mesh", "res://.godot/imported/turn_right3.obj-3c3fae834c68c8f07f0d11a3a0cb8b45.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/blocks/turn_right_covered.obj b/assets/blocks/turn_right_covered.obj index 13b13a4..146abff 100644 --- a/assets/blocks/turn_right_covered.obj +++ b/assets/blocks/turn_right_covered.obj @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles # Blender v2.78 (sub 0) OBJ File: 'marbletest.blend' # www.blender.org diff --git a/assets/blocks/turn_right_covered.obj.import b/assets/blocks/turn_right_covered.obj.import index eb5c65e..4e6a926 100644 --- a/assets/blocks/turn_right_covered.obj.import +++ b/assets/blocks/turn_right_covered.obj.import @@ -1,26 +1,21 @@ -# SPDX-FileCopyrightText: 2019 Zylann -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/Zylann/marbles - [remap] importer="wavefront_obj" +importer_version=1 type="Mesh" -path="res://.import/turn_right_covered.obj-d72406c70a16857ae690106d371823d4.mesh" +uid="uid://4akktlckcuc0" +path="res://.godot/imported/turn_right_covered.obj-d72406c70a16857ae690106d371823d4.mesh" [deps] -files=[ "res://.import/turn_right_covered.obj-d72406c70a16857ae690106d371823d4.mesh" ] +files=["res://.godot/imported/turn_right_covered.obj-d72406c70a16857ae690106d371823d4.mesh"] source_file="res://assets/blocks/turn_right_covered.obj" -dest_files=[ "res://.import/turn_right_covered.obj-d72406c70a16857ae690106d371823d4.mesh", "res://.import/turn_right_covered.obj-d72406c70a16857ae690106d371823d4.mesh" ] +dest_files=["res://.godot/imported/turn_right_covered.obj-d72406c70a16857ae690106d371823d4.mesh", "res://.godot/imported/turn_right_covered.obj-d72406c70a16857ae690106d371823d4.mesh"] [params] generate_tangents=true -scale_mesh=Vector3( 1, 1, 1 ) -offset_mesh=Vector3( 0, 0, 0 ) -octahedral_compression=true -optimize_mesh_flags=4286 +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/assets/fonts/box_pixies.ttf.import b/assets/fonts/box_pixies.ttf.import new file mode 100644 index 0000000..ed350d2 --- /dev/null +++ b/assets/fonts/box_pixies.ttf.import @@ -0,0 +1,33 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://cpxtqija5l465" +path="res://.godot/imported/box_pixies.ttf-5316cd25b172c7ecac5f7c9b962d13bb.fontdata" + +[deps] + +source_file="res://assets/fonts/box_pixies.ttf" +dest_files=["res://.godot/imported/box_pixies.ttf-5316cd25b172c7ecac5f7c9b962d13bb.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/assets/fonts/box_pixies.ttf.license b/assets/fonts/box_pixies.ttf.license deleted file mode 100644 index ae859e4..0000000 --- a/assets/fonts/box_pixies.ttf.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Heaven Castro -# -# SPDX-License-Identifier: CC0-1.0 -# -# Source: https://www.fontspace.com/boxpixies-font-f27657 diff --git a/assets/gui/crosshair.png.import b/assets/gui/crosshair.png.import index b223a07..b0279e4 100644 --- a/assets/gui/crosshair.png.import +++ b/assets/gui/crosshair.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/crosshair.png-ad480818763de71facdc8662de58c314.stex" +type="CompressedTexture2D" +uid="uid://cyus27ddtn8d" +path="res://.godot/imported/crosshair.png-ad480818763de71facdc8662de58c314.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://assets/gui/crosshair.png" -dest_files=[ "res://.import/crosshair.png-ad480818763de71facdc8662de58c314.stex" ] +dest_files=["res://.godot/imported/crosshair.png-ad480818763de71facdc8662de58c314.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/gui/crosshair.png.license b/assets/gui/crosshair.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/gui/crosshair.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/assets/icon.png.import b/assets/icon.png.import index e07147b..7b2d43b 100644 --- a/assets/icon.png.import +++ b/assets/icon.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/icon.png-b6a7fb2db36edd3d95dc42f1dc8c1c5d.stex" +type="CompressedTexture2D" +uid="uid://bgh64dvgj4jv5" +path="res://.godot/imported/icon.png-b6a7fb2db36edd3d95dc42f1dc8c1c5d.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://assets/icon.png" -dest_files=[ "res://.import/icon.png-b6a7fb2db36edd3d95dc42f1dc8c1c5d.stex" ] +dest_files=["res://.godot/imported/icon.png-b6a7fb2db36edd3d95dc42f1dc8c1c5d.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/icon.png.license b/assets/icon.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/icon.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/assets/icons/icons8-bang-100.png.import b/assets/icons/icons8-bang-100.png.import index f601099..4999902 100644 --- a/assets/icons/icons8-bang-100.png.import +++ b/assets/icons/icons8-bang-100.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/icons8-bang-100.png-02e2239bdf3f6a60220a8c319d197c12.stex" +type="CompressedTexture2D" +uid="uid://di8noahymtx0c" +path="res://.godot/imported/icons8-bang-100.png-02e2239bdf3f6a60220a8c319d197c12.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://assets/icons/icons8-bang-100.png" -dest_files=[ "res://.import/icons8-bang-100.png-02e2239bdf3f6a60220a8c319d197c12.stex" ] +dest_files=["res://.godot/imported/icons8-bang-100.png-02e2239bdf3f6a60220a8c319d197c12.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/icons/icons8-bang-100.png.license b/assets/icons/icons8-bang-100.png.license deleted file mode 100644 index 18c97cb..0000000 --- a/assets/icons/icons8-bang-100.png.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Icons8 -# -# SPDX-License-Identifier: LicenseRef-linksware -# -# Source: https://icons8.com/icon/set/bang/stickers diff --git a/assets/icons/icons8-confetti-100.png.import b/assets/icons/icons8-confetti-100.png.import index 7a0675e..a1dc63d 100644 --- a/assets/icons/icons8-confetti-100.png.import +++ b/assets/icons/icons8-confetti-100.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/icons8-confetti-100.png-5f1171a1c83a1758bcb6acb63c778fcb.stex" +type="CompressedTexture2D" +uid="uid://ve036ch7g2q4" +path="res://.godot/imported/icons8-confetti-100.png-5f1171a1c83a1758bcb6acb63c778fcb.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://assets/icons/icons8-confetti-100.png" -dest_files=[ "res://.import/icons8-confetti-100.png-5f1171a1c83a1758bcb6acb63c778fcb.stex" ] +dest_files=["res://.godot/imported/icons8-confetti-100.png-5f1171a1c83a1758bcb6acb63c778fcb.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/icons/icons8-confetti-100.png.license b/assets/icons/icons8-confetti-100.png.license deleted file mode 100644 index 3e33527..0000000 --- a/assets/icons/icons8-confetti-100.png.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Icons8 -# -# SPDX-License-Identifier: LicenseRef-linksware -# -# Source: https://icons8.com/icon/set/confetti/stickers diff --git a/assets/icons/icons8-dynamite-100.png.import b/assets/icons/icons8-dynamite-100.png.import index a67f156..df1e7d7 100644 --- a/assets/icons/icons8-dynamite-100.png.import +++ b/assets/icons/icons8-dynamite-100.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/icons8-dynamite-100.png-865bc8d6b1405d82b092eefc70ab15a1.stex" +type="CompressedTexture2D" +uid="uid://bph3mheo28yg4" +path="res://.godot/imported/icons8-dynamite-100.png-865bc8d6b1405d82b092eefc70ab15a1.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://assets/icons/icons8-dynamite-100.png" -dest_files=[ "res://.import/icons8-dynamite-100.png-865bc8d6b1405d82b092eefc70ab15a1.stex" ] +dest_files=["res://.godot/imported/icons8-dynamite-100.png-865bc8d6b1405d82b092eefc70ab15a1.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/icons/icons8-dynamite-100.png.license b/assets/icons/icons8-dynamite-100.png.license deleted file mode 100644 index a7b55a9..0000000 --- a/assets/icons/icons8-dynamite-100.png.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Icons8 -# -# SPDX-License-Identifier: LicenseRef-linksware -# -# Source: https://icons8.com/icon/set/dynamite/stickers diff --git a/assets/icons/icons8-skull-100.png.import b/assets/icons/icons8-skull-100.png.import index 1308ba4..7a7e2e7 100644 --- a/assets/icons/icons8-skull-100.png.import +++ b/assets/icons/icons8-skull-100.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/icons8-skull-100.png-ac9303d49ba28f7d52cc98cb642618d9.stex" +type="CompressedTexture2D" +uid="uid://xnw3bhx1e2kg" +path="res://.godot/imported/icons8-skull-100.png-ac9303d49ba28f7d52cc98cb642618d9.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://assets/icons/icons8-skull-100.png" -dest_files=[ "res://.import/icons8-skull-100.png-ac9303d49ba28f7d52cc98cb642618d9.stex" ] +dest_files=["res://.godot/imported/icons8-skull-100.png-ac9303d49ba28f7d52cc98cb642618d9.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/icons/icons8-skull-100.png.license b/assets/icons/icons8-skull-100.png.license deleted file mode 100644 index 222953c..0000000 --- a/assets/icons/icons8-skull-100.png.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Icons8 -# -# SPDX-License-Identifier: LicenseRef-linksware -# -# Source: https://icons8.com/icon/set/skull/stickers diff --git a/assets/icons/icons8-time-100.png.import b/assets/icons/icons8-time-100.png.import index 47e5791..d9bef7a 100644 --- a/assets/icons/icons8-time-100.png.import +++ b/assets/icons/icons8-time-100.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/icons8-time-100.png-a98984a438faa501bb8c997c15fefaae.stex" +type="CompressedTexture2D" +uid="uid://cyfsearndnuuq" +path="res://.godot/imported/icons8-time-100.png-a98984a438faa501bb8c997c15fefaae.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://assets/icons/icons8-time-100.png" -dest_files=[ "res://.import/icons8-time-100.png-a98984a438faa501bb8c997c15fefaae.stex" ] +dest_files=["res://.godot/imported/icons8-time-100.png-a98984a438faa501bb8c997c15fefaae.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/icons/icons8-time-100.png.license b/assets/icons/icons8-time-100.png.license deleted file mode 100644 index 4f5af89..0000000 --- a/assets/icons/icons8-time-100.png.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Icons8 -# -# SPDX-License-Identifier: LicenseRef-linksware -# -# Source: https://icons8.com/icon/set/time/stickers diff --git a/assets/icons/icons8-trophy-100.png.import b/assets/icons/icons8-trophy-100.png.import index 62583c0..097a48d 100644 --- a/assets/icons/icons8-trophy-100.png.import +++ b/assets/icons/icons8-trophy-100.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/icons8-trophy-100.png-2db2a5baf15d62bfdf6b153c4f4f3a97.stex" +type="CompressedTexture2D" +uid="uid://dafsb6dv6rwke" +path="res://.godot/imported/icons8-trophy-100.png-2db2a5baf15d62bfdf6b153c4f4f3a97.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://assets/icons/icons8-trophy-100.png" -dest_files=[ "res://.import/icons8-trophy-100.png-2db2a5baf15d62bfdf6b153c4f4f3a97.stex" ] +dest_files=["res://.godot/imported/icons8-trophy-100.png-2db2a5baf15d62bfdf6b153c4f4f3a97.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/icons/icons8-trophy-100.png.license b/assets/icons/icons8-trophy-100.png.license deleted file mode 100644 index eee55c5..0000000 --- a/assets/icons/icons8-trophy-100.png.license +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Icons8 -# -# SPDX-License-Identifier: LicenseRef-linksware -# -# Source: https://icons8.com/icon/set/trophy/stickers diff --git a/assets/marble/marble_albedo.jpg b/assets/marble/marble_albedo.jpg new file mode 100644 index 0000000..d4fde6c Binary files /dev/null and b/assets/marble/marble_albedo.jpg differ diff --git a/assets/marble/marble_albedo.jpg.import b/assets/marble/marble_albedo.jpg.import new file mode 100644 index 0000000..c636e03 --- /dev/null +++ b/assets/marble/marble_albedo.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8dp5yxgnqaqv" +path.s3tc="res://.godot/imported/marble_albedo.jpg-115e10cc24fa55962c66be4aa7d2863b.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://assets/marble/marble_albedo.jpg" +dest_files=["res://.godot/imported/marble_albedo.jpg-115e10cc24fa55962c66be4aa7d2863b.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/marble/marble_normal.jpg b/assets/marble/marble_normal.jpg new file mode 100644 index 0000000..09312d8 Binary files /dev/null and b/assets/marble/marble_normal.jpg differ diff --git a/assets/marble/marble_normal.jpg.import b/assets/marble/marble_normal.jpg.import new file mode 100644 index 0000000..5ecf1ed --- /dev/null +++ b/assets/marble/marble_normal.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://60dl3bvlmlx" +path.s3tc="res://.godot/imported/marble_normal.jpg-23d41c70e66cd36cad0c1130a0f33f5a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://assets/marble/marble_normal.jpg" +dest_files=["res://.godot/imported/marble_normal.jpg-23d41c70e66cd36cad0c1130a0f33f5a.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=1 +roughness/src_normal="res://assets/marble/Marble012_1K_NormalGL.jpg" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/marble/marble_oughness.jpg b/assets/marble/marble_oughness.jpg new file mode 100644 index 0000000..fe5ce73 Binary files /dev/null and b/assets/marble/marble_oughness.jpg differ diff --git a/assets/marble/marble_oughness.jpg.import b/assets/marble/marble_oughness.jpg.import new file mode 100644 index 0000000..4660dbe --- /dev/null +++ b/assets/marble/marble_oughness.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcwf8u32r3bwe" +path.s3tc="res://.godot/imported/marble_oughness.jpg-4299cab4aa4f86051b8b14d18cfbacc7.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://assets/marble/marble_oughness.jpg" +dest_files=["res://.godot/imported/marble_oughness.jpg-4299cab4aa4f86051b8b14d18cfbacc7.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/sounds/bomb.ogg.import b/assets/sounds/bomb.ogg.import index a188424..a8f4446 100644 --- a/assets/sounds/bomb.ogg.import +++ b/assets/sounds/bomb.ogg.import @@ -1,19 +1,19 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] -importer="ogg_vorbis" -type="AudioStreamOGGVorbis" -path="res://.import/bomb.ogg-ddd259583b8ecae457de3bb348a95122.oggstr" +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://c44julexev4dj" +path="res://.godot/imported/bomb.ogg-ddd259583b8ecae457de3bb348a95122.oggvorbisstr" [deps] source_file="res://assets/sounds/bomb.ogg" -dest_files=[ "res://.import/bomb.ogg-ddd259583b8ecae457de3bb348a95122.oggstr" ] +dest_files=["res://.godot/imported/bomb.ogg-ddd259583b8ecae457de3bb348a95122.oggvorbisstr"] [params] loop=false loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/bomb.ogg.license b/assets/sounds/bomb.ogg.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/sounds/bomb.ogg.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/assets/sounds/bump.wav.import b/assets/sounds/bump.wav.import index c4fa97c..4d9b108 100644 --- a/assets/sounds/bump.wav.import +++ b/assets/sounds/bump.wav.import @@ -1,17 +1,14 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="wav" -type="AudioStreamSample" -path="res://.import/bump.wav-b775c2840e919a84208cdb09827e6fa0.sample" +type="AudioStreamWAV" +uid="uid://d1ov0uhwvty5i" +path="res://.godot/imported/bump.wav-b775c2840e919a84208cdb09827e6fa0.sample" [deps] source_file="res://assets/sounds/bump.wav" -dest_files=[ "res://.import/bump.wav-b775c2840e919a84208cdb09827e6fa0.sample" ] +dest_files=["res://.godot/imported/bump.wav-b775c2840e919a84208cdb09827e6fa0.sample"] [params] diff --git a/assets/sounds/bump.wav.license b/assets/sounds/bump.wav.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/sounds/bump.wav.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/assets/sounds/countdown/countdown-a.ogg.import b/assets/sounds/countdown/countdown-a.ogg.import index 0950573..140b406 100644 --- a/assets/sounds/countdown/countdown-a.ogg.import +++ b/assets/sounds/countdown/countdown-a.ogg.import @@ -1,19 +1,19 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] -importer="ogg_vorbis" -type="AudioStreamOGGVorbis" -path="res://.import/countdown-a.ogg-0278e043ed55715af711143b81d65cc3.oggstr" +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://c8qsejp3fxb6y" +path="res://.godot/imported/countdown-a.ogg-0278e043ed55715af711143b81d65cc3.oggvorbisstr" [deps] source_file="res://assets/sounds/countdown/countdown-a.ogg" -dest_files=[ "res://.import/countdown-a.ogg-0278e043ed55715af711143b81d65cc3.oggstr" ] +dest_files=["res://.godot/imported/countdown-a.ogg-0278e043ed55715af711143b81d65cc3.oggvorbisstr"] [params] loop=false loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/countdown/countdown-a.ogg.license b/assets/sounds/countdown/countdown-a.ogg.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/sounds/countdown/countdown-a.ogg.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/assets/sounds/countdown/countdown-b.ogg.import b/assets/sounds/countdown/countdown-b.ogg.import index 29d4ffb..8a3e9c3 100644 --- a/assets/sounds/countdown/countdown-b.ogg.import +++ b/assets/sounds/countdown/countdown-b.ogg.import @@ -1,19 +1,19 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] -importer="ogg_vorbis" -type="AudioStreamOGGVorbis" -path="res://.import/countdown-b.ogg-661c88071082323e685053c5ab0cff8e.oggstr" +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://nau0cerdcaga" +path="res://.godot/imported/countdown-b.ogg-661c88071082323e685053c5ab0cff8e.oggvorbisstr" [deps] source_file="res://assets/sounds/countdown/countdown-b.ogg" -dest_files=[ "res://.import/countdown-b.ogg-661c88071082323e685053c5ab0cff8e.oggstr" ] +dest_files=["res://.godot/imported/countdown-b.ogg-661c88071082323e685053c5ab0cff8e.oggvorbisstr"] [params] loop=false loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/countdown/countdown-b.ogg.license b/assets/sounds/countdown/countdown-b.ogg.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/sounds/countdown/countdown-b.ogg.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/assets/sounds/finish_line.wav.import b/assets/sounds/finish_line.wav.import index 611fdcf..3cf78d4 100644 --- a/assets/sounds/finish_line.wav.import +++ b/assets/sounds/finish_line.wav.import @@ -1,17 +1,14 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="wav" -type="AudioStreamSample" -path="res://.import/finish_line.wav-09a07f3827d4d92321e49b6ca959743c.sample" +type="AudioStreamWAV" +uid="uid://bdttmbobiy344" +path="res://.godot/imported/finish_line.wav-09a07f3827d4d92321e49b6ca959743c.sample" [deps] source_file="res://assets/sounds/finish_line.wav" -dest_files=[ "res://.import/finish_line.wav-09a07f3827d4d92321e49b6ca959743c.sample" ] +dest_files=["res://.godot/imported/finish_line.wav-09a07f3827d4d92321e49b6ca959743c.sample"] [params] diff --git a/assets/sounds/finish_line.wav.license b/assets/sounds/finish_line.wav.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/sounds/finish_line.wav.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/assets/sounds/hit.wav.import b/assets/sounds/hit.wav.import index a149052..fb0b7b2 100644 --- a/assets/sounds/hit.wav.import +++ b/assets/sounds/hit.wav.import @@ -1,17 +1,14 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="wav" -type="AudioStreamSample" -path="res://.import/hit.wav-b122da9ae3f69dfbe7a6d1bf9e1b423e.sample" +type="AudioStreamWAV" +uid="uid://b7ga03rbxi6qs" +path="res://.godot/imported/hit.wav-b122da9ae3f69dfbe7a6d1bf9e1b423e.sample" [deps] source_file="res://assets/sounds/hit.wav" -dest_files=[ "res://.import/hit.wav-b122da9ae3f69dfbe7a6d1bf9e1b423e.sample" ] +dest_files=["res://.godot/imported/hit.wav-b122da9ae3f69dfbe7a6d1bf9e1b423e.sample"] [params] diff --git a/assets/sounds/hit.wav.license b/assets/sounds/hit.wav.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/sounds/hit.wav.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/assets/sounds/roll.wav.import b/assets/sounds/roll.wav.import index 364d26f..9ead82a 100644 --- a/assets/sounds/roll.wav.import +++ b/assets/sounds/roll.wav.import @@ -1,17 +1,14 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="wav" -type="AudioStreamSample" -path="res://.import/roll.wav-8f7f4762203d270e4a3716fc59dd35ce.sample" +type="AudioStreamWAV" +uid="uid://3hc6gfblh3gf" +path="res://.godot/imported/roll.wav-8f7f4762203d270e4a3716fc59dd35ce.sample" [deps] source_file="res://assets/sounds/roll.wav" -dest_files=[ "res://.import/roll.wav-8f7f4762203d270e4a3716fc59dd35ce.sample" ] +dest_files=["res://.godot/imported/roll.wav-8f7f4762203d270e4a3716fc59dd35ce.sample"] [params] diff --git a/assets/sounds/roll.wav.license b/assets/sounds/roll.wav.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/sounds/roll.wav.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/assets/sounds/ui_open.wav.import b/assets/sounds/ui_open.wav.import index 9ebbf9b..868c5d0 100644 --- a/assets/sounds/ui_open.wav.import +++ b/assets/sounds/ui_open.wav.import @@ -1,17 +1,14 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="wav" -type="AudioStreamSample" -path="res://.import/ui_open.wav-f787f79e1d39ea10e1c406f107871380.sample" +type="AudioStreamWAV" +uid="uid://befsdykgrnt25" +path="res://.godot/imported/ui_open.wav-f787f79e1d39ea10e1c406f107871380.sample" [deps] source_file="res://assets/sounds/ui_open.wav" -dest_files=[ "res://.import/ui_open.wav-f787f79e1d39ea10e1c406f107871380.sample" ] +dest_files=["res://.godot/imported/ui_open.wav-f787f79e1d39ea10e1c406f107871380.sample"] [params] diff --git a/assets/sounds/ui_open.wav.license b/assets/sounds/ui_open.wav.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/sounds/ui_open.wav.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/assets/wood.jpg.import b/assets/wood.jpg.import index f44be3e..70e1513 100644 --- a/assets/wood.jpg.import +++ b/assets/wood.jpg.import @@ -1,42 +1,35 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path.s3tc="res://.import/wood.jpg-515a2891c21197d3168e41a3c8814a6d.s3tc.stex" -path.etc2="res://.import/wood.jpg-515a2891c21197d3168e41a3c8814a6d.etc2.stex" -path.etc="res://.import/wood.jpg-515a2891c21197d3168e41a3c8814a6d.etc.stex" +type="CompressedTexture2D" +uid="uid://7jjt3qf5qe5" +path.s3tc="res://.godot/imported/wood.jpg-515a2891c21197d3168e41a3c8814a6d.s3tc.ctex" metadata={ -"imported_formats": [ "s3tc", "etc2", "etc" ], +"imported_formats": ["s3tc_bptc"], "vram_texture": true } [deps] source_file="res://assets/wood.jpg" -dest_files=[ "res://.import/wood.jpg-515a2891c21197d3168e41a3c8814a6d.s3tc.stex", "res://.import/wood.jpg-515a2891c21197d3168e41a3c8814a6d.etc2.stex", "res://.import/wood.jpg-515a2891c21197d3168e41a3c8814a6d.etc.stex" ] +dest_files=["res://.godot/imported/wood.jpg-515a2891c21197d3168e41a3c8814a6d.s3tc.ctex"] [params] compress/mode=2 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=false -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/wood.jpg.license b/assets/wood.jpg.license deleted file mode 100644 index 8e014ac..0000000 --- a/assets/wood.jpg.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/default_env.tres b/default_env.tres deleted file mode 100644 index 30a0a7f..0000000 --- a/default_env.tres +++ /dev/null @@ -1,12 +0,0 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT - -[gd_resource type="Environment" load_steps=2 format=2] - -[sub_resource type="ProceduralSky" id=1] - -[resource] -background_mode = 2 -background_sky = SubResource( 1 ) -ambient_light_sky_contribution = 0.2 diff --git a/export_presets.cfg b/export_presets.cfg index ca42a47..7a1b7dd 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -1,66 +1,31 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT - [preset.0] -name="HTML5" -platform="HTML5" -runnable=true -custom_features="" -export_filter="all_resources" -include_filter="" -exclude_filter="" -export_path="" -script_export_mode=1 -script_encryption_key="" - -[preset.0.options] - -custom_template/debug="" -custom_template/release="" -variant/export_type=0 -vram_texture_compression/for_desktop=true -vram_texture_compression/for_mobile=false -html/export_icon=true -html/custom_html_shell="" -html/head_include="" -html/canvas_resize_policy=2 -html/focus_canvas_on_start=true -html/experimental_virtual_keyboard=false -progressive_web_app/enabled=false -progressive_web_app/offline_page="" -progressive_web_app/display=1 -progressive_web_app/orientation=0 -progressive_web_app/icon_144x144="" -progressive_web_app/icon_180x180="" -progressive_web_app/icon_512x512="" -progressive_web_app/background_color=Color( 0, 0, 0, 1 ) - -[preset.1] - name="Windows Desktop" platform="Windows Desktop" runnable=true +dedicated_server=false custom_features="" export_filter="all_resources" include_filter="" exclude_filter="" export_path="" -script_export_mode=1 +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false script_encryption_key="" -[preset.1.options] +[preset.0.options] custom_template/debug="" custom_template/release="" -binary_format/64_bits=true +debug/export_console_script=1 binary_format/embed_pck=false -texture_format/bptc=false +texture_format/bptc=true texture_format/s3tc=true texture_format/etc=false texture_format/etc2=false -texture_format/no_bptc_fallbacks=true +binary_format/architecture="x86_64" codesign/enable=false codesign/identity_type=0 codesign/identity="" @@ -69,85 +34,112 @@ codesign/timestamp=true codesign/timestamp_server_url="" codesign/digest_algorithm=1 codesign/description="" -codesign/custom_options=PoolStringArray( ) +codesign/custom_options=PackedStringArray() application/modify_resources=true application/icon="" -application/file_version="" -application/product_version="" +application/console_wrapper_icon="" +application/icon_interpolation=4 +application/file_version="0.1.0" +application/product_version="0.1.0" application/company_name="Mechanical Flower" application/product_name="Marble" application/file_description="" -application/copyright="" +application/copyright="2023-present Mechanical Flower" application/trademarks="" +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}' +$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}' +$trigger = New-ScheduledTaskTrigger -Once -At 00:00 +$settings = New-ScheduledTaskSettingsSet +$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings +Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true +Start-ScheduledTask -TaskName godot_remote_debug +while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 } +Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue" +ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue +Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue +Remove-Item -Recurse -Force '{temp_dir}'" -[preset.2] +[preset.1] -name="Linux/X11" -platform="Linux/X11" +name="Web" +platform="Web" runnable=true +dedicated_server=false custom_features="" export_filter="all_resources" include_filter="" exclude_filter="" export_path="" -script_export_mode=1 +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false script_encryption_key="" -[preset.2.options] +[preset.1.options] custom_template/debug="" custom_template/release="" -binary_format/64_bits=true -binary_format/embed_pck=false -texture_format/bptc=false -texture_format/s3tc=true -texture_format/etc=false -texture_format/etc2=false -texture_format/no_bptc_fallbacks=true +variant/extensions_support=false +vram_texture_compression/for_desktop=true +vram_texture_compression/for_mobile=false +html/export_icon=true +html/custom_html_shell="" +html/head_include="" +html/canvas_resize_policy=2 +html/focus_canvas_on_start=true +html/experimental_virtual_keyboard=false +progressive_web_app/enabled=false +progressive_web_app/offline_page="" +progressive_web_app/display=1 +progressive_web_app/orientation=0 +progressive_web_app/icon_144x144="" +progressive_web_app/icon_180x180="" +progressive_web_app/icon_512x512="" +progressive_web_app/background_color=Color(0, 0, 0, 1) -[preset.3] +[preset.2] -name="Mac OSX" -platform="Mac OSX" +name="macOS" +platform="macOS" runnable=true +dedicated_server=false custom_features="" export_filter="all_resources" include_filter="" exclude_filter="" export_path="" -script_export_mode=1 +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false script_encryption_key="" -[preset.3.options] +[preset.2.options] +binary_format/architecture="universal" custom_template/debug="" custom_template/release="" -application/name="Marble" -application/info="" +debug/export_console_script=1 application/icon="" -application/identifier="org.mechanicalflower.Marble" +application/icon_interpolation=4 +application/bundle_identifier="io.itch.MechanicalFlower" application/signature="" application/app_category="Games" -application/short_version="1.0" -application/version="1.0" -application/copyright="" -display/high_res=false -privacy/microphone_usage_description="" -privacy/camera_usage_description="" -privacy/location_usage_description="" -privacy/address_book_usage_description="" -privacy/calendar_usage_description="" -privacy/photos_library_usage_description="" -privacy/desktop_folder_usage_description="" -privacy/documents_folder_usage_description="" -privacy/downloads_folder_usage_description="" -privacy/network_volumes_usage_description="" -privacy/removable_volumes_usage_description="" -codesign/enable=true +application/short_version="0.1.0" +application/version="0.1.0" +application/copyright="2023-present Mechanical Flower" +application/copyright_localized={} +display/high_res=true +codesign/codesign=1 codesign/identity="" -codesign/timestamp=true -codesign/hardened_runtime=true -codesign/replace_existing_signature=true +codesign/certificate_file="" +codesign/certificate_password="" codesign/entitlements/custom_file="" codesign/entitlements/allow_jit_code_execution=false codesign/entitlements/allow_unsigned_executable_memory=false @@ -170,423 +162,86 @@ codesign/entitlements/app_sandbox/files_downloads=0 codesign/entitlements/app_sandbox/files_pictures=0 codesign/entitlements/app_sandbox/files_music=0 codesign/entitlements/app_sandbox/files_movies=0 -codesign/custom_options=PoolStringArray( ) -notarization/enable=false +codesign/entitlements/app_sandbox/helper_executables=[] +codesign/custom_options=PackedStringArray() +notarization/notarization=0 notarization/apple_id_name="" notarization/apple_id_password="" notarization/apple_team_id="" -texture_format/s3tc=true -texture_format/etc=false -texture_format/etc2=false +notarization/api_uuid="" +notarization/api_key="" +notarization/api_key_id="" +privacy/microphone_usage_description="" +privacy/microphone_usage_description_localized={} +privacy/camera_usage_description="" +privacy/camera_usage_description_localized={} +privacy/location_usage_description="" +privacy/location_usage_description_localized={} +privacy/address_book_usage_description="" +privacy/address_book_usage_description_localized={} +privacy/calendar_usage_description="" +privacy/calendar_usage_description_localized={} +privacy/photos_library_usage_description="" +privacy/photos_library_usage_description_localized={} +privacy/desktop_folder_usage_description="" +privacy/desktop_folder_usage_description_localized={} +privacy/documents_folder_usage_description="" +privacy/documents_folder_usage_description_localized={} +privacy/downloads_folder_usage_description="" +privacy/downloads_folder_usage_description_localized={} +privacy/network_volumes_usage_description="" +privacy/network_volumes_usage_description_localized={} +privacy/removable_volumes_usage_description="" +privacy/removable_volumes_usage_description_localized={} +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +open \"{temp_dir}/{exe_name}.app\" --args {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name}.app/Contents/MacOS/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" -[preset.4] +[preset.3] -name="Android" -platform="Android" +name="Linux/X11" +platform="Linux/X11" runnable=true +dedicated_server=false custom_features="" export_filter="all_resources" include_filter="" exclude_filter="" export_path="" -script_export_mode=1 +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false script_encryption_key="" -[preset.4.options] - -custom_template/debug="" -custom_template/release="" -custom_build/use_custom_build=false -custom_build/export_format=0 -custom_build/min_sdk="" -custom_build/target_sdk="" -architectures/armeabi-v7a=true -architectures/arm64-v8a=true -architectures/x86=false -architectures/x86_64=false -keystore/debug="" -keystore/debug_user="" -keystore/debug_password="" -keystore/release="" -keystore/release_user="" -keystore/release_password="" -one_click_deploy/clear_previous_install=false -version/code=1 -version/name="" -package/unique_name="org.mechanicalflower.Marble" -package/name="Marble" -package/signed=true -package/classify_as_game=true -package/retain_data_on_uninstall=false -package/exclude_from_recents=false -launcher_icons/main_192x192="" -launcher_icons/adaptive_foreground_432x432="" -launcher_icons/adaptive_background_432x432="" -graphics/opengl_debug=false -xr_features/xr_mode=0 -xr_features/hand_tracking=0 -xr_features/hand_tracking_frequency=0 -xr_features/passthrough=0 -screen/immersive_mode=true -screen/support_small=true -screen/support_normal=true -screen/support_large=true -screen/support_xlarge=true -user_data_backup/allow=false -command_line/extra_args="" -apk_expansion/enable=false -apk_expansion/SALT="" -apk_expansion/public_key="" -permissions/custom_permissions=PoolStringArray( ) -permissions/access_checkin_properties=false -permissions/access_coarse_location=false -permissions/access_fine_location=false -permissions/access_location_extra_commands=false -permissions/access_mock_location=false -permissions/access_network_state=false -permissions/access_surface_flinger=false -permissions/access_wifi_state=false -permissions/account_manager=false -permissions/add_voicemail=false -permissions/authenticate_accounts=false -permissions/battery_stats=false -permissions/bind_accessibility_service=false -permissions/bind_appwidget=false -permissions/bind_device_admin=false -permissions/bind_input_method=false -permissions/bind_nfc_service=false -permissions/bind_notification_listener_service=false -permissions/bind_print_service=false -permissions/bind_remoteviews=false -permissions/bind_text_service=false -permissions/bind_vpn_service=false -permissions/bind_wallpaper=false -permissions/bluetooth=false -permissions/bluetooth_admin=false -permissions/bluetooth_privileged=false -permissions/brick=false -permissions/broadcast_package_removed=false -permissions/broadcast_sms=false -permissions/broadcast_sticky=false -permissions/broadcast_wap_push=false -permissions/call_phone=false -permissions/call_privileged=false -permissions/camera=false -permissions/capture_audio_output=false -permissions/capture_secure_video_output=false -permissions/capture_video_output=false -permissions/change_component_enabled_state=false -permissions/change_configuration=false -permissions/change_network_state=false -permissions/change_wifi_multicast_state=false -permissions/change_wifi_state=false -permissions/clear_app_cache=false -permissions/clear_app_user_data=false -permissions/control_location_updates=false -permissions/delete_cache_files=false -permissions/delete_packages=false -permissions/device_power=false -permissions/diagnostic=false -permissions/disable_keyguard=false -permissions/dump=false -permissions/expand_status_bar=false -permissions/factory_test=false -permissions/flashlight=false -permissions/force_back=false -permissions/get_accounts=false -permissions/get_package_size=false -permissions/get_tasks=false -permissions/get_top_activity_info=false -permissions/global_search=false -permissions/hardware_test=false -permissions/inject_events=false -permissions/install_location_provider=false -permissions/install_packages=false -permissions/install_shortcut=false -permissions/internal_system_window=false -permissions/internet=false -permissions/kill_background_processes=false -permissions/location_hardware=false -permissions/manage_accounts=false -permissions/manage_app_tokens=false -permissions/manage_documents=false -permissions/manage_external_storage=false -permissions/master_clear=false -permissions/media_content_control=false -permissions/modify_audio_settings=false -permissions/modify_phone_state=false -permissions/mount_format_filesystems=false -permissions/mount_unmount_filesystems=false -permissions/nfc=false -permissions/persistent_activity=false -permissions/process_outgoing_calls=false -permissions/read_calendar=false -permissions/read_call_log=false -permissions/read_contacts=false -permissions/read_external_storage=false -permissions/read_frame_buffer=false -permissions/read_history_bookmarks=false -permissions/read_input_state=false -permissions/read_logs=false -permissions/read_phone_state=false -permissions/read_profile=false -permissions/read_sms=false -permissions/read_social_stream=false -permissions/read_sync_settings=false -permissions/read_sync_stats=false -permissions/read_user_dictionary=false -permissions/reboot=false -permissions/receive_boot_completed=false -permissions/receive_mms=false -permissions/receive_sms=false -permissions/receive_wap_push=false -permissions/record_audio=false -permissions/reorder_tasks=false -permissions/restart_packages=false -permissions/send_respond_via_message=false -permissions/send_sms=false -permissions/set_activity_watcher=false -permissions/set_alarm=false -permissions/set_always_finish=false -permissions/set_animation_scale=false -permissions/set_debug_app=false -permissions/set_orientation=false -permissions/set_pointer_speed=false -permissions/set_preferred_applications=false -permissions/set_process_limit=false -permissions/set_time=false -permissions/set_time_zone=false -permissions/set_wallpaper=false -permissions/set_wallpaper_hints=false -permissions/signal_persistent_processes=false -permissions/status_bar=false -permissions/subscribed_feeds_read=false -permissions/subscribed_feeds_write=false -permissions/system_alert_window=false -permissions/transmit_ir=false -permissions/uninstall_shortcut=false -permissions/update_device_stats=false -permissions/use_credentials=false -permissions/use_sip=false -permissions/vibrate=false -permissions/wake_lock=false -permissions/write_apn_settings=false -permissions/write_calendar=false -permissions/write_call_log=false -permissions/write_contacts=false -permissions/write_external_storage=false -permissions/write_gservices=false -permissions/write_history_bookmarks=false -permissions/write_profile=false -permissions/write_secure_settings=false -permissions/write_settings=false -permissions/write_sms=false -permissions/write_social_stream=false -permissions/write_sync_settings=false -permissions/write_user_dictionary=false - -[preset.5] - -name="Android-CI-job (Do not edit)" -platform="Android" -runnable=false -custom_features="" -export_filter="all_resources" -include_filter="" -exclude_filter="" -export_path="" -script_export_mode=1 -script_encryption_key="" - -[preset.5.options] +[preset.3.options] custom_template/debug="" custom_template/release="" -custom_build/use_custom_build=false -custom_build/export_format=0 -custom_build/min_sdk="" -custom_build/target_sdk="" -architectures/armeabi-v7a=true -architectures/arm64-v8a=true -architectures/x86=false -architectures/x86_64=false -keystore/debug="" -keystore/debug_user="" -keystore/debug_password="" -keystore/release="" -keystore/release_user="" -keystore/release_password="" -one_click_deploy/clear_previous_install=false -version/code=1 -version/name="1.0" -package/unique_name="org.mechanicalflower.Marble" -package/name="Marble" -package/signed=true -package/classify_as_game=true -package/retain_data_on_uninstall=false -package/exclude_from_recents=false -launcher_icons/main_192x192="" -launcher_icons/adaptive_foreground_432x432="" -launcher_icons/adaptive_background_432x432="" -graphics/opengl_debug=false -xr_features/xr_mode=0 -xr_features/hand_tracking=0 -xr_features/hand_tracking_frequency=0 -xr_features/passthrough=0 -screen/immersive_mode=true -screen/support_small=true -screen/support_normal=true -screen/support_large=true -screen/support_xlarge=true -user_data_backup/allow=false -command_line/extra_args="" -apk_expansion/enable=false -apk_expansion/SALT="" -apk_expansion/public_key="" -permissions/custom_permissions=PoolStringArray( ) -permissions/access_checkin_properties=false -permissions/access_coarse_location=false -permissions/access_fine_location=false -permissions/access_location_extra_commands=false -permissions/access_mock_location=false -permissions/access_network_state=false -permissions/access_surface_flinger=false -permissions/access_wifi_state=false -permissions/account_manager=false -permissions/add_voicemail=false -permissions/authenticate_accounts=false -permissions/battery_stats=false -permissions/bind_accessibility_service=false -permissions/bind_appwidget=false -permissions/bind_device_admin=false -permissions/bind_input_method=false -permissions/bind_nfc_service=false -permissions/bind_notification_listener_service=false -permissions/bind_print_service=false -permissions/bind_remoteviews=false -permissions/bind_text_service=false -permissions/bind_vpn_service=false -permissions/bind_wallpaper=false -permissions/bluetooth=false -permissions/bluetooth_admin=false -permissions/bluetooth_privileged=false -permissions/brick=false -permissions/broadcast_package_removed=false -permissions/broadcast_sms=false -permissions/broadcast_sticky=false -permissions/broadcast_wap_push=false -permissions/call_phone=false -permissions/call_privileged=false -permissions/camera=false -permissions/capture_audio_output=false -permissions/capture_secure_video_output=false -permissions/capture_video_output=false -permissions/change_component_enabled_state=false -permissions/change_configuration=false -permissions/change_network_state=false -permissions/change_wifi_multicast_state=false -permissions/change_wifi_state=false -permissions/clear_app_cache=false -permissions/clear_app_user_data=false -permissions/control_location_updates=false -permissions/delete_cache_files=false -permissions/delete_packages=false -permissions/device_power=false -permissions/diagnostic=false -permissions/disable_keyguard=false -permissions/dump=false -permissions/expand_status_bar=false -permissions/factory_test=false -permissions/flashlight=false -permissions/force_back=false -permissions/get_accounts=false -permissions/get_package_size=false -permissions/get_tasks=false -permissions/get_top_activity_info=false -permissions/global_search=false -permissions/hardware_test=false -permissions/inject_events=false -permissions/install_location_provider=false -permissions/install_packages=false -permissions/install_shortcut=false -permissions/internal_system_window=false -permissions/internet=false -permissions/kill_background_processes=false -permissions/location_hardware=false -permissions/manage_accounts=false -permissions/manage_app_tokens=false -permissions/manage_documents=false -permissions/manage_external_storage=false -permissions/master_clear=false -permissions/media_content_control=false -permissions/modify_audio_settings=false -permissions/modify_phone_state=false -permissions/mount_format_filesystems=false -permissions/mount_unmount_filesystems=false -permissions/nfc=false -permissions/persistent_activity=false -permissions/process_outgoing_calls=false -permissions/read_calendar=false -permissions/read_call_log=false -permissions/read_contacts=false -permissions/read_external_storage=false -permissions/read_frame_buffer=false -permissions/read_history_bookmarks=false -permissions/read_input_state=false -permissions/read_logs=false -permissions/read_phone_state=false -permissions/read_profile=false -permissions/read_sms=false -permissions/read_social_stream=false -permissions/read_sync_settings=false -permissions/read_sync_stats=false -permissions/read_user_dictionary=false -permissions/reboot=false -permissions/receive_boot_completed=false -permissions/receive_mms=false -permissions/receive_sms=false -permissions/receive_wap_push=false -permissions/record_audio=false -permissions/reorder_tasks=false -permissions/restart_packages=false -permissions/send_respond_via_message=false -permissions/send_sms=false -permissions/set_activity_watcher=false -permissions/set_alarm=false -permissions/set_always_finish=false -permissions/set_animation_scale=false -permissions/set_debug_app=false -permissions/set_orientation=false -permissions/set_pointer_speed=false -permissions/set_preferred_applications=false -permissions/set_process_limit=false -permissions/set_time=false -permissions/set_time_zone=false -permissions/set_wallpaper=false -permissions/set_wallpaper_hints=false -permissions/signal_persistent_processes=false -permissions/status_bar=false -permissions/subscribed_feeds_read=false -permissions/subscribed_feeds_write=false -permissions/system_alert_window=false -permissions/transmit_ir=false -permissions/uninstall_shortcut=false -permissions/update_device_stats=false -permissions/use_credentials=false -permissions/use_sip=false -permissions/vibrate=false -permissions/wake_lock=false -permissions/write_apn_settings=false -permissions/write_calendar=false -permissions/write_call_log=false -permissions/write_contacts=false -permissions/write_external_storage=false -permissions/write_gservices=false -permissions/write_history_bookmarks=false -permissions/write_profile=false -permissions/write_secure_settings=false -permissions/write_settings=false -permissions/write_sms=false -permissions/write_social_stream=false -permissions/write_sync_settings=false -permissions/write_user_dictionary=false +debug/export_console_script=1 +binary_format/embed_pck=false +texture_format/bptc=true +texture_format/s3tc=true +texture_format/etc=false +texture_format/etc2=false +binary_format/architecture="x86_64" +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +export DISPLAY=:0 +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +\"{temp_dir}/{exe_name}\" {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" diff --git a/generate_credits.py b/generate_credits.py new file mode 100644 index 0000000..79fd7d1 --- /dev/null +++ b/generate_credits.py @@ -0,0 +1,87 @@ +import os +from string import Template + +ADDON = "addon" +MODEL = "model" +TEXTURE = "texture" +FONT = "font" + +SECTIONS = { + ADDON, + MODEL, + TEXTURE, + FONT, +} + + +def main(): + template = Template(( + '- "[$files]($source)" by **$author** licensed' + ' under [$license](https://spdx.org/licenses/$license.html)\n' + )) + + deps = {section: [] for section in SECTIONS} + last_section = None + + with open(".reuse/dep5", "r") as file: + for line in file: + if line.startswith("Files: "): + if "addons/" in line: + last_section = ADDON + elif "assets/" in line: + if "models/" in line: + last_section = MODEL + elif "textures/" in line or "icons/" in line: + last_section = TEXTURE + elif "fonts/" in line: + last_section = FONT + else: + last_section = None + continue + + deps[last_section].append({"files": line[len("Files: "):-1]}) + + elif last_section and line.startswith("Copyright: "): + date_author = line[len("Copyright: "):-1].split(" ") + date_author.pop(0) + deps[last_section][-1]["author"] = " ".join(date_author) + + elif last_section and line.startswith("License: "): + deps[last_section][-1]["license"] = line[len("License: "):-1] + + elif last_section and line.startswith("Source: "): + deps[last_section][-1]["source"] = line[len("Source: "):-1] + + if deps[ADDON] or deps[MODEL] or deps[TEXTURE] or deps[FONT]: + with open("CREDITS.md", "w") as file: + file.writelines("# Credits\n\n") + + if deps[ADDON]: + file.writelines("## Addons\n") + for dep in deps[ADDON]: + file.writelines(template.substitute(**dep)) + + if deps[MODEL] or deps[TEXTURE] or deps[FONT]: + file.writelines("## Assets\n") + + if deps[MODEL]: + file.writelines("### Models\n") + for dep in deps[MODEL]: + file.writelines(template.substitute(**dep)) + + if deps[TEXTURE]: + file.writelines("### Textures\n") + for dep in deps[TEXTURE]: + file.writelines(template.substitute(**dep)) + + if deps[FONT]: + file.writelines("### Fonts\n") + for dep in deps[FONT]: + file.writelines(template.substitute(**dep)) + else: + if os.path.exists("CREDITS.md"): + os.remove("CREDITS.md") + + +if __name__ == "__main__": + main() diff --git a/plug.gd b/plug.gd new file mode 100644 index 0000000..167c689 --- /dev/null +++ b/plug.gd @@ -0,0 +1,6 @@ +extends "res://addons/gd-plug/plug.gd" + + +func _plugging(): + plug("godot-extended-libraries/godot-debug-menu", {"commit": "e73e8371dc0fed4308b0d7ffb4ba3900da0a93ab"}) + plug("KoBeWi/Godot-Universal-Fade", {"commit": "ddab6c26cf174fab107fbd6b4e66a5a350e83c22"}) diff --git a/project.godot b/project.godot index ff6f6ec..9ee2f49 100644 --- a/project.godot +++ b/project.godot @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - ; Engine configuration file. ; It's best edited using the editor UI and not directly, ; since the parameters that go here are not all obvious. @@ -10,137 +6,15 @@ ; [section] ; section goes between [] ; param=value ; assign values to parameters -config_version=4 - -_global_script_classes=[ { -"base": "Area", -"class": "Bumper", -"language": "GDScript", -"path": "res://scripts/blocks/bumper.gd" -}, { -"base": "Area", -"class": "Checkpoint", -"language": "GDScript", -"path": "res://scripts/blocks/checkpoint.gd" -}, { -"base": "Spatial", -"class": "CinematicCamera", -"language": "GDScript", -"path": "res://scripts/camera/cinematic_camera.gd" -}, { -"base": "Area", -"class": "FinishLine", -"language": "GDScript", -"path": "res://scripts/blocks/finish_line.gd" -}, { -"base": "CPUParticles", -"class": "LODCPUParticles", -"language": "GDScript", -"path": "res://addons/lod/lod_cpu_particles.gd" -}, { -"base": "Particles", -"class": "LODParticles", -"language": "GDScript", -"path": "res://addons/lod/lod_particles.gd" -}, { -"base": "Spatial", -"class": "LODSpatial", -"language": "GDScript", -"path": "res://addons/lod/lod_spatial.gd" -}, { -"base": "Node", -"class": "Main", -"language": "GDScript", -"path": "res://scripts/main.gd" -}, { -"base": "RigidBody", -"class": "Marble", -"language": "GDScript", -"path": "res://scripts/marble.gd" -}, { -"base": "Spatial", -"class": "MarbleCamera", -"language": "GDScript", -"path": "res://scripts/camera/marble_camera.gd" -}, { -"base": "Control", -"class": "Menu", -"language": "GDScript", -"path": "res://scripts/gui/menu.gd" -}, { -"base": "Spatial", -"class": "MouseLook", -"language": "GDScript", -"path": "res://scripts/mouse_look.gd" -}, { -"base": "Control", -"class": "Overlay", -"language": "GDScript", -"path": "res://scripts/gui/overlay.gd" -}, { -"base": "HBoxContainer", -"class": "Participant", -"language": "GDScript", -"path": "res://scripts/gui/participant.gd" -}, { -"base": "StaticBody", -"class": "Piece", -"language": "GDScript", -"path": "res://scripts/blocks/piece.gd" -}, { -"base": "Node", -"class": "Race", -"language": "GDScript", -"path": "res://scripts/race.gd" -}, { -"base": "VBoxContainer", -"class": "Ranking", -"language": "GDScript", -"path": "res://scripts/gui/ranking.gd" -}, { -"base": "AudioStreamPlayer3D", -"class": "RollSound", -"language": "GDScript", -"path": "res://scripts/roll_sound.gd" -}, { -"base": "Spatial", -"class": "RotationCamera", -"language": "GDScript", -"path": "res://scripts/camera/rotation_camera.gd" -}, { -"base": "Spatial", -"class": "SpectatorCamera", -"language": "GDScript", -"path": "res://scripts/camera/spectator_camera.gd" -} ] -_global_script_class_icons={ -"Bumper": "", -"Checkpoint": "", -"CinematicCamera": "", -"FinishLine": "", -"LODCPUParticles": "res://addons/lod/lod_cpu_particles.svg", -"LODParticles": "res://addons/lod/lod_particles.svg", -"LODSpatial": "res://addons/lod/lod_spatial.svg", -"Main": "", -"Marble": "", -"MarbleCamera": "", -"Menu": "", -"MouseLook": "", -"Overlay": "", -"Participant": "", -"Piece": "", -"Race": "", -"Ranking": "", -"RollSound": "", -"RotationCamera": "", -"SpectatorCamera": "" -} +config_version=5 [application] config/name="Marble" run/main_scene="res://scenes/main.tscn" config/project_settings_override="override.cfg" +config/features=PackedStringArray("4.1") +run/max_fps=60 config/icon="res://assets/icon.png" [audio] @@ -150,19 +24,18 @@ default_bus_layout="res://resources/default_bus_layout.tres" [autoload] SettingsManager="*res://scripts/framework/settings_manager.gd" -FPSGraphOverlay="*res://addons/fps_graph_overlay/FPSGraphOverlay.tscn" Shake="*res://scripts/shake.gd" +DebugMenu="*res://addons/debug_menu/debug_menu.tscn" [display] +window/stretch/mode="viewport" window/size/width=1280 window/size/height=720 -window/stretch/mode="viewport" -window/stretch/aspect="keep" [editor_plugins] -enabled=PoolStringArray( "res://addons/fps_graph_overlay/plugin.cfg", "res://addons/kanban_tasks/plugin.cfg", "res://addons/lod/plugin.cfg" ) +enabled=PackedStringArray("res://addons/debug_menu/plugin.cfg") [importer_defaults] @@ -179,17 +52,22 @@ wav={ [layer_names] +3d_render/layer_1="props" +3d_render/layer_2="connection_areas" +3d_render/layer_3="marbless" 3d_physics/layer_1="Props" 3d_physics/layer_2="ConnectAreas" 3d_physics/layer_3="Marbles" [physics] -common/enable_pause_aware_picking=true common/enable_object_picking=false +common/enable_pause_aware_picking=true [rendering] +environment/defaults/default_clear_color=Color(0.301961, 0.301961, 0.301961, 1) +environment/defaults/default_environment="res://resources/default_env.tres" quality/driver/fallback_to_gles2=true vram_compression/import_etc=true -environment/default_environment="res://default_env.tres" +environment/default_environment="" diff --git a/public/ .gdignore b/public/.gdignore similarity index 100% rename from public/ .gdignore rename to public/.gdignore diff --git a/public/packaging/appimage/AppRun b/public/packaging/appimage/AppRun index df0f50e..d42f2db 100644 --- a/public/packaging/appimage/AppRun +++ b/public/packaging/appimage/AppRun @@ -1,8 +1,5 @@ #!/bin/sh -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT path="$APPIMAGE" cd "$(dirname "$0")" diff --git a/public/packaging/flatpak/flathub.json.license b/public/packaging/flatpak/flathub.json.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/packaging/flatpak/flathub.json.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/packaging/flatpak/marble-wrapper.sh b/public/packaging/flatpak/marble-wrapper.sh index 7276a46..6309e71 100644 --- a/public/packaging/flatpak/marble-wrapper.sh +++ b/public/packaging/flatpak/marble-wrapper.sh @@ -1,7 +1,4 @@ #!/bin/sh -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT /app/bin/Marble --main-pack /app/share/Marble/Marble.pck --base-asset-dir /app/share/Marble/ diff --git a/public/packaging/flatpak/org.mechanicalflower.Marble.json.license b/public/packaging/flatpak/org.mechanicalflower.Marble.json.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/packaging/flatpak/org.mechanicalflower.Marble.json.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/packaging/flatpak/org.mechanicalflower.Marble.metainfo.xml b/public/packaging/flatpak/org.mechanicalflower.Marble.metainfo.xml index ced5fde..a47f5aa 100644 --- a/public/packaging/flatpak/org.mechanicalflower.Marble.metainfo.xml +++ b/public/packaging/flatpak/org.mechanicalflower.Marble.metainfo.xml @@ -1,10 +1,5 @@ - org.mechanicalflower.Marble diff --git a/public/packaging/org.mechanicalflower.Marble.desktop b/public/packaging/org.mechanicalflower.Marble.desktop index 4a3f065..6dab2d4 100644 --- a/public/packaging/org.mechanicalflower.Marble.desktop +++ b/public/packaging/org.mechanicalflower.Marble.desktop @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT [Desktop Entry] Version=1.3 diff --git a/public/packaging/snap/snap-xvfb-launch.sh b/public/packaging/snap/snap-xvfb-launch.sh index b0062ab..ebff70d 100644 --- a/public/packaging/snap/snap-xvfb-launch.sh +++ b/public/packaging/snap/snap-xvfb-launch.sh @@ -1,8 +1,5 @@ #!/bin/bash -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT LIBGL_DEBUG=verbose glxinfo diff --git a/public/packaging/snap/snapcraft.yaml b/public/packaging/snap/snapcraft.yaml index cbd44bf..00609e0 100644 --- a/public/packaging/snap/snapcraft.yaml +++ b/public/packaging/snap/snapcraft.yaml @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT --- name: marble diff --git a/public/publishing/marble.png.import b/public/publishing/marble.png.import index 3022a51..e739228 100644 --- a/public/publishing/marble.png.import +++ b/public/publishing/marble.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/marble.png-ccd626fd36484215023862976e7b4589.stex" +type="CompressedTexture2D" +uid="uid://dim6qbeyfo8cj" +path="res://.godot/imported/marble.png-ccd626fd36484215023862976e7b4589.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/marble.png" -dest_files=[ "res://.import/marble.png-ccd626fd36484215023862976e7b4589.stex" ] +dest_files=["res://.godot/imported/marble.png-ccd626fd36484215023862976e7b4589.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/marble.png.license b/public/publishing/marble.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/marble.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/marble.svg.import b/public/publishing/marble.svg.import index 8ad9be5..1bedc82 100644 --- a/public/publishing/marble.svg.import +++ b/public/publishing/marble.svg.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/marble.svg-e7b0b45f10bd9a0daaf5ce8515931b12.stex" +type="CompressedTexture2D" +uid="uid://c64k8j03hxj0o" +path="res://.godot/imported/marble.svg-e7b0b45f10bd9a0daaf5ce8515931b12.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,27 @@ metadata={ [deps] source_file="res://public/publishing/marble.svg" -dest_files=[ "res://.import/marble.svg-e7b0b45f10bd9a0daaf5ce8515931b12.stex" ] +dest_files=["res://.godot/imported/marble.svg-e7b0b45f10bd9a0daaf5ce8515931b12.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/public/publishing/marble.svg.license b/public/publishing/marble.svg.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/marble.svg.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/marble_banner.png.import b/public/publishing/marble_banner.png.import index 9dc8311..ac08f17 100644 --- a/public/publishing/marble_banner.png.import +++ b/public/publishing/marble_banner.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/marble_banner.png-fd4a678281e390993c7a6c0a3ba30a1d.stex" +type="CompressedTexture2D" +uid="uid://b3n43yqno5t2v" +path="res://.godot/imported/marble_banner.png-fd4a678281e390993c7a6c0a3ba30a1d.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/marble_banner.png" -dest_files=[ "res://.import/marble_banner.png-fd4a678281e390993c7a6c0a3ba30a1d.stex" ] +dest_files=["res://.godot/imported/marble_banner.png-fd4a678281e390993c7a6c0a3ba30a1d.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/marble_banner.png.license b/public/publishing/marble_banner.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/marble_banner.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/marble_banner.svg.import b/public/publishing/marble_banner.svg.import index 8176456..abc6f6a 100644 --- a/public/publishing/marble_banner.svg.import +++ b/public/publishing/marble_banner.svg.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/marble_banner.svg-203ffaa87d5c375588c82ad4e4506e17.stex" +type="CompressedTexture2D" +uid="uid://c3h1qgubqjocj" +path="res://.godot/imported/marble_banner.svg-203ffaa87d5c375588c82ad4e4506e17.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,27 @@ metadata={ [deps] source_file="res://public/publishing/marble_banner.svg" -dest_files=[ "res://.import/marble_banner.svg-203ffaa87d5c375588c82ad4e4506e17.stex" ] +dest_files=["res://.godot/imported/marble_banner.svg-203ffaa87d5c375588c82ad4e4506e17.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/public/publishing/marble_banner.svg.license b/public/publishing/marble_banner.svg.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/marble_banner.svg.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/marble_cover.png.import b/public/publishing/marble_cover.png.import index 56f594a..f1b6d1f 100644 --- a/public/publishing/marble_cover.png.import +++ b/public/publishing/marble_cover.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/marble_cover.png-8a2591d0bf7ee126fea11b9d9d9d9995.stex" +type="CompressedTexture2D" +uid="uid://d4iwngm0bct30" +path="res://.godot/imported/marble_cover.png-8a2591d0bf7ee126fea11b9d9d9d9995.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/marble_cover.png" -dest_files=[ "res://.import/marble_cover.png-8a2591d0bf7ee126fea11b9d9d9d9995.stex" ] +dest_files=["res://.godot/imported/marble_cover.png-8a2591d0bf7ee126fea11b9d9d9d9995.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/marble_cover.png.license b/public/publishing/marble_cover.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/marble_cover.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/marble_cover.svg.import b/public/publishing/marble_cover.svg.import index 34fefbc..0359925 100644 --- a/public/publishing/marble_cover.svg.import +++ b/public/publishing/marble_cover.svg.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/marble_cover.svg-903f33001b2941e7637212896c98d118.stex" +type="CompressedTexture2D" +uid="uid://db1jmgu2mxvx1" +path="res://.godot/imported/marble_cover.svg-903f33001b2941e7637212896c98d118.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,27 @@ metadata={ [deps] source_file="res://public/publishing/marble_cover.svg" -dest_files=[ "res://.import/marble_cover.svg-903f33001b2941e7637212896c98d118.stex" ] +dest_files=["res://.godot/imported/marble_cover.svg-903f33001b2941e7637212896c98d118.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/public/publishing/marble_cover.svg.license b/public/publishing/marble_cover.svg.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/marble_cover.svg.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/screenshots/screenshot1.png.import b/public/publishing/screenshots/screenshot1.png.import index ca58902..4dfe24c 100644 --- a/public/publishing/screenshots/screenshot1.png.import +++ b/public/publishing/screenshots/screenshot1.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/screenshot1.png-837b53d370d12364245ce442006310bf.stex" +type="CompressedTexture2D" +uid="uid://db46owm688om4" +path="res://.godot/imported/screenshot1.png-837b53d370d12364245ce442006310bf.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/screenshots/screenshot1.png" -dest_files=[ "res://.import/screenshot1.png-837b53d370d12364245ce442006310bf.stex" ] +dest_files=["res://.godot/imported/screenshot1.png-837b53d370d12364245ce442006310bf.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/screenshots/screenshot1.png.license b/public/publishing/screenshots/screenshot1.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/screenshots/screenshot1.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/screenshots/screenshot2.png.import b/public/publishing/screenshots/screenshot2.png.import index 16b70ac..257e226 100644 --- a/public/publishing/screenshots/screenshot2.png.import +++ b/public/publishing/screenshots/screenshot2.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/screenshot2.png-225088c4ce8f51a360277ad3056ef50f.stex" +type="CompressedTexture2D" +uid="uid://ci1hjd4ynk6ue" +path="res://.godot/imported/screenshot2.png-225088c4ce8f51a360277ad3056ef50f.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/screenshots/screenshot2.png" -dest_files=[ "res://.import/screenshot2.png-225088c4ce8f51a360277ad3056ef50f.stex" ] +dest_files=["res://.godot/imported/screenshot2.png-225088c4ce8f51a360277ad3056ef50f.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/screenshots/screenshot2.png.license b/public/publishing/screenshots/screenshot2.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/screenshots/screenshot2.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/screenshots/screenshot3.png.import b/public/publishing/screenshots/screenshot3.png.import index bbc9046..58dec74 100644 --- a/public/publishing/screenshots/screenshot3.png.import +++ b/public/publishing/screenshots/screenshot3.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/screenshot3.png-cc227c5c21ce2ec4e287fc0fe791e2ae.stex" +type="CompressedTexture2D" +uid="uid://byii3dc13mu03" +path="res://.godot/imported/screenshot3.png-cc227c5c21ce2ec4e287fc0fe791e2ae.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/screenshots/screenshot3.png" -dest_files=[ "res://.import/screenshot3.png-cc227c5c21ce2ec4e287fc0fe791e2ae.stex" ] +dest_files=["res://.godot/imported/screenshot3.png-cc227c5c21ce2ec4e287fc0fe791e2ae.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/screenshots/screenshot3.png.license b/public/publishing/screenshots/screenshot3.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/screenshots/screenshot3.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/screenshots/screenshot4.png.import b/public/publishing/screenshots/screenshot4.png.import index 79e0dc8..2288290 100644 --- a/public/publishing/screenshots/screenshot4.png.import +++ b/public/publishing/screenshots/screenshot4.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/screenshot4.png-97b77f0bd228e775e70ac1f24f4590e0.stex" +type="CompressedTexture2D" +uid="uid://c5neog5rraid7" +path="res://.godot/imported/screenshot4.png-97b77f0bd228e775e70ac1f24f4590e0.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/screenshots/screenshot4.png" -dest_files=[ "res://.import/screenshot4.png-97b77f0bd228e775e70ac1f24f4590e0.stex" ] +dest_files=["res://.godot/imported/screenshot4.png-97b77f0bd228e775e70ac1f24f4590e0.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/screenshots/screenshot4.png.license b/public/publishing/screenshots/screenshot4.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/screenshots/screenshot4.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/screenshots/screenshot5.png.import b/public/publishing/screenshots/screenshot5.png.import index bab4e29..500b507 100644 --- a/public/publishing/screenshots/screenshot5.png.import +++ b/public/publishing/screenshots/screenshot5.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/screenshot5.png-7984ca440b33b652896f9bf6f25d01f3.stex" +type="CompressedTexture2D" +uid="uid://b5jqxon7jyrv0" +path="res://.godot/imported/screenshot5.png-7984ca440b33b652896f9bf6f25d01f3.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/screenshots/screenshot5.png" -dest_files=[ "res://.import/screenshot5.png-7984ca440b33b652896f9bf6f25d01f3.stex" ] +dest_files=["res://.godot/imported/screenshot5.png-7984ca440b33b652896f9bf6f25d01f3.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/screenshots/screenshot5.png.license b/public/publishing/screenshots/screenshot5.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/screenshots/screenshot5.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/screenshots/screenshot6.png.import b/public/publishing/screenshots/screenshot6.png.import index 9f25f4f..bf4d22f 100644 --- a/public/publishing/screenshots/screenshot6.png.import +++ b/public/publishing/screenshots/screenshot6.png.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/screenshot6.png-b3b48f24b9804bf4b6f4588fd579fa9c.stex" +type="CompressedTexture2D" +uid="uid://cyjt6w5ixen23" +path="res://.godot/imported/screenshot6.png-b3b48f24b9804bf4b6f4588fd579fa9c.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/screenshots/screenshot6.png" -dest_files=[ "res://.import/screenshot6.png-b3b48f24b9804bf4b6f4588fd579fa9c.stex" ] +dest_files=["res://.godot/imported/screenshot6.png-b3b48f24b9804bf4b6f4588fd579fa9c.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/screenshots/screenshot6.png.license b/public/publishing/screenshots/screenshot6.png.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/screenshots/screenshot6.png.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/store/github.webp.import b/public/publishing/store/github.webp.import index 1f656df..55099a0 100644 --- a/public/publishing/store/github.webp.import +++ b/public/publishing/store/github.webp.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/github.webp-120cbbbb342e087db7baba1004899576.stex" +type="CompressedTexture2D" +uid="uid://cugm525mhffgy" +path="res://.godot/imported/github.webp-120cbbbb342e087db7baba1004899576.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/store/github.webp" -dest_files=[ "res://.import/github.webp-120cbbbb342e087db7baba1004899576.stex" ] +dest_files=["res://.godot/imported/github.webp-120cbbbb342e087db7baba1004899576.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/store/github.webp.license b/public/publishing/store/github.webp.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/store/github.webp.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/public/publishing/store/itchio.webp.import b/public/publishing/store/itchio.webp.import index 3b20107..bda826a 100644 --- a/public/publishing/store/itchio.webp.import +++ b/public/publishing/store/itchio.webp.import @@ -1,12 +1,9 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - [remap] importer="texture" -type="StreamTexture" -path="res://.import/itchio.webp-4fc7dfa90d196dfd4f821eba3ab59b91.stex" +type="CompressedTexture2D" +uid="uid://dsxje5tb7nhao" +path="res://.godot/imported/itchio.webp-4fc7dfa90d196dfd4f821eba3ab59b91.ctex" metadata={ "vram_texture": false } @@ -14,26 +11,24 @@ metadata={ [deps] source_file="res://public/publishing/store/itchio.webp" -dest_files=[ "res://.import/itchio.webp-4fc7dfa90d196dfd4f821eba3ab59b91.stex" ] +dest_files=["res://.godot/imported/itchio.webp-4fc7dfa90d196dfd4f821eba3ab59b91.ctex"] [params] compress/mode=0 +compress/high_quality=false compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 +compress/hdr_compression=1 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/public/publishing/store/itchio.webp.license b/public/publishing/store/itchio.webp.license deleted file mode 100644 index 8e014ac..0000000 --- a/public/publishing/store/itchio.webp.license +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT diff --git a/resources/default_bus_layout.tres b/resources/default_bus_layout.tres index e366d29..777e824 100644 --- a/resources/default_bus_layout.tres +++ b/resources/default_bus_layout.tres @@ -1,20 +1,16 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT - -[gd_resource type="AudioBusLayout" format=2] +[gd_resource type="AudioBusLayout" format=3 uid="uid://cud5nfjh3hljh"] [resource] -bus/0/volume_db = -16.4004 -bus/1/name = "Music" +bus/0/volume_db = 0.0672607 +bus/1/name = &"Music" bus/1/solo = false bus/1/mute = false bus/1/bypass_fx = false bus/1/volume_db = 0.0 -bus/1/send = "Master" -bus/2/name = "SFX" +bus/1/send = &"Master" +bus/2/name = &"SFX" bus/2/solo = false bus/2/mute = false bus/2/bypass_fx = false bus/2/volume_db = 0.0 -bus/2/send = "Master" +bus/2/send = &"Master" diff --git a/resources/default_env.tres b/resources/default_env.tres new file mode 100644 index 0000000..8c77c05 --- /dev/null +++ b/resources/default_env.tres @@ -0,0 +1,42 @@ +[gd_resource type="Environment" load_steps=4 format=3 uid="uid://bo6iebn27wylo"] + +[ext_resource type="Shader" path="res://shaders/sky.gdshader" id="1_cakj1"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_o0uin"] +shader = ExtResource("1_cakj1") +shader_parameter/day_top_color = Color(0.1, 0.6, 1, 1) +shader_parameter/day_bottom_color = Color(0.4, 0.8, 1, 1) +shader_parameter/sunset_top_color = Color(0.7, 0.75, 1, 1) +shader_parameter/sunset_bottom_color = Color(1, 0.5, 0.7, 1) +shader_parameter/night_top_color = Color(0.02, 0, 0.04, 1) +shader_parameter/night_bottom_color = Color(0.1, 0, 0.2, 1) +shader_parameter/horizon_color = Color(0, 0.7, 0.8, 1) +shader_parameter/horizon_blur = 0.05 +shader_parameter/sun_color = Color(10, 8, 1, 1) +shader_parameter/sun_sunset_color = Color(10, 0, 0, 1) +shader_parameter/sun_size = 0.2 +shader_parameter/sun_blur = 10.0 +shader_parameter/moon_color = Color(1, 0.95, 0.7, 1) +shader_parameter/moon_size = 0.06 +shader_parameter/moon_blur = 0.1 +shader_parameter/clouds_edge_color = Color(0.8, 0.8, 0.98, 1) +shader_parameter/clouds_top_color = Color(1, 1, 1, 1) +shader_parameter/clouds_middle_color = Color(0.92, 0.92, 0.98, 1) +shader_parameter/clouds_bottom_color = Color(0.83, 0.83, 0.94, 1) +shader_parameter/clouds_speed = 2.0 +shader_parameter/clouds_direction = 0.2 +shader_parameter/clouds_scale = 1.0 +shader_parameter/clouds_cutoff = 0.3 +shader_parameter/clouds_fuzziness = 0.5 +shader_parameter/clouds_weight = 0.0 +shader_parameter/clouds_blur = 0.25 +shader_parameter/stars_speed = 1.0 +shader_parameter/overwritten_time = 0.0 + +[sub_resource type="Sky" id="Sky_8w5cj"] +sky_material = SubResource("ShaderMaterial_o0uin") + +[resource] +background_mode = 2 +sky = SubResource("Sky_8w5cj") +ambient_light_sky_contribution = 0.2 diff --git a/resources/materials/flag.tres b/resources/materials/flag.tres index 4e4be2a..41f03b5 100644 --- a/resources/materials/flag.tres +++ b/resources/materials/flag.tres @@ -1,8 +1,5 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT - -[gd_resource type="SpatialMaterial" format=2] +[gd_resource type="StandardMaterial3D" format=3 uid="uid://b8rgiyhrayedw"] [resource] -params_cull_mode = 2 +resource_local_to_scene = true +cull_mode = 2 diff --git a/resources/materials/flag_text.tres b/resources/materials/flag_text.tres index 8ce77a9..5be42a4 100644 --- a/resources/materials/flag_text.tres +++ b/resources/materials/flag_text.tres @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_resource type="SpatialMaterial" format=2] diff --git a/resources/materials/piece.tres b/resources/materials/piece.tres index 4c9d550..1d5844b 100644 --- a/resources/materials/piece.tres +++ b/resources/materials/piece.tres @@ -1,12 +1,8 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://be05svsycj308"] -[gd_resource type="SpatialMaterial" load_steps=2 format=2] - -[ext_resource path="res://assets/wood.jpg" type="Texture" id=1] +[ext_resource type="Texture2D" uid="uid://7jjt3qf5qe5" path="res://assets/wood.jpg" id="1"] [resource] -albedo_texture = ExtResource( 1 ) -uv1_scale = Vector3( 0.2, 0.2, 0.2 ) +albedo_texture = ExtResource("1") +uv1_scale = Vector3(0.2, 0.2, 0.2) uv1_triplanar = true diff --git a/resources/materials/toon_marble.tres b/resources/materials/toon_marble.tres deleted file mode 100644 index cba4094..0000000 --- a/resources/materials/toon_marble.tres +++ /dev/null @@ -1,27 +0,0 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT - -[gd_resource type="ShaderMaterial" load_steps=2 format=2] - -[ext_resource path="res://addons/flexible_toon_shader/flexible_toon.shader" type="Shader" id=1] - -[resource] -resource_local_to_scene = true -shader = ExtResource( 1 ) -shader_param/albedo = Color( 1, 1, 1, 1 ) -shader_param/uv1_scale = Vector3( 0, 0, 0 ) -shader_param/clamp_diffuse_to_max = false -shader_param/cuts = 8 -shader_param/wrap = 0.0 -shader_param/steepness = 8.0 -shader_param/use_attenuation = true -shader_param/use_specular = false -shader_param/specular_strength = 1.0 -shader_param/specular_shininess = 16.0 -shader_param/use_rim = false -shader_param/rim_width = 8.0 -shader_param/rim_color = Color( 1, 1, 1, 1 ) -shader_param/use_ramp = false -shader_param/use_borders = false -shader_param/border_width = 0.01 diff --git a/resources/materials/xray_marble.tres b/resources/materials/xray_marble.tres index c695421..2b14cf2 100644 --- a/resources/materials/xray_marble.tres +++ b/resources/materials/xray_marble.tres @@ -1,15 +1,24 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_resource type="StandardMaterial3D" load_steps=5 format=3 uid="uid://5gxm1ehx7waa"] -[gd_resource type="SpatialMaterial" load_steps=2 format=2] +[ext_resource type="Texture2D" uid="uid://8dp5yxgnqaqv" path="res://assets/marble/marble_albedo.jpg" id="1_eohvc"] +[ext_resource type="Texture2D" uid="uid://60dl3bvlmlx" path="res://assets/marble/marble_normal.jpg" id="2_u75ua"] +[ext_resource type="Texture2D" uid="uid://bcwf8u32r3bwe" path="res://assets/marble/marble_oughness.jpg" id="3_t2pmv"] -[ext_resource path="res://resources/materials/toon_marble.tres" type="Material" id=1] +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_didtf"] +resource_local_to_scene = true +render_priority = 1 +transparency = 1 +diffuse_mode = 3 +specular_mode = 1 +albedo_color = Color(0, 1, 1, 1) +albedo_texture = ExtResource("1_eohvc") +roughness_texture = ExtResource("3_t2pmv") +normal_enabled = true +normal_texture = ExtResource("2_u75ua") [resource] resource_local_to_scene = true -render_priority = -1 -next_pass = ExtResource( 1 ) -flags_transparent = true -flags_unshaded = true -flags_no_depth_test = true +next_pass = SubResource("StandardMaterial3D_didtf") +no_depth_test = true +shading_mode = 0 +albedo_color = Color(0, 0.47451, 0.47451, 1) diff --git a/scenes/blocks/bumper.tscn b/scenes/blocks/bumper.tscn index b7d6bf8..b1902ed 100644 --- a/scenes/blocks/bumper.tscn +++ b/scenes/blocks/bumper.tscn @@ -1,128 +1,135 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=16 format=3 uid="uid://kpsvshil6d4q"] -[gd_scene load_steps=15 format=2] +[ext_resource type="Script" path="res://scripts/blocks/piece.gd" id="1"] +[ext_resource type="Script" path="res://scripts/blocks/bumper.gd" id="2"] +[ext_resource type="Material" uid="uid://be05svsycj308" path="res://resources/materials/piece.tres" id="3"] +[ext_resource type="AudioStream" uid="uid://d1ov0uhwvty5i" path="res://assets/sounds/bump.wav" id="4"] +[ext_resource type="PackedScene" uid="uid://h3dbn48vuyv4" path="res://scenes/blocks/forward_down.tscn" id="5"] +[ext_resource type="PackedScene" path="res://scenes/blocks/hopper2.tscn" id="6"] +[ext_resource type="Script" path="res://scripts/blocks/checkpoint.gd" id="7"] -[ext_resource path="res://scripts/blocks/piece.gd" type="Script" id=1] -[ext_resource path="res://scripts/blocks/bumper.gd" type="Script" id=2] -[ext_resource path="res://resources/materials/piece.tres" type="Material" id=3] -[ext_resource path="res://assets/sounds/bump.wav" type="AudioStream" id=4] -[ext_resource path="res://scenes/blocks/forward_down.tscn" type="PackedScene" id=5] -[ext_resource path="res://scenes/blocks/hopper2.tscn" type="PackedScene" id=6] -[ext_resource path="res://scripts/blocks/checkpoint.gd" type="Script" id=7] +[sub_resource type="CylinderMesh" id="1"] -[sub_resource type="CylinderMesh" id=1] - -[sub_resource type="CylinderMesh" id=2] +[sub_resource type="CylinderMesh" id="2"] height = 0.2 -[sub_resource type="CylinderMesh" id=3] +[sub_resource type="CylinderMesh" id="3"] top_radius = 0.2 bottom_radius = 0.2 -[sub_resource type="CylinderShape" id=4] +[sub_resource type="CylinderShape3D" id="4"] height = 2.44273 -[sub_resource type="Animation" id=6] +[sub_resource type="Animation" id="6"] resource_name = "bump" tracks/0/type = "value" -tracks/0/path = NodePath("Top:translation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true tracks/0/imported = false tracks/0/enabled = true +tracks/0/path = NodePath("Top:position") +tracks/0/interp = 1 +tracks/0/loop_wrap = true tracks/0/keys = { -"times": PoolRealArray( 0.00613901, 0.1, 1 ), -"transitions": PoolRealArray( 1, 1, 1 ), +"times": PackedFloat32Array(0.00613901, 0.1, 1), +"transitions": PackedFloat32Array(1, 1, 1), "update": 0, -"values": [ Vector3( 0, -0.1, 0 ), Vector3( 0, 1, 0 ), Vector3( 0, -0.1, 0 ) ] +"values": [Vector3(0, -0.1, 0), Vector3(0, 1, 0), Vector3(0, -0.1, 0)] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_on4sg"] +_data = { +"bump": SubResource("6") } -[sub_resource type="BoxShape" id=5] +[sub_resource type="BoxShape3D" id="5"] -[sub_resource type="BoxShape" id=7] -extents = Vector3( 0.7, 0.50035, 0.7 ) +[sub_resource type="BoxShape3D" id="7"] +size = Vector3(1.4, 1.0007, 1.4) -[node name="Bumper" type="StaticBody"] -transform = Transform( -1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0 ) -script = ExtResource( 1 ) +[node name="Bumper" type="StaticBody3D"] +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0) +collision_mask = 0 +script = ExtResource("1") -[node name="Base" type="MeshInstance" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.41963, 0 ) -material_override = ExtResource( 3 ) -mesh = SubResource( 1 ) +[node name="Base" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.41963, 0) +material_override = ExtResource("3") +mesh = SubResource("1") skeleton = NodePath("") -[node name="Top" type="MeshInstance" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.1, 0 ) -material_override = ExtResource( 3 ) -mesh = SubResource( 2 ) +[node name="Top" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.1, 0) +material_override = ExtResource("3") +mesh = SubResource("2") skeleton = NodePath("") -[node name="Piston" type="MeshInstance" parent="Top"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.00042, 0 ) -material_override = ExtResource( 3 ) -mesh = SubResource( 3 ) +[node name="Piston" type="MeshInstance3D" parent="Top"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.00042, 0) +material_override = ExtResource("3") +mesh = SubResource("3") skeleton = NodePath("") -[node name="CollisionShape" type="CollisionShape" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.24834, 0 ) -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.24834, 0) +shape = SubResource("4") [node name="AnimationPlayer" type="AnimationPlayer" parent="."] unique_name_in_owner = true -anims/bump = SubResource( 6 ) +libraries = { +"": SubResource("AnimationLibrary_on4sg") +} -[node name="BeginArea" type="Area" parent="."] +[node name="BeginArea" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, -1.7411e-09, 0, 1, 0, 1.7411e-09, 0, 1, 5.70947e-09, 2.5, 5 ) +transform = Transform3D(1, 0, -1.7411e-09, 0, 1, 0, 1.7411e-09, 0, 1, 5.70947e-09, 2.5, 5) collision_layer = 2 -collision_mask = 0 +collision_mask = 4 -[node name="CollisionShape" type="CollisionShape" parent="BeginArea"] -shape = SubResource( 5 ) +[node name="CollisionShape" type="CollisionShape3D" parent="BeginArea"] +shape = SubResource("5") -[node name="EndArea" type="Area" parent="."] +[node name="EndArea" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -7, -9 ) -collision_layer = 3 -collision_mask = 0 -script = ExtResource( 7 ) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -7, -9) +collision_layer = 2 +collision_mask = 4 +script = ExtResource("7") -[node name="CollisionShape" type="CollisionShape" parent="EndArea"] -shape = SubResource( 5 ) +[node name="CollisionShape" type="CollisionShape3D" parent="EndArea"] +shape = SubResource("5") -[node name="Area" type="Area" parent="."] -script = ExtResource( 2 ) +[node name="Area" type="Area3D" parent="."] +collision_layer = 0 +collision_mask = 4 +script = ExtResource("2") -[node name="CollisionShape" type="CollisionShape" parent="Area"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.494116, 0 ) -shape = SubResource( 7 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Area"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.494116, 0) +shape = SubResource("7") [node name="BumpSound" type="AudioStreamPlayer3D" parent="Area"] unique_name_in_owner = true -stream = ExtResource( 4 ) -unit_size = 10.0 +stream = ExtResource("4") -[node name="ForwardDown" parent="." instance=ExtResource( 5 )] -transform = Transform( -0.999273, 0, 0.0381262, 0, 1, 0, -0.0381262, 0, -0.999273, 0, 2.5, 4 ) +[node name="ForwardDown" parent="." instance=ExtResource("5")] +transform = Transform3D(-0.999273, 0, 0.0381262, 0, 1, 0, -0.0381262, 0, -0.999273, 0, 2.5, 4) +collision_mask = 0 -[node name="Hopper2" parent="." instance=ExtResource( 6 )] -transform = Transform( -1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, -2, -7 ) +[node name="Hopper2" parent="." instance=ExtResource("6")] +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, -2, -7) +collision_mask = 0 -[node name="Positions" type="Spatial" parent="."] +[node name="Positions" type="Node3D" parent="."] -[node name="Position3D" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -4.14271e-07, 6.29654, 3.73871 ) +[node name="Position3D" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.14271e-07, 6.29654, 3.73871) -[node name="Position3D2" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 2.45491e-07, 3.93717, -3.80809 ) +[node name="Position3D2" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.45491e-07, 3.93717, -3.80809) -[node name="Position3D3" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 1.09669e-06, 2.28895, -13.5447 ) +[node name="Position3D3" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.09669e-06, 2.28895, -13.5447) -[node name="Position3D4" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 1.09669e-06, -4.0702, -13.5447 ) +[node name="Position3D4" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.09669e-06, -4.0702, -13.5447) [connection signal="body_entered" from="Area" to="Area" method="_on_Area_body_entered"] diff --git a/scenes/blocks/finish_line.tscn b/scenes/blocks/finish_line.tscn index 2b64b77..e99aeba 100644 --- a/scenes/blocks/finish_line.tscn +++ b/scenes/blocks/finish_line.tscn @@ -1,73 +1,99 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT - -[gd_scene load_steps=11 format=2] - -[ext_resource path="res://scripts/blocks/piece.gd" type="Script" id=1] -[ext_resource path="res://assets/blocks/finish_line.obj" type="ArrayMesh" id=2] -[ext_resource path="res://resources/materials/piece.tres" type="Material" id=3] -[ext_resource path="res://resources/materials/flag.tres" type="Material" id=4] -[ext_resource path="res://resources/materials/flag_text.tres" type="Material" id=5] -[ext_resource path="res://scripts/blocks/finish_line.gd" type="Script" id=6] -[ext_resource path="res://assets/sounds/finish_line.wav" type="AudioStream" id=7] - -[sub_resource type="ConcavePolygonShape" id=3] -data = PoolVector3Array( -3.1, -1, 2, -3.1, -1.2, 2, -3.1, -1, -2, -3.1, -1, -2, -3.1, -1.2, 2, -3.1, -1.2, -2, -3.1, -1, -2, -3.1, -1.2, -2, 3.1, -1, -2, 3.1, -1, -2, -3.1, -1.2, -2, 3.1, -1.2, -2, 3.1, -1, -2, 3.1, -1.2, -2, 3.1, -1, 2, 3.1, -1, 2, 3.1, -1.2, -2, 3.1, -1.2, 2, 3.1, -1, 2, 3.1, -1.2, 2, -3.1, -1, 2, -3.1, -1, 2, 3.1, -1.2, 2, -3.1, -1.2, 2, 3.1, -1.2, -2, -3.1, -1.2, -2, 3.1, -1.2, 2, 3.1, -1.2, 2, -3.1, -1.2, -2, -3.1, -1.2, 2, -3.1, -1, -2, 3.1, -1, -2, -3.1, -1, 2, -3.1, -1, 2, 3.1, -1, -2, 3.1, -1, 2, 2.9, 3.0746, 0.1, 2.9, -1, 0.1, 2.9, 3.0746, -0.1, 2.9, 3.0746, -0.1, 2.9, -1, 0.1, 2.9, -1, -0.1, 2.9, 3.0746, -0.1, 2.9, -1, -0.1, 3.1, 3.0746, -0.1, 3.1, 3.0746, -0.1, 2.9, -1, -0.1, 3.1, -1, -0.1, 3.1, 3.0746, -0.1, 3.1, -1, -0.1, 3.1, 3.0746, 0.1, 3.1, 3.0746, 0.1, 3.1, -1, -0.1, 3.1, -1, 0.1, 3.1, 3.0746, 0.1, 3.1, -1, 0.1, 2.9, 3.0746, 0.1, 2.9, 3.0746, 0.1, 3.1, -1, 0.1, 2.9, -1, 0.1, 3.1, -1, -0.1, 2.9, -1, -0.1, 3.1, -1, 0.1, 3.1, -1, 0.1, 2.9, -1, -0.1, 2.9, -1, 0.1, 2.9, 3.0746, -0.1, 3.1, 3.0746, -0.1, 2.9, 3.0746, 0.1, 2.9, 3.0746, 0.1, 3.1, 3.0746, -0.1, 3.1, 3.0746, 0.1, -3.1, 3.0746, 0.1, -3.1, -1, 0.1, -3.1, 3.0746, -0.1, -3.1, 3.0746, -0.1, -3.1, -1, 0.1, -3.1, -1, -0.1, -3.1, 3.0746, -0.1, -3.1, -1, -0.1, -2.9, 3.0746, -0.1, -2.9, 3.0746, -0.1, -3.1, -1, -0.1, -2.9, -1, -0.1, -2.9, 3.0746, -0.1, -2.9, -1, -0.1, -2.9, 3.0746, 0.1, -2.9, 3.0746, 0.1, -2.9, -1, -0.1, -2.9, -1, 0.1, -2.9, 3.0746, 0.1, -2.9, -1, 0.1, -3.1, 3.0746, 0.1, -3.1, 3.0746, 0.1, -2.9, -1, 0.1, -3.1, -1, 0.1, -2.9, -1, -0.1, -3.1, -1, -0.1, -2.9, -1, 0.1, -2.9, -1, 0.1, -3.1, -1, -0.1, -3.1, -1, 0.1, -3.1, 3.0746, -0.1, -2.9, 3.0746, -0.1, -3.1, 3.0746, 0.1, -3.1, 3.0746, 0.1, -2.9, 3.0746, -0.1, -2.9, 3.0746, 0.1, -0.4787, 2.5381, 0, -0.981, 2.5765, 0, -0.4787, 1.5381, 0, -0.4787, 1.5381, 0, -0.981, 2.5765, 0, -0.981, 1.5765, 0, 3, 3, 0, 2.5076, 2.8573, 0, 3, 2, 0, 3, 2, 0, 2.5076, 2.8573, 0, 2.5076, 1.8573, 0, -1.9887, 2.7338, 0, -2.4939, 2.8532, 0, -1.9887, 1.7338, 0, -1.9887, 1.7338, 0, -2.4939, 2.8532, 0, -2.4939, 1.8532, 0, 1.5179, 2.6477, 0, 1.0208, 2.5812, 0, 1.5179, 1.6477, 0, 1.5179, 1.6477, 0, 1.0208, 2.5812, 0, 1.0208, 1.5812, 0, 0.0224, 2.5262, 0, -0.4787, 2.5381, 0, 0.0224, 1.5262, 0, 0.0224, 1.5262, 0, -0.4787, 2.5381, 0, -0.4787, 1.5381, 0, -1.4844, 2.6417, 0, -1.9887, 2.7338, 0, -1.4844, 1.6417, 0, -1.4844, 1.6417, 0, -1.9887, 2.7338, 0, -1.9887, 1.7338, 0, 2.0136, 2.7398, 0, 1.5179, 2.6477, 0, 2.0136, 1.7398, 0, 2.0136, 1.7398, 0, 1.5179, 2.6477, 0, 1.5179, 1.6477, 0, 0.5223, 2.5407, 0, 0.0224, 2.5262, 0, 0.5223, 1.5407, 0, 0.5223, 1.5407, 0, 0.0224, 2.5262, 0, 0.0224, 1.5262, 0, -0.981, 2.5765, 0, -1.4844, 2.6417, 0, -0.981, 1.5765, 0, -0.981, 1.5765, 0, -1.4844, 2.6417, 0, -1.4844, 1.6417, 0, 2.5076, 2.8573, 0, 2.0136, 2.7398, 0, 2.5076, 1.8573, 0, 2.5076, 1.8573, 0, 2.0136, 2.7398, 0, 2.0136, 1.7398, 0, -2.4939, 2.8532, 0, -3, 3, 0, -2.4939, 1.8532, 0, -2.4939, 1.8532, 0, -3, 3, 0, -3, 2, 0, 1.0208, 2.5812, 0, 0.5223, 2.5407, 0, 1.0208, 1.5812, 0, 1.0208, 1.5812, 0, 0.5223, 2.5407, 0, 0.5223, 1.5407, 0, 1.0816, 2.3118, 0.0222, 0.9968, 1.879, 0.0222, 0.9509, 2.2964, 0.0222, 1.1039, 2.1344, 0.0222, 0.9968, 1.879, 0.0222, 1.0816, 2.3118, 0.0222, 1.3984, 2.3574, 0.0222, 1.2944, 2.1603, 0.0222, 1.2683, 2.3372, 0.0222, 1.4658, 1.9428, 0.0222, 1.2944, 2.1603, 0.0222, 1.3984, 2.3574, 0.0222, 1.1116, 2.0725, 0.0222, 0.9968, 1.879, 0.0222, 1.1039, 2.1344, 0.0222, 1.2944, 2.1603, 0.0222, 1.1116, 2.0725, 0.0222, 1.1039, 2.1344, 0.0222, 1.3034, 2.0986, 0.0222, 1.1116, 2.0725, 0.0222, 1.2944, 2.1603, 0.0222, 1.4658, 1.9428, 0.0222, 1.3034, 2.0986, 0.0222, 1.2944, 2.1603, 0.0222, 1.1338, 1.8951, 0.0222, 0.9968, 1.879, 0.0222, 1.1116, 2.0725, 0.0222, 1.4658, 1.9428, 0.0222, 1.3295, 1.9217, 0.0222, 1.3034, 2.0986, 0.0222, 0.759, 2.2775, 0.0222, 0.5037, 2.1995, 0.0222, 0.5003, 2.2588, 0.0222, 0.7641, 2.2183, 0.0222, 0.5037, 2.1995, 0.0222, 0.759, 2.2775, 0.0222, 0.5037, 2.1995, 0.0222, 0.4456, 2.0737, 0.0222, 0.4395, 2.196, 0.0222, 0.572, 2.2006, 0.0222, 0.4456, 2.0737, 0.0222, 0.5037, 2.1995, 0.0222, 0.7641, 2.2183, 0.0222, 0.572, 2.2006, 0.0222, 0.5037, 2.1995, 0.0222, 0.8288, 2.2242, 0.0222, 0.572, 2.2006, 0.0222, 0.7641, 2.2183, 0.0222, 0.697, 2.2097, 0.0222, 0.572, 2.2006, 0.0222, 0.8288, 2.2242, 0.0222, 0.8348, 2.1615, 0.0222, 0.697, 2.2097, 0.0222, 0.8288, 2.2242, 0.0222, 0.5796, 2.0845, 0.0222, 0.4456, 2.0737, 0.0222, 0.572, 2.2006, 0.0222, 0.8348, 2.1615, 0.0222, 0.7018, 2.1499, 0.0222, 0.697, 2.2097, 0.0222, 0.8401, 2.1054, 0.0222, 0.4456, 2.0737, 0.0222, 0.5796, 2.0845, 0.0222, 0.5107, 2.0773, 0.0222, 0.4456, 2.0737, 0.0222, 0.8401, 2.1054, 0.0222, 0.8457, 2.0462, 0.0222, 0.5107, 2.0773, 0.0222, 0.8401, 2.1054, 0.0222, 0.8457, 2.0462, 0.0222, 0.5141, 2.018, 0.0222, 0.5107, 2.0773, 0.0222, 0.911, 2.0527, 0.0222, 0.5141, 2.018, 0.0222, 0.8457, 2.0462, 0.0222, 0.7767, 2.0369, 0.0222, 0.5141, 2.018, 0.0222, 0.911, 2.0527, 0.0222, 0.9235, 1.9309, 0.0222, 0.7767, 2.0369, 0.0222, 0.911, 2.0527, 0.0222, 0.9235, 1.9309, 0.0222, 0.7868, 1.921, 0.0222, 0.7767, 2.0369, 0.0222, 0.5873, 1.9659, 0.0222, 0.4546, 1.8952, 0.0222, 0.4514, 1.9581, 0.0222, 0.5912, 1.9061, 0.0222, 0.4546, 1.8952, 0.0222, 0.5873, 1.9659, 0.0222, 0.7868, 1.921, 0.0222, 0.4546, 1.8952, 0.0222, 0.5912, 1.9061, 0.0222, 0.9235, 1.9309, 0.0222, 0.4546, 1.8952, 0.0222, 0.7868, 1.921, 0.0222, 0.9235, 1.9309, 0.0222, 0.521, 1.8987, 0.0222, 0.4546, 1.8952, 0.0222, 0.8573, 1.9244, 0.0222, 0.5244, 1.8394, 0.0222, 0.521, 1.8987, 0.0222, 0.9235, 1.9309, 0.0222, 0.8573, 1.9244, 0.0222, 0.521, 1.8987, 0.0222, 0.8629, 1.8652, 0.0222, 0.5244, 1.8394, 0.0222, 0.8573, 1.9244, 0.0222, 0.372, 2.2523, 0.0222, -0.0151, 2.182, 0.0222, -0.015, 2.2444, 0.0222, 0.3747, 2.19, 0.0222, -0.0151, 2.182, 0.0222, 0.372, 2.2523, 0.0222, 0.3747, 2.19, 0.0222, 0.1136, 2.1827, 0.0222, -0.0151, 2.182, 0.0222, 0.2461, 2.1854, 0.0222, 0.1174, 1.8875, 0.0222, 0.1136, 2.1827, 0.0222, 0.3747, 2.19, 0.0222, 0.2461, 2.1854, 0.0222, 0.1136, 2.1827, 0.0222, 0.2544, 1.8903, 0.0222, 0.1174, 1.8875, 0.0222, 0.2461, 2.1854, 0.0222, 0.1174, 1.8875, 0.0222, -0.0157, 1.8244, 0.0222, -0.0156, 1.8868, 0.0222, 0.2544, 1.8903, 0.0222, -0.0157, 1.8244, 0.0222, 0.1174, 1.8875, 0.0222, 0.3873, 1.895, 0.0222, -0.0157, 1.8244, 0.0222, 0.2544, 1.8903, 0.0222, 0.39, 1.8327, 0.0222, -0.0157, 1.8244, 0.0222, 0.3873, 1.895, 0.0222, -0.3993, 2.2535, 0.0222, -0.5564, 1.8413, 0.0222, -0.5308, 2.2606, 0.0222, -0.4021, 2.1942, 0.0222, -0.5564, 1.8413, 0.0222, -0.3993, 2.2535, 0.0222, -0.0795, 2.2447, 0.0222, -0.2154, 2.0682, 0.0222, -0.2111, 2.2469, 0.0222, -0.0833, 1.8248, 0.0222, -0.2154, 2.0682, 0.0222, -0.0795, 2.2447, 0.0222, -0.3378, 2.1915, 0.0222, -0.5564, 1.8413, 0.0222, -0.4021, 2.1942, 0.0222, -0.3401, 2.1315, 0.0222, -0.5564, 1.8413, 0.0222, -0.3378, 2.1915, 0.0222, -0.4104, 2.0126, 0.0222, -0.5564, 1.8413, 0.0222, -0.3401, 2.1315, 0.0222, -0.2754, 2.1293, 0.0222, -0.4104, 2.0126, 0.0222, -0.3401, 2.1315, 0.0222, -0.2773, 2.0699, 0.0222, -0.4104, 2.0126, 0.0222, -0.2754, 2.1293, 0.0222, -0.2154, 2.0682, 0.0222, -0.4104, 2.0126, 0.0222, -0.2773, 2.0699, 0.0222, -0.3481, 2.0099, 0.0222, -0.4104, 2.0126, 0.0222, -0.2154, 2.0682, 0.0222, -0.0833, 1.8248, 0.0222, -0.3481, 2.0099, 0.0222, -0.2154, 2.0682, 0.0222, -0.4186, 1.834, 0.0222, -0.5564, 1.8413, 0.0222, -0.4104, 2.0126, 0.0222, -0.2844, 1.9483, 0.0222, -0.3504, 1.9506, 0.0222, -0.3481, 2.0099, 0.0222, -0.0833, 1.8248, 0.0222, -0.2844, 1.9483, 0.0222, -0.3481, 2.0099, 0.0222, -0.2198, 1.8864, 0.0222, -0.2863, 1.8883, 0.0222, -0.2844, 1.9483, 0.0222, -0.0833, 1.8248, 0.0222, -0.2198, 1.8864, 0.0222, -0.2844, 1.9483, 0.0222, -0.0833, 1.8248, 0.0222, -0.2212, 1.8271, 0.0222, -0.2198, 1.8864, 0.0222, -0.5952, 2.2647, 0.0222, -0.9877, 2.2378, 0.0222, -0.9807, 2.2998, 0.0222, -0.5994, 2.2025, 0.0222, -0.9877, 2.2378, 0.0222, -0.5952, 2.2647, 0.0222, -0.5994, 2.2025, 0.0222, -0.8597, 2.2242, 0.0222, -0.9877, 2.2378, 0.0222, -0.7277, 2.2122, 0.0222, -0.8887, 1.9304, 0.0222, -0.8597, 2.2242, 0.0222, -0.5994, 2.2025, 0.0222, -0.7277, 2.2122, 0.0222, -0.8597, 2.2242, 0.0222, -0.7522, 1.918, 0.0222, -0.8887, 1.9304, 0.0222, -0.7277, 2.2122, 0.0222, -0.8887, 1.9304, 0.0222, -1.0279, 1.8824, 0.0222, -1.0209, 1.9444, 0.0222, -0.7522, 1.918, 0.0222, -1.0279, 1.8824, 0.0222, -0.8887, 1.9304, 0.0222, -0.6196, 1.908, 0.0222, -1.0279, 1.8824, 0.0222, -0.7522, 1.918, 0.0222, -0.6239, 1.8457, 0.0222, -1.0279, 1.8824, 0.0222, -0.6196, 1.908, 0.0222, -1.3714, 2.2898, 0.0222, -1.5634, 1.9592, 0.0222, -1.4915, 2.373, 0.0222, -1.0447, 2.3073, 0.0222, -1.3714, 2.2898, 0.0222, -1.4915, 2.373, 0.0222, -1.0522, 2.2453, 0.0222, -1.3714, 2.2898, 0.0222, -1.0447, 2.3073, 0.0222, -1.3896, 2.1749, 0.0222, -1.5634, 1.9592, 0.0222, -1.3714, 2.2898, 0.0222, -1.3994, 2.1132, 0.0222, -1.5634, 1.9592, 0.0222, -1.3896, 2.1749, 0.0222, -1.1309, 2.1378, 0.0222, -1.3994, 2.1132, 0.0222, -1.3896, 2.1749, 0.0222, -1.1388, 2.0759, 0.0222, -1.3994, 2.1132, 0.0222, -1.1309, 2.1378, 0.0222, -1.4273, 1.9366, 0.0222, -1.5634, 1.9592, 0.0222, -1.3994, 2.1132, 0.0222, 0.9968, 1.879, -0.0178, 1.0816, 2.3118, -0.0178, 0.9509, 2.2964, -0.0178, 0.9968, 1.879, -0.0178, 1.1039, 2.1344, -0.0178, 1.0816, 2.3118, -0.0178, 1.2944, 2.1603, -0.0178, 1.3984, 2.3574, -0.0178, 1.2683, 2.3372, -0.0178, 1.2944, 2.1603, -0.0178, 1.4658, 1.9428, -0.0178, 1.3984, 2.3574, -0.0178, 0.9968, 1.879, -0.0178, 1.1116, 2.0725, -0.0178, 1.1039, 2.1344, -0.0178, 1.1116, 2.0725, -0.0178, 1.2944, 2.1603, -0.0178, 1.1039, 2.1344, -0.0178, 1.1116, 2.0725, -0.0178, 1.3034, 2.0986, -0.0178, 1.2944, 2.1603, -0.0178, 1.3034, 2.0986, -0.0178, 1.4658, 1.9428, -0.0178, 1.2944, 2.1603, -0.0178, 0.9968, 1.879, -0.0178, 1.1338, 1.8951, -0.0178, 1.1116, 2.0725, -0.0178, 1.3295, 1.9217, -0.0178, 1.4658, 1.9428, -0.0178, 1.3034, 2.0986, -0.0178, 0.5037, 2.1995, -0.0178, 0.759, 2.2775, -0.0178, 0.5003, 2.2588, -0.0178, 0.5037, 2.1995, -0.0178, 0.7641, 2.2183, -0.0178, 0.759, 2.2775, -0.0178, 0.4456, 2.0737, -0.0178, 0.5037, 2.1995, -0.0178, 0.4395, 2.196, -0.0178, 0.4456, 2.0737, -0.0178, 0.572, 2.2006, -0.0178, 0.5037, 2.1995, -0.0178, 0.572, 2.2006, -0.0178, 0.7641, 2.2183, -0.0178, 0.5037, 2.1995, -0.0178, 0.572, 2.2006, -0.0178, 0.8288, 2.2242, -0.0178, 0.7641, 2.2183, -0.0178, 0.572, 2.2006, -0.0178, 0.697, 2.2097, -0.0178, 0.8288, 2.2242, -0.0178, 0.697, 2.2097, -0.0178, 0.8348, 2.1615, -0.0178, 0.8288, 2.2242, -0.0178, 0.4456, 2.0737, -0.0178, 0.5796, 2.0845, -0.0178, 0.572, 2.2006, -0.0178, 0.7018, 2.1499, -0.0178, 0.8348, 2.1615, -0.0178, 0.697, 2.2097, -0.0178, 0.4456, 2.0737, -0.0178, 0.8401, 2.1054, -0.0178, 0.5796, 2.0845, -0.0178, 0.4456, 2.0737, -0.0178, 0.5107, 2.0773, -0.0178, 0.8401, 2.1054, -0.0178, 0.5107, 2.0773, -0.0178, 0.8457, 2.0462, -0.0178, 0.8401, 2.1054, -0.0178, 0.5141, 2.018, -0.0178, 0.8457, 2.0462, -0.0178, 0.5107, 2.0773, -0.0178, 0.5141, 2.018, -0.0178, 0.911, 2.0527, -0.0178, 0.8457, 2.0462, -0.0178, 0.5141, 2.018, -0.0178, 0.7767, 2.0369, -0.0178, 0.911, 2.0527, -0.0178, 0.7767, 2.0369, -0.0178, 0.9235, 1.9309, -0.0178, 0.911, 2.0527, -0.0178, 0.7868, 1.921, -0.0178, 0.9235, 1.9309, -0.0178, 0.7767, 2.0369, -0.0178, 0.4546, 1.8952, -0.0178, 0.5873, 1.9659, -0.0178, 0.4514, 1.9581, -0.0178, 0.4546, 1.8952, -0.0178, 0.5912, 1.9061, -0.0178, 0.5873, 1.9659, -0.0178, 0.4546, 1.8952, -0.0178, 0.7868, 1.921, -0.0178, 0.5912, 1.9061, -0.0178, 0.4546, 1.8952, -0.0178, 0.9235, 1.9309, -0.0178, 0.7868, 1.921, -0.0178, 0.521, 1.8987, -0.0178, 0.9235, 1.9309, -0.0178, 0.4546, 1.8952, -0.0178, 0.5244, 1.8394, -0.0178, 0.8573, 1.9244, -0.0178, 0.521, 1.8987, -0.0178, 0.8573, 1.9244, -0.0178, 0.9235, 1.9309, -0.0178, 0.521, 1.8987, -0.0178, 0.5244, 1.8394, -0.0178, 0.8629, 1.8652, -0.0178, 0.8573, 1.9244, -0.0178, -0.0151, 2.182, -0.0178, 0.372, 2.2523, -0.0178, -0.015, 2.2444, -0.0178, -0.0151, 2.182, -0.0178, 0.3747, 2.19, -0.0178, 0.372, 2.2523, -0.0178, 0.1136, 2.1827, -0.0178, 0.3747, 2.19, -0.0178, -0.0151, 2.182, -0.0178, 0.1174, 1.8875, -0.0178, 0.2461, 2.1854, -0.0178, 0.1136, 2.1827, -0.0178, 0.2461, 2.1854, -0.0178, 0.3747, 2.19, -0.0178, 0.1136, 2.1827, -0.0178, 0.1174, 1.8875, -0.0178, 0.2544, 1.8903, -0.0178, 0.2461, 2.1854, -0.0178, -0.0157, 1.8244, -0.0178, 0.1174, 1.8875, -0.0178, -0.0156, 1.8868, -0.0178, -0.0157, 1.8244, -0.0178, 0.2544, 1.8903, -0.0178, 0.1174, 1.8875, -0.0178, -0.0157, 1.8244, -0.0178, 0.3873, 1.895, -0.0178, 0.2544, 1.8903, -0.0178, -0.0157, 1.8244, -0.0178, 0.39, 1.8327, -0.0178, 0.3873, 1.895, -0.0178, -0.5564, 1.8413, -0.0178, -0.3993, 2.2535, -0.0178, -0.5308, 2.2606, -0.0178, -0.5564, 1.8413, -0.0178, -0.4021, 2.1942, -0.0178, -0.3993, 2.2535, -0.0178, -0.2154, 2.0682, -0.0178, -0.0795, 2.2447, -0.0178, -0.2111, 2.2469, -0.0178, -0.2154, 2.0682, -0.0178, -0.0833, 1.8248, -0.0178, -0.0795, 2.2447, -0.0178, -0.5564, 1.8413, -0.0178, -0.3378, 2.1915, -0.0178, -0.4021, 2.1942, -0.0178, -0.5564, 1.8413, -0.0178, -0.3401, 2.1315, -0.0178, -0.3378, 2.1915, -0.0178, -0.5564, 1.8413, -0.0178, -0.4104, 2.0126, -0.0178, -0.3401, 2.1315, -0.0178, -0.4104, 2.0126, -0.0178, -0.2754, 2.1293, -0.0178, -0.3401, 2.1315, -0.0178, -0.4104, 2.0126, -0.0178, -0.2773, 2.0699, -0.0178, -0.2754, 2.1293, -0.0178, -0.4104, 2.0126, -0.0178, -0.2154, 2.0682, -0.0178, -0.2773, 2.0699, -0.0178, -0.4104, 2.0126, -0.0178, -0.3481, 2.0099, -0.0178, -0.2154, 2.0682, -0.0178, -0.3481, 2.0099, -0.0178, -0.0833, 1.8248, -0.0178, -0.2154, 2.0682, -0.0178, -0.5564, 1.8413, -0.0178, -0.4186, 1.834, -0.0178, -0.4104, 2.0126, -0.0178, -0.3504, 1.9506, -0.0178, -0.2844, 1.9483, -0.0178, -0.3481, 2.0099, -0.0178, -0.2844, 1.9483, -0.0178, -0.0833, 1.8248, -0.0178, -0.3481, 2.0099, -0.0178, -0.2863, 1.8883, -0.0178, -0.2198, 1.8864, -0.0178, -0.2844, 1.9483, -0.0178, -0.2198, 1.8864, -0.0178, -0.0833, 1.8248, -0.0178, -0.2844, 1.9483, -0.0178, -0.2212, 1.8271, -0.0178, -0.0833, 1.8248, -0.0178, -0.2198, 1.8864, -0.0178, -0.9877, 2.2378, -0.0178, -0.5952, 2.2647, -0.0178, -0.9807, 2.2998, -0.0178, -0.9877, 2.2378, -0.0178, -0.5994, 2.2025, -0.0178, -0.5952, 2.2647, -0.0178, -0.8597, 2.2242, -0.0178, -0.5994, 2.2025, -0.0178, -0.9877, 2.2378, -0.0178, -0.8887, 1.9304, -0.0178, -0.7277, 2.2122, -0.0178, -0.8597, 2.2242, -0.0178, -0.7277, 2.2122, -0.0178, -0.5994, 2.2025, -0.0178, -0.8597, 2.2242, -0.0178, -0.8887, 1.9304, -0.0178, -0.7522, 1.918, -0.0178, -0.7277, 2.2122, -0.0178, -1.0279, 1.8824, -0.0178, -0.8887, 1.9304, -0.0178, -1.0209, 1.9444, -0.0178, -1.0279, 1.8824, -0.0178, -0.7522, 1.918, -0.0178, -0.8887, 1.9304, -0.0178, -1.0279, 1.8824, -0.0178, -0.6196, 1.908, -0.0178, -0.7522, 1.918, -0.0178, -1.0279, 1.8824, -0.0178, -0.6239, 1.8457, -0.0178, -0.6196, 1.908, -0.0178, -1.5634, 1.9592, -0.0178, -1.3714, 2.2898, -0.0178, -1.4915, 2.373, -0.0178, -1.3714, 2.2898, -0.0178, -1.0447, 2.3073, -0.0178, -1.4915, 2.373, -0.0178, -1.3714, 2.2898, -0.0178, -1.0522, 2.2453, -0.0178, -1.0447, 2.3073, -0.0178, -1.5634, 1.9592, -0.0178, -1.3896, 2.1749, -0.0178, -1.3714, 2.2898, -0.0178, -1.5634, 1.9592, -0.0178, -1.3994, 2.1132, -0.0178, -1.3896, 2.1749, -0.0178, -1.3994, 2.1132, -0.0178, -1.1309, 2.1378, -0.0178, -1.3896, 2.1749, -0.0178, -1.3994, 2.1132, -0.0178, -1.1388, 2.0759, -0.0178, -1.1309, 2.1378, -0.0178, -1.5634, 1.9592, -0.0178, -1.4273, 1.9366, -0.0178, -1.3994, 2.1132, -0.0178, -1.5634, 1.9592, 0.0222, -1.4273, 1.9366, 0.0222, -1.5634, 1.9592, -0.0178, -1.5634, 1.9592, -0.0178, -1.4273, 1.9366, 0.0222, -1.4273, 1.9366, -0.0178, -1.4915, 2.373, 0.0222, -1.5634, 1.9592, 0.0222, -1.4915, 2.373, -0.0178, -1.4915, 2.373, -0.0178, -1.5634, 1.9592, 0.0222, -1.5634, 1.9592, -0.0178, -1.0447, 2.3073, 0.0222, -1.4915, 2.373, 0.0222, -1.0447, 2.3073, -0.0178, -1.0447, 2.3073, -0.0178, -1.4915, 2.373, 0.0222, -1.4915, 2.373, -0.0178, -1.0522, 2.2453, 0.0222, -1.0447, 2.3073, 0.0222, -1.0522, 2.2453, -0.0178, -1.0522, 2.2453, -0.0178, -1.0447, 2.3073, 0.0222, -1.0447, 2.3073, -0.0178, -1.3714, 2.2898, 0.0222, -1.0522, 2.2453, 0.0222, -1.3714, 2.2898, -0.0178, -1.3714, 2.2898, -0.0178, -1.0522, 2.2453, 0.0222, -1.0522, 2.2453, -0.0178, -1.3896, 2.1749, 0.0222, -1.3714, 2.2898, 0.0222, -1.3896, 2.1749, -0.0178, -1.3896, 2.1749, -0.0178, -1.3714, 2.2898, 0.0222, -1.3714, 2.2898, -0.0178, -1.1309, 2.1378, 0.0222, -1.3896, 2.1749, 0.0222, -1.1309, 2.1378, -0.0178, -1.1309, 2.1378, -0.0178, -1.3896, 2.1749, 0.0222, -1.3896, 2.1749, -0.0178, -1.1388, 2.0759, 0.0222, -1.1309, 2.1378, 0.0222, -1.1388, 2.0759, -0.0178, -1.1388, 2.0759, -0.0178, -1.1309, 2.1378, 0.0222, -1.1309, 2.1378, -0.0178, -1.3994, 2.1132, 0.0222, -1.1388, 2.0759, 0.0222, -1.3994, 2.1132, -0.0178, -1.3994, 2.1132, -0.0178, -1.1388, 2.0759, 0.0222, -1.1388, 2.0759, -0.0178, -1.4273, 1.9366, 0.0222, -1.3994, 2.1132, 0.0222, -1.4273, 1.9366, -0.0178, -1.4273, 1.9366, -0.0178, -1.3994, 2.1132, 0.0222, -1.3994, 2.1132, -0.0178, -1.0279, 1.8824, 0.0222, -0.6239, 1.8457, 0.0222, -1.0279, 1.8824, -0.0178, -1.0279, 1.8824, -0.0178, -0.6239, 1.8457, 0.0222, -0.6239, 1.8457, -0.0178, -1.0209, 1.9444, 0.0222, -1.0279, 1.8824, 0.0222, -1.0209, 1.9444, -0.0178, -1.0209, 1.9444, -0.0178, -1.0279, 1.8824, 0.0222, -1.0279, 1.8824, -0.0178, -0.8887, 1.9304, 0.0222, -1.0209, 1.9444, 0.0222, -0.8887, 1.9304, -0.0178, -0.8887, 1.9304, -0.0178, -1.0209, 1.9444, 0.0222, -1.0209, 1.9444, -0.0178, -0.8597, 2.2242, 0.0222, -0.8887, 1.9304, 0.0222, -0.8597, 2.2242, -0.0178, -0.8597, 2.2242, -0.0178, -0.8887, 1.9304, 0.0222, -0.8887, 1.9304, -0.0178, -0.9877, 2.2378, 0.0222, -0.8597, 2.2242, 0.0222, -0.9877, 2.2378, -0.0178, -0.9877, 2.2378, -0.0178, -0.8597, 2.2242, 0.0222, -0.8597, 2.2242, -0.0178, -0.9807, 2.2998, 0.0222, -0.9877, 2.2378, 0.0222, -0.9807, 2.2998, -0.0178, -0.9807, 2.2998, -0.0178, -0.9877, 2.2378, 0.0222, -0.9877, 2.2378, -0.0178, -0.5952, 2.2647, 0.0222, -0.9807, 2.2998, 0.0222, -0.5952, 2.2647, -0.0178, -0.5952, 2.2647, -0.0178, -0.9807, 2.2998, 0.0222, -0.9807, 2.2998, -0.0178, -0.5994, 2.2025, 0.0222, -0.5952, 2.2647, 0.0222, -0.5994, 2.2025, -0.0178, -0.5994, 2.2025, -0.0178, -0.5952, 2.2647, 0.0222, -0.5952, 2.2647, -0.0178, -0.7277, 2.2122, 0.0222, -0.5994, 2.2025, 0.0222, -0.7277, 2.2122, -0.0178, -0.7277, 2.2122, -0.0178, -0.5994, 2.2025, 0.0222, -0.5994, 2.2025, -0.0178, -0.7522, 1.918, 0.0222, -0.7277, 2.2122, 0.0222, -0.7522, 1.918, -0.0178, -0.7522, 1.918, -0.0178, -0.7277, 2.2122, 0.0222, -0.7277, 2.2122, -0.0178, -0.6196, 1.908, 0.0222, -0.7522, 1.918, 0.0222, -0.6196, 1.908, -0.0178, -0.6196, 1.908, -0.0178, -0.7522, 1.918, 0.0222, -0.7522, 1.918, -0.0178, -0.6239, 1.8457, 0.0222, -0.6196, 1.908, 0.0222, -0.6239, 1.8457, -0.0178, -0.6239, 1.8457, -0.0178, -0.6196, 1.908, 0.0222, -0.6196, 1.908, -0.0178, -0.5564, 1.8413, 0.0222, -0.4186, 1.834, 0.0222, -0.5564, 1.8413, -0.0178, -0.5564, 1.8413, -0.0178, -0.4186, 1.834, 0.0222, -0.4186, 1.834, -0.0178, -0.5308, 2.2606, 0.0222, -0.5564, 1.8413, 0.0222, -0.5308, 2.2606, -0.0178, -0.5308, 2.2606, -0.0178, -0.5564, 1.8413, 0.0222, -0.5564, 1.8413, -0.0178, -0.3993, 2.2535, 0.0222, -0.5308, 2.2606, 0.0222, -0.3993, 2.2535, -0.0178, -0.3993, 2.2535, -0.0178, -0.5308, 2.2606, 0.0222, -0.5308, 2.2606, -0.0178, -0.4021, 2.1942, 0.0222, -0.3993, 2.2535, 0.0222, -0.4021, 2.1942, -0.0178, -0.4021, 2.1942, -0.0178, -0.3993, 2.2535, 0.0222, -0.3993, 2.2535, -0.0178, -0.3378, 2.1915, 0.0222, -0.4021, 2.1942, 0.0222, -0.3378, 2.1915, -0.0178, -0.3378, 2.1915, -0.0178, -0.4021, 2.1942, 0.0222, -0.4021, 2.1942, -0.0178, -0.3401, 2.1315, 0.0222, -0.3378, 2.1915, 0.0222, -0.3401, 2.1315, -0.0178, -0.3401, 2.1315, -0.0178, -0.3378, 2.1915, 0.0222, -0.3378, 2.1915, -0.0178, -0.2754, 2.1293, 0.0222, -0.3401, 2.1315, 0.0222, -0.2754, 2.1293, -0.0178, -0.2754, 2.1293, -0.0178, -0.3401, 2.1315, 0.0222, -0.3401, 2.1315, -0.0178, -0.2773, 2.0699, 0.0222, -0.2754, 2.1293, 0.0222, -0.2773, 2.0699, -0.0178, -0.2773, 2.0699, -0.0178, -0.2754, 2.1293, 0.0222, -0.2754, 2.1293, -0.0178, -0.2154, 2.0682, 0.0222, -0.2773, 2.0699, 0.0222, -0.2154, 2.0682, -0.0178, -0.2154, 2.0682, -0.0178, -0.2773, 2.0699, 0.0222, -0.2773, 2.0699, -0.0178, -0.2111, 2.2469, 0.0222, -0.2154, 2.0682, 0.0222, -0.2111, 2.2469, -0.0178, -0.2111, 2.2469, -0.0178, -0.2154, 2.0682, 0.0222, -0.2154, 2.0682, -0.0178, -0.0795, 2.2447, 0.0222, -0.2111, 2.2469, 0.0222, -0.0795, 2.2447, -0.0178, -0.0795, 2.2447, -0.0178, -0.2111, 2.2469, 0.0222, -0.2111, 2.2469, -0.0178, -0.0833, 1.8248, 0.0222, -0.0795, 2.2447, 0.0222, -0.0833, 1.8248, -0.0178, -0.0833, 1.8248, -0.0178, -0.0795, 2.2447, 0.0222, -0.0795, 2.2447, -0.0178, -0.2212, 1.8271, 0.0222, -0.0833, 1.8248, 0.0222, -0.2212, 1.8271, -0.0178, -0.2212, 1.8271, -0.0178, -0.0833, 1.8248, 0.0222, -0.0833, 1.8248, -0.0178, -0.2198, 1.8864, 0.0222, -0.2212, 1.8271, 0.0222, -0.2198, 1.8864, -0.0178, -0.2198, 1.8864, -0.0178, -0.2212, 1.8271, 0.0222, -0.2212, 1.8271, -0.0178, -0.2863, 1.8883, 0.0222, -0.2198, 1.8864, 0.0222, -0.2863, 1.8883, -0.0178, -0.2863, 1.8883, -0.0178, -0.2198, 1.8864, 0.0222, -0.2198, 1.8864, -0.0178, -0.2844, 1.9483, 0.0222, -0.2863, 1.8883, 0.0222, -0.2844, 1.9483, -0.0178, -0.2844, 1.9483, -0.0178, -0.2863, 1.8883, 0.0222, -0.2863, 1.8883, -0.0178, -0.3504, 1.9506, 0.0222, -0.2844, 1.9483, 0.0222, -0.3504, 1.9506, -0.0178, -0.3504, 1.9506, -0.0178, -0.2844, 1.9483, 0.0222, -0.2844, 1.9483, -0.0178, -0.3481, 2.0099, 0.0222, -0.3504, 1.9506, 0.0222, -0.3481, 2.0099, -0.0178, -0.3481, 2.0099, -0.0178, -0.3504, 1.9506, 0.0222, -0.3504, 1.9506, -0.0178, -0.4104, 2.0126, 0.0222, -0.3481, 2.0099, 0.0222, -0.4104, 2.0126, -0.0178, -0.4104, 2.0126, -0.0178, -0.3481, 2.0099, 0.0222, -0.3481, 2.0099, -0.0178, -0.4186, 1.834, 0.0222, -0.4104, 2.0126, 0.0222, -0.4186, 1.834, -0.0178, -0.4186, 1.834, -0.0178, -0.4104, 2.0126, 0.0222, -0.4104, 2.0126, -0.0178, -0.0157, 1.8244, 0.0222, 0.39, 1.8327, 0.0222, -0.0157, 1.8244, -0.0178, -0.0157, 1.8244, -0.0178, 0.39, 1.8327, 0.0222, 0.39, 1.8327, -0.0178, -0.0156, 1.8868, 0.0222, -0.0157, 1.8244, 0.0222, -0.0156, 1.8868, -0.0178, -0.0156, 1.8868, -0.0178, -0.0157, 1.8244, 0.0222, -0.0157, 1.8244, -0.0178, 0.1174, 1.8875, 0.0222, -0.0156, 1.8868, 0.0222, 0.1174, 1.8875, -0.0178, 0.1174, 1.8875, -0.0178, -0.0156, 1.8868, 0.0222, -0.0156, 1.8868, -0.0178, 0.1136, 2.1827, 0.0222, 0.1174, 1.8875, 0.0222, 0.1136, 2.1827, -0.0178, 0.1136, 2.1827, -0.0178, 0.1174, 1.8875, 0.0222, 0.1174, 1.8875, -0.0178, -0.0151, 2.182, 0.0222, 0.1136, 2.1827, 0.0222, -0.0151, 2.182, -0.0178, -0.0151, 2.182, -0.0178, 0.1136, 2.1827, 0.0222, 0.1136, 2.1827, -0.0178, -0.015, 2.2444, 0.0222, -0.0151, 2.182, 0.0222, -0.015, 2.2444, -0.0178, -0.015, 2.2444, -0.0178, -0.0151, 2.182, 0.0222, -0.0151, 2.182, -0.0178, 0.372, 2.2523, 0.0222, -0.015, 2.2444, 0.0222, 0.372, 2.2523, -0.0178, 0.372, 2.2523, -0.0178, -0.015, 2.2444, 0.0222, -0.015, 2.2444, -0.0178, 0.3747, 2.19, 0.0222, 0.372, 2.2523, 0.0222, 0.3747, 2.19, -0.0178, 0.3747, 2.19, -0.0178, 0.372, 2.2523, 0.0222, 0.372, 2.2523, -0.0178, 0.2461, 2.1854, 0.0222, 0.3747, 2.19, 0.0222, 0.2461, 2.1854, -0.0178, 0.2461, 2.1854, -0.0178, 0.3747, 2.19, 0.0222, 0.3747, 2.19, -0.0178, 0.2544, 1.8903, 0.0222, 0.2461, 2.1854, 0.0222, 0.2544, 1.8903, -0.0178, 0.2544, 1.8903, -0.0178, 0.2461, 2.1854, 0.0222, 0.2461, 2.1854, -0.0178, 0.3873, 1.895, 0.0222, 0.2544, 1.8903, 0.0222, 0.3873, 1.895, -0.0178, 0.3873, 1.895, -0.0178, 0.2544, 1.8903, 0.0222, 0.2544, 1.8903, -0.0178, 0.39, 1.8327, 0.0222, 0.3873, 1.895, 0.0222, 0.39, 1.8327, -0.0178, 0.39, 1.8327, -0.0178, 0.3873, 1.895, 0.0222, 0.3873, 1.895, -0.0178, 0.4546, 1.8952, 0.0222, 0.521, 1.8987, 0.0222, 0.4546, 1.8952, -0.0178, 0.4546, 1.8952, -0.0178, 0.521, 1.8987, 0.0222, 0.521, 1.8987, -0.0178, 0.4514, 1.9581, 0.0222, 0.4546, 1.8952, 0.0222, 0.4514, 1.9581, -0.0178, 0.4514, 1.9581, -0.0178, 0.4546, 1.8952, 0.0222, 0.4546, 1.8952, -0.0178, 0.5873, 1.9659, 0.0222, 0.4514, 1.9581, 0.0222, 0.5873, 1.9659, -0.0178, 0.5873, 1.9659, -0.0178, 0.4514, 1.9581, 0.0222, 0.4514, 1.9581, -0.0178, 0.5912, 1.9061, 0.0222, 0.5873, 1.9659, 0.0222, 0.5912, 1.9061, -0.0178, 0.5912, 1.9061, -0.0178, 0.5873, 1.9659, 0.0222, 0.5873, 1.9659, -0.0178, 0.7868, 1.921, 0.0222, 0.5912, 1.9061, 0.0222, 0.7868, 1.921, -0.0178, 0.7868, 1.921, -0.0178, 0.5912, 1.9061, 0.0222, 0.5912, 1.9061, -0.0178, 0.7767, 2.0369, 0.0222, 0.7868, 1.921, 0.0222, 0.7767, 2.0369, -0.0178, 0.7767, 2.0369, -0.0178, 0.7868, 1.921, 0.0222, 0.7868, 1.921, -0.0178, 0.5141, 2.018, 0.0222, 0.7767, 2.0369, 0.0222, 0.5141, 2.018, -0.0178, 0.5141, 2.018, -0.0178, 0.7767, 2.0369, 0.0222, 0.7767, 2.0369, -0.0178, 0.5107, 2.0773, 0.0222, 0.5141, 2.018, 0.0222, 0.5107, 2.0773, -0.0178, 0.5107, 2.0773, -0.0178, 0.5141, 2.018, 0.0222, 0.5141, 2.018, -0.0178, 0.4456, 2.0737, 0.0222, 0.5107, 2.0773, 0.0222, 0.4456, 2.0737, -0.0178, 0.4456, 2.0737, -0.0178, 0.5107, 2.0773, 0.0222, 0.5107, 2.0773, -0.0178, 0.4395, 2.196, 0.0222, 0.4456, 2.0737, 0.0222, 0.4395, 2.196, -0.0178, 0.4395, 2.196, -0.0178, 0.4456, 2.0737, 0.0222, 0.4456, 2.0737, -0.0178, 0.5037, 2.1995, 0.0222, 0.4395, 2.196, 0.0222, 0.5037, 2.1995, -0.0178, 0.5037, 2.1995, -0.0178, 0.4395, 2.196, 0.0222, 0.4395, 2.196, -0.0178, 0.5003, 2.2588, 0.0222, 0.5037, 2.1995, 0.0222, 0.5003, 2.2588, -0.0178, 0.5003, 2.2588, -0.0178, 0.5037, 2.1995, 0.0222, 0.5037, 2.1995, -0.0178, 0.759, 2.2775, 0.0222, 0.5003, 2.2588, 0.0222, 0.759, 2.2775, -0.0178, 0.759, 2.2775, -0.0178, 0.5003, 2.2588, 0.0222, 0.5003, 2.2588, -0.0178, 0.7641, 2.2183, 0.0222, 0.759, 2.2775, 0.0222, 0.7641, 2.2183, -0.0178, 0.7641, 2.2183, -0.0178, 0.759, 2.2775, 0.0222, 0.759, 2.2775, -0.0178, 0.8288, 2.2242, 0.0222, 0.7641, 2.2183, 0.0222, 0.8288, 2.2242, -0.0178, 0.8288, 2.2242, -0.0178, 0.7641, 2.2183, 0.0222, 0.7641, 2.2183, -0.0178, 0.8348, 2.1615, 0.0222, 0.8288, 2.2242, 0.0222, 0.8348, 2.1615, -0.0178, 0.8348, 2.1615, -0.0178, 0.8288, 2.2242, 0.0222, 0.8288, 2.2242, -0.0178, 0.7018, 2.1499, 0.0222, 0.8348, 2.1615, 0.0222, 0.7018, 2.1499, -0.0178, 0.7018, 2.1499, -0.0178, 0.8348, 2.1615, 0.0222, 0.8348, 2.1615, -0.0178, 0.697, 2.2097, 0.0222, 0.7018, 2.1499, 0.0222, 0.697, 2.2097, -0.0178, 0.697, 2.2097, -0.0178, 0.7018, 2.1499, 0.0222, 0.7018, 2.1499, -0.0178, 0.572, 2.2006, 0.0222, 0.697, 2.2097, 0.0222, 0.572, 2.2006, -0.0178, 0.572, 2.2006, -0.0178, 0.697, 2.2097, 0.0222, 0.697, 2.2097, -0.0178, 0.5796, 2.0845, 0.0222, 0.572, 2.2006, 0.0222, 0.5796, 2.0845, -0.0178, 0.5796, 2.0845, -0.0178, 0.572, 2.2006, 0.0222, 0.572, 2.2006, -0.0178, 0.8401, 2.1054, 0.0222, 0.5796, 2.0845, 0.0222, 0.8401, 2.1054, -0.0178, 0.8401, 2.1054, -0.0178, 0.5796, 2.0845, 0.0222, 0.5796, 2.0845, -0.0178, 0.8457, 2.0462, 0.0222, 0.8401, 2.1054, 0.0222, 0.8457, 2.0462, -0.0178, 0.8457, 2.0462, -0.0178, 0.8401, 2.1054, 0.0222, 0.8401, 2.1054, -0.0178, 0.911, 2.0527, 0.0222, 0.8457, 2.0462, 0.0222, 0.911, 2.0527, -0.0178, 0.911, 2.0527, -0.0178, 0.8457, 2.0462, 0.0222, 0.8457, 2.0462, -0.0178, 0.9235, 1.9309, 0.0222, 0.911, 2.0527, 0.0222, 0.9235, 1.9309, -0.0178, 0.9235, 1.9309, -0.0178, 0.911, 2.0527, 0.0222, 0.911, 2.0527, -0.0178, 0.8573, 1.9244, 0.0222, 0.9235, 1.9309, 0.0222, 0.8573, 1.9244, -0.0178, 0.8573, 1.9244, -0.0178, 0.9235, 1.9309, 0.0222, 0.9235, 1.9309, -0.0178, 0.8629, 1.8652, 0.0222, 0.8573, 1.9244, 0.0222, 0.8629, 1.8652, -0.0178, 0.8629, 1.8652, -0.0178, 0.8573, 1.9244, 0.0222, 0.8573, 1.9244, -0.0178, 0.5244, 1.8394, 0.0222, 0.8629, 1.8652, 0.0222, 0.5244, 1.8394, -0.0178, 0.5244, 1.8394, -0.0178, 0.8629, 1.8652, 0.0222, 0.8629, 1.8652, -0.0178, 0.521, 1.8987, 0.0222, 0.5244, 1.8394, 0.0222, 0.521, 1.8987, -0.0178, 0.521, 1.8987, -0.0178, 0.5244, 1.8394, 0.0222, 0.5244, 1.8394, -0.0178, 0.9968, 1.879, 0.0222, 1.1338, 1.8951, 0.0222, 0.9968, 1.879, -0.0178, 0.9968, 1.879, -0.0178, 1.1338, 1.8951, 0.0222, 1.1338, 1.8951, -0.0178, 0.9509, 2.2964, 0.0222, 0.9968, 1.879, 0.0222, 0.9509, 2.2964, -0.0178, 0.9509, 2.2964, -0.0178, 0.9968, 1.879, 0.0222, 0.9968, 1.879, -0.0178, 1.0816, 2.3118, 0.0222, 0.9509, 2.2964, 0.0222, 1.0816, 2.3118, -0.0178, 1.0816, 2.3118, -0.0178, 0.9509, 2.2964, 0.0222, 0.9509, 2.2964, -0.0178, 1.1039, 2.1344, 0.0222, 1.0816, 2.3118, 0.0222, 1.1039, 2.1344, -0.0178, 1.1039, 2.1344, -0.0178, 1.0816, 2.3118, 0.0222, 1.0816, 2.3118, -0.0178, 1.2944, 2.1603, 0.0222, 1.1039, 2.1344, 0.0222, 1.2944, 2.1603, -0.0178, 1.2944, 2.1603, -0.0178, 1.1039, 2.1344, 0.0222, 1.1039, 2.1344, -0.0178, 1.2683, 2.3372, 0.0222, 1.2944, 2.1603, 0.0222, 1.2683, 2.3372, -0.0178, 1.2683, 2.3372, -0.0178, 1.2944, 2.1603, 0.0222, 1.2944, 2.1603, -0.0178, 1.3984, 2.3574, 0.0222, 1.2683, 2.3372, 0.0222, 1.3984, 2.3574, -0.0178, 1.3984, 2.3574, -0.0178, 1.2683, 2.3372, 0.0222, 1.2683, 2.3372, -0.0178, 1.4658, 1.9428, 0.0222, 1.3984, 2.3574, 0.0222, 1.4658, 1.9428, -0.0178, 1.4658, 1.9428, -0.0178, 1.3984, 2.3574, 0.0222, 1.3984, 2.3574, -0.0178, 1.3295, 1.9217, 0.0222, 1.4658, 1.9428, 0.0222, 1.3295, 1.9217, -0.0178, 1.3295, 1.9217, -0.0178, 1.4658, 1.9428, 0.0222, 1.4658, 1.9428, -0.0178, 1.3034, 2.0986, 0.0222, 1.3295, 1.9217, 0.0222, 1.3034, 2.0986, -0.0178, 1.3034, 2.0986, -0.0178, 1.3295, 1.9217, 0.0222, 1.3295, 1.9217, -0.0178, 1.1116, 2.0725, 0.0222, 1.3034, 2.0986, 0.0222, 1.1116, 2.0725, -0.0178, 1.1116, 2.0725, -0.0178, 1.3034, 2.0986, 0.0222, 1.3034, 2.0986, -0.0178, 1.1338, 1.8951, 0.0222, 1.1116, 2.0725, 0.0222, 1.1338, 1.8951, -0.0178, 1.1338, 1.8951, -0.0178, 1.1116, 2.0725, 0.0222, 1.1116, 2.0725, -0.0178 ) - -[sub_resource type="BoxShape" id=2] - -[sub_resource type="BoxShape" id=4] -extents = Vector3( 2.43192, 1.1316, 0.443525 ) - -[node name="FinishLine" type="StaticBody"] -script = ExtResource( 1 ) +[gd_scene load_steps=11 format=3 uid="uid://dp612uo7gar38"] + +[ext_resource type="Script" path="res://scripts/blocks/piece.gd" id="1"] +[ext_resource type="Material" path="res://resources/materials/piece.tres" id="3"] +[ext_resource type="Material" uid="uid://b8rgiyhrayedw" path="res://resources/materials/flag.tres" id="4"] +[ext_resource type="Material" path="res://resources/materials/flag_text.tres" id="5"] +[ext_resource type="Script" path="res://scripts/blocks/finish_line.gd" id="6"] +[ext_resource type="AudioStream" uid="uid://bdttmbobiy344" path="res://assets/sounds/finish_line.wav" id="7"] + +[sub_resource type="ArrayMesh" id="ArrayMesh_5l66y"] +_surfaces = [{ +"aabb": AABB(-3.1, -1.2, -2, 6.2, 4.27461, 4.00001), +"format": 4099, +"index_count": 108, +"index_data": PackedByteArray(0, 0, 1, 0, 2, 0, 2, 0, 1, 0, 3, 0, 4, 0, 5, 0, 6, 0, 6, 0, 5, 0, 7, 0, 8, 0, 9, 0, 10, 0, 10, 0, 9, 0, 11, 0, 12, 0, 13, 0, 14, 0, 14, 0, 13, 0, 15, 0, 16, 0, 17, 0, 18, 0, 18, 0, 17, 0, 19, 0, 20, 0, 21, 0, 22, 0, 22, 0, 21, 0, 23, 0, 24, 0, 25, 0, 26, 0, 26, 0, 25, 0, 27, 0, 28, 0, 29, 0, 30, 0, 30, 0, 29, 0, 31, 0, 32, 0, 33, 0, 34, 0, 34, 0, 33, 0, 35, 0, 36, 0, 37, 0, 38, 0, 38, 0, 37, 0, 39, 0, 40, 0, 41, 0, 42, 0, 42, 0, 41, 0, 43, 0, 44, 0, 45, 0, 46, 0, 46, 0, 45, 0, 47, 0, 48, 0, 49, 0, 50, 0, 50, 0, 49, 0, 51, 0, 52, 0, 53, 0, 54, 0, 54, 0, 53, 0, 55, 0, 56, 0, 57, 0, 58, 0, 58, 0, 57, 0, 59, 0, 60, 0, 61, 0, 62, 0, 62, 0, 61, 0, 63, 0, 64, 0, 65, 0, 66, 0, 66, 0, 65, 0, 67, 0, 68, 0, 69, 0, 70, 0, 70, 0, 69, 0, 71, 0), +"material": ExtResource("3"), +"name": "Base", +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(102, 102, 70, 192, 0, 0, 128, 191, 0, 0, 0, 64, 0, 0, 255, 127, 102, 102, 70, 192, 154, 153, 153, 191, 0, 0, 0, 64, 0, 0, 255, 127, 102, 102, 70, 192, 0, 0, 128, 191, 0, 0, 0, 192, 0, 0, 255, 127, 102, 102, 70, 192, 154, 153, 153, 191, 0, 0, 0, 192, 0, 0, 255, 127, 102, 102, 70, 192, 0, 0, 128, 191, 0, 0, 0, 192, 255, 255, 255, 255, 102, 102, 70, 192, 154, 153, 153, 191, 0, 0, 0, 192, 255, 255, 255, 255, 102, 102, 70, 64, 0, 0, 128, 191, 0, 0, 0, 192, 255, 255, 255, 255, 102, 102, 70, 64, 154, 153, 153, 191, 0, 0, 0, 192, 255, 255, 255, 255, 102, 102, 70, 64, 0, 0, 128, 191, 0, 0, 0, 192, 255, 255, 255, 127, 102, 102, 70, 64, 154, 153, 153, 191, 0, 0, 0, 192, 255, 255, 255, 127, 102, 102, 70, 64, 0, 0, 128, 191, 0, 0, 0, 64, 255, 255, 255, 127, 102, 102, 70, 64, 154, 153, 153, 191, 0, 0, 0, 64, 255, 255, 255, 127, 102, 102, 70, 64, 0, 0, 128, 191, 0, 0, 0, 64, 255, 127, 255, 127, 102, 102, 70, 64, 154, 153, 153, 191, 0, 0, 0, 64, 255, 127, 255, 127, 102, 102, 70, 192, 0, 0, 128, 191, 0, 0, 0, 64, 255, 127, 255, 127, 102, 102, 70, 192, 154, 153, 153, 191, 0, 0, 0, 64, 255, 127, 255, 127, 102, 102, 70, 64, 154, 153, 153, 191, 0, 0, 0, 192, 255, 127, 0, 0, 102, 102, 70, 192, 154, 153, 153, 191, 0, 0, 0, 192, 255, 127, 0, 0, 102, 102, 70, 64, 154, 153, 153, 191, 0, 0, 0, 64, 255, 127, 0, 0, 102, 102, 70, 192, 154, 153, 153, 191, 0, 0, 0, 64, 255, 127, 0, 0, 102, 102, 70, 192, 0, 0, 128, 191, 0, 0, 0, 192, 255, 127, 255, 255, 102, 102, 70, 64, 0, 0, 128, 191, 0, 0, 0, 192, 255, 127, 255, 255, 102, 102, 70, 192, 0, 0, 128, 191, 0, 0, 0, 64, 255, 127, 255, 255, 102, 102, 70, 64, 0, 0, 128, 191, 0, 0, 0, 64, 255, 127, 255, 255, 154, 153, 57, 64, 97, 198, 68, 64, 205, 204, 204, 61, 0, 0, 255, 127, 154, 153, 57, 64, 0, 0, 128, 191, 205, 204, 204, 61, 0, 0, 255, 127, 154, 153, 57, 64, 97, 198, 68, 64, 205, 204, 204, 189, 0, 0, 255, 127, 154, 153, 57, 64, 0, 0, 128, 191, 205, 204, 204, 189, 0, 0, 255, 127, 154, 153, 57, 64, 97, 198, 68, 64, 205, 204, 204, 189, 255, 255, 255, 255, 154, 153, 57, 64, 0, 0, 128, 191, 205, 204, 204, 189, 255, 255, 255, 255, 102, 102, 70, 64, 97, 198, 68, 64, 205, 204, 204, 189, 255, 255, 255, 255, 102, 102, 70, 64, 0, 0, 128, 191, 205, 204, 204, 189, 255, 255, 255, 255, 102, 102, 70, 64, 97, 198, 68, 64, 205, 204, 204, 189, 255, 255, 255, 127, 102, 102, 70, 64, 0, 0, 128, 191, 205, 204, 204, 189, 255, 255, 255, 127, 102, 102, 70, 64, 97, 198, 68, 64, 205, 204, 204, 61, 255, 255, 255, 127, 102, 102, 70, 64, 0, 0, 128, 191, 205, 204, 204, 61, 255, 255, 255, 127, 102, 102, 70, 64, 97, 198, 68, 64, 205, 204, 204, 61, 255, 127, 255, 127, 102, 102, 70, 64, 0, 0, 128, 191, 205, 204, 204, 61, 255, 127, 255, 127, 154, 153, 57, 64, 97, 198, 68, 64, 205, 204, 204, 61, 255, 127, 255, 127, 154, 153, 57, 64, 0, 0, 128, 191, 205, 204, 204, 61, 255, 127, 255, 127, 102, 102, 70, 64, 0, 0, 128, 191, 205, 204, 204, 189, 255, 127, 0, 0, 154, 153, 57, 64, 0, 0, 128, 191, 205, 204, 204, 189, 255, 127, 0, 0, 102, 102, 70, 64, 0, 0, 128, 191, 205, 204, 204, 61, 255, 127, 0, 0, 154, 153, 57, 64, 0, 0, 128, 191, 205, 204, 204, 61, 255, 127, 0, 0, 154, 153, 57, 64, 97, 198, 68, 64, 205, 204, 204, 189, 255, 127, 255, 255, 102, 102, 70, 64, 97, 198, 68, 64, 205, 204, 204, 189, 255, 127, 255, 255, 154, 153, 57, 64, 97, 198, 68, 64, 205, 204, 204, 61, 255, 127, 255, 255, 102, 102, 70, 64, 97, 198, 68, 64, 205, 204, 204, 61, 255, 127, 255, 255, 102, 102, 70, 192, 97, 198, 68, 64, 205, 204, 204, 61, 0, 0, 255, 127, 102, 102, 70, 192, 0, 0, 128, 191, 205, 204, 204, 61, 0, 0, 255, 127, 102, 102, 70, 192, 97, 198, 68, 64, 205, 204, 204, 189, 0, 0, 255, 127, 102, 102, 70, 192, 0, 0, 128, 191, 205, 204, 204, 189, 0, 0, 255, 127, 102, 102, 70, 192, 97, 198, 68, 64, 205, 204, 204, 189, 255, 255, 255, 255, 102, 102, 70, 192, 0, 0, 128, 191, 205, 204, 204, 189, 255, 255, 255, 255, 154, 153, 57, 192, 97, 198, 68, 64, 205, 204, 204, 189, 255, 255, 255, 255, 154, 153, 57, 192, 0, 0, 128, 191, 205, 204, 204, 189, 255, 255, 255, 255, 154, 153, 57, 192, 97, 198, 68, 64, 205, 204, 204, 189, 255, 255, 255, 127, 154, 153, 57, 192, 0, 0, 128, 191, 205, 204, 204, 189, 255, 255, 255, 127, 154, 153, 57, 192, 97, 198, 68, 64, 205, 204, 204, 61, 255, 255, 255, 127, 154, 153, 57, 192, 0, 0, 128, 191, 205, 204, 204, 61, 255, 255, 255, 127, 154, 153, 57, 192, 97, 198, 68, 64, 205, 204, 204, 61, 255, 127, 255, 127, 154, 153, 57, 192, 0, 0, 128, 191, 205, 204, 204, 61, 255, 127, 255, 127, 102, 102, 70, 192, 97, 198, 68, 64, 205, 204, 204, 61, 255, 127, 255, 127, 102, 102, 70, 192, 0, 0, 128, 191, 205, 204, 204, 61, 255, 127, 255, 127, 154, 153, 57, 192, 0, 0, 128, 191, 205, 204, 204, 189, 255, 127, 0, 0, 102, 102, 70, 192, 0, 0, 128, 191, 205, 204, 204, 189, 255, 127, 0, 0, 154, 153, 57, 192, 0, 0, 128, 191, 205, 204, 204, 61, 255, 127, 0, 0, 102, 102, 70, 192, 0, 0, 128, 191, 205, 204, 204, 61, 255, 127, 0, 0, 102, 102, 70, 192, 97, 198, 68, 64, 205, 204, 204, 189, 255, 127, 255, 255, 154, 153, 57, 192, 97, 198, 68, 64, 205, 204, 204, 189, 255, 127, 255, 255, 102, 102, 70, 192, 97, 198, 68, 64, 205, 204, 204, 61, 255, 127, 255, 255, 154, 153, 57, 192, 97, 198, 68, 64, 205, 204, 204, 61, 255, 127, 255, 255) +}, { +"aabb": AABB(-3, 1.52621, 0, 6, 1.47379, 1e-05), +"format": 4099, +"index_count": 72, +"index_data": PackedByteArray(0, 0, 1, 0, 2, 0, 2, 0, 1, 0, 3, 0, 4, 0, 5, 0, 6, 0, 6, 0, 5, 0, 7, 0, 8, 0, 9, 0, 10, 0, 10, 0, 9, 0, 11, 0, 12, 0, 13, 0, 14, 0, 14, 0, 13, 0, 15, 0, 16, 0, 0, 0, 17, 0, 17, 0, 0, 0, 2, 0, 18, 0, 8, 0, 19, 0, 19, 0, 8, 0, 10, 0, 20, 0, 12, 0, 21, 0, 21, 0, 12, 0, 14, 0, 22, 0, 16, 0, 23, 0, 23, 0, 16, 0, 17, 0, 1, 0, 18, 0, 3, 0, 3, 0, 18, 0, 19, 0, 5, 0, 20, 0, 7, 0, 7, 0, 20, 0, 21, 0, 9, 0, 24, 0, 11, 0, 11, 0, 24, 0, 25, 0, 13, 0, 22, 0, 15, 0, 15, 0, 22, 0, 23, 0), +"material": ExtResource("4"), +"name": "Flag", +"primitive": 3, +"vertex_count": 26, +"vertex_data": PackedByteArray(159, 28, 245, 190, 219, 111, 34, 64, 0, 0, 0, 0, 255, 255, 255, 255, 154, 35, 123, 191, 29, 229, 36, 64, 0, 0, 0, 0, 255, 255, 255, 255, 159, 28, 245, 190, 181, 223, 196, 63, 0, 0, 0, 0, 255, 255, 255, 255, 154, 35, 123, 191, 58, 202, 201, 63, 0, 0, 0, 0, 255, 255, 255, 255, 0, 0, 64, 64, 0, 0, 64, 64, 0, 0, 0, 0, 255, 255, 255, 255, 233, 124, 32, 64, 139, 221, 54, 64, 0, 0, 0, 0, 255, 255, 255, 255, 0, 0, 64, 64, 0, 0, 0, 64, 0, 0, 0, 0, 255, 255, 255, 255, 233, 124, 32, 64, 23, 187, 237, 63, 0, 0, 0, 0, 255, 255, 255, 255, 202, 141, 254, 191, 228, 246, 46, 64, 0, 0, 0, 0, 255, 255, 255, 255, 195, 156, 31, 192, 183, 154, 54, 64, 0, 0, 0, 0, 255, 255, 255, 255, 202, 141, 254, 191, 200, 237, 221, 63, 0, 0, 0, 0, 255, 255, 255, 255, 195, 156, 31, 192, 110, 53, 237, 63, 0, 0, 0, 0, 255, 255, 255, 255, 245, 75, 194, 63, 88, 115, 41, 64, 0, 0, 0, 0, 255, 255, 255, 255, 239, 169, 130, 63, 228, 50, 37, 64, 0, 0, 0, 0, 255, 255, 255, 255, 245, 75, 194, 63, 176, 230, 210, 63, 0, 0, 0, 0, 255, 255, 255, 255, 239, 169, 130, 63, 199, 101, 202, 63, 0, 0, 0, 0, 255, 255, 255, 255, 241, 100, 183, 60, 130, 173, 33, 64, 0, 0, 0, 0, 255, 255, 255, 255, 241, 100, 183, 60, 251, 90, 195, 63, 0, 0, 0, 0, 255, 255, 255, 255, 155, 255, 189, 191, 233, 16, 41, 64, 0, 0, 0, 0, 255, 255, 255, 255, 155, 255, 189, 191, 209, 33, 210, 63, 0, 0, 0, 0, 255, 255, 255, 255, 114, 222, 0, 64, 29, 88, 47, 64, 0, 0, 0, 0, 255, 255, 255, 255, 114, 222, 0, 64, 58, 176, 222, 63, 0, 0, 0, 0, 255, 255, 255, 255, 7, 179, 5, 63, 99, 154, 34, 64, 0, 0, 0, 0, 255, 255, 255, 255, 7, 179, 5, 63, 198, 52, 197, 63, 0, 0, 0, 0, 255, 255, 255, 255, 0, 0, 64, 192, 0, 0, 64, 64, 0, 0, 0, 0, 255, 255, 255, 255, 0, 0, 64, 192, 0, 0, 0, 64, 0, 0, 0, 0, 255, 255, 255, 255) +}, { +"aabb": AABB(-1.56342, 1.82439, -0.017818, 3.02924, 0.548648, 0.04001), +"format": 4099, +"index_count": 1056, +"index_data": PackedByteArray(0, 0, 1, 0, 2, 0, 3, 0, 1, 0, 0, 0, 4, 0, 5, 0, 6, 0, 7, 0, 5, 0, 4, 0, 8, 0, 1, 0, 3, 0, 5, 0, 8, 0, 3, 0, 9, 0, 8, 0, 5, 0, 7, 0, 9, 0, 5, 0, 10, 0, 1, 0, 8, 0, 7, 0, 11, 0, 9, 0, 12, 0, 13, 0, 14, 0, 15, 0, 13, 0, 12, 0, 13, 0, 16, 0, 17, 0, 18, 0, 16, 0, 13, 0, 15, 0, 18, 0, 13, 0, 19, 0, 18, 0, 15, 0, 20, 0, 18, 0, 19, 0, 21, 0, 20, 0, 19, 0, 22, 0, 16, 0, 18, 0, 21, 0, 23, 0, 20, 0, 24, 0, 16, 0, 22, 0, 25, 0, 16, 0, 24, 0, 26, 0, 25, 0, 24, 0, 26, 0, 27, 0, 25, 0, 28, 0, 29, 0, 30, 0, 31, 0, 27, 0, 32, 0, 33, 0, 31, 0, 32, 0, 33, 0, 34, 0, 31, 0, 35, 0, 36, 0, 37, 0, 38, 0, 36, 0, 35, 0, 34, 0, 36, 0, 38, 0, 33, 0, 36, 0, 34, 0, 33, 0, 39, 0, 36, 0, 40, 0, 41, 0, 39, 0, 33, 0, 40, 0, 39, 0, 42, 0, 41, 0, 40, 0, 43, 0, 44, 0, 45, 0, 46, 0, 44, 0, 43, 0, 46, 0, 47, 0, 44, 0, 48, 0, 49, 0, 47, 0, 46, 0, 48, 0, 47, 0, 50, 0, 49, 0, 48, 0, 49, 0, 51, 0, 52, 0, 50, 0, 51, 0, 49, 0, 53, 0, 51, 0, 50, 0, 54, 0, 51, 0, 53, 0, 55, 0, 56, 0, 57, 0, 58, 0, 56, 0, 55, 0, 59, 0, 60, 0, 61, 0, 62, 0, 60, 0, 59, 0, 63, 0, 56, 0, 58, 0, 64, 0, 56, 0, 63, 0, 65, 0, 56, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 65, 0, 66, 0, 60, 0, 65, 0, 67, 0, 68, 0, 65, 0, 60, 0, 62, 0, 68, 0, 60, 0, 69, 0, 56, 0, 65, 0, 70, 0, 71, 0, 68, 0, 62, 0, 70, 0, 68, 0, 72, 0, 73, 0, 70, 0, 62, 0, 72, 0, 70, 0, 62, 0, 74, 0, 72, 0, 75, 0, 76, 0, 77, 0, 78, 0, 76, 0, 75, 0, 78, 0, 79, 0, 76, 0, 80, 0, 81, 0, 79, 0, 78, 0, 80, 0, 79, 0, 82, 0, 81, 0, 80, 0, 81, 0, 83, 0, 84, 0, 82, 0, 83, 0, 81, 0, 85, 0, 83, 0, 82, 0, 86, 0, 83, 0, 85, 0, 87, 0, 88, 0, 89, 0, 90, 0, 87, 0, 89, 0, 91, 0, 87, 0, 90, 0, 92, 0, 88, 0, 87, 0, 93, 0, 88, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 93, 0, 94, 0, 96, 0, 88, 0, 93, 0, 97, 0, 98, 0, 99, 0, 97, 0, 100, 0, 98, 0, 101, 0, 102, 0, 103, 0, 101, 0, 104, 0, 102, 0, 97, 0, 105, 0, 100, 0, 105, 0, 101, 0, 100, 0, 105, 0, 106, 0, 101, 0, 106, 0, 104, 0, 101, 0, 97, 0, 107, 0, 105, 0, 108, 0, 104, 0, 106, 0, 109, 0, 110, 0, 111, 0, 109, 0, 112, 0, 110, 0, 113, 0, 109, 0, 114, 0, 113, 0, 115, 0, 109, 0, 115, 0, 112, 0, 109, 0, 115, 0, 116, 0, 112, 0, 115, 0, 117, 0, 116, 0, 117, 0, 118, 0, 116, 0, 113, 0, 119, 0, 115, 0, 120, 0, 118, 0, 117, 0, 113, 0, 121, 0, 119, 0, 113, 0, 122, 0, 121, 0, 122, 0, 123, 0, 121, 0, 124, 0, 123, 0, 122, 0, 125, 0, 126, 0, 127, 0, 124, 0, 128, 0, 129, 0, 128, 0, 130, 0, 129, 0, 131, 0, 130, 0, 128, 0, 132, 0, 133, 0, 134, 0, 132, 0, 135, 0, 133, 0, 132, 0, 131, 0, 135, 0, 132, 0, 130, 0, 131, 0, 136, 0, 130, 0, 132, 0, 137, 0, 138, 0, 136, 0, 138, 0, 130, 0, 136, 0, 137, 0, 139, 0, 138, 0, 140, 0, 141, 0, 142, 0, 140, 0, 143, 0, 141, 0, 144, 0, 143, 0, 140, 0, 145, 0, 146, 0, 144, 0, 146, 0, 143, 0, 144, 0, 145, 0, 147, 0, 146, 0, 148, 0, 145, 0, 149, 0, 148, 0, 147, 0, 145, 0, 148, 0, 150, 0, 147, 0, 148, 0, 151, 0, 150, 0, 152, 0, 153, 0, 154, 0, 152, 0, 155, 0, 153, 0, 156, 0, 157, 0, 158, 0, 156, 0, 159, 0, 157, 0, 152, 0, 160, 0, 155, 0, 152, 0, 161, 0, 160, 0, 152, 0, 162, 0, 161, 0, 162, 0, 163, 0, 161, 0, 162, 0, 164, 0, 163, 0, 162, 0, 156, 0, 164, 0, 162, 0, 165, 0, 156, 0, 165, 0, 159, 0, 156, 0, 152, 0, 166, 0, 162, 0, 167, 0, 168, 0, 165, 0, 168, 0, 159, 0, 165, 0, 169, 0, 170, 0, 168, 0, 170, 0, 159, 0, 168, 0, 171, 0, 159, 0, 170, 0, 172, 0, 173, 0, 174, 0, 172, 0, 175, 0, 173, 0, 176, 0, 175, 0, 172, 0, 177, 0, 178, 0, 176, 0, 178, 0, 175, 0, 176, 0, 177, 0, 179, 0, 178, 0, 180, 0, 177, 0, 181, 0, 180, 0, 179, 0, 177, 0, 180, 0, 182, 0, 179, 0, 180, 0, 183, 0, 182, 0, 184, 0, 185, 0, 186, 0, 185, 0, 187, 0, 186, 0, 185, 0, 188, 0, 187, 0, 184, 0, 189, 0, 185, 0, 184, 0, 190, 0, 189, 0, 190, 0, 191, 0, 189, 0, 190, 0, 192, 0, 191, 0, 184, 0, 193, 0, 190, 0, 194, 0, 195, 0, 196, 0, 196, 0, 195, 0, 197, 0, 198, 0, 199, 0, 200, 0, 200, 0, 199, 0, 201, 0, 202, 0, 203, 0, 204, 0, 204, 0, 203, 0, 205, 0, 206, 0, 207, 0, 208, 0, 208, 0, 207, 0, 209, 0, 210, 0, 211, 0, 212, 0, 212, 0, 211, 0, 213, 0, 214, 0, 215, 0, 216, 0, 216, 0, 215, 0, 217, 0, 218, 0, 219, 0, 220, 0, 220, 0, 219, 0, 221, 0, 222, 0, 223, 0, 224, 0, 224, 0, 223, 0, 225, 0, 226, 0, 227, 0, 228, 0, 228, 0, 227, 0, 229, 0, 230, 0, 231, 0, 232, 0, 232, 0, 231, 0, 233, 0, 234, 0, 235, 0, 236, 0, 236, 0, 235, 0, 237, 0, 238, 0, 239, 0, 240, 0, 240, 0, 239, 0, 241, 0, 242, 0, 243, 0, 244, 0, 244, 0, 243, 0, 245, 0, 246, 0, 247, 0, 248, 0, 248, 0, 247, 0, 249, 0, 250, 0, 251, 0, 252, 0, 252, 0, 251, 0, 253, 0, 254, 0, 255, 0, 0, 1, 0, 1, 255, 0, 1, 1, 2, 1, 3, 1, 4, 1, 4, 1, 3, 1, 5, 1, 6, 1, 7, 1, 8, 1, 8, 1, 7, 1, 9, 1, 10, 1, 11, 1, 12, 1, 12, 1, 11, 1, 13, 1, 14, 1, 15, 1, 16, 1, 16, 1, 15, 1, 17, 1, 18, 1, 19, 1, 20, 1, 20, 1, 19, 1, 21, 1, 22, 1, 23, 1, 24, 1, 24, 1, 23, 1, 25, 1, 26, 1, 27, 1, 28, 1, 28, 1, 27, 1, 29, 1, 30, 1, 31, 1, 32, 1, 32, 1, 31, 1, 33, 1, 34, 1, 35, 1, 36, 1, 36, 1, 35, 1, 37, 1, 38, 1, 39, 1, 40, 1, 40, 1, 39, 1, 41, 1, 42, 1, 43, 1, 44, 1, 44, 1, 43, 1, 45, 1, 46, 1, 47, 1, 48, 1, 48, 1, 47, 1, 49, 1, 50, 1, 51, 1, 52, 1, 52, 1, 51, 1, 53, 1, 54, 1, 55, 1, 56, 1, 56, 1, 55, 1, 57, 1, 58, 1, 59, 1, 60, 1, 60, 1, 59, 1, 61, 1, 62, 1, 63, 1, 64, 1, 64, 1, 63, 1, 65, 1, 66, 1, 67, 1, 68, 1, 68, 1, 67, 1, 69, 1, 70, 1, 71, 1, 72, 1, 72, 1, 71, 1, 73, 1, 74, 1, 75, 1, 76, 1, 76, 1, 75, 1, 77, 1, 78, 1, 79, 1, 80, 1, 80, 1, 79, 1, 81, 1, 82, 1, 83, 1, 84, 1, 84, 1, 83, 1, 85, 1, 86, 1, 87, 1, 88, 1, 88, 1, 87, 1, 89, 1, 90, 1, 91, 1, 92, 1, 92, 1, 91, 1, 93, 1, 94, 1, 95, 1, 96, 1, 96, 1, 95, 1, 97, 1, 98, 1, 99, 1, 100, 1, 100, 1, 99, 1, 101, 1, 102, 1, 103, 1, 104, 1, 104, 1, 103, 1, 105, 1, 106, 1, 107, 1, 108, 1, 108, 1, 107, 1, 109, 1, 110, 1, 111, 1, 112, 1, 112, 1, 111, 1, 113, 1, 114, 1, 115, 1, 116, 1, 116, 1, 115, 1, 117, 1, 118, 1, 119, 1, 120, 1, 120, 1, 119, 1, 121, 1, 122, 1, 123, 1, 124, 1, 124, 1, 123, 1, 125, 1, 126, 1, 127, 1, 128, 1, 128, 1, 127, 1, 129, 1, 130, 1, 131, 1, 132, 1, 132, 1, 131, 1, 133, 1, 134, 1, 135, 1, 136, 1, 136, 1, 135, 1, 137, 1, 138, 1, 139, 1, 140, 1, 140, 1, 139, 1, 141, 1, 142, 1, 143, 1, 144, 1, 144, 1, 143, 1, 145, 1, 146, 1, 147, 1, 148, 1, 148, 1, 147, 1, 149, 1, 150, 1, 151, 1, 152, 1, 152, 1, 151, 1, 153, 1, 154, 1, 155, 1, 156, 1, 156, 1, 155, 1, 157, 1, 158, 1, 159, 1, 160, 1, 160, 1, 159, 1, 161, 1, 162, 1, 163, 1, 164, 1, 164, 1, 163, 1, 165, 1, 166, 1, 167, 1, 168, 1, 168, 1, 167, 1, 169, 1, 170, 1, 171, 1, 172, 1, 172, 1, 171, 1, 173, 1, 174, 1, 175, 1, 176, 1, 176, 1, 175, 1, 177, 1, 178, 1, 179, 1, 180, 1, 180, 1, 179, 1, 181, 1, 182, 1, 183, 1, 184, 1, 184, 1, 183, 1, 185, 1, 186, 1, 187, 1, 188, 1, 188, 1, 187, 1, 189, 1, 190, 1, 191, 1, 192, 1, 192, 1, 191, 1, 193, 1, 194, 1, 195, 1, 196, 1, 196, 1, 195, 1, 197, 1, 198, 1, 199, 1, 200, 1, 200, 1, 199, 1, 201, 1, 202, 1, 203, 1, 204, 1, 204, 1, 203, 1, 205, 1, 206, 1, 207, 1, 208, 1, 208, 1, 207, 1, 209, 1, 210, 1, 211, 1, 212, 1, 212, 1, 211, 1, 213, 1, 214, 1, 215, 1, 216, 1, 216, 1, 215, 1, 217, 1, 218, 1, 219, 1, 220, 1, 220, 1, 219, 1, 221, 1, 222, 1, 223, 1, 224, 1, 224, 1, 223, 1, 225, 1, 226, 1, 227, 1, 228, 1, 228, 1, 227, 1, 229, 1, 230, 1, 231, 1, 232, 1, 232, 1, 231, 1, 233, 1, 234, 1, 235, 1, 236, 1, 236, 1, 235, 1, 237, 1, 238, 1, 239, 1, 240, 1, 240, 1, 239, 1, 241, 1, 242, 1, 243, 1, 244, 1, 244, 1, 243, 1, 245, 1, 246, 1, 247, 1, 248, 1, 248, 1, 247, 1, 249, 1, 250, 1, 251, 1, 252, 1, 252, 1, 251, 1, 253, 1, 254, 1, 255, 1, 0, 2, 0, 2, 255, 1, 1, 2, 2, 2, 3, 2, 4, 2, 4, 2, 3, 2, 5, 2, 6, 2, 7, 2, 8, 2, 8, 2, 7, 2, 9, 2, 10, 2, 11, 2, 12, 2, 12, 2, 11, 2, 13, 2, 14, 2, 15, 2, 16, 2, 16, 2, 15, 2, 17, 2, 18, 2, 19, 2, 20, 2, 20, 2, 19, 2, 21, 2, 22, 2, 23, 2, 24, 2, 24, 2, 23, 2, 25, 2, 26, 2, 27, 2, 28, 2, 28, 2, 27, 2, 29, 2, 30, 2, 31, 2, 32, 2, 32, 2, 31, 2, 33, 2, 34, 2, 35, 2, 36, 2, 36, 2, 35, 2, 37, 2, 38, 2, 39, 2, 40, 2, 40, 2, 39, 2, 41, 2, 42, 2, 43, 2, 44, 2, 44, 2, 43, 2, 45, 2, 46, 2, 47, 2, 48, 2, 48, 2, 47, 2, 49, 2, 50, 2, 51, 2, 52, 2, 52, 2, 51, 2, 53, 2, 54, 2, 55, 2, 56, 2, 56, 2, 55, 2, 57, 2), +"material": ExtResource("5"), +"name": "Text", +"primitive": 3, +"vertex_count": 570, +"vertex_data": PackedByteArray(113, 115, 138, 63, 136, 244, 19, 64, 7, 183, 181, 60, 255, 127, 255, 127, 111, 45, 127, 63, 128, 129, 240, 63, 7, 183, 181, 60, 255, 127, 255, 127, 38, 112, 115, 63, 228, 248, 18, 64, 7, 183, 181, 60, 255, 127, 255, 127, 22, 75, 141, 63, 187, 153, 8, 64, 7, 183, 181, 60, 255, 127, 255, 127, 55, 254, 178, 63, 26, 223, 22, 64, 7, 183, 181, 60, 255, 127, 255, 127, 109, 173, 165, 63, 183, 66, 10, 64, 7, 183, 181, 60, 255, 127, 255, 127, 54, 88, 162, 63, 247, 148, 21, 64, 7, 183, 181, 60, 255, 127, 255, 127, 237, 159, 187, 63, 50, 174, 248, 63, 7, 183, 181, 60, 255, 127, 255, 127, 10, 73, 142, 63, 72, 163, 4, 64, 7, 183, 181, 60, 255, 127, 255, 127, 48, 215, 166, 63, 68, 79, 6, 64, 7, 183, 181, 60, 255, 127, 255, 127, 167, 32, 145, 63, 8, 145, 242, 63, 7, 183, 181, 60, 255, 127, 255, 127, 103, 44, 170, 63, 18, 250, 245, 63, 7, 183, 181, 60, 255, 127, 255, 127, 207, 74, 66, 63, 156, 194, 17, 64, 7, 183, 181, 60, 255, 127, 255, 127, 195, 241, 0, 63, 202, 195, 12, 64, 7, 183, 181, 60, 255, 127, 255, 127, 39, 18, 0, 63, 101, 143, 16, 64, 7, 183, 181, 60, 255, 127, 255, 127, 23, 158, 67, 63, 26, 249, 13, 64, 7, 183, 181, 60, 255, 127, 255, 127, 154, 38, 228, 62, 61, 184, 4, 64, 7, 183, 181, 60, 255, 127, 255, 127, 155, 2, 225, 62, 30, 139, 12, 64, 7, 183, 181, 60, 255, 127, 255, 127, 43, 108, 18, 63, 69, 215, 12, 64, 7, 183, 181, 60, 255, 127, 255, 127, 157, 45, 84, 63, 197, 89, 14, 64, 7, 183, 181, 60, 255, 127, 255, 127, 172, 113, 50, 63, 236, 107, 13, 64, 7, 183, 181, 60, 255, 127, 255, 127, 225, 179, 85, 63, 50, 86, 10, 64, 7, 183, 181, 60, 255, 127, 255, 127, 150, 93, 20, 63, 56, 104, 5, 64, 7, 183, 181, 60, 255, 127, 255, 127, 38, 170, 51, 63, 250, 151, 9, 64, 7, 183, 181, 60, 255, 127, 255, 127, 65, 17, 87, 63, 68, 190, 6, 64, 7, 183, 181, 60, 255, 127, 255, 127, 140, 190, 2, 63, 178, 241, 4, 64, 7, 183, 181, 60, 255, 127, 255, 127, 44, 129, 88, 63, 111, 245, 2, 64, 7, 183, 181, 60, 255, 127, 255, 127, 40, 158, 3, 63, 24, 38, 1, 64, 7, 183, 181, 60, 255, 127, 255, 127, 222, 56, 105, 63, 250, 94, 3, 64, 7, 183, 181, 60, 255, 255, 255, 255, 40, 158, 3, 63, 24, 38, 1, 64, 7, 183, 181, 60, 255, 255, 255, 255, 44, 129, 88, 63, 111, 245, 2, 64, 7, 183, 181, 60, 255, 255, 255, 255, 233, 211, 70, 63, 24, 93, 2, 64, 7, 183, 181, 60, 255, 127, 255, 127, 222, 56, 105, 63, 250, 94, 3, 64, 7, 183, 181, 60, 255, 127, 255, 127, 165, 105, 108, 63, 254, 39, 247, 63, 7, 183, 181, 60, 255, 127, 255, 127, 211, 105, 73, 63, 97, 226, 245, 63, 7, 183, 181, 60, 255, 127, 255, 127, 58, 89, 22, 63, 236, 163, 251, 63, 7, 183, 181, 60, 255, 127, 255, 127, 35, 189, 232, 62, 238, 148, 242, 63, 7, 183, 181, 60, 255, 127, 255, 127, 88, 31, 231, 62, 186, 162, 250, 63, 7, 183, 181, 60, 255, 127, 255, 127, 155, 89, 23, 63, 248, 249, 243, 63, 7, 183, 181, 60, 255, 127, 255, 127, 154, 95, 5, 63, 36, 10, 243, 63, 7, 183, 181, 60, 255, 127, 255, 127, 92, 119, 91, 63, 5, 82, 246, 63, 7, 183, 181, 60, 255, 127, 255, 127, 54, 63, 6, 63, 247, 114, 235, 63, 7, 183, 181, 60, 255, 127, 255, 127, 88, 231, 92, 63, 72, 192, 238, 63, 7, 183, 181, 60, 255, 127, 255, 127, 242, 124, 190, 62, 15, 38, 16, 64, 7, 183, 181, 60, 255, 127, 255, 127, 56, 190, 118, 188, 164, 165, 11, 64, 7, 183, 181, 60, 255, 127, 255, 127, 109, 253, 116, 188, 1, 164, 15, 64, 7, 183, 181, 60, 255, 127, 255, 127, 64, 218, 191, 62, 158, 40, 12, 64, 7, 183, 181, 60, 255, 127, 255, 127, 152, 166, 232, 61, 121, 177, 11, 64, 7, 183, 181, 60, 255, 127, 255, 127, 196, 9, 124, 62, 5, 222, 11, 64, 7, 183, 181, 60, 255, 127, 255, 127, 242, 122, 240, 61, 166, 154, 241, 63, 7, 183, 181, 60, 255, 127, 255, 127, 175, 66, 130, 62, 186, 246, 241, 63, 7, 183, 181, 60, 255, 127, 255, 127, 195, 102, 128, 188, 115, 133, 233, 63, 7, 183, 181, 60, 255, 127, 255, 127, 187, 12, 127, 188, 44, 130, 241, 63, 7, 183, 181, 60, 255, 127, 255, 127, 51, 79, 198, 62, 247, 144, 242, 63, 7, 183, 181, 60, 255, 127, 255, 127, 130, 172, 199, 62, 28, 150, 234, 63, 7, 183, 181, 60, 255, 127, 255, 127, 20, 119, 204, 190, 222, 57, 16, 64, 7, 183, 181, 60, 255, 127, 255, 127, 84, 110, 14, 191, 16, 177, 235, 63, 7, 183, 181, 60, 255, 127, 255, 127, 223, 224, 7, 191, 8, 173, 16, 64, 7, 183, 181, 60, 255, 127, 255, 127, 253, 219, 205, 190, 173, 109, 12, 64, 7, 183, 181, 60, 255, 127, 255, 127, 177, 193, 162, 189, 185, 169, 15, 64, 7, 183, 181, 60, 255, 127, 255, 127, 155, 146, 92, 190, 24, 93, 4, 64, 7, 183, 181, 60, 255, 127, 255, 127, 188, 34, 88, 190, 179, 205, 15, 64, 7, 183, 181, 60, 255, 127, 255, 127, 195, 154, 170, 189, 113, 145, 233, 63, 7, 183, 181, 60, 255, 127, 255, 127, 90, 246, 172, 190, 58, 65, 12, 64, 7, 183, 181, 60, 255, 127, 255, 127, 99, 37, 174, 190, 236, 106, 8, 64, 7, 183, 181, 60, 255, 127, 255, 127, 155, 32, 210, 190, 49, 206, 0, 64, 7, 183, 181, 60, 255, 127, 255, 127, 184, 3, 141, 190, 237, 69, 8, 64, 7, 183, 181, 60, 255, 127, 255, 127, 152, 246, 141, 190, 49, 121, 4, 64, 7, 183, 181, 60, 255, 127, 255, 127, 159, 62, 178, 190, 236, 162, 0, 64, 7, 183, 181, 60, 255, 127, 255, 127, 34, 83, 214, 190, 169, 191, 234, 63, 7, 183, 181, 60, 255, 127, 255, 127, 203, 157, 145, 190, 166, 96, 249, 63, 7, 183, 181, 60, 255, 127, 255, 127, 101, 109, 179, 190, 239, 172, 249, 63, 7, 183, 181, 60, 255, 127, 255, 127, 156, 21, 97, 190, 188, 118, 241, 63, 7, 183, 181, 60, 255, 127, 255, 127, 11, 150, 146, 190, 133, 179, 241, 63, 7, 183, 181, 60, 255, 127, 255, 127, 214, 142, 98, 190, 232, 220, 233, 63, 7, 183, 181, 60, 255, 127, 255, 127, 87, 92, 24, 191, 90, 241, 16, 64, 7, 183, 181, 60, 255, 127, 255, 127, 119, 216, 124, 191, 93, 55, 15, 64, 7, 183, 181, 60, 255, 127, 255, 127, 2, 12, 123, 191, 56, 47, 19, 64, 7, 183, 181, 60, 255, 127, 255, 127, 201, 115, 25, 191, 98, 245, 12, 64, 7, 183, 181, 60, 255, 127, 255, 127, 101, 23, 92, 191, 96, 89, 14, 64, 7, 183, 181, 60, 255, 127, 255, 127, 136, 75, 58, 191, 217, 148, 13, 64, 7, 183, 181, 60, 255, 127, 255, 127, 141, 127, 99, 191, 51, 24, 247, 63, 7, 183, 181, 60, 255, 127, 255, 127, 147, 144, 64, 191, 233, 129, 245, 63, 7, 183, 181, 60, 255, 127, 255, 127, 163, 147, 131, 191, 111, 243, 240, 63, 7, 183, 181, 60, 255, 127, 255, 127, 105, 173, 130, 191, 29, 227, 248, 63, 7, 183, 181, 60, 255, 127, 255, 127, 199, 157, 30, 191, 59, 56, 244, 63, 7, 183, 181, 60, 255, 127, 255, 127, 57, 181, 31, 191, 74, 64, 236, 63, 7, 183, 181, 60, 255, 127, 255, 127, 135, 138, 175, 191, 193, 140, 18, 64, 7, 183, 181, 60, 255, 127, 255, 127, 71, 30, 200, 191, 80, 200, 250, 63, 7, 183, 181, 60, 255, 127, 255, 127, 112, 233, 190, 191, 198, 223, 23, 64, 7, 183, 181, 60, 255, 127, 255, 127, 208, 185, 133, 191, 34, 170, 19, 64, 7, 183, 181, 60, 255, 127, 255, 127, 20, 175, 134, 191, 41, 179, 15, 64, 7, 183, 181, 60, 255, 127, 255, 127, 223, 222, 177, 191, 26, 49, 11, 64, 7, 183, 181, 60, 255, 127, 255, 127, 134, 30, 179, 191, 83, 63, 7, 64, 7, 183, 181, 60, 255, 127, 255, 127, 56, 192, 144, 191, 208, 209, 8, 64, 7, 183, 181, 60, 255, 127, 255, 127, 93, 196, 145, 191, 194, 219, 4, 64, 7, 183, 181, 60, 255, 127, 255, 127, 142, 178, 182, 191, 193, 227, 247, 63, 7, 183, 181, 60, 255, 127, 255, 127, 111, 45, 127, 63, 128, 129, 240, 63, 14, 247, 145, 188, 255, 255, 255, 255, 113, 115, 138, 63, 136, 244, 19, 64, 14, 247, 145, 188, 255, 255, 255, 255, 38, 112, 115, 63, 228, 248, 18, 64, 14, 247, 145, 188, 255, 255, 255, 255, 22, 75, 141, 63, 187, 153, 8, 64, 14, 247, 145, 188, 255, 255, 255, 255, 109, 173, 165, 63, 183, 66, 10, 64, 14, 247, 145, 188, 255, 255, 255, 255, 55, 254, 178, 63, 26, 223, 22, 64, 14, 247, 145, 188, 255, 255, 255, 255, 54, 88, 162, 63, 247, 148, 21, 64, 14, 247, 145, 188, 255, 255, 255, 255, 237, 159, 187, 63, 50, 174, 248, 63, 14, 247, 145, 188, 255, 255, 255, 255, 10, 73, 142, 63, 72, 163, 4, 64, 14, 247, 145, 188, 255, 255, 255, 255, 48, 215, 166, 63, 68, 79, 6, 64, 14, 247, 145, 188, 255, 255, 255, 255, 167, 32, 145, 63, 8, 145, 242, 63, 14, 247, 145, 188, 255, 255, 255, 255, 103, 44, 170, 63, 18, 250, 245, 63, 14, 247, 145, 188, 255, 255, 255, 255, 195, 241, 0, 63, 202, 195, 12, 64, 14, 247, 145, 188, 255, 255, 255, 255, 207, 74, 66, 63, 156, 194, 17, 64, 14, 247, 145, 188, 255, 255, 255, 255, 39, 18, 0, 63, 101, 143, 16, 64, 14, 247, 145, 188, 255, 255, 255, 255, 23, 158, 67, 63, 26, 249, 13, 64, 14, 247, 145, 188, 255, 255, 255, 255, 154, 38, 228, 62, 61, 184, 4, 64, 14, 247, 145, 188, 255, 255, 255, 255, 155, 2, 225, 62, 30, 139, 12, 64, 14, 247, 145, 188, 255, 255, 255, 255, 43, 108, 18, 63, 69, 215, 12, 64, 14, 247, 145, 188, 255, 255, 255, 255, 157, 45, 84, 63, 197, 89, 14, 64, 14, 247, 145, 188, 255, 255, 255, 255, 172, 113, 50, 63, 236, 107, 13, 64, 14, 247, 145, 188, 255, 255, 255, 255, 225, 179, 85, 63, 50, 86, 10, 64, 14, 247, 145, 188, 255, 255, 255, 255, 150, 93, 20, 63, 56, 104, 5, 64, 14, 247, 145, 188, 255, 255, 255, 255, 38, 170, 51, 63, 250, 151, 9, 64, 14, 247, 145, 188, 255, 255, 255, 255, 65, 17, 87, 63, 68, 190, 6, 64, 14, 247, 145, 188, 255, 255, 255, 255, 140, 190, 2, 63, 178, 241, 4, 64, 14, 247, 145, 188, 255, 255, 255, 255, 44, 129, 88, 63, 111, 245, 2, 64, 14, 247, 145, 188, 255, 255, 255, 255, 40, 158, 3, 63, 24, 38, 1, 64, 14, 247, 145, 188, 255, 255, 255, 255, 40, 158, 3, 63, 24, 38, 1, 64, 14, 247, 145, 188, 255, 127, 255, 127, 222, 56, 105, 63, 250, 94, 3, 64, 14, 247, 145, 188, 255, 127, 255, 127, 44, 129, 88, 63, 111, 245, 2, 64, 14, 247, 145, 188, 255, 127, 255, 127, 233, 211, 70, 63, 24, 93, 2, 64, 14, 247, 145, 188, 255, 255, 255, 255, 222, 56, 105, 63, 250, 94, 3, 64, 14, 247, 145, 188, 255, 255, 255, 255, 165, 105, 108, 63, 254, 39, 247, 63, 14, 247, 145, 188, 255, 255, 255, 255, 211, 105, 73, 63, 97, 226, 245, 63, 14, 247, 145, 188, 255, 255, 255, 255, 35, 189, 232, 62, 238, 148, 242, 63, 14, 247, 145, 188, 255, 255, 255, 255, 58, 89, 22, 63, 236, 163, 251, 63, 14, 247, 145, 188, 255, 255, 255, 255, 88, 31, 231, 62, 186, 162, 250, 63, 14, 247, 145, 188, 255, 255, 255, 255, 155, 89, 23, 63, 248, 249, 243, 63, 14, 247, 145, 188, 255, 255, 255, 255, 154, 95, 5, 63, 36, 10, 243, 63, 14, 247, 145, 188, 255, 255, 255, 255, 54, 63, 6, 63, 247, 114, 235, 63, 14, 247, 145, 188, 255, 255, 255, 255, 92, 119, 91, 63, 5, 82, 246, 63, 14, 247, 145, 188, 255, 255, 255, 255, 88, 231, 92, 63, 72, 192, 238, 63, 14, 247, 145, 188, 255, 255, 255, 255, 56, 190, 118, 188, 164, 165, 11, 64, 14, 247, 145, 188, 255, 255, 255, 255, 242, 124, 190, 62, 15, 38, 16, 64, 14, 247, 145, 188, 255, 255, 255, 255, 109, 253, 116, 188, 1, 164, 15, 64, 14, 247, 145, 188, 255, 255, 255, 255, 64, 218, 191, 62, 158, 40, 12, 64, 14, 247, 145, 188, 255, 255, 255, 255, 152, 166, 232, 61, 121, 177, 11, 64, 14, 247, 145, 188, 255, 255, 255, 255, 242, 122, 240, 61, 166, 154, 241, 63, 14, 247, 145, 188, 255, 255, 255, 255, 196, 9, 124, 62, 5, 222, 11, 64, 14, 247, 145, 188, 255, 255, 255, 255, 175, 66, 130, 62, 186, 246, 241, 63, 14, 247, 145, 188, 255, 255, 255, 255, 195, 102, 128, 188, 115, 133, 233, 63, 14, 247, 145, 188, 255, 255, 255, 255, 187, 12, 127, 188, 44, 130, 241, 63, 14, 247, 145, 188, 255, 255, 255, 255, 51, 79, 198, 62, 247, 144, 242, 63, 14, 247, 145, 188, 255, 255, 255, 255, 130, 172, 199, 62, 28, 150, 234, 63, 14, 247, 145, 188, 255, 255, 255, 255, 84, 110, 14, 191, 16, 177, 235, 63, 14, 247, 145, 188, 255, 255, 255, 255, 20, 119, 204, 190, 222, 57, 16, 64, 14, 247, 145, 188, 255, 255, 255, 255, 223, 224, 7, 191, 8, 173, 16, 64, 14, 247, 145, 188, 255, 255, 255, 255, 253, 219, 205, 190, 173, 109, 12, 64, 14, 247, 145, 188, 255, 255, 255, 255, 155, 146, 92, 190, 24, 93, 4, 64, 14, 247, 145, 188, 255, 255, 255, 255, 177, 193, 162, 189, 185, 169, 15, 64, 14, 247, 145, 188, 255, 255, 255, 255, 188, 34, 88, 190, 179, 205, 15, 64, 14, 247, 145, 188, 255, 255, 255, 255, 195, 154, 170, 189, 113, 145, 233, 63, 14, 247, 145, 188, 255, 255, 255, 255, 90, 246, 172, 190, 58, 65, 12, 64, 14, 247, 145, 188, 255, 255, 255, 255, 99, 37, 174, 190, 236, 106, 8, 64, 14, 247, 145, 188, 255, 255, 255, 255, 155, 32, 210, 190, 49, 206, 0, 64, 14, 247, 145, 188, 255, 255, 255, 255, 184, 3, 141, 190, 237, 69, 8, 64, 14, 247, 145, 188, 255, 255, 255, 255, 152, 246, 141, 190, 49, 121, 4, 64, 14, 247, 145, 188, 255, 255, 255, 255, 159, 62, 178, 190, 236, 162, 0, 64, 14, 247, 145, 188, 255, 255, 255, 255, 34, 83, 214, 190, 169, 191, 234, 63, 14, 247, 145, 188, 255, 255, 255, 255, 101, 109, 179, 190, 239, 172, 249, 63, 14, 247, 145, 188, 255, 255, 255, 255, 203, 157, 145, 190, 166, 96, 249, 63, 14, 247, 145, 188, 255, 255, 255, 255, 11, 150, 146, 190, 133, 179, 241, 63, 14, 247, 145, 188, 255, 255, 255, 255, 156, 21, 97, 190, 188, 118, 241, 63, 14, 247, 145, 188, 255, 255, 255, 255, 214, 142, 98, 190, 232, 220, 233, 63, 14, 247, 145, 188, 255, 255, 255, 255, 119, 216, 124, 191, 93, 55, 15, 64, 14, 247, 145, 188, 255, 255, 255, 255, 87, 92, 24, 191, 90, 241, 16, 64, 14, 247, 145, 188, 255, 255, 255, 255, 2, 12, 123, 191, 56, 47, 19, 64, 14, 247, 145, 188, 255, 255, 255, 255, 201, 115, 25, 191, 98, 245, 12, 64, 14, 247, 145, 188, 255, 255, 255, 255, 101, 23, 92, 191, 96, 89, 14, 64, 14, 247, 145, 188, 255, 255, 255, 255, 141, 127, 99, 191, 51, 24, 247, 63, 14, 247, 145, 188, 255, 255, 255, 255, 136, 75, 58, 191, 217, 148, 13, 64, 14, 247, 145, 188, 255, 255, 255, 255, 147, 144, 64, 191, 233, 129, 245, 63, 14, 247, 145, 188, 255, 255, 255, 255, 163, 147, 131, 191, 111, 243, 240, 63, 14, 247, 145, 188, 255, 255, 255, 255, 105, 173, 130, 191, 29, 227, 248, 63, 14, 247, 145, 188, 255, 255, 255, 255, 199, 157, 30, 191, 59, 56, 244, 63, 14, 247, 145, 188, 255, 255, 255, 255, 57, 181, 31, 191, 74, 64, 236, 63, 14, 247, 145, 188, 255, 255, 255, 255, 71, 30, 200, 191, 80, 200, 250, 63, 14, 247, 145, 188, 255, 255, 255, 255, 135, 138, 175, 191, 193, 140, 18, 64, 14, 247, 145, 188, 255, 255, 255, 255, 112, 233, 190, 191, 198, 223, 23, 64, 14, 247, 145, 188, 255, 255, 255, 255, 208, 185, 133, 191, 34, 170, 19, 64, 14, 247, 145, 188, 255, 255, 255, 255, 20, 175, 134, 191, 41, 179, 15, 64, 14, 247, 145, 188, 255, 255, 255, 255, 223, 222, 177, 191, 26, 49, 11, 64, 14, 247, 145, 188, 255, 255, 255, 255, 134, 30, 179, 191, 83, 63, 7, 64, 14, 247, 145, 188, 255, 255, 255, 255, 56, 192, 144, 191, 208, 209, 8, 64, 14, 247, 145, 188, 255, 255, 255, 255, 93, 196, 145, 191, 194, 219, 4, 64, 14, 247, 145, 188, 255, 255, 255, 255, 142, 178, 182, 191, 193, 227, 247, 63, 14, 247, 145, 188, 255, 255, 255, 255, 71, 30, 200, 191, 80, 200, 250, 63, 7, 183, 181, 60, 197, 109, 58, 18, 142, 178, 182, 191, 193, 227, 247, 63, 7, 183, 181, 60, 197, 109, 58, 18, 71, 30, 200, 191, 80, 200, 250, 63, 14, 247, 145, 188, 197, 109, 58, 18, 142, 178, 182, 191, 193, 227, 247, 63, 14, 247, 145, 188, 197, 109, 58, 18, 112, 233, 190, 191, 198, 223, 23, 64, 7, 183, 181, 60, 245, 18, 245, 146, 71, 30, 200, 191, 80, 200, 250, 63, 7, 183, 181, 60, 245, 18, 245, 146, 112, 233, 190, 191, 198, 223, 23, 64, 14, 247, 145, 188, 245, 18, 245, 146, 71, 30, 200, 191, 80, 200, 250, 63, 14, 247, 145, 188, 245, 18, 245, 146, 208, 185, 133, 191, 34, 170, 19, 64, 7, 183, 181, 60, 109, 144, 144, 239, 112, 233, 190, 191, 198, 223, 23, 64, 7, 183, 181, 60, 109, 144, 144, 239, 208, 185, 133, 191, 34, 170, 19, 64, 14, 247, 145, 188, 109, 144, 144, 239, 112, 233, 190, 191, 198, 223, 23, 64, 14, 247, 145, 188, 109, 144, 144, 239, 20, 175, 134, 191, 41, 179, 15, 64, 7, 183, 181, 60, 49, 242, 49, 114, 208, 185, 133, 191, 34, 170, 19, 64, 7, 183, 181, 60, 49, 242, 49, 114, 20, 175, 134, 191, 41, 179, 15, 64, 14, 247, 145, 188, 49, 242, 49, 114, 208, 185, 133, 191, 34, 170, 19, 64, 14, 247, 145, 188, 49, 242, 49, 114, 135, 138, 175, 191, 193, 140, 18, 64, 7, 183, 181, 60, 83, 112, 172, 15, 20, 175, 134, 191, 41, 179, 15, 64, 7, 183, 181, 60, 83, 112, 172, 15, 135, 138, 175, 191, 193, 140, 18, 64, 14, 247, 145, 188, 83, 112, 172, 15, 20, 175, 134, 191, 41, 179, 15, 64, 14, 247, 145, 188, 83, 112, 172, 15, 223, 222, 177, 191, 26, 49, 11, 64, 7, 183, 181, 60, 130, 238, 130, 110, 135, 138, 175, 191, 193, 140, 18, 64, 7, 183, 181, 60, 130, 238, 130, 110, 223, 222, 177, 191, 26, 49, 11, 64, 14, 247, 145, 188, 130, 238, 130, 110, 135, 138, 175, 191, 193, 140, 18, 64, 14, 247, 145, 188, 130, 238, 130, 110, 56, 192, 144, 191, 208, 209, 8, 64, 7, 183, 181, 60, 9, 144, 245, 239, 223, 222, 177, 191, 26, 49, 11, 64, 7, 183, 181, 60, 9, 144, 245, 239, 56, 192, 144, 191, 208, 209, 8, 64, 14, 247, 145, 188, 9, 144, 245, 239, 223, 222, 177, 191, 26, 49, 11, 64, 14, 247, 145, 188, 9, 144, 245, 239, 93, 196, 145, 191, 194, 219, 4, 64, 7, 183, 181, 60, 114, 241, 115, 113, 56, 192, 144, 191, 208, 209, 8, 64, 7, 183, 181, 60, 114, 241, 115, 113, 93, 196, 145, 191, 194, 219, 4, 64, 14, 247, 145, 188, 114, 241, 115, 113, 56, 192, 144, 191, 208, 209, 8, 64, 14, 247, 145, 188, 114, 241, 115, 113, 134, 30, 179, 191, 83, 63, 7, 64, 7, 183, 181, 60, 245, 111, 9, 16, 93, 196, 145, 191, 194, 219, 4, 64, 7, 183, 181, 60, 245, 111, 9, 16, 134, 30, 179, 191, 83, 63, 7, 64, 14, 247, 145, 188, 245, 111, 9, 16, 93, 196, 145, 191, 194, 219, 4, 64, 14, 247, 145, 188, 245, 111, 9, 16, 142, 178, 182, 191, 193, 227, 247, 63, 7, 183, 181, 60, 130, 238, 130, 110, 134, 30, 179, 191, 83, 63, 7, 64, 7, 183, 181, 60, 130, 238, 130, 110, 142, 178, 182, 191, 193, 227, 247, 63, 14, 247, 145, 188, 130, 238, 130, 110, 134, 30, 179, 191, 83, 63, 7, 64, 14, 247, 145, 188, 130, 238, 130, 110, 163, 147, 131, 191, 111, 243, 240, 63, 7, 183, 181, 60, 85, 117, 169, 10, 57, 181, 31, 191, 74, 64, 236, 63, 7, 183, 181, 60, 85, 117, 169, 10, 163, 147, 131, 191, 111, 243, 240, 63, 14, 247, 145, 188, 85, 117, 169, 10, 57, 181, 31, 191, 74, 64, 236, 63, 14, 247, 145, 188, 85, 117, 169, 10, 105, 173, 130, 191, 29, 227, 248, 63, 7, 183, 181, 60, 7, 13, 6, 141, 163, 147, 131, 191, 111, 243, 240, 63, 7, 183, 181, 60, 7, 13, 6, 141, 105, 173, 130, 191, 29, 227, 248, 63, 14, 247, 145, 188, 7, 13, 6, 141, 163, 147, 131, 191, 111, 243, 240, 63, 14, 247, 145, 188, 7, 13, 6, 141, 141, 127, 99, 191, 51, 24, 247, 63, 7, 183, 181, 60, 65, 140, 189, 243, 105, 173, 130, 191, 29, 227, 248, 63, 7, 183, 181, 60, 65, 140, 189, 243, 141, 127, 99, 191, 51, 24, 247, 63, 14, 247, 145, 188, 65, 140, 189, 243, 105, 173, 130, 191, 29, 227, 248, 63, 14, 247, 145, 188, 65, 140, 189, 243, 101, 23, 92, 191, 96, 89, 14, 64, 7, 183, 181, 60, 121, 11, 120, 139, 141, 127, 99, 191, 51, 24, 247, 63, 7, 183, 181, 60, 121, 11, 120, 139, 101, 23, 92, 191, 96, 89, 14, 64, 14, 247, 145, 188, 121, 11, 120, 139, 141, 127, 99, 191, 51, 24, 247, 63, 14, 247, 145, 188, 121, 11, 120, 139, 119, 216, 124, 191, 93, 55, 15, 64, 7, 183, 181, 60, 189, 115, 65, 12, 101, 23, 92, 191, 96, 89, 14, 64, 7, 183, 181, 60, 189, 115, 65, 12, 119, 216, 124, 191, 93, 55, 15, 64, 14, 247, 145, 188, 189, 115, 65, 12, 101, 23, 92, 191, 96, 89, 14, 64, 14, 247, 145, 188, 189, 115, 65, 12, 2, 12, 123, 191, 56, 47, 19, 64, 7, 183, 181, 60, 7, 13, 6, 141, 119, 216, 124, 191, 93, 55, 15, 64, 7, 183, 181, 60, 7, 13, 6, 141, 2, 12, 123, 191, 56, 47, 19, 64, 14, 247, 145, 188, 7, 13, 6, 141, 119, 216, 124, 191, 93, 55, 15, 64, 14, 247, 145, 188, 7, 13, 6, 141, 87, 92, 24, 191, 90, 241, 16, 64, 7, 183, 181, 60, 169, 138, 85, 245, 2, 12, 123, 191, 56, 47, 19, 64, 7, 183, 181, 60, 169, 138, 85, 245, 87, 92, 24, 191, 90, 241, 16, 64, 14, 247, 145, 188, 169, 138, 85, 245, 2, 12, 123, 191, 56, 47, 19, 64, 14, 247, 145, 188, 169, 138, 85, 245, 201, 115, 25, 191, 98, 245, 12, 64, 7, 183, 181, 60, 203, 247, 204, 119, 87, 92, 24, 191, 90, 241, 16, 64, 7, 183, 181, 60, 203, 247, 204, 119, 201, 115, 25, 191, 98, 245, 12, 64, 14, 247, 145, 188, 203, 247, 204, 119, 87, 92, 24, 191, 90, 241, 16, 64, 14, 247, 145, 188, 203, 247, 204, 119, 136, 75, 58, 191, 217, 148, 13, 64, 7, 183, 181, 60, 250, 118, 5, 9, 201, 115, 25, 191, 98, 245, 12, 64, 7, 183, 181, 60, 250, 118, 5, 9, 136, 75, 58, 191, 217, 148, 13, 64, 14, 247, 145, 188, 250, 118, 5, 9, 201, 115, 25, 191, 98, 245, 12, 64, 14, 247, 145, 188, 250, 118, 5, 9, 147, 144, 64, 191, 233, 129, 245, 63, 7, 183, 181, 60, 39, 246, 40, 118, 136, 75, 58, 191, 217, 148, 13, 64, 7, 183, 181, 60, 39, 246, 40, 118, 147, 144, 64, 191, 233, 129, 245, 63, 14, 247, 145, 188, 39, 246, 40, 118, 136, 75, 58, 191, 217, 148, 13, 64, 14, 247, 145, 188, 39, 246, 40, 118, 199, 157, 30, 191, 59, 56, 244, 63, 7, 183, 181, 60, 7, 137, 246, 246, 147, 144, 64, 191, 233, 129, 245, 63, 7, 183, 181, 60, 7, 137, 246, 246, 199, 157, 30, 191, 59, 56, 244, 63, 14, 247, 145, 188, 7, 137, 246, 246, 147, 144, 64, 191, 233, 129, 245, 63, 14, 247, 145, 188, 7, 137, 246, 246, 57, 181, 31, 191, 74, 64, 236, 63, 7, 183, 181, 60, 203, 247, 204, 119, 199, 157, 30, 191, 59, 56, 244, 63, 7, 183, 181, 60, 203, 247, 204, 119, 57, 181, 31, 191, 74, 64, 236, 63, 14, 247, 145, 188, 203, 247, 204, 119, 199, 157, 30, 191, 59, 56, 244, 63, 14, 247, 145, 188, 203, 247, 204, 119, 84, 110, 14, 191, 16, 177, 235, 63, 7, 183, 181, 60, 128, 121, 127, 6, 34, 83, 214, 190, 169, 191, 234, 63, 7, 183, 181, 60, 128, 121, 127, 6, 84, 110, 14, 191, 16, 177, 235, 63, 14, 247, 145, 188, 128, 121, 127, 6, 34, 83, 214, 190, 169, 191, 234, 63, 14, 247, 145, 188, 128, 121, 127, 6, 223, 224, 7, 191, 8, 173, 16, 64, 7, 183, 181, 60, 92, 7, 91, 135, 84, 110, 14, 191, 16, 177, 235, 63, 7, 183, 181, 60, 92, 7, 91, 135, 223, 224, 7, 191, 8, 173, 16, 64, 14, 247, 145, 188, 92, 7, 91, 135, 84, 110, 14, 191, 16, 177, 235, 63, 14, 247, 145, 188, 92, 7, 91, 135, 20, 119, 204, 190, 222, 57, 16, 64, 7, 183, 181, 60, 126, 134, 127, 249, 223, 224, 7, 191, 8, 173, 16, 64, 7, 183, 181, 60, 126, 134, 127, 249, 20, 119, 204, 190, 222, 57, 16, 64, 14, 247, 145, 188, 126, 134, 127, 249, 223, 224, 7, 191, 8, 173, 16, 64, 14, 247, 145, 188, 126, 134, 127, 249, 253, 219, 205, 190, 173, 109, 12, 64, 7, 183, 181, 60, 95, 250, 95, 122, 20, 119, 204, 190, 222, 57, 16, 64, 7, 183, 181, 60, 95, 250, 95, 122, 253, 219, 205, 190, 173, 109, 12, 64, 14, 247, 145, 188, 95, 250, 95, 122, 20, 119, 204, 190, 222, 57, 16, 64, 14, 247, 145, 188, 95, 250, 95, 122, 90, 246, 172, 190, 58, 65, 12, 64, 7, 183, 181, 60, 47, 133, 207, 250, 253, 219, 205, 190, 173, 109, 12, 64, 7, 183, 181, 60, 47, 133, 207, 250, 90, 246, 172, 190, 58, 65, 12, 64, 14, 247, 145, 188, 47, 133, 207, 250, 253, 219, 205, 190, 173, 109, 12, 64, 14, 247, 145, 188, 47, 133, 207, 250, 99, 37, 174, 190, 236, 106, 8, 64, 7, 183, 181, 60, 63, 251, 63, 123, 90, 246, 172, 190, 58, 65, 12, 64, 7, 183, 181, 60, 63, 251, 63, 123, 99, 37, 174, 190, 236, 106, 8, 64, 14, 247, 145, 188, 63, 251, 63, 123, 90, 246, 172, 190, 58, 65, 12, 64, 14, 247, 145, 188, 63, 251, 63, 123, 184, 3, 141, 190, 237, 69, 8, 64, 7, 183, 181, 60, 81, 132, 173, 251, 99, 37, 174, 190, 236, 106, 8, 64, 7, 183, 181, 60, 81, 132, 173, 251, 184, 3, 141, 190, 237, 69, 8, 64, 14, 247, 145, 188, 81, 132, 173, 251, 99, 37, 174, 190, 236, 106, 8, 64, 14, 247, 145, 188, 81, 132, 173, 251, 152, 246, 141, 190, 49, 121, 4, 64, 7, 183, 181, 60, 31, 252, 31, 124, 184, 3, 141, 190, 237, 69, 8, 64, 7, 183, 181, 60, 31, 252, 31, 124, 152, 246, 141, 190, 49, 121, 4, 64, 14, 247, 145, 188, 31, 252, 31, 124, 184, 3, 141, 190, 237, 69, 8, 64, 14, 247, 145, 188, 31, 252, 31, 124, 155, 146, 92, 190, 24, 93, 4, 64, 7, 183, 181, 60, 115, 131, 139, 252, 152, 246, 141, 190, 49, 121, 4, 64, 7, 183, 181, 60, 115, 131, 139, 252, 155, 146, 92, 190, 24, 93, 4, 64, 14, 247, 145, 188, 115, 131, 139, 252, 152, 246, 141, 190, 49, 121, 4, 64, 14, 247, 145, 188, 115, 131, 139, 252, 188, 34, 88, 190, 179, 205, 15, 64, 7, 183, 181, 60, 6, 3, 5, 131, 155, 146, 92, 190, 24, 93, 4, 64, 7, 183, 181, 60, 6, 3, 5, 131, 188, 34, 88, 190, 179, 205, 15, 64, 14, 247, 145, 188, 6, 3, 5, 131, 155, 146, 92, 190, 24, 93, 4, 64, 14, 247, 145, 188, 6, 3, 5, 131, 177, 193, 162, 189, 185, 169, 15, 64, 7, 183, 181, 60, 25, 130, 228, 253, 188, 34, 88, 190, 179, 205, 15, 64, 7, 183, 181, 60, 25, 130, 228, 253, 177, 193, 162, 189, 185, 169, 15, 64, 14, 247, 145, 188, 25, 130, 228, 253, 188, 34, 88, 190, 179, 205, 15, 64, 14, 247, 145, 188, 25, 130, 228, 253, 195, 154, 170, 189, 113, 145, 233, 63, 7, 183, 181, 60, 215, 254, 216, 126, 177, 193, 162, 189, 185, 169, 15, 64, 7, 183, 181, 60, 215, 254, 216, 126, 195, 154, 170, 189, 113, 145, 233, 63, 14, 247, 145, 188, 215, 254, 216, 126, 177, 193, 162, 189, 185, 169, 15, 64, 14, 247, 145, 188, 215, 254, 216, 126, 214, 142, 98, 190, 232, 220, 233, 63, 7, 183, 181, 60, 229, 125, 26, 2, 195, 154, 170, 189, 113, 145, 233, 63, 7, 183, 181, 60, 229, 125, 26, 2, 214, 142, 98, 190, 232, 220, 233, 63, 14, 247, 145, 188, 229, 125, 26, 2, 195, 154, 170, 189, 113, 145, 233, 63, 14, 247, 145, 188, 229, 125, 26, 2, 156, 21, 97, 190, 188, 118, 241, 63, 7, 183, 181, 60, 6, 3, 5, 131, 214, 142, 98, 190, 232, 220, 233, 63, 7, 183, 181, 60, 6, 3, 5, 131, 156, 21, 97, 190, 188, 118, 241, 63, 14, 247, 145, 188, 6, 3, 5, 131, 214, 142, 98, 190, 232, 220, 233, 63, 14, 247, 145, 188, 6, 3, 5, 131, 11, 150, 146, 190, 133, 179, 241, 63, 7, 183, 181, 60, 133, 124, 121, 3, 156, 21, 97, 190, 188, 118, 241, 63, 7, 183, 181, 60, 133, 124, 121, 3, 11, 150, 146, 190, 133, 179, 241, 63, 14, 247, 145, 188, 133, 124, 121, 3, 156, 21, 97, 190, 188, 118, 241, 63, 14, 247, 145, 188, 133, 124, 121, 3, 203, 157, 145, 190, 166, 96, 249, 63, 7, 183, 181, 60, 236, 3, 235, 131, 11, 150, 146, 190, 133, 179, 241, 63, 7, 183, 181, 60, 236, 3, 235, 131, 203, 157, 145, 190, 166, 96, 249, 63, 14, 247, 145, 188, 236, 3, 235, 131, 11, 150, 146, 190, 133, 179, 241, 63, 14, 247, 145, 188, 236, 3, 235, 131, 101, 109, 179, 190, 239, 172, 249, 63, 7, 183, 181, 60, 164, 123, 90, 4, 203, 157, 145, 190, 166, 96, 249, 63, 7, 183, 181, 60, 164, 123, 90, 4, 101, 109, 179, 190, 239, 172, 249, 63, 14, 247, 145, 188, 164, 123, 90, 4, 203, 157, 145, 190, 166, 96, 249, 63, 14, 247, 145, 188, 164, 123, 90, 4, 159, 62, 178, 190, 236, 162, 0, 64, 7, 183, 181, 60, 203, 4, 203, 132, 101, 109, 179, 190, 239, 172, 249, 63, 7, 183, 181, 60, 203, 4, 203, 132, 159, 62, 178, 190, 236, 162, 0, 64, 14, 247, 145, 188, 203, 4, 203, 132, 101, 109, 179, 190, 239, 172, 249, 63, 14, 247, 145, 188, 203, 4, 203, 132, 155, 32, 210, 190, 49, 206, 0, 64, 7, 183, 181, 60, 201, 122, 53, 5, 159, 62, 178, 190, 236, 162, 0, 64, 7, 183, 181, 60, 201, 122, 53, 5, 155, 32, 210, 190, 49, 206, 0, 64, 14, 247, 145, 188, 201, 122, 53, 5, 159, 62, 178, 190, 236, 162, 0, 64, 14, 247, 145, 188, 201, 122, 53, 5, 34, 83, 214, 190, 169, 191, 234, 63, 7, 183, 181, 60, 95, 250, 95, 122, 155, 32, 210, 190, 49, 206, 0, 64, 7, 183, 181, 60, 95, 250, 95, 122, 34, 83, 214, 190, 169, 191, 234, 63, 14, 247, 145, 188, 95, 250, 95, 122, 155, 32, 210, 190, 49, 206, 0, 64, 14, 247, 145, 188, 95, 250, 95, 122, 195, 102, 128, 188, 115, 133, 233, 63, 7, 183, 181, 60, 145, 130, 146, 2, 130, 172, 199, 62, 28, 150, 234, 63, 7, 183, 181, 60, 145, 130, 146, 2, 195, 102, 128, 188, 115, 133, 233, 63, 14, 247, 145, 188, 145, 130, 146, 2, 130, 172, 199, 62, 28, 150, 234, 63, 14, 247, 145, 188, 145, 130, 146, 2, 187, 12, 127, 188, 44, 130, 241, 63, 7, 183, 181, 60, 55, 0, 55, 128, 195, 102, 128, 188, 115, 133, 233, 63, 7, 183, 181, 60, 55, 0, 55, 128, 187, 12, 127, 188, 44, 130, 241, 63, 14, 247, 145, 188, 55, 0, 55, 128, 195, 102, 128, 188, 115, 133, 233, 63, 14, 247, 145, 188, 55, 0, 55, 128, 242, 122, 240, 61, 166, 154, 241, 63, 7, 183, 181, 60, 73, 127, 72, 255, 187, 12, 127, 188, 44, 130, 241, 63, 7, 183, 181, 60, 73, 127, 72, 255, 242, 122, 240, 61, 166, 154, 241, 63, 14, 247, 145, 188, 73, 127, 72, 255, 187, 12, 127, 188, 44, 130, 241, 63, 14, 247, 145, 188, 73, 127, 72, 255, 152, 166, 232, 61, 121, 177, 11, 64, 7, 183, 181, 60, 164, 1, 90, 126, 242, 122, 240, 61, 166, 154, 241, 63, 7, 183, 181, 60, 164, 1, 90, 126, 152, 166, 232, 61, 121, 177, 11, 64, 14, 247, 145, 188, 164, 1, 90, 126, 242, 122, 240, 61, 166, 154, 241, 63, 14, 247, 145, 188, 164, 1, 90, 126, 56, 190, 118, 188, 164, 165, 11, 64, 7, 183, 181, 60, 181, 128, 182, 0, 152, 166, 232, 61, 121, 177, 11, 64, 7, 183, 181, 60, 181, 128, 182, 0, 56, 190, 118, 188, 164, 165, 11, 64, 14, 247, 145, 188, 181, 128, 182, 0, 152, 166, 232, 61, 121, 177, 11, 64, 14, 247, 145, 188, 181, 128, 182, 0, 109, 253, 116, 188, 1, 164, 15, 64, 7, 183, 181, 60, 55, 0, 55, 128, 56, 190, 118, 188, 164, 165, 11, 64, 7, 183, 181, 60, 55, 0, 55, 128, 109, 253, 116, 188, 1, 164, 15, 64, 14, 247, 145, 188, 55, 0, 55, 128, 56, 190, 118, 188, 164, 165, 11, 64, 14, 247, 145, 188, 55, 0, 55, 128, 242, 124, 190, 62, 15, 38, 16, 64, 7, 183, 181, 60, 109, 125, 108, 253, 109, 253, 116, 188, 1, 164, 15, 64, 7, 183, 181, 60, 109, 125, 108, 253, 242, 124, 190, 62, 15, 38, 16, 64, 14, 247, 145, 188, 109, 125, 108, 253, 109, 253, 116, 188, 1, 164, 15, 64, 14, 247, 145, 188, 109, 125, 108, 253, 64, 218, 191, 62, 158, 40, 12, 64, 7, 183, 181, 60, 191, 250, 62, 133, 242, 124, 190, 62, 15, 38, 16, 64, 7, 183, 181, 60, 191, 250, 62, 133, 64, 218, 191, 62, 158, 40, 12, 64, 14, 247, 145, 188, 191, 250, 62, 133, 242, 124, 190, 62, 15, 38, 16, 64, 14, 247, 145, 188, 191, 250, 62, 133, 196, 9, 124, 62, 5, 222, 11, 64, 7, 183, 181, 60, 96, 132, 96, 4, 64, 218, 191, 62, 158, 40, 12, 64, 7, 183, 181, 60, 96, 132, 96, 4, 196, 9, 124, 62, 5, 222, 11, 64, 14, 247, 145, 188, 96, 132, 96, 4, 64, 218, 191, 62, 158, 40, 12, 64, 14, 247, 145, 188, 96, 132, 96, 4, 175, 66, 130, 62, 186, 246, 241, 63, 7, 183, 181, 60, 127, 252, 127, 131, 196, 9, 124, 62, 5, 222, 11, 64, 7, 183, 181, 60, 127, 252, 127, 131, 175, 66, 130, 62, 186, 246, 241, 63, 14, 247, 145, 188, 127, 252, 127, 131, 196, 9, 124, 62, 5, 222, 11, 64, 14, 247, 145, 188, 127, 252, 127, 131, 51, 79, 198, 62, 247, 144, 242, 63, 7, 183, 181, 60, 158, 123, 158, 251, 175, 66, 130, 62, 186, 246, 241, 63, 7, 183, 181, 60, 158, 123, 158, 251, 51, 79, 198, 62, 247, 144, 242, 63, 14, 247, 145, 188, 158, 123, 158, 251, 175, 66, 130, 62, 186, 246, 241, 63, 14, 247, 145, 188, 158, 123, 158, 251, 130, 172, 199, 62, 28, 150, 234, 63, 7, 183, 181, 60, 191, 250, 62, 133, 51, 79, 198, 62, 247, 144, 242, 63, 7, 183, 181, 60, 191, 250, 62, 133, 130, 172, 199, 62, 28, 150, 234, 63, 14, 247, 145, 188, 191, 250, 62, 133, 51, 79, 198, 62, 247, 144, 242, 63, 14, 247, 145, 188, 191, 250, 62, 133, 35, 189, 232, 62, 238, 148, 242, 63, 7, 183, 181, 60, 138, 134, 139, 6, 154, 95, 5, 63, 36, 10, 243, 63, 7, 183, 181, 60, 138, 134, 139, 6, 35, 189, 232, 62, 238, 148, 242, 63, 14, 247, 145, 188, 138, 134, 139, 6, 154, 95, 5, 63, 36, 10, 243, 63, 14, 247, 145, 188, 138, 134, 139, 6, 88, 31, 231, 62, 186, 162, 250, 63, 7, 183, 181, 60, 29, 6, 226, 121, 35, 189, 232, 62, 238, 148, 242, 63, 7, 183, 181, 60, 29, 6, 226, 121, 88, 31, 231, 62, 186, 162, 250, 63, 14, 247, 145, 188, 29, 6, 226, 121, 35, 189, 232, 62, 238, 148, 242, 63, 14, 247, 145, 188, 29, 6, 226, 121, 58, 89, 22, 63, 236, 163, 251, 63, 7, 183, 181, 60, 1, 121, 0, 249, 88, 31, 231, 62, 186, 162, 250, 63, 7, 183, 181, 60, 1, 121, 0, 249, 58, 89, 22, 63, 236, 163, 251, 63, 14, 247, 145, 188, 1, 121, 0, 249, 88, 31, 231, 62, 186, 162, 250, 63, 14, 247, 145, 188, 1, 121, 0, 249, 155, 89, 23, 63, 248, 249, 243, 63, 7, 183, 181, 60, 37, 248, 217, 135, 58, 89, 22, 63, 236, 163, 251, 63, 7, 183, 181, 60, 37, 248, 217, 135, 155, 89, 23, 63, 248, 249, 243, 63, 14, 247, 145, 188, 37, 248, 217, 135, 58, 89, 22, 63, 236, 163, 251, 63, 14, 247, 145, 188, 37, 248, 217, 135, 211, 105, 73, 63, 97, 226, 245, 63, 7, 183, 181, 60, 238, 118, 238, 246, 155, 89, 23, 63, 248, 249, 243, 63, 7, 183, 181, 60, 238, 118, 238, 246, 211, 105, 73, 63, 97, 226, 245, 63, 14, 247, 145, 188, 238, 118, 238, 246, 155, 89, 23, 63, 248, 249, 243, 63, 14, 247, 145, 188, 238, 118, 238, 246, 233, 211, 70, 63, 24, 93, 2, 64, 7, 183, 181, 60, 66, 10, 189, 117, 211, 105, 73, 63, 97, 226, 245, 63, 7, 183, 181, 60, 66, 10, 189, 117, 233, 211, 70, 63, 24, 93, 2, 64, 14, 247, 145, 188, 66, 10, 189, 117, 211, 105, 73, 63, 97, 226, 245, 63, 14, 247, 145, 188, 66, 10, 189, 117, 40, 158, 3, 63, 24, 38, 1, 64, 7, 183, 181, 60, 160, 136, 161, 8, 233, 211, 70, 63, 24, 93, 2, 64, 7, 183, 181, 60, 160, 136, 161, 8, 40, 158, 3, 63, 24, 38, 1, 64, 14, 247, 145, 188, 160, 136, 161, 8, 233, 211, 70, 63, 24, 93, 2, 64, 14, 247, 145, 188, 160, 136, 161, 8, 140, 190, 2, 63, 178, 241, 4, 64, 7, 183, 181, 60, 245, 6, 9, 121, 40, 158, 3, 63, 24, 38, 1, 64, 7, 183, 181, 60, 245, 6, 9, 121, 140, 190, 2, 63, 178, 241, 4, 64, 14, 247, 145, 188, 245, 6, 9, 121, 40, 158, 3, 63, 24, 38, 1, 64, 14, 247, 145, 188, 245, 6, 9, 121, 154, 38, 228, 62, 61, 184, 4, 64, 7, 183, 181, 60, 138, 134, 139, 6, 140, 190, 2, 63, 178, 241, 4, 64, 7, 183, 181, 60, 138, 134, 139, 6, 154, 38, 228, 62, 61, 184, 4, 64, 14, 247, 145, 188, 138, 134, 139, 6, 140, 190, 2, 63, 178, 241, 4, 64, 14, 247, 145, 188, 138, 134, 139, 6, 155, 2, 225, 62, 30, 139, 12, 64, 7, 183, 181, 60, 29, 6, 226, 121, 154, 38, 228, 62, 61, 184, 4, 64, 7, 183, 181, 60, 29, 6, 226, 121, 155, 2, 225, 62, 30, 139, 12, 64, 14, 247, 145, 188, 29, 6, 226, 121, 154, 38, 228, 62, 61, 184, 4, 64, 14, 247, 145, 188, 29, 6, 226, 121, 195, 241, 0, 63, 202, 195, 12, 64, 7, 183, 181, 60, 116, 121, 115, 249, 155, 2, 225, 62, 30, 139, 12, 64, 7, 183, 181, 60, 116, 121, 115, 249, 195, 241, 0, 63, 202, 195, 12, 64, 14, 247, 145, 188, 116, 121, 115, 249, 155, 2, 225, 62, 30, 139, 12, 64, 14, 247, 145, 188, 116, 121, 115, 249, 39, 18, 0, 63, 101, 143, 16, 64, 7, 183, 181, 60, 245, 6, 9, 121, 195, 241, 0, 63, 202, 195, 12, 64, 7, 183, 181, 60, 245, 6, 9, 121, 39, 18, 0, 63, 101, 143, 16, 64, 14, 247, 145, 188, 245, 6, 9, 121, 195, 241, 0, 63, 202, 195, 12, 64, 14, 247, 145, 188, 245, 6, 9, 121, 207, 74, 66, 63, 156, 194, 17, 64, 7, 183, 181, 60, 88, 119, 88, 247, 39, 18, 0, 63, 101, 143, 16, 64, 7, 183, 181, 60, 88, 119, 88, 247, 207, 74, 66, 63, 156, 194, 17, 64, 14, 247, 145, 188, 88, 119, 88, 247, 39, 18, 0, 63, 101, 143, 16, 64, 14, 247, 145, 188, 88, 119, 88, 247, 23, 158, 67, 63, 26, 249, 13, 64, 7, 183, 181, 60, 180, 245, 74, 138, 207, 74, 66, 63, 156, 194, 17, 64, 7, 183, 181, 60, 180, 245, 74, 138, 23, 158, 67, 63, 26, 249, 13, 64, 14, 247, 145, 188, 180, 245, 74, 138, 207, 74, 66, 63, 156, 194, 17, 64, 14, 247, 145, 188, 180, 245, 74, 138, 157, 45, 84, 63, 197, 89, 14, 64, 7, 183, 181, 60, 77, 117, 77, 245, 23, 158, 67, 63, 26, 249, 13, 64, 7, 183, 181, 60, 77, 117, 77, 245, 157, 45, 84, 63, 197, 89, 14, 64, 14, 247, 145, 188, 77, 117, 77, 245, 23, 158, 67, 63, 26, 249, 13, 64, 14, 247, 145, 188, 77, 117, 77, 245, 225, 179, 85, 63, 50, 86, 10, 64, 7, 183, 181, 60, 230, 244, 24, 139, 157, 45, 84, 63, 197, 89, 14, 64, 7, 183, 181, 60, 230, 244, 24, 139, 225, 179, 85, 63, 50, 86, 10, 64, 14, 247, 145, 188, 230, 244, 24, 139, 157, 45, 84, 63, 197, 89, 14, 64, 14, 247, 145, 188, 230, 244, 24, 139, 38, 170, 51, 63, 250, 151, 9, 64, 7, 183, 181, 60, 71, 138, 71, 10, 225, 179, 85, 63, 50, 86, 10, 64, 7, 183, 181, 60, 71, 138, 71, 10, 38, 170, 51, 63, 250, 151, 9, 64, 14, 247, 145, 188, 71, 138, 71, 10, 225, 179, 85, 63, 50, 86, 10, 64, 14, 247, 145, 188, 71, 138, 71, 10, 172, 113, 50, 63, 236, 107, 13, 64, 7, 183, 181, 60, 116, 9, 139, 118, 38, 170, 51, 63, 250, 151, 9, 64, 7, 183, 181, 60, 116, 9, 139, 118, 172, 113, 50, 63, 236, 107, 13, 64, 14, 247, 145, 188, 116, 9, 139, 118, 38, 170, 51, 63, 250, 151, 9, 64, 14, 247, 145, 188, 116, 9, 139, 118, 43, 108, 18, 63, 69, 215, 12, 64, 7, 183, 181, 60, 166, 136, 166, 8, 172, 113, 50, 63, 236, 107, 13, 64, 7, 183, 181, 60, 166, 136, 166, 8, 43, 108, 18, 63, 69, 215, 12, 64, 14, 247, 145, 188, 166, 136, 166, 8, 172, 113, 50, 63, 236, 107, 13, 64, 14, 247, 145, 188, 166, 136, 166, 8, 150, 93, 20, 63, 56, 104, 5, 64, 7, 183, 181, 60, 37, 248, 217, 135, 43, 108, 18, 63, 69, 215, 12, 64, 7, 183, 181, 60, 37, 248, 217, 135, 150, 93, 20, 63, 56, 104, 5, 64, 14, 247, 145, 188, 37, 248, 217, 135, 43, 108, 18, 63, 69, 215, 12, 64, 14, 247, 145, 188, 37, 248, 217, 135, 65, 17, 87, 63, 68, 190, 6, 64, 7, 183, 181, 60, 127, 118, 127, 246, 150, 93, 20, 63, 56, 104, 5, 64, 7, 183, 181, 60, 127, 118, 127, 246, 65, 17, 87, 63, 68, 190, 6, 64, 14, 247, 145, 188, 127, 118, 127, 246, 150, 93, 20, 63, 56, 104, 5, 64, 14, 247, 145, 188, 127, 118, 127, 246, 44, 129, 88, 63, 111, 245, 2, 64, 7, 183, 181, 60, 230, 244, 24, 139, 65, 17, 87, 63, 68, 190, 6, 64, 7, 183, 181, 60, 230, 244, 24, 139, 44, 129, 88, 63, 111, 245, 2, 64, 14, 247, 145, 188, 230, 244, 24, 139, 65, 17, 87, 63, 68, 190, 6, 64, 14, 247, 145, 188, 230, 244, 24, 139, 222, 56, 105, 63, 250, 94, 3, 64, 7, 183, 181, 60, 128, 116, 128, 244, 44, 129, 88, 63, 111, 245, 2, 64, 7, 183, 181, 60, 128, 116, 128, 244, 222, 56, 105, 63, 250, 94, 3, 64, 14, 247, 145, 188, 128, 116, 128, 244, 44, 129, 88, 63, 111, 245, 2, 64, 14, 247, 145, 188, 128, 116, 128, 244, 165, 105, 108, 63, 254, 39, 247, 63, 7, 183, 181, 60, 29, 244, 225, 139, 222, 56, 105, 63, 250, 94, 3, 64, 7, 183, 181, 60, 29, 244, 225, 139, 165, 105, 108, 63, 254, 39, 247, 63, 14, 247, 145, 188, 29, 244, 225, 139, 222, 56, 105, 63, 250, 94, 3, 64, 14, 247, 145, 188, 29, 244, 225, 139, 92, 119, 91, 63, 5, 82, 246, 63, 7, 183, 181, 60, 126, 139, 126, 11, 165, 105, 108, 63, 254, 39, 247, 63, 7, 183, 181, 60, 126, 139, 126, 11, 92, 119, 91, 63, 5, 82, 246, 63, 14, 247, 145, 188, 126, 139, 126, 11, 165, 105, 108, 63, 254, 39, 247, 63, 14, 247, 145, 188, 126, 139, 126, 11, 88, 231, 92, 63, 72, 192, 238, 63, 7, 183, 181, 60, 230, 244, 24, 139, 92, 119, 91, 63, 5, 82, 246, 63, 7, 183, 181, 60, 230, 244, 24, 139, 88, 231, 92, 63, 72, 192, 238, 63, 14, 247, 145, 188, 230, 244, 24, 139, 92, 119, 91, 63, 5, 82, 246, 63, 14, 247, 145, 188, 230, 244, 24, 139, 54, 63, 6, 63, 247, 114, 235, 63, 7, 183, 181, 60, 16, 137, 16, 9, 88, 231, 92, 63, 72, 192, 238, 63, 7, 183, 181, 60, 16, 137, 16, 9, 54, 63, 6, 63, 247, 114, 235, 63, 14, 247, 145, 188, 16, 137, 16, 9, 88, 231, 92, 63, 72, 192, 238, 63, 14, 247, 145, 188, 16, 137, 16, 9, 154, 95, 5, 63, 36, 10, 243, 63, 7, 183, 181, 60, 245, 6, 9, 121, 54, 63, 6, 63, 247, 114, 235, 63, 7, 183, 181, 60, 245, 6, 9, 121, 154, 95, 5, 63, 36, 10, 243, 63, 14, 247, 145, 188, 245, 6, 9, 121, 54, 63, 6, 63, 247, 114, 235, 63, 14, 247, 145, 188, 245, 6, 9, 121, 111, 45, 127, 63, 128, 129, 240, 63, 7, 183, 181, 60, 116, 141, 117, 13, 167, 32, 145, 63, 8, 145, 242, 63, 7, 183, 181, 60, 116, 141, 117, 13, 111, 45, 127, 63, 128, 129, 240, 63, 14, 247, 145, 188, 116, 141, 117, 13, 167, 32, 145, 63, 8, 145, 242, 63, 14, 247, 145, 188, 116, 141, 117, 13, 38, 112, 115, 63, 228, 248, 18, 64, 7, 183, 181, 60, 171, 12, 84, 115, 111, 45, 127, 63, 128, 129, 240, 63, 7, 183, 181, 60, 171, 12, 84, 115, 38, 112, 115, 63, 228, 248, 18, 64, 14, 247, 145, 188, 171, 12, 84, 115, 111, 45, 127, 63, 128, 129, 240, 63, 14, 247, 145, 188, 171, 12, 84, 115, 113, 115, 138, 63, 136, 244, 19, 64, 7, 183, 181, 60, 138, 114, 137, 242, 38, 112, 115, 63, 228, 248, 18, 64, 7, 183, 181, 60, 138, 114, 137, 242, 113, 115, 138, 63, 136, 244, 19, 64, 14, 247, 145, 188, 138, 114, 137, 242, 38, 112, 115, 63, 228, 248, 18, 64, 14, 247, 145, 188, 138, 114, 137, 242, 22, 75, 141, 63, 187, 153, 8, 64, 7, 183, 181, 60, 193, 241, 60, 142, 113, 115, 138, 63, 136, 244, 19, 64, 7, 183, 181, 60, 193, 241, 60, 142, 22, 75, 141, 63, 187, 153, 8, 64, 14, 247, 145, 188, 193, 241, 60, 142, 113, 115, 138, 63, 136, 244, 19, 64, 14, 247, 145, 188, 193, 241, 60, 142, 109, 173, 165, 63, 183, 66, 10, 64, 7, 183, 181, 60, 169, 112, 168, 240, 22, 75, 141, 63, 187, 153, 8, 64, 7, 183, 181, 60, 169, 112, 168, 240, 109, 173, 165, 63, 183, 66, 10, 64, 14, 247, 145, 188, 169, 112, 168, 240, 22, 75, 141, 63, 187, 153, 8, 64, 14, 247, 145, 188, 169, 112, 168, 240, 54, 88, 162, 63, 247, 148, 21, 64, 7, 183, 181, 60, 107, 16, 147, 111, 109, 173, 165, 63, 183, 66, 10, 64, 7, 183, 181, 60, 107, 16, 147, 111, 54, 88, 162, 63, 247, 148, 21, 64, 14, 247, 145, 188, 107, 16, 147, 111, 109, 173, 165, 63, 183, 66, 10, 64, 14, 247, 145, 188, 107, 16, 147, 111, 55, 254, 178, 63, 26, 223, 22, 64, 7, 183, 181, 60, 211, 110, 211, 238, 54, 88, 162, 63, 247, 148, 21, 64, 7, 183, 181, 60, 211, 110, 211, 238, 55, 254, 178, 63, 26, 223, 22, 64, 14, 247, 145, 188, 211, 110, 211, 238, 54, 88, 162, 63, 247, 148, 21, 64, 14, 247, 145, 188, 211, 110, 211, 238, 237, 159, 187, 63, 50, 174, 248, 63, 7, 183, 181, 60, 21, 238, 233, 145, 55, 254, 178, 63, 26, 223, 22, 64, 7, 183, 181, 60, 21, 238, 233, 145, 237, 159, 187, 63, 50, 174, 248, 63, 14, 247, 145, 188, 21, 238, 233, 145, 55, 254, 178, 63, 26, 223, 22, 64, 14, 247, 145, 188, 21, 238, 233, 145, 103, 44, 170, 63, 18, 250, 245, 63, 7, 183, 181, 60, 43, 145, 43, 17, 237, 159, 187, 63, 50, 174, 248, 63, 7, 183, 181, 60, 43, 145, 43, 17, 103, 44, 170, 63, 18, 250, 245, 63, 14, 247, 145, 188, 43, 145, 43, 17, 237, 159, 187, 63, 50, 174, 248, 63, 14, 247, 145, 188, 43, 145, 43, 17, 48, 215, 166, 63, 68, 79, 6, 64, 7, 183, 181, 60, 107, 16, 147, 111, 103, 44, 170, 63, 18, 250, 245, 63, 7, 183, 181, 60, 107, 16, 147, 111, 48, 215, 166, 63, 68, 79, 6, 64, 14, 247, 145, 188, 107, 16, 147, 111, 103, 44, 170, 63, 18, 250, 245, 63, 14, 247, 145, 188, 107, 16, 147, 111, 10, 73, 142, 63, 72, 163, 4, 64, 7, 183, 181, 60, 85, 143, 86, 15, 48, 215, 166, 63, 68, 79, 6, 64, 7, 183, 181, 60, 85, 143, 86, 15, 10, 73, 142, 63, 72, 163, 4, 64, 14, 247, 145, 188, 85, 143, 86, 15, 48, 215, 166, 63, 68, 79, 6, 64, 14, 247, 145, 188, 85, 143, 86, 15, 167, 32, 145, 63, 8, 145, 242, 63, 7, 183, 181, 60, 193, 241, 60, 142, 10, 73, 142, 63, 72, 163, 4, 64, 7, 183, 181, 60, 193, 241, 60, 142, 167, 32, 145, 63, 8, 145, 242, 63, 14, 247, 145, 188, 193, 241, 60, 142, 10, 73, 142, 63, 72, 163, 4, 64, 14, 247, 145, 188, 193, 241, 60, 142) +}] + +[sub_resource type="ConcavePolygonShape3D" id="3"] +data = PackedVector3Array(-3.1, -1, 2, -3.1, -1.2, 2, -3.1, -1, -2, -3.1, -1, -2, -3.1, -1.2, 2, -3.1, -1.2, -2, -3.1, -1, -2, -3.1, -1.2, -2, 3.1, -1, -2, 3.1, -1, -2, -3.1, -1.2, -2, 3.1, -1.2, -2, 3.1, -1, -2, 3.1, -1.2, -2, 3.1, -1, 2, 3.1, -1, 2, 3.1, -1.2, -2, 3.1, -1.2, 2, 3.1, -1, 2, 3.1, -1.2, 2, -3.1, -1, 2, -3.1, -1, 2, 3.1, -1.2, 2, -3.1, -1.2, 2, 3.1, -1.2, -2, -3.1, -1.2, -2, 3.1, -1.2, 2, 3.1, -1.2, 2, -3.1, -1.2, -2, -3.1, -1.2, 2, -3.1, -1, -2, 3.1, -1, -2, -3.1, -1, 2, -3.1, -1, 2, 3.1, -1, -2, 3.1, -1, 2, 2.9, 3.0746, 0.1, 2.9, -1, 0.1, 2.9, 3.0746, -0.1, 2.9, 3.0746, -0.1, 2.9, -1, 0.1, 2.9, -1, -0.1, 2.9, 3.0746, -0.1, 2.9, -1, -0.1, 3.1, 3.0746, -0.1, 3.1, 3.0746, -0.1, 2.9, -1, -0.1, 3.1, -1, -0.1, 3.1, 3.0746, -0.1, 3.1, -1, -0.1, 3.1, 3.0746, 0.1, 3.1, 3.0746, 0.1, 3.1, -1, -0.1, 3.1, -1, 0.1, 3.1, 3.0746, 0.1, 3.1, -1, 0.1, 2.9, 3.0746, 0.1, 2.9, 3.0746, 0.1, 3.1, -1, 0.1, 2.9, -1, 0.1, 3.1, -1, -0.1, 2.9, -1, -0.1, 3.1, -1, 0.1, 3.1, -1, 0.1, 2.9, -1, -0.1, 2.9, -1, 0.1, 2.9, 3.0746, -0.1, 3.1, 3.0746, -0.1, 2.9, 3.0746, 0.1, 2.9, 3.0746, 0.1, 3.1, 3.0746, -0.1, 3.1, 3.0746, 0.1, -3.1, 3.0746, 0.1, -3.1, -1, 0.1, -3.1, 3.0746, -0.1, -3.1, 3.0746, -0.1, -3.1, -1, 0.1, -3.1, -1, -0.1, -3.1, 3.0746, -0.1, -3.1, -1, -0.1, -2.9, 3.0746, -0.1, -2.9, 3.0746, -0.1, -3.1, -1, -0.1, -2.9, -1, -0.1, -2.9, 3.0746, -0.1, -2.9, -1, -0.1, -2.9, 3.0746, 0.1, -2.9, 3.0746, 0.1, -2.9, -1, -0.1, -2.9, -1, 0.1, -2.9, 3.0746, 0.1, -2.9, -1, 0.1, -3.1, 3.0746, 0.1, -3.1, 3.0746, 0.1, -2.9, -1, 0.1, -3.1, -1, 0.1, -2.9, -1, -0.1, -3.1, -1, -0.1, -2.9, -1, 0.1, -2.9, -1, 0.1, -3.1, -1, -0.1, -3.1, -1, 0.1, -3.1, 3.0746, -0.1, -2.9, 3.0746, -0.1, -3.1, 3.0746, 0.1, -3.1, 3.0746, 0.1, -2.9, 3.0746, -0.1, -2.9, 3.0746, 0.1, -0.4787, 2.5381, 0, -0.981, 2.5765, 0, -0.4787, 1.5381, 0, -0.4787, 1.5381, 0, -0.981, 2.5765, 0, -0.981, 1.5765, 0, 3, 3, 0, 2.5076, 2.8573, 0, 3, 2, 0, 3, 2, 0, 2.5076, 2.8573, 0, 2.5076, 1.8573, 0, -1.9887, 2.7338, 0, -2.4939, 2.8532, 0, -1.9887, 1.7338, 0, -1.9887, 1.7338, 0, -2.4939, 2.8532, 0, -2.4939, 1.8532, 0, 1.5179, 2.6477, 0, 1.0208, 2.5812, 0, 1.5179, 1.6477, 0, 1.5179, 1.6477, 0, 1.0208, 2.5812, 0, 1.0208, 1.5812, 0, 0.0224, 2.5262, 0, -0.4787, 2.5381, 0, 0.0224, 1.5262, 0, 0.0224, 1.5262, 0, -0.4787, 2.5381, 0, -0.4787, 1.5381, 0, -1.4844, 2.6417, 0, -1.9887, 2.7338, 0, -1.4844, 1.6417, 0, -1.4844, 1.6417, 0, -1.9887, 2.7338, 0, -1.9887, 1.7338, 0, 2.0136, 2.7398, 0, 1.5179, 2.6477, 0, 2.0136, 1.7398, 0, 2.0136, 1.7398, 0, 1.5179, 2.6477, 0, 1.5179, 1.6477, 0, 0.5223, 2.5407, 0, 0.0224, 2.5262, 0, 0.5223, 1.5407, 0, 0.5223, 1.5407, 0, 0.0224, 2.5262, 0, 0.0224, 1.5262, 0, -0.981, 2.5765, 0, -1.4844, 2.6417, 0, -0.981, 1.5765, 0, -0.981, 1.5765, 0, -1.4844, 2.6417, 0, -1.4844, 1.6417, 0, 2.5076, 2.8573, 0, 2.0136, 2.7398, 0, 2.5076, 1.8573, 0, 2.5076, 1.8573, 0, 2.0136, 2.7398, 0, 2.0136, 1.7398, 0, -2.4939, 2.8532, 0, -3, 3, 0, -2.4939, 1.8532, 0, -2.4939, 1.8532, 0, -3, 3, 0, -3, 2, 0, 1.0208, 2.5812, 0, 0.5223, 2.5407, 0, 1.0208, 1.5812, 0, 1.0208, 1.5812, 0, 0.5223, 2.5407, 0, 0.5223, 1.5407, 0, 1.0816, 2.3118, 0.0222, 0.9968, 1.879, 0.0222, 0.9509, 2.2964, 0.0222, 1.1039, 2.1344, 0.0222, 0.9968, 1.879, 0.0222, 1.0816, 2.3118, 0.0222, 1.3984, 2.3574, 0.0222, 1.2944, 2.1603, 0.0222, 1.2683, 2.3372, 0.0222, 1.4658, 1.9428, 0.0222, 1.2944, 2.1603, 0.0222, 1.3984, 2.3574, 0.0222, 1.1116, 2.0725, 0.0222, 0.9968, 1.879, 0.0222, 1.1039, 2.1344, 0.0222, 1.2944, 2.1603, 0.0222, 1.1116, 2.0725, 0.0222, 1.1039, 2.1344, 0.0222, 1.3034, 2.0986, 0.0222, 1.1116, 2.0725, 0.0222, 1.2944, 2.1603, 0.0222, 1.4658, 1.9428, 0.0222, 1.3034, 2.0986, 0.0222, 1.2944, 2.1603, 0.0222, 1.1338, 1.8951, 0.0222, 0.9968, 1.879, 0.0222, 1.1116, 2.0725, 0.0222, 1.4658, 1.9428, 0.0222, 1.3295, 1.9217, 0.0222, 1.3034, 2.0986, 0.0222, 0.759, 2.2775, 0.0222, 0.5037, 2.1995, 0.0222, 0.5003, 2.2588, 0.0222, 0.7641, 2.2183, 0.0222, 0.5037, 2.1995, 0.0222, 0.759, 2.2775, 0.0222, 0.5037, 2.1995, 0.0222, 0.4456, 2.0737, 0.0222, 0.4395, 2.196, 0.0222, 0.572, 2.2006, 0.0222, 0.4456, 2.0737, 0.0222, 0.5037, 2.1995, 0.0222, 0.7641, 2.2183, 0.0222, 0.572, 2.2006, 0.0222, 0.5037, 2.1995, 0.0222, 0.8288, 2.2242, 0.0222, 0.572, 2.2006, 0.0222, 0.7641, 2.2183, 0.0222, 0.697, 2.2097, 0.0222, 0.572, 2.2006, 0.0222, 0.8288, 2.2242, 0.0222, 0.8348, 2.1615, 0.0222, 0.697, 2.2097, 0.0222, 0.8288, 2.2242, 0.0222, 0.5796, 2.0845, 0.0222, 0.4456, 2.0737, 0.0222, 0.572, 2.2006, 0.0222, 0.8348, 2.1615, 0.0222, 0.7018, 2.1499, 0.0222, 0.697, 2.2097, 0.0222, 0.8401, 2.1054, 0.0222, 0.4456, 2.0737, 0.0222, 0.5796, 2.0845, 0.0222, 0.5107, 2.0773, 0.0222, 0.4456, 2.0737, 0.0222, 0.8401, 2.1054, 0.0222, 0.8457, 2.0462, 0.0222, 0.5107, 2.0773, 0.0222, 0.8401, 2.1054, 0.0222, 0.8457, 2.0462, 0.0222, 0.5141, 2.018, 0.0222, 0.5107, 2.0773, 0.0222, 0.911, 2.0527, 0.0222, 0.5141, 2.018, 0.0222, 0.8457, 2.0462, 0.0222, 0.7767, 2.0369, 0.0222, 0.5141, 2.018, 0.0222, 0.911, 2.0527, 0.0222, 0.9235, 1.9309, 0.0222, 0.7767, 2.0369, 0.0222, 0.911, 2.0527, 0.0222, 0.9235, 1.9309, 0.0222, 0.7868, 1.921, 0.0222, 0.7767, 2.0369, 0.0222, 0.5873, 1.9659, 0.0222, 0.4546, 1.8952, 0.0222, 0.4514, 1.9581, 0.0222, 0.5912, 1.9061, 0.0222, 0.4546, 1.8952, 0.0222, 0.5873, 1.9659, 0.0222, 0.7868, 1.921, 0.0222, 0.4546, 1.8952, 0.0222, 0.5912, 1.9061, 0.0222, 0.9235, 1.9309, 0.0222, 0.4546, 1.8952, 0.0222, 0.7868, 1.921, 0.0222, 0.9235, 1.9309, 0.0222, 0.521, 1.8987, 0.0222, 0.4546, 1.8952, 0.0222, 0.8573, 1.9244, 0.0222, 0.5244, 1.8394, 0.0222, 0.521, 1.8987, 0.0222, 0.9235, 1.9309, 0.0222, 0.8573, 1.9244, 0.0222, 0.521, 1.8987, 0.0222, 0.8629, 1.8652, 0.0222, 0.5244, 1.8394, 0.0222, 0.8573, 1.9244, 0.0222, 0.372, 2.2523, 0.0222, -0.0151, 2.182, 0.0222, -0.015, 2.2444, 0.0222, 0.3747, 2.19, 0.0222, -0.0151, 2.182, 0.0222, 0.372, 2.2523, 0.0222, 0.3747, 2.19, 0.0222, 0.1136, 2.1827, 0.0222, -0.0151, 2.182, 0.0222, 0.2461, 2.1854, 0.0222, 0.1174, 1.8875, 0.0222, 0.1136, 2.1827, 0.0222, 0.3747, 2.19, 0.0222, 0.2461, 2.1854, 0.0222, 0.1136, 2.1827, 0.0222, 0.2544, 1.8903, 0.0222, 0.1174, 1.8875, 0.0222, 0.2461, 2.1854, 0.0222, 0.1174, 1.8875, 0.0222, -0.0157, 1.8244, 0.0222, -0.0156, 1.8868, 0.0222, 0.2544, 1.8903, 0.0222, -0.0157, 1.8244, 0.0222, 0.1174, 1.8875, 0.0222, 0.3873, 1.895, 0.0222, -0.0157, 1.8244, 0.0222, 0.2544, 1.8903, 0.0222, 0.39, 1.8327, 0.0222, -0.0157, 1.8244, 0.0222, 0.3873, 1.895, 0.0222, -0.3993, 2.2535, 0.0222, -0.5564, 1.8413, 0.0222, -0.5308, 2.2606, 0.0222, -0.4021, 2.1942, 0.0222, -0.5564, 1.8413, 0.0222, -0.3993, 2.2535, 0.0222, -0.0795, 2.2447, 0.0222, -0.2154, 2.0682, 0.0222, -0.2111, 2.2469, 0.0222, -0.0833, 1.8248, 0.0222, -0.2154, 2.0682, 0.0222, -0.0795, 2.2447, 0.0222, -0.3378, 2.1915, 0.0222, -0.5564, 1.8413, 0.0222, -0.4021, 2.1942, 0.0222, -0.3401, 2.1315, 0.0222, -0.5564, 1.8413, 0.0222, -0.3378, 2.1915, 0.0222, -0.4104, 2.0126, 0.0222, -0.5564, 1.8413, 0.0222, -0.3401, 2.1315, 0.0222, -0.2754, 2.1293, 0.0222, -0.4104, 2.0126, 0.0222, -0.3401, 2.1315, 0.0222, -0.2773, 2.0699, 0.0222, -0.4104, 2.0126, 0.0222, -0.2754, 2.1293, 0.0222, -0.2154, 2.0682, 0.0222, -0.4104, 2.0126, 0.0222, -0.2773, 2.0699, 0.0222, -0.3481, 2.0099, 0.0222, -0.4104, 2.0126, 0.0222, -0.2154, 2.0682, 0.0222, -0.0833, 1.8248, 0.0222, -0.3481, 2.0099, 0.0222, -0.2154, 2.0682, 0.0222, -0.4186, 1.834, 0.0222, -0.5564, 1.8413, 0.0222, -0.4104, 2.0126, 0.0222, -0.2844, 1.9483, 0.0222, -0.3504, 1.9506, 0.0222, -0.3481, 2.0099, 0.0222, -0.0833, 1.8248, 0.0222, -0.2844, 1.9483, 0.0222, -0.3481, 2.0099, 0.0222, -0.2198, 1.8864, 0.0222, -0.2863, 1.8883, 0.0222, -0.2844, 1.9483, 0.0222, -0.0833, 1.8248, 0.0222, -0.2198, 1.8864, 0.0222, -0.2844, 1.9483, 0.0222, -0.0833, 1.8248, 0.0222, -0.2212, 1.8271, 0.0222, -0.2198, 1.8864, 0.0222, -0.5952, 2.2647, 0.0222, -0.9877, 2.2378, 0.0222, -0.9807, 2.2998, 0.0222, -0.5994, 2.2025, 0.0222, -0.9877, 2.2378, 0.0222, -0.5952, 2.2647, 0.0222, -0.5994, 2.2025, 0.0222, -0.8597, 2.2242, 0.0222, -0.9877, 2.2378, 0.0222, -0.7277, 2.2122, 0.0222, -0.8887, 1.9304, 0.0222, -0.8597, 2.2242, 0.0222, -0.5994, 2.2025, 0.0222, -0.7277, 2.2122, 0.0222, -0.8597, 2.2242, 0.0222, -0.7522, 1.918, 0.0222, -0.8887, 1.9304, 0.0222, -0.7277, 2.2122, 0.0222, -0.8887, 1.9304, 0.0222, -1.0279, 1.8824, 0.0222, -1.0209, 1.9444, 0.0222, -0.7522, 1.918, 0.0222, -1.0279, 1.8824, 0.0222, -0.8887, 1.9304, 0.0222, -0.6196, 1.908, 0.0222, -1.0279, 1.8824, 0.0222, -0.7522, 1.918, 0.0222, -0.6239, 1.8457, 0.0222, -1.0279, 1.8824, 0.0222, -0.6196, 1.908, 0.0222, -1.3714, 2.2898, 0.0222, -1.5634, 1.9592, 0.0222, -1.4915, 2.373, 0.0222, -1.0447, 2.3073, 0.0222, -1.3714, 2.2898, 0.0222, -1.4915, 2.373, 0.0222, -1.0522, 2.2453, 0.0222, -1.3714, 2.2898, 0.0222, -1.0447, 2.3073, 0.0222, -1.3896, 2.1749, 0.0222, -1.5634, 1.9592, 0.0222, -1.3714, 2.2898, 0.0222, -1.3994, 2.1132, 0.0222, -1.5634, 1.9592, 0.0222, -1.3896, 2.1749, 0.0222, -1.1309, 2.1378, 0.0222, -1.3994, 2.1132, 0.0222, -1.3896, 2.1749, 0.0222, -1.1388, 2.0759, 0.0222, -1.3994, 2.1132, 0.0222, -1.1309, 2.1378, 0.0222, -1.4273, 1.9366, 0.0222, -1.5634, 1.9592, 0.0222, -1.3994, 2.1132, 0.0222, 0.9968, 1.879, -0.0178, 1.0816, 2.3118, -0.0178, 0.9509, 2.2964, -0.0178, 0.9968, 1.879, -0.0178, 1.1039, 2.1344, -0.0178, 1.0816, 2.3118, -0.0178, 1.2944, 2.1603, -0.0178, 1.3984, 2.3574, -0.0178, 1.2683, 2.3372, -0.0178, 1.2944, 2.1603, -0.0178, 1.4658, 1.9428, -0.0178, 1.3984, 2.3574, -0.0178, 0.9968, 1.879, -0.0178, 1.1116, 2.0725, -0.0178, 1.1039, 2.1344, -0.0178, 1.1116, 2.0725, -0.0178, 1.2944, 2.1603, -0.0178, 1.1039, 2.1344, -0.0178, 1.1116, 2.0725, -0.0178, 1.3034, 2.0986, -0.0178, 1.2944, 2.1603, -0.0178, 1.3034, 2.0986, -0.0178, 1.4658, 1.9428, -0.0178, 1.2944, 2.1603, -0.0178, 0.9968, 1.879, -0.0178, 1.1338, 1.8951, -0.0178, 1.1116, 2.0725, -0.0178, 1.3295, 1.9217, -0.0178, 1.4658, 1.9428, -0.0178, 1.3034, 2.0986, -0.0178, 0.5037, 2.1995, -0.0178, 0.759, 2.2775, -0.0178, 0.5003, 2.2588, -0.0178, 0.5037, 2.1995, -0.0178, 0.7641, 2.2183, -0.0178, 0.759, 2.2775, -0.0178, 0.4456, 2.0737, -0.0178, 0.5037, 2.1995, -0.0178, 0.4395, 2.196, -0.0178, 0.4456, 2.0737, -0.0178, 0.572, 2.2006, -0.0178, 0.5037, 2.1995, -0.0178, 0.572, 2.2006, -0.0178, 0.7641, 2.2183, -0.0178, 0.5037, 2.1995, -0.0178, 0.572, 2.2006, -0.0178, 0.8288, 2.2242, -0.0178, 0.7641, 2.2183, -0.0178, 0.572, 2.2006, -0.0178, 0.697, 2.2097, -0.0178, 0.8288, 2.2242, -0.0178, 0.697, 2.2097, -0.0178, 0.8348, 2.1615, -0.0178, 0.8288, 2.2242, -0.0178, 0.4456, 2.0737, -0.0178, 0.5796, 2.0845, -0.0178, 0.572, 2.2006, -0.0178, 0.7018, 2.1499, -0.0178, 0.8348, 2.1615, -0.0178, 0.697, 2.2097, -0.0178, 0.4456, 2.0737, -0.0178, 0.8401, 2.1054, -0.0178, 0.5796, 2.0845, -0.0178, 0.4456, 2.0737, -0.0178, 0.5107, 2.0773, -0.0178, 0.8401, 2.1054, -0.0178, 0.5107, 2.0773, -0.0178, 0.8457, 2.0462, -0.0178, 0.8401, 2.1054, -0.0178, 0.5141, 2.018, -0.0178, 0.8457, 2.0462, -0.0178, 0.5107, 2.0773, -0.0178, 0.5141, 2.018, -0.0178, 0.911, 2.0527, -0.0178, 0.8457, 2.0462, -0.0178, 0.5141, 2.018, -0.0178, 0.7767, 2.0369, -0.0178, 0.911, 2.0527, -0.0178, 0.7767, 2.0369, -0.0178, 0.9235, 1.9309, -0.0178, 0.911, 2.0527, -0.0178, 0.7868, 1.921, -0.0178, 0.9235, 1.9309, -0.0178, 0.7767, 2.0369, -0.0178, 0.4546, 1.8952, -0.0178, 0.5873, 1.9659, -0.0178, 0.4514, 1.9581, -0.0178, 0.4546, 1.8952, -0.0178, 0.5912, 1.9061, -0.0178, 0.5873, 1.9659, -0.0178, 0.4546, 1.8952, -0.0178, 0.7868, 1.921, -0.0178, 0.5912, 1.9061, -0.0178, 0.4546, 1.8952, -0.0178, 0.9235, 1.9309, -0.0178, 0.7868, 1.921, -0.0178, 0.521, 1.8987, -0.0178, 0.9235, 1.9309, -0.0178, 0.4546, 1.8952, -0.0178, 0.5244, 1.8394, -0.0178, 0.8573, 1.9244, -0.0178, 0.521, 1.8987, -0.0178, 0.8573, 1.9244, -0.0178, 0.9235, 1.9309, -0.0178, 0.521, 1.8987, -0.0178, 0.5244, 1.8394, -0.0178, 0.8629, 1.8652, -0.0178, 0.8573, 1.9244, -0.0178, -0.0151, 2.182, -0.0178, 0.372, 2.2523, -0.0178, -0.015, 2.2444, -0.0178, -0.0151, 2.182, -0.0178, 0.3747, 2.19, -0.0178, 0.372, 2.2523, -0.0178, 0.1136, 2.1827, -0.0178, 0.3747, 2.19, -0.0178, -0.0151, 2.182, -0.0178, 0.1174, 1.8875, -0.0178, 0.2461, 2.1854, -0.0178, 0.1136, 2.1827, -0.0178, 0.2461, 2.1854, -0.0178, 0.3747, 2.19, -0.0178, 0.1136, 2.1827, -0.0178, 0.1174, 1.8875, -0.0178, 0.2544, 1.8903, -0.0178, 0.2461, 2.1854, -0.0178, -0.0157, 1.8244, -0.0178, 0.1174, 1.8875, -0.0178, -0.0156, 1.8868, -0.0178, -0.0157, 1.8244, -0.0178, 0.2544, 1.8903, -0.0178, 0.1174, 1.8875, -0.0178, -0.0157, 1.8244, -0.0178, 0.3873, 1.895, -0.0178, 0.2544, 1.8903, -0.0178, -0.0157, 1.8244, -0.0178, 0.39, 1.8327, -0.0178, 0.3873, 1.895, -0.0178, -0.5564, 1.8413, -0.0178, -0.3993, 2.2535, -0.0178, -0.5308, 2.2606, -0.0178, -0.5564, 1.8413, -0.0178, -0.4021, 2.1942, -0.0178, -0.3993, 2.2535, -0.0178, -0.2154, 2.0682, -0.0178, -0.0795, 2.2447, -0.0178, -0.2111, 2.2469, -0.0178, -0.2154, 2.0682, -0.0178, -0.0833, 1.8248, -0.0178, -0.0795, 2.2447, -0.0178, -0.5564, 1.8413, -0.0178, -0.3378, 2.1915, -0.0178, -0.4021, 2.1942, -0.0178, -0.5564, 1.8413, -0.0178, -0.3401, 2.1315, -0.0178, -0.3378, 2.1915, -0.0178, -0.5564, 1.8413, -0.0178, -0.4104, 2.0126, -0.0178, -0.3401, 2.1315, -0.0178, -0.4104, 2.0126, -0.0178, -0.2754, 2.1293, -0.0178, -0.3401, 2.1315, -0.0178, -0.4104, 2.0126, -0.0178, -0.2773, 2.0699, -0.0178, -0.2754, 2.1293, -0.0178, -0.4104, 2.0126, -0.0178, -0.2154, 2.0682, -0.0178, -0.2773, 2.0699, -0.0178, -0.4104, 2.0126, -0.0178, -0.3481, 2.0099, -0.0178, -0.2154, 2.0682, -0.0178, -0.3481, 2.0099, -0.0178, -0.0833, 1.8248, -0.0178, -0.2154, 2.0682, -0.0178, -0.5564, 1.8413, -0.0178, -0.4186, 1.834, -0.0178, -0.4104, 2.0126, -0.0178, -0.3504, 1.9506, -0.0178, -0.2844, 1.9483, -0.0178, -0.3481, 2.0099, -0.0178, -0.2844, 1.9483, -0.0178, -0.0833, 1.8248, -0.0178, -0.3481, 2.0099, -0.0178, -0.2863, 1.8883, -0.0178, -0.2198, 1.8864, -0.0178, -0.2844, 1.9483, -0.0178, -0.2198, 1.8864, -0.0178, -0.0833, 1.8248, -0.0178, -0.2844, 1.9483, -0.0178, -0.2212, 1.8271, -0.0178, -0.0833, 1.8248, -0.0178, -0.2198, 1.8864, -0.0178, -0.9877, 2.2378, -0.0178, -0.5952, 2.2647, -0.0178, -0.9807, 2.2998, -0.0178, -0.9877, 2.2378, -0.0178, -0.5994, 2.2025, -0.0178, -0.5952, 2.2647, -0.0178, -0.8597, 2.2242, -0.0178, -0.5994, 2.2025, -0.0178, -0.9877, 2.2378, -0.0178, -0.8887, 1.9304, -0.0178, -0.7277, 2.2122, -0.0178, -0.8597, 2.2242, -0.0178, -0.7277, 2.2122, -0.0178, -0.5994, 2.2025, -0.0178, -0.8597, 2.2242, -0.0178, -0.8887, 1.9304, -0.0178, -0.7522, 1.918, -0.0178, -0.7277, 2.2122, -0.0178, -1.0279, 1.8824, -0.0178, -0.8887, 1.9304, -0.0178, -1.0209, 1.9444, -0.0178, -1.0279, 1.8824, -0.0178, -0.7522, 1.918, -0.0178, -0.8887, 1.9304, -0.0178, -1.0279, 1.8824, -0.0178, -0.6196, 1.908, -0.0178, -0.7522, 1.918, -0.0178, -1.0279, 1.8824, -0.0178, -0.6239, 1.8457, -0.0178, -0.6196, 1.908, -0.0178, -1.5634, 1.9592, -0.0178, -1.3714, 2.2898, -0.0178, -1.4915, 2.373, -0.0178, -1.3714, 2.2898, -0.0178, -1.0447, 2.3073, -0.0178, -1.4915, 2.373, -0.0178, -1.3714, 2.2898, -0.0178, -1.0522, 2.2453, -0.0178, -1.0447, 2.3073, -0.0178, -1.5634, 1.9592, -0.0178, -1.3896, 2.1749, -0.0178, -1.3714, 2.2898, -0.0178, -1.5634, 1.9592, -0.0178, -1.3994, 2.1132, -0.0178, -1.3896, 2.1749, -0.0178, -1.3994, 2.1132, -0.0178, -1.1309, 2.1378, -0.0178, -1.3896, 2.1749, -0.0178, -1.3994, 2.1132, -0.0178, -1.1388, 2.0759, -0.0178, -1.1309, 2.1378, -0.0178, -1.5634, 1.9592, -0.0178, -1.4273, 1.9366, -0.0178, -1.3994, 2.1132, -0.0178, -1.5634, 1.9592, 0.0222, -1.4273, 1.9366, 0.0222, -1.5634, 1.9592, -0.0178, -1.5634, 1.9592, -0.0178, -1.4273, 1.9366, 0.0222, -1.4273, 1.9366, -0.0178, -1.4915, 2.373, 0.0222, -1.5634, 1.9592, 0.0222, -1.4915, 2.373, -0.0178, -1.4915, 2.373, -0.0178, -1.5634, 1.9592, 0.0222, -1.5634, 1.9592, -0.0178, -1.0447, 2.3073, 0.0222, -1.4915, 2.373, 0.0222, -1.0447, 2.3073, -0.0178, -1.0447, 2.3073, -0.0178, -1.4915, 2.373, 0.0222, -1.4915, 2.373, -0.0178, -1.0522, 2.2453, 0.0222, -1.0447, 2.3073, 0.0222, -1.0522, 2.2453, -0.0178, -1.0522, 2.2453, -0.0178, -1.0447, 2.3073, 0.0222, -1.0447, 2.3073, -0.0178, -1.3714, 2.2898, 0.0222, -1.0522, 2.2453, 0.0222, -1.3714, 2.2898, -0.0178, -1.3714, 2.2898, -0.0178, -1.0522, 2.2453, 0.0222, -1.0522, 2.2453, -0.0178, -1.3896, 2.1749, 0.0222, -1.3714, 2.2898, 0.0222, -1.3896, 2.1749, -0.0178, -1.3896, 2.1749, -0.0178, -1.3714, 2.2898, 0.0222, -1.3714, 2.2898, -0.0178, -1.1309, 2.1378, 0.0222, -1.3896, 2.1749, 0.0222, -1.1309, 2.1378, -0.0178, -1.1309, 2.1378, -0.0178, -1.3896, 2.1749, 0.0222, -1.3896, 2.1749, -0.0178, -1.1388, 2.0759, 0.0222, -1.1309, 2.1378, 0.0222, -1.1388, 2.0759, -0.0178, -1.1388, 2.0759, -0.0178, -1.1309, 2.1378, 0.0222, -1.1309, 2.1378, -0.0178, -1.3994, 2.1132, 0.0222, -1.1388, 2.0759, 0.0222, -1.3994, 2.1132, -0.0178, -1.3994, 2.1132, -0.0178, -1.1388, 2.0759, 0.0222, -1.1388, 2.0759, -0.0178, -1.4273, 1.9366, 0.0222, -1.3994, 2.1132, 0.0222, -1.4273, 1.9366, -0.0178, -1.4273, 1.9366, -0.0178, -1.3994, 2.1132, 0.0222, -1.3994, 2.1132, -0.0178, -1.0279, 1.8824, 0.0222, -0.6239, 1.8457, 0.0222, -1.0279, 1.8824, -0.0178, -1.0279, 1.8824, -0.0178, -0.6239, 1.8457, 0.0222, -0.6239, 1.8457, -0.0178, -1.0209, 1.9444, 0.0222, -1.0279, 1.8824, 0.0222, -1.0209, 1.9444, -0.0178, -1.0209, 1.9444, -0.0178, -1.0279, 1.8824, 0.0222, -1.0279, 1.8824, -0.0178, -0.8887, 1.9304, 0.0222, -1.0209, 1.9444, 0.0222, -0.8887, 1.9304, -0.0178, -0.8887, 1.9304, -0.0178, -1.0209, 1.9444, 0.0222, -1.0209, 1.9444, -0.0178, -0.8597, 2.2242, 0.0222, -0.8887, 1.9304, 0.0222, -0.8597, 2.2242, -0.0178, -0.8597, 2.2242, -0.0178, -0.8887, 1.9304, 0.0222, -0.8887, 1.9304, -0.0178, -0.9877, 2.2378, 0.0222, -0.8597, 2.2242, 0.0222, -0.9877, 2.2378, -0.0178, -0.9877, 2.2378, -0.0178, -0.8597, 2.2242, 0.0222, -0.8597, 2.2242, -0.0178, -0.9807, 2.2998, 0.0222, -0.9877, 2.2378, 0.0222, -0.9807, 2.2998, -0.0178, -0.9807, 2.2998, -0.0178, -0.9877, 2.2378, 0.0222, -0.9877, 2.2378, -0.0178, -0.5952, 2.2647, 0.0222, -0.9807, 2.2998, 0.0222, -0.5952, 2.2647, -0.0178, -0.5952, 2.2647, -0.0178, -0.9807, 2.2998, 0.0222, -0.9807, 2.2998, -0.0178, -0.5994, 2.2025, 0.0222, -0.5952, 2.2647, 0.0222, -0.5994, 2.2025, -0.0178, -0.5994, 2.2025, -0.0178, -0.5952, 2.2647, 0.0222, -0.5952, 2.2647, -0.0178, -0.7277, 2.2122, 0.0222, -0.5994, 2.2025, 0.0222, -0.7277, 2.2122, -0.0178, -0.7277, 2.2122, -0.0178, -0.5994, 2.2025, 0.0222, -0.5994, 2.2025, -0.0178, -0.7522, 1.918, 0.0222, -0.7277, 2.2122, 0.0222, -0.7522, 1.918, -0.0178, -0.7522, 1.918, -0.0178, -0.7277, 2.2122, 0.0222, -0.7277, 2.2122, -0.0178, -0.6196, 1.908, 0.0222, -0.7522, 1.918, 0.0222, -0.6196, 1.908, -0.0178, -0.6196, 1.908, -0.0178, -0.7522, 1.918, 0.0222, -0.7522, 1.918, -0.0178, -0.6239, 1.8457, 0.0222, -0.6196, 1.908, 0.0222, -0.6239, 1.8457, -0.0178, -0.6239, 1.8457, -0.0178, -0.6196, 1.908, 0.0222, -0.6196, 1.908, -0.0178, -0.5564, 1.8413, 0.0222, -0.4186, 1.834, 0.0222, -0.5564, 1.8413, -0.0178, -0.5564, 1.8413, -0.0178, -0.4186, 1.834, 0.0222, -0.4186, 1.834, -0.0178, -0.5308, 2.2606, 0.0222, -0.5564, 1.8413, 0.0222, -0.5308, 2.2606, -0.0178, -0.5308, 2.2606, -0.0178, -0.5564, 1.8413, 0.0222, -0.5564, 1.8413, -0.0178, -0.3993, 2.2535, 0.0222, -0.5308, 2.2606, 0.0222, -0.3993, 2.2535, -0.0178, -0.3993, 2.2535, -0.0178, -0.5308, 2.2606, 0.0222, -0.5308, 2.2606, -0.0178, -0.4021, 2.1942, 0.0222, -0.3993, 2.2535, 0.0222, -0.4021, 2.1942, -0.0178, -0.4021, 2.1942, -0.0178, -0.3993, 2.2535, 0.0222, -0.3993, 2.2535, -0.0178, -0.3378, 2.1915, 0.0222, -0.4021, 2.1942, 0.0222, -0.3378, 2.1915, -0.0178, -0.3378, 2.1915, -0.0178, -0.4021, 2.1942, 0.0222, -0.4021, 2.1942, -0.0178, -0.3401, 2.1315, 0.0222, -0.3378, 2.1915, 0.0222, -0.3401, 2.1315, -0.0178, -0.3401, 2.1315, -0.0178, -0.3378, 2.1915, 0.0222, -0.3378, 2.1915, -0.0178, -0.2754, 2.1293, 0.0222, -0.3401, 2.1315, 0.0222, -0.2754, 2.1293, -0.0178, -0.2754, 2.1293, -0.0178, -0.3401, 2.1315, 0.0222, -0.3401, 2.1315, -0.0178, -0.2773, 2.0699, 0.0222, -0.2754, 2.1293, 0.0222, -0.2773, 2.0699, -0.0178, -0.2773, 2.0699, -0.0178, -0.2754, 2.1293, 0.0222, -0.2754, 2.1293, -0.0178, -0.2154, 2.0682, 0.0222, -0.2773, 2.0699, 0.0222, -0.2154, 2.0682, -0.0178, -0.2154, 2.0682, -0.0178, -0.2773, 2.0699, 0.0222, -0.2773, 2.0699, -0.0178, -0.2111, 2.2469, 0.0222, -0.2154, 2.0682, 0.0222, -0.2111, 2.2469, -0.0178, -0.2111, 2.2469, -0.0178, -0.2154, 2.0682, 0.0222, -0.2154, 2.0682, -0.0178, -0.0795, 2.2447, 0.0222, -0.2111, 2.2469, 0.0222, -0.0795, 2.2447, -0.0178, -0.0795, 2.2447, -0.0178, -0.2111, 2.2469, 0.0222, -0.2111, 2.2469, -0.0178, -0.0833, 1.8248, 0.0222, -0.0795, 2.2447, 0.0222, -0.0833, 1.8248, -0.0178, -0.0833, 1.8248, -0.0178, -0.0795, 2.2447, 0.0222, -0.0795, 2.2447, -0.0178, -0.2212, 1.8271, 0.0222, -0.0833, 1.8248, 0.0222, -0.2212, 1.8271, -0.0178, -0.2212, 1.8271, -0.0178, -0.0833, 1.8248, 0.0222, -0.0833, 1.8248, -0.0178, -0.2198, 1.8864, 0.0222, -0.2212, 1.8271, 0.0222, -0.2198, 1.8864, -0.0178, -0.2198, 1.8864, -0.0178, -0.2212, 1.8271, 0.0222, -0.2212, 1.8271, -0.0178, -0.2863, 1.8883, 0.0222, -0.2198, 1.8864, 0.0222, -0.2863, 1.8883, -0.0178, -0.2863, 1.8883, -0.0178, -0.2198, 1.8864, 0.0222, -0.2198, 1.8864, -0.0178, -0.2844, 1.9483, 0.0222, -0.2863, 1.8883, 0.0222, -0.2844, 1.9483, -0.0178, -0.2844, 1.9483, -0.0178, -0.2863, 1.8883, 0.0222, -0.2863, 1.8883, -0.0178, -0.3504, 1.9506, 0.0222, -0.2844, 1.9483, 0.0222, -0.3504, 1.9506, -0.0178, -0.3504, 1.9506, -0.0178, -0.2844, 1.9483, 0.0222, -0.2844, 1.9483, -0.0178, -0.3481, 2.0099, 0.0222, -0.3504, 1.9506, 0.0222, -0.3481, 2.0099, -0.0178, -0.3481, 2.0099, -0.0178, -0.3504, 1.9506, 0.0222, -0.3504, 1.9506, -0.0178, -0.4104, 2.0126, 0.0222, -0.3481, 2.0099, 0.0222, -0.4104, 2.0126, -0.0178, -0.4104, 2.0126, -0.0178, -0.3481, 2.0099, 0.0222, -0.3481, 2.0099, -0.0178, -0.4186, 1.834, 0.0222, -0.4104, 2.0126, 0.0222, -0.4186, 1.834, -0.0178, -0.4186, 1.834, -0.0178, -0.4104, 2.0126, 0.0222, -0.4104, 2.0126, -0.0178, -0.0157, 1.8244, 0.0222, 0.39, 1.8327, 0.0222, -0.0157, 1.8244, -0.0178, -0.0157, 1.8244, -0.0178, 0.39, 1.8327, 0.0222, 0.39, 1.8327, -0.0178, -0.0156, 1.8868, 0.0222, -0.0157, 1.8244, 0.0222, -0.0156, 1.8868, -0.0178, -0.0156, 1.8868, -0.0178, -0.0157, 1.8244, 0.0222, -0.0157, 1.8244, -0.0178, 0.1174, 1.8875, 0.0222, -0.0156, 1.8868, 0.0222, 0.1174, 1.8875, -0.0178, 0.1174, 1.8875, -0.0178, -0.0156, 1.8868, 0.0222, -0.0156, 1.8868, -0.0178, 0.1136, 2.1827, 0.0222, 0.1174, 1.8875, 0.0222, 0.1136, 2.1827, -0.0178, 0.1136, 2.1827, -0.0178, 0.1174, 1.8875, 0.0222, 0.1174, 1.8875, -0.0178, -0.0151, 2.182, 0.0222, 0.1136, 2.1827, 0.0222, -0.0151, 2.182, -0.0178, -0.0151, 2.182, -0.0178, 0.1136, 2.1827, 0.0222, 0.1136, 2.1827, -0.0178, -0.015, 2.2444, 0.0222, -0.0151, 2.182, 0.0222, -0.015, 2.2444, -0.0178, -0.015, 2.2444, -0.0178, -0.0151, 2.182, 0.0222, -0.0151, 2.182, -0.0178, 0.372, 2.2523, 0.0222, -0.015, 2.2444, 0.0222, 0.372, 2.2523, -0.0178, 0.372, 2.2523, -0.0178, -0.015, 2.2444, 0.0222, -0.015, 2.2444, -0.0178, 0.3747, 2.19, 0.0222, 0.372, 2.2523, 0.0222, 0.3747, 2.19, -0.0178, 0.3747, 2.19, -0.0178, 0.372, 2.2523, 0.0222, 0.372, 2.2523, -0.0178, 0.2461, 2.1854, 0.0222, 0.3747, 2.19, 0.0222, 0.2461, 2.1854, -0.0178, 0.2461, 2.1854, -0.0178, 0.3747, 2.19, 0.0222, 0.3747, 2.19, -0.0178, 0.2544, 1.8903, 0.0222, 0.2461, 2.1854, 0.0222, 0.2544, 1.8903, -0.0178, 0.2544, 1.8903, -0.0178, 0.2461, 2.1854, 0.0222, 0.2461, 2.1854, -0.0178, 0.3873, 1.895, 0.0222, 0.2544, 1.8903, 0.0222, 0.3873, 1.895, -0.0178, 0.3873, 1.895, -0.0178, 0.2544, 1.8903, 0.0222, 0.2544, 1.8903, -0.0178, 0.39, 1.8327, 0.0222, 0.3873, 1.895, 0.0222, 0.39, 1.8327, -0.0178, 0.39, 1.8327, -0.0178, 0.3873, 1.895, 0.0222, 0.3873, 1.895, -0.0178, 0.4546, 1.8952, 0.0222, 0.521, 1.8987, 0.0222, 0.4546, 1.8952, -0.0178, 0.4546, 1.8952, -0.0178, 0.521, 1.8987, 0.0222, 0.521, 1.8987, -0.0178, 0.4514, 1.9581, 0.0222, 0.4546, 1.8952, 0.0222, 0.4514, 1.9581, -0.0178, 0.4514, 1.9581, -0.0178, 0.4546, 1.8952, 0.0222, 0.4546, 1.8952, -0.0178, 0.5873, 1.9659, 0.0222, 0.4514, 1.9581, 0.0222, 0.5873, 1.9659, -0.0178, 0.5873, 1.9659, -0.0178, 0.4514, 1.9581, 0.0222, 0.4514, 1.9581, -0.0178, 0.5912, 1.9061, 0.0222, 0.5873, 1.9659, 0.0222, 0.5912, 1.9061, -0.0178, 0.5912, 1.9061, -0.0178, 0.5873, 1.9659, 0.0222, 0.5873, 1.9659, -0.0178, 0.7868, 1.921, 0.0222, 0.5912, 1.9061, 0.0222, 0.7868, 1.921, -0.0178, 0.7868, 1.921, -0.0178, 0.5912, 1.9061, 0.0222, 0.5912, 1.9061, -0.0178, 0.7767, 2.0369, 0.0222, 0.7868, 1.921, 0.0222, 0.7767, 2.0369, -0.0178, 0.7767, 2.0369, -0.0178, 0.7868, 1.921, 0.0222, 0.7868, 1.921, -0.0178, 0.5141, 2.018, 0.0222, 0.7767, 2.0369, 0.0222, 0.5141, 2.018, -0.0178, 0.5141, 2.018, -0.0178, 0.7767, 2.0369, 0.0222, 0.7767, 2.0369, -0.0178, 0.5107, 2.0773, 0.0222, 0.5141, 2.018, 0.0222, 0.5107, 2.0773, -0.0178, 0.5107, 2.0773, -0.0178, 0.5141, 2.018, 0.0222, 0.5141, 2.018, -0.0178, 0.4456, 2.0737, 0.0222, 0.5107, 2.0773, 0.0222, 0.4456, 2.0737, -0.0178, 0.4456, 2.0737, -0.0178, 0.5107, 2.0773, 0.0222, 0.5107, 2.0773, -0.0178, 0.4395, 2.196, 0.0222, 0.4456, 2.0737, 0.0222, 0.4395, 2.196, -0.0178, 0.4395, 2.196, -0.0178, 0.4456, 2.0737, 0.0222, 0.4456, 2.0737, -0.0178, 0.5037, 2.1995, 0.0222, 0.4395, 2.196, 0.0222, 0.5037, 2.1995, -0.0178, 0.5037, 2.1995, -0.0178, 0.4395, 2.196, 0.0222, 0.4395, 2.196, -0.0178, 0.5003, 2.2588, 0.0222, 0.5037, 2.1995, 0.0222, 0.5003, 2.2588, -0.0178, 0.5003, 2.2588, -0.0178, 0.5037, 2.1995, 0.0222, 0.5037, 2.1995, -0.0178, 0.759, 2.2775, 0.0222, 0.5003, 2.2588, 0.0222, 0.759, 2.2775, -0.0178, 0.759, 2.2775, -0.0178, 0.5003, 2.2588, 0.0222, 0.5003, 2.2588, -0.0178, 0.7641, 2.2183, 0.0222, 0.759, 2.2775, 0.0222, 0.7641, 2.2183, -0.0178, 0.7641, 2.2183, -0.0178, 0.759, 2.2775, 0.0222, 0.759, 2.2775, -0.0178, 0.8288, 2.2242, 0.0222, 0.7641, 2.2183, 0.0222, 0.8288, 2.2242, -0.0178, 0.8288, 2.2242, -0.0178, 0.7641, 2.2183, 0.0222, 0.7641, 2.2183, -0.0178, 0.8348, 2.1615, 0.0222, 0.8288, 2.2242, 0.0222, 0.8348, 2.1615, -0.0178, 0.8348, 2.1615, -0.0178, 0.8288, 2.2242, 0.0222, 0.8288, 2.2242, -0.0178, 0.7018, 2.1499, 0.0222, 0.8348, 2.1615, 0.0222, 0.7018, 2.1499, -0.0178, 0.7018, 2.1499, -0.0178, 0.8348, 2.1615, 0.0222, 0.8348, 2.1615, -0.0178, 0.697, 2.2097, 0.0222, 0.7018, 2.1499, 0.0222, 0.697, 2.2097, -0.0178, 0.697, 2.2097, -0.0178, 0.7018, 2.1499, 0.0222, 0.7018, 2.1499, -0.0178, 0.572, 2.2006, 0.0222, 0.697, 2.2097, 0.0222, 0.572, 2.2006, -0.0178, 0.572, 2.2006, -0.0178, 0.697, 2.2097, 0.0222, 0.697, 2.2097, -0.0178, 0.5796, 2.0845, 0.0222, 0.572, 2.2006, 0.0222, 0.5796, 2.0845, -0.0178, 0.5796, 2.0845, -0.0178, 0.572, 2.2006, 0.0222, 0.572, 2.2006, -0.0178, 0.8401, 2.1054, 0.0222, 0.5796, 2.0845, 0.0222, 0.8401, 2.1054, -0.0178, 0.8401, 2.1054, -0.0178, 0.5796, 2.0845, 0.0222, 0.5796, 2.0845, -0.0178, 0.8457, 2.0462, 0.0222, 0.8401, 2.1054, 0.0222, 0.8457, 2.0462, -0.0178, 0.8457, 2.0462, -0.0178, 0.8401, 2.1054, 0.0222, 0.8401, 2.1054, -0.0178, 0.911, 2.0527, 0.0222, 0.8457, 2.0462, 0.0222, 0.911, 2.0527, -0.0178, 0.911, 2.0527, -0.0178, 0.8457, 2.0462, 0.0222, 0.8457, 2.0462, -0.0178, 0.9235, 1.9309, 0.0222, 0.911, 2.0527, 0.0222, 0.9235, 1.9309, -0.0178, 0.9235, 1.9309, -0.0178, 0.911, 2.0527, 0.0222, 0.911, 2.0527, -0.0178, 0.8573, 1.9244, 0.0222, 0.9235, 1.9309, 0.0222, 0.8573, 1.9244, -0.0178, 0.8573, 1.9244, -0.0178, 0.9235, 1.9309, 0.0222, 0.9235, 1.9309, -0.0178, 0.8629, 1.8652, 0.0222, 0.8573, 1.9244, 0.0222, 0.8629, 1.8652, -0.0178, 0.8629, 1.8652, -0.0178, 0.8573, 1.9244, 0.0222, 0.8573, 1.9244, -0.0178, 0.5244, 1.8394, 0.0222, 0.8629, 1.8652, 0.0222, 0.5244, 1.8394, -0.0178, 0.5244, 1.8394, -0.0178, 0.8629, 1.8652, 0.0222, 0.8629, 1.8652, -0.0178, 0.521, 1.8987, 0.0222, 0.5244, 1.8394, 0.0222, 0.521, 1.8987, -0.0178, 0.521, 1.8987, -0.0178, 0.5244, 1.8394, 0.0222, 0.5244, 1.8394, -0.0178, 0.9968, 1.879, 0.0222, 1.1338, 1.8951, 0.0222, 0.9968, 1.879, -0.0178, 0.9968, 1.879, -0.0178, 1.1338, 1.8951, 0.0222, 1.1338, 1.8951, -0.0178, 0.9509, 2.2964, 0.0222, 0.9968, 1.879, 0.0222, 0.9509, 2.2964, -0.0178, 0.9509, 2.2964, -0.0178, 0.9968, 1.879, 0.0222, 0.9968, 1.879, -0.0178, 1.0816, 2.3118, 0.0222, 0.9509, 2.2964, 0.0222, 1.0816, 2.3118, -0.0178, 1.0816, 2.3118, -0.0178, 0.9509, 2.2964, 0.0222, 0.9509, 2.2964, -0.0178, 1.1039, 2.1344, 0.0222, 1.0816, 2.3118, 0.0222, 1.1039, 2.1344, -0.0178, 1.1039, 2.1344, -0.0178, 1.0816, 2.3118, 0.0222, 1.0816, 2.3118, -0.0178, 1.2944, 2.1603, 0.0222, 1.1039, 2.1344, 0.0222, 1.2944, 2.1603, -0.0178, 1.2944, 2.1603, -0.0178, 1.1039, 2.1344, 0.0222, 1.1039, 2.1344, -0.0178, 1.2683, 2.3372, 0.0222, 1.2944, 2.1603, 0.0222, 1.2683, 2.3372, -0.0178, 1.2683, 2.3372, -0.0178, 1.2944, 2.1603, 0.0222, 1.2944, 2.1603, -0.0178, 1.3984, 2.3574, 0.0222, 1.2683, 2.3372, 0.0222, 1.3984, 2.3574, -0.0178, 1.3984, 2.3574, -0.0178, 1.2683, 2.3372, 0.0222, 1.2683, 2.3372, -0.0178, 1.4658, 1.9428, 0.0222, 1.3984, 2.3574, 0.0222, 1.4658, 1.9428, -0.0178, 1.4658, 1.9428, -0.0178, 1.3984, 2.3574, 0.0222, 1.3984, 2.3574, -0.0178, 1.3295, 1.9217, 0.0222, 1.4658, 1.9428, 0.0222, 1.3295, 1.9217, -0.0178, 1.3295, 1.9217, -0.0178, 1.4658, 1.9428, 0.0222, 1.4658, 1.9428, -0.0178, 1.3034, 2.0986, 0.0222, 1.3295, 1.9217, 0.0222, 1.3034, 2.0986, -0.0178, 1.3034, 2.0986, -0.0178, 1.3295, 1.9217, 0.0222, 1.3295, 1.9217, -0.0178, 1.1116, 2.0725, 0.0222, 1.3034, 2.0986, 0.0222, 1.1116, 2.0725, -0.0178, 1.1116, 2.0725, -0.0178, 1.3034, 2.0986, 0.0222, 1.3034, 2.0986, -0.0178, 1.1338, 1.8951, 0.0222, 1.1116, 2.0725, 0.0222, 1.1338, 1.8951, -0.0178, 1.1338, 1.8951, -0.0178, 1.1116, 2.0725, 0.0222, 1.1116, 2.0725, -0.0178) + +[sub_resource type="BoxShape3D" id="2"] + +[sub_resource type="BoxShape3D" id="4"] +size = Vector3(4.86384, 2.2632, 0.88705) + +[node name="FinishLine" type="StaticBody3D"] +collision_mask = 0 +script = ExtResource("1") empty_material_override = true -[node name="Mesh" type="MeshInstance" parent="."] -mesh = ExtResource( 2 ) -skeleton = NodePath("") -material/0 = ExtResource( 3 ) -material/1 = ExtResource( 4 ) -material/2 = ExtResource( 5 ) +[node name="Mesh" type="MeshInstance3D" parent="."] +mesh = SubResource("ArrayMesh_5l66y") -[node name="CollisionShape" type="CollisionShape" parent="."] -shape = SubResource( 3 ) +[node name="CollisionShape" type="CollisionShape3D" parent="."] +shape = SubResource("3") -[node name="BeginArea" type="Area" parent="."] +[node name="BeginArea" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -2 ) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -2) collision_layer = 2 -collision_mask = 0 +collision_mask = 4 -[node name="CollisionShape" type="CollisionShape" parent="BeginArea"] -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="BeginArea"] +shape = SubResource("2") -[node name="EndArea" type="Area" parent="."] +[node name="EndArea" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2 ) -collision_layer = 3 -collision_mask = 0 +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2) +collision_layer = 2 +collision_mask = 4 -[node name="CollisionShape" type="CollisionShape" parent="EndArea"] -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="EndArea"] +shape = SubResource("2") -[node name="Area" type="Area" parent="."] -script = ExtResource( 6 ) +[node name="Area" type="Area3D" parent="."] +collision_mask = 4 +script = ExtResource("6") -[node name="CollisionShape" type="CollisionShape" parent="Area"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.264957, 0 ) -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Area"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.264957, 0) +shape = SubResource("4") [node name="Sound" type="AudioStreamPlayer3D" parent="Area"] unique_name_in_owner = true -stream = ExtResource( 7 ) +stream = ExtResource("7") unit_size = 5.0 attenuation_filter_cutoff_hz = 20500.0 -[node name="Positions" type="Spatial" parent="."] +[node name="Positions" type="Node3D" parent="."] -[node name="Position3D" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3, -3 ) +[node name="Position3D" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3, -3) [connection signal="body_entered" from="Area" to="Area" method="_on_Area_body_entered"] diff --git a/scenes/blocks/forward.tscn b/scenes/blocks/forward.tscn index e8144f2..c142f3c 100644 --- a/scenes/blocks/forward.tscn +++ b/scenes/blocks/forward.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=7 format=2] diff --git a/scenes/blocks/forward_down.tscn b/scenes/blocks/forward_down.tscn index 1508402..3ade4f5 100644 --- a/scenes/blocks/forward_down.tscn +++ b/scenes/blocks/forward_down.tscn @@ -1,49 +1,45 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=7 format=3 uid="uid://h3dbn48vuyv4"] -[gd_scene load_steps=7 format=2] +[ext_resource type="Script" path="res://scripts/blocks/piece.gd" id="1"] +[ext_resource type="Material" path="res://resources/materials/piece.tres" id="2"] +[ext_resource type="ArrayMesh" uid="uid://1na70ao3gxxv" path="res://assets/blocks/forward_down.obj" id="3"] +[ext_resource type="Script" path="res://scripts/blocks/checkpoint.gd" id="4"] -[ext_resource path="res://scripts/blocks/piece.gd" type="Script" id=1] -[ext_resource path="res://resources/materials/piece.tres" type="Material" id=2] -[ext_resource path="res://assets/blocks/forward_down.obj" type="ArrayMesh" id=3] -[ext_resource path="res://scripts/blocks/checkpoint.gd" type="Script" id=4] +[sub_resource type="ConcavePolygonShape3D" id="1"] +data = PackedVector3Array(-0.7391, -0.3061, -1, -0.9239, -0.3827, -1, -0.6652, -0.4445, -1, -0.6652, -0.4445, -1, -0.9239, -0.3827, -1, -0.8315, -0.5556, -1, 0.1561, -0.7846, -1, 0.1951, -0.9808, -1, 0.3061, -0.7391, -1, 0.3061, -0.7391, -1, 0.1951, -0.9808, -1, 0.3827, -0.9239, -1, -0.7846, -0.1561, -1, -0.9808, -0.1951, -1, -0.7391, -0.3061, -1, -0.7391, -0.3061, -1, -0.9808, -0.1951, -1, -0.9239, -0.3827, -1, 0, -0.8, -1, 0, -1, -1, 0.1561, -0.7846, -1, 0.1561, -0.7846, -1, 0, -1, -1, 0.1951, -0.9808, -1, 0.7846, -0.1561, -1, 0.9808, -0.1951, -1, 0.8, 0, -1, 0.8, 0, -1, 0.9808, -0.1951, -1, 1, 0, -1, -0.8, 0, -1, -1, 0, -1, -0.7846, -0.1561, -1, -0.7846, -0.1561, -1, -1, 0, -1, -0.9808, -0.1951, -1, -0.1561, -0.7846, -1, -0.1951, -0.9808, -1, 0, -0.8, -1, 0, -0.8, -1, -0.1951, -0.9808, -1, 0, -1, -1, 0.7391, -0.3061, -1, 0.9239, -0.3827, -1, 0.7846, -0.1561, -1, 0.7846, -0.1561, -1, 0.9239, -0.3827, -1, 0.9808, -0.1951, -1, -0.3061, -0.7391, -1, -0.3827, -0.9239, -1, -0.1561, -0.7846, -1, -0.1561, -0.7846, -1, -0.3827, -0.9239, -1, -0.1951, -0.9808, -1, 0.6652, -0.4445, -1, 0.8315, -0.5556, -1, 0.7391, -0.3061, -1, 0.7391, -0.3061, -1, 0.8315, -0.5556, -1, 0.9239, -0.3827, -1, -0.4445, -0.6652, -1, -0.5556, -0.8315, -1, -0.3061, -0.7391, -1, -0.3061, -0.7391, -1, -0.5556, -0.8315, -1, -0.3827, -0.9239, -1, 0.5657, -0.5657, -1, 0.7071, -0.7071, -1, 0.6652, -0.4445, -1, 0.6652, -0.4445, -1, 0.7071, -0.7071, -1, 0.8315, -0.5556, -1, -0.5657, -0.5657, -1, -0.7071, -0.7071, -1, -0.4445, -0.6652, -1, -0.4445, -0.6652, -1, -0.7071, -0.7071, -1, -0.5556, -0.8315, -1, 0.4445, -0.6652, -1, 0.5556, -0.8315, -1, 0.5657, -0.5657, -1, 0.5657, -0.5657, -1, 0.5556, -0.8315, -1, 0.7071, -0.7071, -1, -0.6652, -0.4445, -1, -0.8315, -0.5556, -1, -0.5657, -0.5657, -1, -0.5657, -0.5657, -1, -0.8315, -0.5556, -1, -0.7071, -0.7071, -1, 0.3061, -0.7391, -1, 0.3827, -0.9239, -1, 0.4445, -0.6652, -1, 0.4445, -0.6652, -1, 0.3827, -0.9239, -1, 0.5556, -0.8315, -1, -0.8315, -1.5556, 3, -0.9239, -1.3827, 3, -0.6652, -1.4445, 3, -0.6652, -1.4445, 3, -0.9239, -1.3827, 3, -0.7391, -1.3061, 3, 0.3827, -1.9239, 3, 0.1951, -1.9808, 3, 0.3061, -1.7391, 3, 0.3061, -1.7391, 3, 0.1951, -1.9808, 3, 0.1561, -1.7846, 3, -0.9239, -1.3827, 3, -0.9808, -1.1951, 3, -0.7391, -1.3061, 3, -0.7391, -1.3061, 3, -0.9808, -1.1951, 3, -0.7846, -1.1561, 3, 0.1951, -1.9808, 3, 0, -2, 3, 0.1561, -1.7846, 3, 0.1561, -1.7846, 3, 0, -2, 3, 0, -1.8, 3, 1, -1, 3, 0.9808, -1.1951, 3, 0.8, -1, 3, 0.8, -1, 3, 0.9808, -1.1951, 3, 0.7846, -1.1561, 3, -0.9808, -1.1951, 3, -1, -1, 3, -0.7846, -1.1561, 3, -0.7846, -1.1561, 3, -1, -1, 3, -0.8, -1, 3, 0, -2, 3, -0.1951, -1.9808, 3, 0, -1.8, 3, 0, -1.8, 3, -0.1951, -1.9808, 3, -0.1561, -1.7846, 3, 0.9808, -1.1951, 3, 0.9239, -1.3827, 3, 0.7846, -1.1561, 3, 0.7846, -1.1561, 3, 0.9239, -1.3827, 3, 0.7391, -1.3061, 3, -0.1951, -1.9808, 3, -0.3827, -1.9239, 3, -0.1561, -1.7846, 3, -0.1561, -1.7846, 3, -0.3827, -1.9239, 3, -0.3061, -1.7391, 3, 0.9239, -1.3827, 3, 0.8315, -1.5556, 3, 0.7391, -1.3061, 3, 0.7391, -1.3061, 3, 0.8315, -1.5556, 3, 0.6652, -1.4445, 3, -0.3827, -1.9239, 3, -0.5556, -1.8315, 3, -0.3061, -1.7391, 3, -0.3061, -1.7391, 3, -0.5556, -1.8315, 3, -0.4445, -1.6652, 3, 0.8315, -1.5556, 3, 0.7071, -1.7071, 3, 0.6652, -1.4445, 3, 0.6652, -1.4445, 3, 0.7071, -1.7071, 3, 0.5657, -1.5657, 3, -0.5556, -1.8315, 3, -0.7071, -1.7071, 3, -0.4445, -1.6652, 3, -0.4445, -1.6652, 3, -0.7071, -1.7071, 3, -0.5657, -1.5657, 3, 0.7071, -1.7071, 3, 0.5556, -1.8315, 3, 0.5657, -1.5657, 3, 0.5657, -1.5657, 3, 0.5556, -1.8315, 3, 0.4445, -1.6652, 3, -0.7071, -1.7071, 3, -0.8315, -1.5556, 3, -0.5657, -1.5657, 3, -0.5657, -1.5657, 3, -0.8315, -1.5556, 3, -0.6652, -1.4445, 3, 0.5556, -1.8315, 3, 0.3827, -1.9239, 3, 0.4445, -1.6652, 3, 0.4445, -1.6652, 3, 0.3827, -1.9239, 3, 0.3061, -1.7391, 3, 0.7071, -0.7071, -1, 0.5556, -0.8315, -1, 0.7071, -1.7071, 3, 0.7071, -1.7071, 3, 0.5556, -0.8315, -1, 0.5556, -1.8315, 3, -0.1561, -0.7846, -1, 0, -0.8, -1, -0.1561, -1.7846, 3, -0.1561, -1.7846, 3, 0, -0.8, -1, 0, -1.8, 3, 0.5556, -0.8315, -1, 0.3827, -0.9239, -1, 0.5556, -1.8315, 3, 0.5556, -1.8315, 3, 0.3827, -0.9239, -1, 0.3827, -1.9239, 3, 0, -0.8, -1, 0.1561, -0.7846, -1, 0, -1.8, 3, 0, -1.8, 3, 0.1561, -0.7846, -1, 0.1561, -1.7846, 3, 0.3827, -0.9239, -1, 0.1951, -0.9808, -1, 0.3827, -1.9239, 3, 0.3827, -1.9239, 3, 0.1951, -0.9808, -1, 0.1951, -1.9808, 3, 0.1561, -0.7846, -1, 0.3061, -0.7391, -1, 0.1561, -1.7846, 3, 0.1561, -1.7846, 3, 0.3061, -0.7391, -1, 0.3061, -1.7391, 3, 0.1951, -0.9808, -1, 0, -1, -1, 0.1951, -1.9808, 3, 0.1951, -1.9808, 3, 0, -1, -1, 0, -2, 3, 0.3061, -0.7391, -1, 0.4445, -0.6652, -1, 0.3061, -1.7391, 3, 0.3061, -1.7391, 3, 0.4445, -0.6652, -1, 0.4445, -1.6652, 3, 0, -1, -1, -0.1951, -0.9808, -1, 0, -2, 3, 0, -2, 3, -0.1951, -0.9808, -1, -0.1951, -1.9808, 3, 0.4445, -0.6652, -1, 0.5657, -0.5657, -1, 0.4445, -1.6652, 3, 0.4445, -1.6652, 3, 0.5657, -0.5657, -1, 0.5657, -1.5657, 3, 0.8, 0, -1, 1, 0, -1, 0.8, -1, 3, 0.8, -1, 3, 1, 0, -1, 1, -1, 3, -0.1951, -0.9808, -1, -0.3827, -0.9239, -1, -0.1951, -1.9808, 3, -0.1951, -1.9808, 3, -0.3827, -0.9239, -1, -0.3827, -1.9239, 3, 0.5657, -0.5657, -1, 0.6652, -0.4445, -1, 0.5657, -1.5657, 3, 0.5657, -1.5657, 3, 0.6652, -0.4445, -1, 0.6652, -1.4445, 3, -0.3827, -0.9239, -1, -0.5556, -0.8315, -1, -0.3827, -1.9239, 3, -0.3827, -1.9239, 3, -0.5556, -0.8315, -1, -0.5556, -1.8315, 3, 0.6652, -0.4445, -1, 0.7391, -0.3061, -1, 0.6652, -1.4445, 3, 0.6652, -1.4445, 3, 0.7391, -0.3061, -1, 0.7391, -1.3061, 3, -1, 0, -1, -0.8, 0, -1, -1, -1, 3, -1, -1, 3, -0.8, 0, -1, -0.8, -1, 3, -0.8, 0, -1, -0.7846, -0.1561, -1, -0.8, -1, 3, -0.8, -1, 3, -0.7846, -0.1561, -1, -0.7846, -1.1561, 3, -0.5556, -0.8315, -1, -0.7071, -0.7071, -1, -0.5556, -1.8315, 3, -0.5556, -1.8315, 3, -0.7071, -0.7071, -1, -0.7071, -1.7071, 3, 0.7391, -0.3061, -1, 0.7846, -0.1561, -1, 0.7391, -1.3061, 3, 0.7391, -1.3061, 3, 0.7846, -0.1561, -1, 0.7846, -1.1561, 3, -0.7846, -0.1561, -1, -0.7391, -0.3061, -1, -0.7846, -1.1561, 3, -0.7846, -1.1561, 3, -0.7391, -0.3061, -1, -0.7391, -1.3061, 3, -0.7071, -0.7071, -1, -0.8315, -0.5556, -1, -0.7071, -1.7071, 3, -0.7071, -1.7071, 3, -0.8315, -0.5556, -1, -0.8315, -1.5556, 3, 0.7846, -0.1561, -1, 0.8, 0, -1, 0.7846, -1.1561, 3, 0.7846, -1.1561, 3, 0.8, 0, -1, 0.8, -1, 3, -0.7391, -0.3061, -1, -0.6652, -0.4445, -1, -0.7391, -1.3061, 3, -0.7391, -1.3061, 3, -0.6652, -0.4445, -1, -0.6652, -1.4445, 3, -0.8315, -0.5556, -1, -0.9239, -0.3827, -1, -0.8315, -1.5556, 3, -0.8315, -1.5556, 3, -0.9239, -0.3827, -1, -0.9239, -1.3827, 3, 1, 0, -1, 0.9808, -0.1951, -1, 1, -1, 3, 1, -1, 3, 0.9808, -0.1951, -1, 0.9808, -1.1951, 3, -0.6652, -0.4445, -1, -0.5657, -0.5657, -1, -0.6652, -1.4445, 3, -0.6652, -1.4445, 3, -0.5657, -0.5657, -1, -0.5657, -1.5657, 3, -0.9239, -0.3827, -1, -0.9808, -0.1951, -1, -0.9239, -1.3827, 3, -0.9239, -1.3827, 3, -0.9808, -0.1951, -1, -0.9808, -1.1951, 3, 0.9808, -0.1951, -1, 0.9239, -0.3827, -1, 0.9808, -1.1951, 3, 0.9808, -1.1951, 3, 0.9239, -0.3827, -1, 0.9239, -1.3827, 3, -0.5657, -0.5657, -1, -0.4445, -0.6652, -1, -0.5657, -1.5657, 3, -0.5657, -1.5657, 3, -0.4445, -0.6652, -1, -0.4445, -1.6652, 3, -0.9808, -0.1951, -1, -1, 0, -1, -0.9808, -1.1951, 3, -0.9808, -1.1951, 3, -1, 0, -1, -1, -1, 3, 0.9239, -0.3827, -1, 0.8315, -0.5556, -1, 0.9239, -1.3827, 3, 0.9239, -1.3827, 3, 0.8315, -0.5556, -1, 0.8315, -1.5556, 3, -0.4445, -0.6652, -1, -0.3061, -0.7391, -1, -0.4445, -1.6652, 3, -0.4445, -1.6652, 3, -0.3061, -0.7391, -1, -0.3061, -1.7391, 3, 0.8315, -0.5556, -1, 0.7071, -0.7071, -1, 0.8315, -1.5556, 3, 0.8315, -1.5556, 3, 0.7071, -0.7071, -1, 0.7071, -1.7071, 3, -0.3061, -0.7391, -1, -0.1561, -0.7846, -1, -0.3061, -1.7391, 3, -0.3061, -1.7391, 3, -0.1561, -0.7846, -1, -0.1561, -1.7846, 3) -[sub_resource type="ConcavePolygonShape" id=1] -data = PoolVector3Array( -0.7391, -0.3061, -1, -0.9239, -0.3827, -1, -0.6652, -0.4445, -1, -0.6652, -0.4445, -1, -0.9239, -0.3827, -1, -0.8315, -0.5556, -1, 0.1561, -0.7846, -1, 0.1951, -0.9808, -1, 0.3061, -0.7391, -1, 0.3061, -0.7391, -1, 0.1951, -0.9808, -1, 0.3827, -0.9239, -1, -0.7846, -0.1561, -1, -0.9808, -0.1951, -1, -0.7391, -0.3061, -1, -0.7391, -0.3061, -1, -0.9808, -0.1951, -1, -0.9239, -0.3827, -1, 0, -0.8, -1, 0, -1, -1, 0.1561, -0.7846, -1, 0.1561, -0.7846, -1, 0, -1, -1, 0.1951, -0.9808, -1, 0.7846, -0.1561, -1, 0.9808, -0.1951, -1, 0.8, 0, -1, 0.8, 0, -1, 0.9808, -0.1951, -1, 1, 0, -1, -0.8, 0, -1, -1, 0, -1, -0.7846, -0.1561, -1, -0.7846, -0.1561, -1, -1, 0, -1, -0.9808, -0.1951, -1, -0.1561, -0.7846, -1, -0.1951, -0.9808, -1, 0, -0.8, -1, 0, -0.8, -1, -0.1951, -0.9808, -1, 0, -1, -1, 0.7391, -0.3061, -1, 0.9239, -0.3827, -1, 0.7846, -0.1561, -1, 0.7846, -0.1561, -1, 0.9239, -0.3827, -1, 0.9808, -0.1951, -1, -0.3061, -0.7391, -1, -0.3827, -0.9239, -1, -0.1561, -0.7846, -1, -0.1561, -0.7846, -1, -0.3827, -0.9239, -1, -0.1951, -0.9808, -1, 0.6652, -0.4445, -1, 0.8315, -0.5556, -1, 0.7391, -0.3061, -1, 0.7391, -0.3061, -1, 0.8315, -0.5556, -1, 0.9239, -0.3827, -1, -0.4445, -0.6652, -1, -0.5556, -0.8315, -1, -0.3061, -0.7391, -1, -0.3061, -0.7391, -1, -0.5556, -0.8315, -1, -0.3827, -0.9239, -1, 0.5657, -0.5657, -1, 0.7071, -0.7071, -1, 0.6652, -0.4445, -1, 0.6652, -0.4445, -1, 0.7071, -0.7071, -1, 0.8315, -0.5556, -1, -0.5657, -0.5657, -1, -0.7071, -0.7071, -1, -0.4445, -0.6652, -1, -0.4445, -0.6652, -1, -0.7071, -0.7071, -1, -0.5556, -0.8315, -1, 0.4445, -0.6652, -1, 0.5556, -0.8315, -1, 0.5657, -0.5657, -1, 0.5657, -0.5657, -1, 0.5556, -0.8315, -1, 0.7071, -0.7071, -1, -0.6652, -0.4445, -1, -0.8315, -0.5556, -1, -0.5657, -0.5657, -1, -0.5657, -0.5657, -1, -0.8315, -0.5556, -1, -0.7071, -0.7071, -1, 0.3061, -0.7391, -1, 0.3827, -0.9239, -1, 0.4445, -0.6652, -1, 0.4445, -0.6652, -1, 0.3827, -0.9239, -1, 0.5556, -0.8315, -1, -0.8315, -1.5556, 3, -0.9239, -1.3827, 3, -0.6652, -1.4445, 3, -0.6652, -1.4445, 3, -0.9239, -1.3827, 3, -0.7391, -1.3061, 3, 0.3827, -1.9239, 3, 0.1951, -1.9808, 3, 0.3061, -1.7391, 3, 0.3061, -1.7391, 3, 0.1951, -1.9808, 3, 0.1561, -1.7846, 3, -0.9239, -1.3827, 3, -0.9808, -1.1951, 3, -0.7391, -1.3061, 3, -0.7391, -1.3061, 3, -0.9808, -1.1951, 3, -0.7846, -1.1561, 3, 0.1951, -1.9808, 3, 0, -2, 3, 0.1561, -1.7846, 3, 0.1561, -1.7846, 3, 0, -2, 3, 0, -1.8, 3, 1, -1, 3, 0.9808, -1.1951, 3, 0.8, -1, 3, 0.8, -1, 3, 0.9808, -1.1951, 3, 0.7846, -1.1561, 3, -0.9808, -1.1951, 3, -1, -1, 3, -0.7846, -1.1561, 3, -0.7846, -1.1561, 3, -1, -1, 3, -0.8, -1, 3, 0, -2, 3, -0.1951, -1.9808, 3, 0, -1.8, 3, 0, -1.8, 3, -0.1951, -1.9808, 3, -0.1561, -1.7846, 3, 0.9808, -1.1951, 3, 0.9239, -1.3827, 3, 0.7846, -1.1561, 3, 0.7846, -1.1561, 3, 0.9239, -1.3827, 3, 0.7391, -1.3061, 3, -0.1951, -1.9808, 3, -0.3827, -1.9239, 3, -0.1561, -1.7846, 3, -0.1561, -1.7846, 3, -0.3827, -1.9239, 3, -0.3061, -1.7391, 3, 0.9239, -1.3827, 3, 0.8315, -1.5556, 3, 0.7391, -1.3061, 3, 0.7391, -1.3061, 3, 0.8315, -1.5556, 3, 0.6652, -1.4445, 3, -0.3827, -1.9239, 3, -0.5556, -1.8315, 3, -0.3061, -1.7391, 3, -0.3061, -1.7391, 3, -0.5556, -1.8315, 3, -0.4445, -1.6652, 3, 0.8315, -1.5556, 3, 0.7071, -1.7071, 3, 0.6652, -1.4445, 3, 0.6652, -1.4445, 3, 0.7071, -1.7071, 3, 0.5657, -1.5657, 3, -0.5556, -1.8315, 3, -0.7071, -1.7071, 3, -0.4445, -1.6652, 3, -0.4445, -1.6652, 3, -0.7071, -1.7071, 3, -0.5657, -1.5657, 3, 0.7071, -1.7071, 3, 0.5556, -1.8315, 3, 0.5657, -1.5657, 3, 0.5657, -1.5657, 3, 0.5556, -1.8315, 3, 0.4445, -1.6652, 3, -0.7071, -1.7071, 3, -0.8315, -1.5556, 3, -0.5657, -1.5657, 3, -0.5657, -1.5657, 3, -0.8315, -1.5556, 3, -0.6652, -1.4445, 3, 0.5556, -1.8315, 3, 0.3827, -1.9239, 3, 0.4445, -1.6652, 3, 0.4445, -1.6652, 3, 0.3827, -1.9239, 3, 0.3061, -1.7391, 3, 0.7071, -0.7071, -1, 0.5556, -0.8315, -1, 0.7071, -1.7071, 3, 0.7071, -1.7071, 3, 0.5556, -0.8315, -1, 0.5556, -1.8315, 3, -0.1561, -0.7846, -1, 0, -0.8, -1, -0.1561, -1.7846, 3, -0.1561, -1.7846, 3, 0, -0.8, -1, 0, -1.8, 3, 0.5556, -0.8315, -1, 0.3827, -0.9239, -1, 0.5556, -1.8315, 3, 0.5556, -1.8315, 3, 0.3827, -0.9239, -1, 0.3827, -1.9239, 3, 0, -0.8, -1, 0.1561, -0.7846, -1, 0, -1.8, 3, 0, -1.8, 3, 0.1561, -0.7846, -1, 0.1561, -1.7846, 3, 0.3827, -0.9239, -1, 0.1951, -0.9808, -1, 0.3827, -1.9239, 3, 0.3827, -1.9239, 3, 0.1951, -0.9808, -1, 0.1951, -1.9808, 3, 0.1561, -0.7846, -1, 0.3061, -0.7391, -1, 0.1561, -1.7846, 3, 0.1561, -1.7846, 3, 0.3061, -0.7391, -1, 0.3061, -1.7391, 3, 0.1951, -0.9808, -1, 0, -1, -1, 0.1951, -1.9808, 3, 0.1951, -1.9808, 3, 0, -1, -1, 0, -2, 3, 0.3061, -0.7391, -1, 0.4445, -0.6652, -1, 0.3061, -1.7391, 3, 0.3061, -1.7391, 3, 0.4445, -0.6652, -1, 0.4445, -1.6652, 3, 0, -1, -1, -0.1951, -0.9808, -1, 0, -2, 3, 0, -2, 3, -0.1951, -0.9808, -1, -0.1951, -1.9808, 3, 0.4445, -0.6652, -1, 0.5657, -0.5657, -1, 0.4445, -1.6652, 3, 0.4445, -1.6652, 3, 0.5657, -0.5657, -1, 0.5657, -1.5657, 3, 0.8, 0, -1, 1, 0, -1, 0.8, -1, 3, 0.8, -1, 3, 1, 0, -1, 1, -1, 3, -0.1951, -0.9808, -1, -0.3827, -0.9239, -1, -0.1951, -1.9808, 3, -0.1951, -1.9808, 3, -0.3827, -0.9239, -1, -0.3827, -1.9239, 3, 0.5657, -0.5657, -1, 0.6652, -0.4445, -1, 0.5657, -1.5657, 3, 0.5657, -1.5657, 3, 0.6652, -0.4445, -1, 0.6652, -1.4445, 3, -0.3827, -0.9239, -1, -0.5556, -0.8315, -1, -0.3827, -1.9239, 3, -0.3827, -1.9239, 3, -0.5556, -0.8315, -1, -0.5556, -1.8315, 3, 0.6652, -0.4445, -1, 0.7391, -0.3061, -1, 0.6652, -1.4445, 3, 0.6652, -1.4445, 3, 0.7391, -0.3061, -1, 0.7391, -1.3061, 3, -1, 0, -1, -0.8, 0, -1, -1, -1, 3, -1, -1, 3, -0.8, 0, -1, -0.8, -1, 3, -0.8, 0, -1, -0.7846, -0.1561, -1, -0.8, -1, 3, -0.8, -1, 3, -0.7846, -0.1561, -1, -0.7846, -1.1561, 3, -0.5556, -0.8315, -1, -0.7071, -0.7071, -1, -0.5556, -1.8315, 3, -0.5556, -1.8315, 3, -0.7071, -0.7071, -1, -0.7071, -1.7071, 3, 0.7391, -0.3061, -1, 0.7846, -0.1561, -1, 0.7391, -1.3061, 3, 0.7391, -1.3061, 3, 0.7846, -0.1561, -1, 0.7846, -1.1561, 3, -0.7846, -0.1561, -1, -0.7391, -0.3061, -1, -0.7846, -1.1561, 3, -0.7846, -1.1561, 3, -0.7391, -0.3061, -1, -0.7391, -1.3061, 3, -0.7071, -0.7071, -1, -0.8315, -0.5556, -1, -0.7071, -1.7071, 3, -0.7071, -1.7071, 3, -0.8315, -0.5556, -1, -0.8315, -1.5556, 3, 0.7846, -0.1561, -1, 0.8, 0, -1, 0.7846, -1.1561, 3, 0.7846, -1.1561, 3, 0.8, 0, -1, 0.8, -1, 3, -0.7391, -0.3061, -1, -0.6652, -0.4445, -1, -0.7391, -1.3061, 3, -0.7391, -1.3061, 3, -0.6652, -0.4445, -1, -0.6652, -1.4445, 3, -0.8315, -0.5556, -1, -0.9239, -0.3827, -1, -0.8315, -1.5556, 3, -0.8315, -1.5556, 3, -0.9239, -0.3827, -1, -0.9239, -1.3827, 3, 1, 0, -1, 0.9808, -0.1951, -1, 1, -1, 3, 1, -1, 3, 0.9808, -0.1951, -1, 0.9808, -1.1951, 3, -0.6652, -0.4445, -1, -0.5657, -0.5657, -1, -0.6652, -1.4445, 3, -0.6652, -1.4445, 3, -0.5657, -0.5657, -1, -0.5657, -1.5657, 3, -0.9239, -0.3827, -1, -0.9808, -0.1951, -1, -0.9239, -1.3827, 3, -0.9239, -1.3827, 3, -0.9808, -0.1951, -1, -0.9808, -1.1951, 3, 0.9808, -0.1951, -1, 0.9239, -0.3827, -1, 0.9808, -1.1951, 3, 0.9808, -1.1951, 3, 0.9239, -0.3827, -1, 0.9239, -1.3827, 3, -0.5657, -0.5657, -1, -0.4445, -0.6652, -1, -0.5657, -1.5657, 3, -0.5657, -1.5657, 3, -0.4445, -0.6652, -1, -0.4445, -1.6652, 3, -0.9808, -0.1951, -1, -1, 0, -1, -0.9808, -1.1951, 3, -0.9808, -1.1951, 3, -1, 0, -1, -1, -1, 3, 0.9239, -0.3827, -1, 0.8315, -0.5556, -1, 0.9239, -1.3827, 3, 0.9239, -1.3827, 3, 0.8315, -0.5556, -1, 0.8315, -1.5556, 3, -0.4445, -0.6652, -1, -0.3061, -0.7391, -1, -0.4445, -1.6652, 3, -0.4445, -1.6652, 3, -0.3061, -0.7391, -1, -0.3061, -1.7391, 3, 0.8315, -0.5556, -1, 0.7071, -0.7071, -1, 0.8315, -1.5556, 3, 0.8315, -1.5556, 3, 0.7071, -0.7071, -1, 0.7071, -1.7071, 3, -0.3061, -0.7391, -1, -0.1561, -0.7846, -1, -0.3061, -1.7391, 3, -0.3061, -1.7391, 3, -0.1561, -0.7846, -1, -0.1561, -1.7846, 3 ) +[sub_resource type="BoxShape3D" id="2"] -[sub_resource type="BoxShape" id=2] +[node name="ForwardDown" type="StaticBody3D"] +script = ExtResource("1") -[node name="ForwardDown" type="StaticBody"] -script = ExtResource( 1 ) +[node name="forward_down" type="MeshInstance3D" parent="."] +material_override = ExtResource("2") +mesh = ExtResource("3") -[node name="forward_down" type="MeshInstance" parent="."] -material_override = ExtResource( 2 ) -mesh = ExtResource( 3 ) +[node name="CollisionShape" type="CollisionShape3D" parent="."] +shape = SubResource("1") -[node name="CollisionShape" type="CollisionShape" parent="."] -shape = SubResource( 1 ) - -[node name="BeginArea" type="Area" parent="."] +[node name="BeginArea" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1 ) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1) collision_layer = 2 collision_mask = 0 -[node name="CollisionShape" type="CollisionShape" parent="BeginArea"] -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="BeginArea"] +shape = SubResource("2") -[node name="EndArea" type="Area" parent="."] +[node name="EndArea" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 3 ) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 3) collision_layer = 3 collision_mask = 0 -script = ExtResource( 4 ) +script = ExtResource("4") -[node name="CollisionShape" type="CollisionShape" parent="EndArea"] -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="EndArea"] +shape = SubResource("2") -[node name="Positions" type="Spatial" parent="."] +[node name="Positions" type="Node3D" parent="."] -[node name="Position3D" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.14304, 1 ) +[node name="Position3D" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.14304, 1) diff --git a/scenes/blocks/forward_up.tscn b/scenes/blocks/forward_up.tscn index a7c1b1e..f0738df 100644 --- a/scenes/blocks/forward_up.tscn +++ b/scenes/blocks/forward_up.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=7 format=2] diff --git a/scenes/blocks/hopper.tscn b/scenes/blocks/hopper.tscn index ec7d214..21a684a 100644 --- a/scenes/blocks/hopper.tscn +++ b/scenes/blocks/hopper.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=8 format=2] diff --git a/scenes/blocks/hopper2.tscn b/scenes/blocks/hopper2.tscn index 79c592e..51911c5 100644 --- a/scenes/blocks/hopper2.tscn +++ b/scenes/blocks/hopper2.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=8 format=2] diff --git a/scenes/blocks/hopper3.tscn b/scenes/blocks/hopper3.tscn index 56ab57c..34a432a 100644 --- a/scenes/blocks/hopper3.tscn +++ b/scenes/blocks/hopper3.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=8 format=2] diff --git a/scenes/blocks/looping.tscn b/scenes/blocks/looping.tscn index fb21008..e7206d7 100644 --- a/scenes/blocks/looping.tscn +++ b/scenes/blocks/looping.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=7 format=2] diff --git a/scenes/blocks/start_line.tscn b/scenes/blocks/start_line.tscn index f15b261..3784136 100644 --- a/scenes/blocks/start_line.tscn +++ b/scenes/blocks/start_line.tscn @@ -1,59 +1,116 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=9 format=3 uid="uid://bsyf5m4o0xyrr"] -[gd_scene load_steps=8 format=2] +[ext_resource type="Script" path="res://scripts/blocks/piece.gd" id="1"] +[ext_resource type="Material" uid="uid://be05svsycj308" path="res://resources/materials/piece.tres" id="2"] +[ext_resource type="ArrayMesh" uid="uid://biur4wlr2tf7i" path="res://assets/blocks/start_line.obj" id="3"] +[ext_resource type="PackedScene" path="res://scenes/blocks/tube_vertical_to_horizontal.tscn" id="4"] +[ext_resource type="Script" path="res://scripts/blocks/checkpoint.gd" id="5"] -[ext_resource path="res://scripts/blocks/piece.gd" type="Script" id=1] -[ext_resource path="res://resources/materials/piece.tres" type="Material" id=2] -[ext_resource path="res://assets/blocks/start_line.obj" type="ArrayMesh" id=3] -[ext_resource path="res://scenes/blocks/tube_vertical_to_horizontal.tscn" type="PackedScene" id=4] -[ext_resource path="res://scripts/blocks/checkpoint.gd" type="Script" id=5] +[sub_resource type="CylinderShape3D" id="CylinderShape3D_gyx3i"] +height = 6.58503 +radius = 0.439619 -[sub_resource type="ConcavePolygonShape" id=3] -data = PoolVector3Array( -2.5712, 4.3, -3.5, -2.0712, 4.3, -3.5, -2.5712, 4.3, 3.5, -2.5712, 4.3, 3.5, -2.0712, 4.3, -3.5, -2.0712, 4.3, 3.5, -2.0712, -4.3, 3.5, -2.5712, -4.3, 3.5, -2.0712, -4.3, 3.75, -2.0712, -4.3, 3.75, -2.5712, -4.3, 3.5, -2.5712, -4.3, 3.75, -2.5712, 4.3, 3.5, -2.5712, -4.3, 3.5, -2.5712, 4.3, -3.5, -2.5712, 4.3, -3.5, -2.5712, -4.3, 3.5, -2.5712, -4.3, -3.5, -2.0712, -4.3, -3.5, -2.5712, -4.3, -3.5, -2.0712, -4.3, 3.5, -2.0712, -4.3, 3.5, -2.5712, -4.3, -3.5, -2.5712, -4.3, 3.5, -2.0712, 4.3, -3.5, -2.0712, -4.3, -3.5, -2.0712, 4.3, 3.5, -2.0712, 4.3, 3.5, -2.0712, -4.3, -3.5, -2.0712, -4.3, 3.5, -2.0712, 4.3, -3.5, -2.5712, 4.3, -3.5, -2.0712, 4.3, -3.75, -2.0712, 4.3, -3.75, -2.5712, 4.3, -3.5, -2.5712, 4.3, -3.75, -2.0712, 4.3, 3.75, -2.0712, -4.3, 3.75, -2.5712, 4.3, 3.75, -2.5712, 4.3, 3.75, -2.0712, -4.3, 3.75, -2.5712, -4.3, 3.75, -2.5712, 4.3, 3.5, -2.0712, 4.3, 3.5, -2.5712, 4.3, 3.75, -2.5712, 4.3, 3.75, -2.0712, 4.3, 3.5, -2.0712, 4.3, 3.75, -2.0712, 4.3, 3.75, -2.0712, 4.3, 3.5, 1.9288, 4.3, 3.75, 1.9288, 4.3, 3.75, -2.0712, 4.3, 3.5, 1.9288, 4.3, 3.5, -2.5712, -4.3, 3.5, -2.5712, 4.3, 3.5, -2.5712, -4.3, 3.75, -2.5712, -4.3, 3.75, -2.5712, 4.3, 3.5, -2.5712, 4.3, 3.75, 1.9288, 4.3, 3.5, 1.9288, -4.3, 3.5, 1.9288, 4.3, 3.75, 1.9288, 4.3, 3.75, 1.9288, -4.3, 3.5, 1.9288, -4.3, 3.75, -2.0712, 4.3, 3.5, -2.0712, -4.3, 3.5, 1.9288, 4.3, 3.5, 1.9288, 4.3, 3.5, -2.0712, -4.3, 3.5, 1.9288, -4.3, 3.5, -2.0712, -4.3, 3.75, -2.0712, 4.3, 3.75, 1.9288, -4.3, 3.75, 1.9288, -4.3, 3.75, -2.0712, 4.3, 3.75, 1.9288, 4.3, 3.75, -2.0712, -4.3, 3.5, -2.0712, -4.3, 3.75, 1.9288, -4.3, 3.5, 1.9288, -4.3, 3.5, -2.0712, -4.3, 3.75, 1.9288, -4.3, 3.75, -2.5712, 4.3, -3.75, -2.5712, -4.3, -3.75, -2.0712, 4.3, -3.75, -2.0712, 4.3, -3.75, -2.5712, -4.3, -3.75, -2.0712, -4.3, -3.75, -2.0712, 4.3, -3.5, -2.0712, 4.3, -3.75, 1.9288, 4.3, -3.5, 1.9288, 4.3, -3.5, -2.0712, 4.3, -3.75, 1.9288, 4.3, -3.75, -2.5712, 4.3, -3.5, -2.5712, -4.3, -3.5, -2.5712, 4.3, -3.75, -2.5712, 4.3, -3.75, -2.5712, -4.3, -3.5, -2.5712, -4.3, -3.75, -2.5712, -4.3, -3.5, -2.0712, -4.3, -3.5, -2.5712, -4.3, -3.75, -2.5712, -4.3, -3.75, -2.0712, -4.3, -3.5, -2.0712, -4.3, -3.75, 1.9288, -4.3, -3.5, 1.9288, 4.3, -3.5, 1.9288, -4.3, -3.75, 1.9288, -4.3, -3.75, 1.9288, 4.3, -3.5, 1.9288, 4.3, -3.75, -2.0712, -4.3, -3.5, -2.0712, 4.3, -3.5, 1.9288, -4.3, -3.5, 1.9288, -4.3, -3.5, -2.0712, 4.3, -3.5, 1.9288, 4.3, -3.5, -2.0712, 4.3, -3.75, -2.0712, -4.3, -3.75, 1.9288, 4.3, -3.75, 1.9288, 4.3, -3.75, -2.0712, -4.3, -3.75, 1.9288, -4.3, -3.75, -2.0712, -4.3, -3.75, -2.0712, -4.3, -3.5, 1.9288, -4.3, -3.75, 1.9288, -4.3, -3.75, -2.0712, -4.3, -3.5, 1.9288, -4.3, -3.5, 1.7287, 0.1455, -0.1693, -1.8711, 0.1455, -0.1693, 1.7287, 0.0981, -0.1646, 1.7287, 0.0981, -0.1646, -1.8711, 0.1455, -0.1693, -1.8711, 0.0981, -0.1646, 1.7287, 0.0981, -0.1646, -1.8711, 0.0981, -0.1646, 1.7287, 0.0525, -0.1508, 1.7287, 0.0525, -0.1508, -1.8711, 0.0981, -0.1646, -1.8711, 0.0525, -0.1508, 1.7287, 0.0525, -0.1508, -1.8711, 0.0525, -0.1508, 1.7287, 0.0105, -0.1283, 1.7287, 0.0105, -0.1283, -1.8711, 0.0525, -0.1508, -1.8711, 0.0105, -0.1283, 1.7287, 0.0105, -0.1283, -1.8711, 0.0105, -0.1283, 1.7287, -0.0264, -0.0981, 1.7287, -0.0264, -0.0981, -1.8711, 0.0105, -0.1283, -1.8711, -0.0264, -0.0981, 1.7287, -0.0264, -0.0981, -1.8711, -0.0264, -0.0981, 1.7287, -0.0566, -0.0612, 1.7287, -0.0566, -0.0612, -1.8711, -0.0264, -0.0981, -1.8711, -0.0566, -0.0612, 1.7287, -0.0566, -0.0612, -1.8711, -0.0566, -0.0612, 1.7287, -0.0791, -0.0192, 1.7287, -0.0791, -0.0192, -1.8711, -0.0566, -0.0612, -1.8711, -0.0791, -0.0192, 1.7287, -0.0791, -0.0192, -1.8711, -0.0791, -0.0192, 1.7287, -0.0929, 0.0264, 1.7287, -0.0929, 0.0264, -1.8711, -0.0791, -0.0192, -1.8711, -0.0929, 0.0264, 1.7287, -0.0929, 0.0264, -1.8711, -0.0929, 0.0264, 1.7287, -0.0976, 0.0738, 1.7287, -0.0976, 0.0738, -1.8711, -0.0929, 0.0264, -1.8711, -0.0976, 0.0738, 1.7287, -0.0976, 0.0738, -1.8711, -0.0976, 0.0738, 1.7287, -0.0929, 0.1212, 1.7287, -0.0929, 0.1212, -1.8711, -0.0976, 0.0738, -1.8711, -0.0929, 0.1212, 1.7287, -0.0929, 0.1212, -1.8711, -0.0929, 0.1212, 1.7287, -0.0791, 0.1669, 1.7287, -0.0791, 0.1669, -1.8711, -0.0929, 0.1212, -1.8711, -0.0791, 0.1669, 1.7287, -0.0791, 0.1669, -1.8711, -0.0791, 0.1669, 1.7287, -0.0566, 0.2089, 1.7287, -0.0566, 0.2089, -1.8711, -0.0791, 0.1669, -1.8711, -0.0566, 0.2089, 1.7287, -0.0566, 0.2089, -1.8711, -0.0566, 0.2089, 1.7287, -0.0264, 0.2457, 1.7287, -0.0264, 0.2457, -1.8711, -0.0566, 0.2089, -1.8711, -0.0264, 0.2457, 1.7287, -0.0264, 0.2457, -1.8711, -0.0264, 0.2457, 1.7287, 0.0105, 0.276, 1.7287, 0.0105, 0.276, -1.8711, -0.0264, 0.2457, -1.8711, 0.0105, 0.276, 1.7287, 0.0105, 0.276, -1.8711, 0.0105, 0.276, 1.7287, 0.0525, 0.2984, 1.7287, 0.0525, 0.2984, -1.8711, 0.0105, 0.276, -1.8711, 0.0525, 0.2984, 1.7287, 0.0525, 0.2984, -1.8711, 0.0525, 0.2984, 1.7287, 0.0981, 0.3123, 1.7287, 0.0981, 0.3123, -1.8711, 0.0525, 0.2984, -1.8711, 0.0981, 0.3123, 1.7287, 0.0981, 0.3123, -1.8711, 0.0981, 0.3123, 1.7287, 0.1455, 0.3169, 1.7287, 0.1455, 0.3169, -1.8711, 0.0981, 0.3123, -1.8711, 0.1455, 0.3169, 1.7287, 0.1455, 0.3169, -1.8711, 0.1455, 0.3169, 1.7287, 0.193, 0.3123, 1.7287, 0.193, 0.3123, -1.8711, 0.1455, 0.3169, -1.8711, 0.193, 0.3123, 1.7287, 0.193, 0.3123, -1.8711, 0.193, 0.3123, 1.7287, 0.2386, 0.2984, 1.7287, 0.2386, 0.2984, -1.8711, 0.193, 0.3123, -1.8711, 0.2386, 0.2984, 1.7287, 0.2386, 0.2984, -1.8711, 0.2386, 0.2984, 1.7287, 0.2806, 0.276, 1.7287, 0.2806, 0.276, -1.8711, 0.2386, 0.2984, -1.8711, 0.2806, 0.276, 1.7287, 0.2806, 0.276, -1.8711, 0.2806, 0.276, 1.7287, 0.3174, 0.2457, 1.7287, 0.3174, 0.2457, -1.8711, 0.2806, 0.276, -1.8711, 0.3174, 0.2457, 1.7287, 0.3174, 0.2457, -1.8711, 0.3174, 0.2457, 1.7287, 0.3477, 0.2089, 1.7287, 0.3477, 0.2089, -1.8711, 0.3174, 0.2457, -1.8711, 0.3477, 0.2089, 1.7287, 0.3477, 0.2089, -1.8711, 0.3477, 0.2089, 1.7287, 0.3701, 0.1669, 1.7287, 0.3701, 0.1669, -1.8711, 0.3477, 0.2089, -1.8711, 0.3701, 0.1669, 1.7287, 0.3701, 0.1669, -1.8711, 0.3701, 0.1669, 1.7287, 0.384, 0.1212, 1.7287, 0.384, 0.1212, -1.8711, 0.3701, 0.1669, -1.8711, 0.384, 0.1212, 1.7287, 0.384, 0.1212, -1.8711, 0.384, 0.1212, 1.7287, 0.3886, 0.0738, 1.7287, 0.3886, 0.0738, -1.8711, 0.384, 0.1212, -1.8711, 0.3886, 0.0738, 1.7287, 0.3886, 0.0738, -1.8711, 0.3886, 0.0738, 1.7287, 0.384, 0.0264, 1.7287, 0.384, 0.0264, -1.8711, 0.3886, 0.0738, -1.8711, 0.384, 0.0264, 1.7287, 0.384, 0.0264, -1.8711, 0.384, 0.0264, 1.7287, 0.3701, -0.0192, 1.7287, 0.3701, -0.0192, -1.8711, 0.384, 0.0264, -1.8711, 0.3701, -0.0192, 1.7287, 0.3701, -0.0192, -1.8711, 0.3701, -0.0192, 1.7287, 0.3477, -0.0612, 1.7287, 0.3477, -0.0612, -1.8711, 0.3701, -0.0192, -1.8711, 0.3477, -0.0612, 1.7287, 0.3477, -0.0612, -1.8711, 0.3477, -0.0612, 1.7287, 0.3174, -0.0981, 1.7287, 0.3174, -0.0981, -1.8711, 0.3477, -0.0612, -1.8711, 0.3174, -0.0981, 1.7287, 0.3174, -0.0981, -1.8711, 0.3174, -0.0981, 1.7287, 0.2806, -0.1283, 1.7287, 0.2806, -0.1283, -1.8711, 0.3174, -0.0981, -1.8711, 0.2806, -0.1283, 1.7287, 0.2806, -0.1283, -1.8711, 0.2806, -0.1283, 1.7287, 0.2386, -0.1508, 1.7287, 0.2386, -0.1508, -1.8711, 0.2806, -0.1283, -1.8711, 0.2386, -0.1508, 1.7287, 0.1455, -0.1693, 1.7287, 0.0981, -0.1646, 1.7287, 0.193, -0.1646, 1.7287, 0.193, -0.1646, 1.7287, 0.0981, -0.1646, 1.7287, 0.2386, -0.1508, 1.7287, 0.2386, -0.1508, 1.7287, 0.0981, -0.1646, 1.7287, 0.2806, -0.1283, 1.7287, 0.2806, -0.1283, 1.7287, 0.0981, -0.1646, 1.7287, 0.3174, -0.0981, 1.7287, 0.3174, -0.0981, 1.7287, 0.0981, -0.1646, 1.7287, 0.3477, -0.0612, 1.7287, 0.3477, -0.0612, 1.7287, 0.0981, -0.1646, 1.7287, 0.3701, -0.0192, 1.7287, 0.3701, -0.0192, 1.7287, 0.0981, -0.1646, 1.7287, 0.384, 0.0264, 1.7287, 0.384, 0.0264, 1.7287, 0.0981, -0.1646, 1.7287, 0.3886, 0.0738, 1.7287, 0.3886, 0.0738, 1.7287, 0.0981, -0.1646, 1.7287, 0.384, 0.1212, 1.7287, 0.384, 0.1212, 1.7287, 0.0981, -0.1646, 1.7287, 0.3701, 0.1669, 1.7287, 0.3701, 0.1669, 1.7287, 0.0981, -0.1646, 1.7287, 0.3477, 0.2089, 1.7287, 0.3477, 0.2089, 1.7287, 0.0981, -0.1646, 1.7287, 0.3174, 0.2457, 1.7287, 0.3174, 0.2457, 1.7287, 0.0981, -0.1646, 1.7287, 0.2806, 0.276, 1.7287, 0.2806, 0.276, 1.7287, 0.0981, -0.1646, 1.7287, 0.2386, 0.2984, 1.7287, 0.2386, 0.2984, 1.7287, 0.0981, -0.1646, 1.7287, 0.193, 0.3123, 1.7287, 0.193, 0.3123, 1.7287, 0.0981, -0.1646, 1.7287, 0.1455, 0.3169, 1.7287, 0.1455, 0.3169, 1.7287, 0.0981, -0.1646, 1.7287, 0.0981, 0.3123, 1.7287, 0.0981, 0.3123, 1.7287, 0.0981, -0.1646, 1.7287, 0.0525, 0.2984, 1.7287, 0.0525, 0.2984, 1.7287, 0.0981, -0.1646, 1.7287, 0.0105, 0.276, 1.7287, 0.0105, 0.276, 1.7287, 0.0981, -0.1646, 1.7287, -0.0264, 0.2457, 1.7287, -0.0264, 0.2457, 1.7287, 0.0981, -0.1646, 1.7287, -0.0566, 0.2089, 1.7287, -0.0566, 0.2089, 1.7287, 0.0981, -0.1646, 1.7287, -0.0791, 0.1669, 1.7287, -0.0791, 0.1669, 1.7287, 0.0981, -0.1646, 1.7287, -0.0929, 0.1212, 1.7287, -0.0929, 0.1212, 1.7287, 0.0981, -0.1646, 1.7287, -0.0976, 0.0738, 1.7287, -0.0976, 0.0738, 1.7287, 0.0981, -0.1646, 1.7287, -0.0929, 0.0264, 1.7287, -0.0929, 0.0264, 1.7287, 0.0981, -0.1646, 1.7287, -0.0791, -0.0192, 1.7287, -0.0791, -0.0192, 1.7287, 0.0981, -0.1646, 1.7287, -0.0566, -0.0612, 1.7287, -0.0566, -0.0612, 1.7287, 0.0981, -0.1646, 1.7287, -0.0264, -0.0981, 1.7287, -0.0264, -0.0981, 1.7287, 0.0981, -0.1646, 1.7287, 0.0105, -0.1283, 1.7287, 0.0105, -0.1283, 1.7287, 0.0981, -0.1646, 1.7287, 0.0525, -0.1508, 1.7287, 0.2386, -0.1508, -1.8711, 0.2386, -0.1508, 1.7287, 0.193, -0.1646, 1.7287, 0.193, -0.1646, -1.8711, 0.2386, -0.1508, -1.8711, 0.193, -0.1646, 1.7287, 0.193, -0.1646, -1.8711, 0.193, -0.1646, 1.7287, 0.1455, -0.1693, 1.7287, 0.1455, -0.1693, -1.8711, 0.193, -0.1646, -1.8711, 0.1455, -0.1693, -1.8711, 0.0981, -0.1646, -1.8711, 0.1455, -0.1693, -1.8711, 0.0525, -0.1508, -1.8711, 0.0525, -0.1508, -1.8711, 0.1455, -0.1693, -1.8711, 0.0105, -0.1283, -1.8711, 0.0105, -0.1283, -1.8711, 0.1455, -0.1693, -1.8711, -0.0264, -0.0981, -1.8711, -0.0264, -0.0981, -1.8711, 0.1455, -0.1693, -1.8711, -0.0566, -0.0612, -1.8711, -0.0566, -0.0612, -1.8711, 0.1455, -0.1693, -1.8711, -0.0791, -0.0192, -1.8711, -0.0791, -0.0192, -1.8711, 0.1455, -0.1693, -1.8711, -0.0929, 0.0264, -1.8711, -0.0929, 0.0264, -1.8711, 0.1455, -0.1693, -1.8711, -0.0976, 0.0738, -1.8711, -0.0976, 0.0738, -1.8711, 0.1455, -0.1693, -1.8711, -0.0929, 0.1212, -1.8711, -0.0929, 0.1212, -1.8711, 0.1455, -0.1693, -1.8711, -0.0791, 0.1669, -1.8711, -0.0791, 0.1669, -1.8711, 0.1455, -0.1693, -1.8711, -0.0566, 0.2089, -1.8711, -0.0566, 0.2089, -1.8711, 0.1455, -0.1693, -1.8711, -0.0264, 0.2457, -1.8711, -0.0264, 0.2457, -1.8711, 0.1455, -0.1693, -1.8711, 0.0105, 0.276, -1.8711, 0.0105, 0.276, -1.8711, 0.1455, -0.1693, -1.8711, 0.0525, 0.2984, -1.8711, 0.0525, 0.2984, -1.8711, 0.1455, -0.1693, -1.8711, 0.0981, 0.3123, -1.8711, 0.0981, 0.3123, -1.8711, 0.1455, -0.1693, -1.8711, 0.1455, 0.3169, -1.8711, 0.1455, 0.3169, -1.8711, 0.1455, -0.1693, -1.8711, 0.193, 0.3123, -1.8711, 0.193, 0.3123, -1.8711, 0.1455, -0.1693, -1.8711, 0.2386, 0.2984, -1.8711, 0.2386, 0.2984, -1.8711, 0.1455, -0.1693, -1.8711, 0.2806, 0.276, -1.8711, 0.2806, 0.276, -1.8711, 0.1455, -0.1693, -1.8711, 0.3174, 0.2457, -1.8711, 0.3174, 0.2457, -1.8711, 0.1455, -0.1693, -1.8711, 0.3477, 0.2089, -1.8711, 0.3477, 0.2089, -1.8711, 0.1455, -0.1693, -1.8711, 0.3701, 0.1669, -1.8711, 0.3701, 0.1669, -1.8711, 0.1455, -0.1693, -1.8711, 0.384, 0.1212, -1.8711, 0.384, 0.1212, -1.8711, 0.1455, -0.1693, -1.8711, 0.3886, 0.0738, -1.8711, 0.3886, 0.0738, -1.8711, 0.1455, -0.1693, -1.8711, 0.384, 0.0264, -1.8711, 0.384, 0.0264, -1.8711, 0.1455, -0.1693, -1.8711, 0.3701, -0.0192, -1.8711, 0.3701, -0.0192, -1.8711, 0.1455, -0.1693, -1.8711, 0.3477, -0.0612, -1.8711, 0.3477, -0.0612, -1.8711, 0.1455, -0.1693, -1.8711, 0.3174, -0.0981, -1.8711, 0.3174, -0.0981, -1.8711, 0.1455, -0.1693, -1.8711, 0.2806, -0.1283, -1.8711, 0.2806, -0.1283, -1.8711, 0.1455, -0.1693, -1.8711, 0.2386, -0.1508, -1.8711, 0.2386, -0.1508, -1.8711, 0.1455, -0.1693, -1.8711, 0.193, -0.1646, 1.7287, 0.1455, -1.3311, -1.8711, 0.1455, -1.3311, 1.7287, 0.0981, -1.3265, 1.7287, 0.0981, -1.3265, -1.8711, 0.1455, -1.3311, -1.8711, 0.0981, -1.3265, 1.7287, 0.0981, -1.3265, -1.8711, 0.0981, -1.3265, 1.7287, 0.0525, -1.3126, 1.7287, 0.0525, -1.3126, -1.8711, 0.0981, -1.3265, -1.8711, 0.0525, -1.3126, 1.7287, 0.0525, -1.3126, -1.8711, 0.0525, -1.3126, 1.7287, 0.0105, -1.2902, 1.7287, 0.0105, -1.2902, -1.8711, 0.0525, -1.3126, -1.8711, 0.0105, -1.2902, 1.7287, 0.0105, -1.2902, -1.8711, 0.0105, -1.2902, 1.7287, -0.0264, -1.2599, 1.7287, -0.0264, -1.2599, -1.8711, 0.0105, -1.2902, -1.8711, -0.0264, -1.2599, 1.7287, -0.0264, -1.2599, -1.8711, -0.0264, -1.2599, 1.7287, -0.0566, -1.2231, 1.7287, -0.0566, -1.2231, -1.8711, -0.0264, -1.2599, -1.8711, -0.0566, -1.2231, 1.7287, -0.0566, -1.2231, -1.8711, -0.0566, -1.2231, 1.7287, -0.0791, -1.1811, 1.7287, -0.0791, -1.1811, -1.8711, -0.0566, -1.2231, -1.8711, -0.0791, -1.1811, 1.7287, -0.0791, -1.1811, -1.8711, -0.0791, -1.1811, 1.7287, -0.0929, -1.1355, 1.7287, -0.0929, -1.1355, -1.8711, -0.0791, -1.1811, -1.8711, -0.0929, -1.1355, 1.7287, -0.0929, -1.1355, -1.8711, -0.0929, -1.1355, 1.7287, -0.0976, -1.088, 1.7287, -0.0976, -1.088, -1.8711, -0.0929, -1.1355, -1.8711, -0.0976, -1.088, 1.7287, -0.0976, -1.088, -1.8711, -0.0976, -1.088, 1.7287, -0.0929, -1.0406, 1.7287, -0.0929, -1.0406, -1.8711, -0.0976, -1.088, -1.8711, -0.0929, -1.0406, 1.7287, -0.0929, -1.0406, -1.8711, -0.0929, -1.0406, 1.7287, -0.0791, -0.995, 1.7287, -0.0791, -0.995, -1.8711, -0.0929, -1.0406, -1.8711, -0.0791, -0.995, 1.7287, -0.0791, -0.995, -1.8711, -0.0791, -0.995, 1.7287, -0.0566, -0.953, 1.7287, -0.0566, -0.953, -1.8711, -0.0791, -0.995, -1.8711, -0.0566, -0.953, 1.7287, -0.0566, -0.953, -1.8711, -0.0566, -0.953, 1.7287, -0.0264, -0.9161, 1.7287, -0.0264, -0.9161, -1.8711, -0.0566, -0.953, -1.8711, -0.0264, -0.9161, 1.7287, -0.0264, -0.9161, -1.8711, -0.0264, -0.9161, 1.7287, 0.0105, -0.8859, 1.7287, 0.0105, -0.8859, -1.8711, -0.0264, -0.9161, -1.8711, 0.0105, -0.8859, 1.7287, 0.0105, -0.8859, -1.8711, 0.0105, -0.8859, 1.7287, 0.0525, -0.8634, 1.7287, 0.0525, -0.8634, -1.8711, 0.0105, -0.8859, -1.8711, 0.0525, -0.8634, 1.7287, 0.0525, -0.8634, -1.8711, 0.0525, -0.8634, 1.7287, 0.0981, -0.8496, 1.7287, 0.0981, -0.8496, -1.8711, 0.0525, -0.8634, -1.8711, 0.0981, -0.8496, 1.7287, 0.0981, -0.8496, -1.8711, 0.0981, -0.8496, 1.7287, 0.1455, -0.8449, 1.7287, 0.1455, -0.8449, -1.8711, 0.0981, -0.8496, -1.8711, 0.1455, -0.8449, 1.7287, 0.1455, -0.8449, -1.8711, 0.1455, -0.8449, 1.7287, 0.193, -0.8496, 1.7287, 0.193, -0.8496, -1.8711, 0.1455, -0.8449, -1.8711, 0.193, -0.8496, 1.7287, 0.193, -0.8496, -1.8711, 0.193, -0.8496, 1.7287, 0.2386, -0.8634, 1.7287, 0.2386, -0.8634, -1.8711, 0.193, -0.8496, -1.8711, 0.2386, -0.8634, 1.7287, 0.2386, -0.8634, -1.8711, 0.2386, -0.8634, 1.7287, 0.2806, -0.8859, 1.7287, 0.2806, -0.8859, -1.8711, 0.2386, -0.8634, -1.8711, 0.2806, -0.8859, 1.7287, 0.2806, -0.8859, -1.8711, 0.2806, -0.8859, 1.7287, 0.3174, -0.9161, 1.7287, 0.3174, -0.9161, -1.8711, 0.2806, -0.8859, -1.8711, 0.3174, -0.9161, 1.7287, 0.3174, -0.9161, -1.8711, 0.3174, -0.9161, 1.7287, 0.3477, -0.953, 1.7287, 0.3477, -0.953, -1.8711, 0.3174, -0.9161, -1.8711, 0.3477, -0.953, 1.7287, 0.3477, -0.953, -1.8711, 0.3477, -0.953, 1.7287, 0.3701, -0.995, 1.7287, 0.3701, -0.995, -1.8711, 0.3477, -0.953, -1.8711, 0.3701, -0.995, 1.7287, 0.3701, -0.995, -1.8711, 0.3701, -0.995, 1.7287, 0.384, -1.0406, 1.7287, 0.384, -1.0406, -1.8711, 0.3701, -0.995, -1.8711, 0.384, -1.0406, 1.7287, 0.384, -1.0406, -1.8711, 0.384, -1.0406, 1.7287, 0.3886, -1.088, 1.7287, 0.3886, -1.088, -1.8711, 0.384, -1.0406, -1.8711, 0.3886, -1.088, 1.7287, 0.3886, -1.088, -1.8711, 0.3886, -1.088, 1.7287, 0.384, -1.1355, 1.7287, 0.384, -1.1355, -1.8711, 0.3886, -1.088, -1.8711, 0.384, -1.1355, 1.7287, 0.384, -1.1355, -1.8711, 0.384, -1.1355, 1.7287, 0.3701, -1.1811, 1.7287, 0.3701, -1.1811, -1.8711, 0.384, -1.1355, -1.8711, 0.3701, -1.1811, 1.7287, 0.3701, -1.1811, -1.8711, 0.3701, -1.1811, 1.7287, 0.3477, -1.2231, 1.7287, 0.3477, -1.2231, -1.8711, 0.3701, -1.1811, -1.8711, 0.3477, -1.2231, 1.7287, 0.3477, -1.2231, -1.8711, 0.3477, -1.2231, 1.7287, 0.3174, -1.2599, 1.7287, 0.3174, -1.2599, -1.8711, 0.3477, -1.2231, -1.8711, 0.3174, -1.2599, 1.7287, 0.3174, -1.2599, -1.8711, 0.3174, -1.2599, 1.7287, 0.2806, -1.2902, 1.7287, 0.2806, -1.2902, -1.8711, 0.3174, -1.2599, -1.8711, 0.2806, -1.2902, 1.7287, 0.2806, -1.2902, -1.8711, 0.2806, -1.2902, 1.7287, 0.2386, -1.3126, 1.7287, 0.2386, -1.3126, -1.8711, 0.2806, -1.2902, -1.8711, 0.2386, -1.3126, 1.7287, 0.1455, -1.3311, 1.7287, 0.0981, -1.3265, 1.7287, 0.193, -1.3265, 1.7287, 0.193, -1.3265, 1.7287, 0.0981, -1.3265, 1.7287, 0.2386, -1.3126, 1.7287, 0.2386, -1.3126, 1.7287, 0.0981, -1.3265, 1.7287, 0.2806, -1.2902, 1.7287, 0.2806, -1.2902, 1.7287, 0.0981, -1.3265, 1.7287, 0.3174, -1.2599, 1.7287, 0.3174, -1.2599, 1.7287, 0.0981, -1.3265, 1.7287, 0.3477, -1.2231, 1.7287, 0.3477, -1.2231, 1.7287, 0.0981, -1.3265, 1.7287, 0.3701, -1.1811, 1.7287, 0.3701, -1.1811, 1.7287, 0.0981, -1.3265, 1.7287, 0.384, -1.1355, 1.7287, 0.384, -1.1355, 1.7287, 0.0981, -1.3265, 1.7287, 0.3886, -1.088, 1.7287, 0.3886, -1.088, 1.7287, 0.0981, -1.3265, 1.7287, 0.384, -1.0406, 1.7287, 0.384, -1.0406, 1.7287, 0.0981, -1.3265, 1.7287, 0.3701, -0.995, 1.7287, 0.3701, -0.995, 1.7287, 0.0981, -1.3265, 1.7287, 0.3477, -0.953, 1.7287, 0.3477, -0.953, 1.7287, 0.0981, -1.3265, 1.7287, 0.3174, -0.9161, 1.7287, 0.3174, -0.9161, 1.7287, 0.0981, -1.3265, 1.7287, 0.2806, -0.8859, 1.7287, 0.2806, -0.8859, 1.7287, 0.0981, -1.3265, 1.7287, 0.2386, -0.8634, 1.7287, 0.2386, -0.8634, 1.7287, 0.0981, -1.3265, 1.7287, 0.193, -0.8496, 1.7287, 0.193, -0.8496, 1.7287, 0.0981, -1.3265, 1.7287, 0.1455, -0.8449, 1.7287, 0.1455, -0.8449, 1.7287, 0.0981, -1.3265, 1.7287, 0.0981, -0.8496, 1.7287, 0.0981, -0.8496, 1.7287, 0.0981, -1.3265, 1.7287, 0.0525, -0.8634, 1.7287, 0.0525, -0.8634, 1.7287, 0.0981, -1.3265, 1.7287, 0.0105, -0.8859, 1.7287, 0.0105, -0.8859, 1.7287, 0.0981, -1.3265, 1.7287, -0.0264, -0.9161, 1.7287, -0.0264, -0.9161, 1.7287, 0.0981, -1.3265, 1.7287, -0.0566, -0.953, 1.7287, -0.0566, -0.953, 1.7287, 0.0981, -1.3265, 1.7287, -0.0791, -0.995, 1.7287, -0.0791, -0.995, 1.7287, 0.0981, -1.3265, 1.7287, -0.0929, -1.0406, 1.7287, -0.0929, -1.0406, 1.7287, 0.0981, -1.3265, 1.7287, -0.0976, -1.088, 1.7287, -0.0976, -1.088, 1.7287, 0.0981, -1.3265, 1.7287, -0.0929, -1.1355, 1.7287, -0.0929, -1.1355, 1.7287, 0.0981, -1.3265, 1.7287, -0.0791, -1.1811, 1.7287, -0.0791, -1.1811, 1.7287, 0.0981, -1.3265, 1.7287, -0.0566, -1.2231, 1.7287, -0.0566, -1.2231, 1.7287, 0.0981, -1.3265, 1.7287, -0.0264, -1.2599, 1.7287, -0.0264, -1.2599, 1.7287, 0.0981, -1.3265, 1.7287, 0.0105, -1.2902, 1.7287, 0.0105, -1.2902, 1.7287, 0.0981, -1.3265, 1.7287, 0.0525, -1.3126, 1.7287, 0.2386, -1.3126, -1.8711, 0.2386, -1.3126, 1.7287, 0.193, -1.3265, 1.7287, 0.193, -1.3265, -1.8711, 0.2386, -1.3126, -1.8711, 0.193, -1.3265, 1.7287, 0.193, -1.3265, -1.8711, 0.193, -1.3265, 1.7287, 0.1455, -1.3311, 1.7287, 0.1455, -1.3311, -1.8711, 0.193, -1.3265, -1.8711, 0.1455, -1.3311, -1.8711, 0.0981, -1.3265, -1.8711, 0.1455, -1.3311, -1.8711, 0.0525, -1.3126, -1.8711, 0.0525, -1.3126, -1.8711, 0.1455, -1.3311, -1.8711, 0.0105, -1.2902, -1.8711, 0.0105, -1.2902, -1.8711, 0.1455, -1.3311, -1.8711, -0.0264, -1.2599, -1.8711, -0.0264, -1.2599, -1.8711, 0.1455, -1.3311, -1.8711, -0.0566, -1.2231, -1.8711, -0.0566, -1.2231, -1.8711, 0.1455, -1.3311, -1.8711, -0.0791, -1.1811, -1.8711, -0.0791, -1.1811, -1.8711, 0.1455, -1.3311, -1.8711, -0.0929, -1.1355, -1.8711, -0.0929, -1.1355, -1.8711, 0.1455, -1.3311, -1.8711, -0.0976, -1.088, -1.8711, -0.0976, -1.088, -1.8711, 0.1455, -1.3311, -1.8711, -0.0929, -1.0406, -1.8711, -0.0929, -1.0406, -1.8711, 0.1455, -1.3311, -1.8711, -0.0791, -0.995, -1.8711, -0.0791, -0.995, -1.8711, 0.1455, -1.3311, -1.8711, -0.0566, -0.953, -1.8711, -0.0566, -0.953, -1.8711, 0.1455, -1.3311, -1.8711, -0.0264, -0.9161, -1.8711, -0.0264, -0.9161, -1.8711, 0.1455, -1.3311, -1.8711, 0.0105, -0.8859, -1.8711, 0.0105, -0.8859, -1.8711, 0.1455, -1.3311, -1.8711, 0.0525, -0.8634, -1.8711, 0.0525, -0.8634, -1.8711, 0.1455, -1.3311, -1.8711, 0.0981, -0.8496, -1.8711, 0.0981, -0.8496, -1.8711, 0.1455, -1.3311, -1.8711, 0.1455, -0.8449, -1.8711, 0.1455, -0.8449, -1.8711, 0.1455, -1.3311, -1.8711, 0.193, -0.8496, -1.8711, 0.193, -0.8496, -1.8711, 0.1455, -1.3311, -1.8711, 0.2386, -0.8634, -1.8711, 0.2386, -0.8634, -1.8711, 0.1455, -1.3311, -1.8711, 0.2806, -0.8859, -1.8711, 0.2806, -0.8859, -1.8711, 0.1455, -1.3311, -1.8711, 0.3174, -0.9161, -1.8711, 0.3174, -0.9161, -1.8711, 0.1455, -1.3311, -1.8711, 0.3477, -0.953, -1.8711, 0.3477, -0.953, -1.8711, 0.1455, -1.3311, -1.8711, 0.3701, -0.995, -1.8711, 0.3701, -0.995, -1.8711, 0.1455, -1.3311, -1.8711, 0.384, -1.0406, -1.8711, 0.384, -1.0406, -1.8711, 0.1455, -1.3311, -1.8711, 0.3886, -1.088, -1.8711, 0.3886, -1.088, -1.8711, 0.1455, -1.3311, -1.8711, 0.384, -1.1355, -1.8711, 0.384, -1.1355, -1.8711, 0.1455, -1.3311, -1.8711, 0.3701, -1.1811, -1.8711, 0.3701, -1.1811, -1.8711, 0.1455, -1.3311, -1.8711, 0.3477, -1.2231, -1.8711, 0.3477, -1.2231, -1.8711, 0.1455, -1.3311, -1.8711, 0.3174, -1.2599, -1.8711, 0.3174, -1.2599, -1.8711, 0.1455, -1.3311, -1.8711, 0.2806, -1.2902, -1.8711, 0.2806, -1.2902, -1.8711, 0.1455, -1.3311, -1.8711, 0.2386, -1.3126, -1.8711, 0.2386, -1.3126, -1.8711, 0.1455, -1.3311, -1.8711, 0.193, -1.3265, 1.7287, 0.1455, -2.493, -1.8711, 0.1455, -2.493, 1.7287, 0.0981, -2.4883, 1.7287, 0.0981, -2.4883, -1.8711, 0.1455, -2.493, -1.8711, 0.0981, -2.4883, 1.7287, 0.0981, -2.4883, -1.8711, 0.0981, -2.4883, 1.7287, 0.0525, -2.4745, 1.7287, 0.0525, -2.4745, -1.8711, 0.0981, -2.4883, -1.8711, 0.0525, -2.4745, 1.7287, 0.0525, -2.4745, -1.8711, 0.0525, -2.4745, 1.7287, 0.0105, -2.452, 1.7287, 0.0105, -2.452, -1.8711, 0.0525, -2.4745, -1.8711, 0.0105, -2.452, 1.7287, 0.0105, -2.452, -1.8711, 0.0105, -2.452, 1.7287, -0.0264, -2.4218, 1.7287, -0.0264, -2.4218, -1.8711, 0.0105, -2.452, -1.8711, -0.0264, -2.4218, 1.7287, -0.0264, -2.4218, -1.8711, -0.0264, -2.4218, 1.7287, -0.0566, -2.3849, 1.7287, -0.0566, -2.3849, -1.8711, -0.0264, -2.4218, -1.8711, -0.0566, -2.3849, 1.7287, -0.0566, -2.3849, -1.8711, -0.0566, -2.3849, 1.7287, -0.0791, -2.3429, 1.7287, -0.0791, -2.3429, -1.8711, -0.0566, -2.3849, -1.8711, -0.0791, -2.3429, 1.7287, -0.0791, -2.3429, -1.8711, -0.0791, -2.3429, 1.7287, -0.0929, -2.2973, 1.7287, -0.0929, -2.2973, -1.8711, -0.0791, -2.3429, -1.8711, -0.0929, -2.2973, 1.7287, -0.0929, -2.2973, -1.8711, -0.0929, -2.2973, 1.7287, -0.0976, -2.2499, 1.7287, -0.0976, -2.2499, -1.8711, -0.0929, -2.2973, -1.8711, -0.0976, -2.2499, 1.7287, -0.0976, -2.2499, -1.8711, -0.0976, -2.2499, 1.7287, -0.0929, -2.2025, 1.7287, -0.0929, -2.2025, -1.8711, -0.0976, -2.2499, -1.8711, -0.0929, -2.2025, 1.7287, -0.0929, -2.2025, -1.8711, -0.0929, -2.2025, 1.7287, -0.0791, -2.1569, 1.7287, -0.0791, -2.1569, -1.8711, -0.0929, -2.2025, -1.8711, -0.0791, -2.1569, 1.7287, -0.0791, -2.1569, -1.8711, -0.0791, -2.1569, 1.7287, -0.0566, -2.1148, 1.7287, -0.0566, -2.1148, -1.8711, -0.0791, -2.1569, -1.8711, -0.0566, -2.1148, 1.7287, -0.0566, -2.1148, -1.8711, -0.0566, -2.1148, 1.7287, -0.0264, -2.078, 1.7287, -0.0264, -2.078, -1.8711, -0.0566, -2.1148, -1.8711, -0.0264, -2.078, 1.7287, -0.0264, -2.078, -1.8711, -0.0264, -2.078, 1.7287, 0.0105, -2.0477, 1.7287, 0.0105, -2.0477, -1.8711, -0.0264, -2.078, -1.8711, 0.0105, -2.0477, 1.7287, 0.0105, -2.0477, -1.8711, 0.0105, -2.0477, 1.7287, 0.0525, -2.0253, 1.7287, 0.0525, -2.0253, -1.8711, 0.0105, -2.0477, -1.8711, 0.0525, -2.0253, 1.7287, 0.0525, -2.0253, -1.8711, 0.0525, -2.0253, 1.7287, 0.0981, -2.0114, 1.7287, 0.0981, -2.0114, -1.8711, 0.0525, -2.0253, -1.8711, 0.0981, -2.0114, 1.7287, 0.0981, -2.0114, -1.8711, 0.0981, -2.0114, 1.7287, 0.1455, -2.0068, 1.7287, 0.1455, -2.0068, -1.8711, 0.0981, -2.0114, -1.8711, 0.1455, -2.0068, 1.7287, 0.1455, -2.0068, -1.8711, 0.1455, -2.0068, 1.7287, 0.193, -2.0114, 1.7287, 0.193, -2.0114, -1.8711, 0.1455, -2.0068, -1.8711, 0.193, -2.0114, 1.7287, 0.193, -2.0114, -1.8711, 0.193, -2.0114, 1.7287, 0.2386, -2.0253, 1.7287, 0.2386, -2.0253, -1.8711, 0.193, -2.0114, -1.8711, 0.2386, -2.0253, 1.7287, 0.2386, -2.0253, -1.8711, 0.2386, -2.0253, 1.7287, 0.2806, -2.0477, 1.7287, 0.2806, -2.0477, -1.8711, 0.2386, -2.0253, -1.8711, 0.2806, -2.0477, 1.7287, 0.2806, -2.0477, -1.8711, 0.2806, -2.0477, 1.7287, 0.3174, -2.078, 1.7287, 0.3174, -2.078, -1.8711, 0.2806, -2.0477, -1.8711, 0.3174, -2.078, 1.7287, 0.3174, -2.078, -1.8711, 0.3174, -2.078, 1.7287, 0.3477, -2.1148, 1.7287, 0.3477, -2.1148, -1.8711, 0.3174, -2.078, -1.8711, 0.3477, -2.1148, 1.7287, 0.3477, -2.1148, -1.8711, 0.3477, -2.1148, 1.7287, 0.3701, -2.1569, 1.7287, 0.3701, -2.1569, -1.8711, 0.3477, -2.1148, -1.8711, 0.3701, -2.1569, 1.7287, 0.3701, -2.1569, -1.8711, 0.3701, -2.1569, 1.7287, 0.384, -2.2025, 1.7287, 0.384, -2.2025, -1.8711, 0.3701, -2.1569, -1.8711, 0.384, -2.2025, 1.7287, 0.384, -2.2025, -1.8711, 0.384, -2.2025, 1.7287, 0.3886, -2.2499, 1.7287, 0.3886, -2.2499, -1.8711, 0.384, -2.2025, -1.8711, 0.3886, -2.2499, 1.7287, 0.3886, -2.2499, -1.8711, 0.3886, -2.2499, 1.7287, 0.384, -2.2973, 1.7287, 0.384, -2.2973, -1.8711, 0.3886, -2.2499, -1.8711, 0.384, -2.2973, 1.7287, 0.384, -2.2973, -1.8711, 0.384, -2.2973, 1.7287, 0.3701, -2.3429, 1.7287, 0.3701, -2.3429, -1.8711, 0.384, -2.2973, -1.8711, 0.3701, -2.3429, 1.7287, 0.3701, -2.3429, -1.8711, 0.3701, -2.3429, 1.7287, 0.3477, -2.3849, 1.7287, 0.3477, -2.3849, -1.8711, 0.3701, -2.3429, -1.8711, 0.3477, -2.3849, 1.7287, 0.3477, -2.3849, -1.8711, 0.3477, -2.3849, 1.7287, 0.3174, -2.4218, 1.7287, 0.3174, -2.4218, -1.8711, 0.3477, -2.3849, -1.8711, 0.3174, -2.4218, 1.7287, 0.3174, -2.4218, -1.8711, 0.3174, -2.4218, 1.7287, 0.2806, -2.452, 1.7287, 0.2806, -2.452, -1.8711, 0.3174, -2.4218, -1.8711, 0.2806, -2.452, 1.7287, 0.2806, -2.452, -1.8711, 0.2806, -2.452, 1.7287, 0.2386, -2.4745, 1.7287, 0.2386, -2.4745, -1.8711, 0.2806, -2.452, -1.8711, 0.2386, -2.4745, 1.7287, 0.1455, -2.493, 1.7287, 0.0981, -2.4883, 1.7287, 0.193, -2.4883, 1.7287, 0.193, -2.4883, 1.7287, 0.0981, -2.4883, 1.7287, 0.2386, -2.4745, 1.7287, 0.2386, -2.4745, 1.7287, 0.0981, -2.4883, 1.7287, 0.2806, -2.452, 1.7287, 0.2806, -2.452, 1.7287, 0.0981, -2.4883, 1.7287, 0.3174, -2.4218, 1.7287, 0.3174, -2.4218, 1.7287, 0.0981, -2.4883, 1.7287, 0.3477, -2.3849, 1.7287, 0.3477, -2.3849, 1.7287, 0.0981, -2.4883, 1.7287, 0.3701, -2.3429, 1.7287, 0.3701, -2.3429, 1.7287, 0.0981, -2.4883, 1.7287, 0.384, -2.2973, 1.7287, 0.384, -2.2973, 1.7287, 0.0981, -2.4883, 1.7287, 0.3886, -2.2499, 1.7287, 0.3886, -2.2499, 1.7287, 0.0981, -2.4883, 1.7287, 0.384, -2.2025, 1.7287, 0.384, -2.2025, 1.7287, 0.0981, -2.4883, 1.7287, 0.3701, -2.1569, 1.7287, 0.3701, -2.1569, 1.7287, 0.0981, -2.4883, 1.7287, 0.3477, -2.1148, 1.7287, 0.3477, -2.1148, 1.7287, 0.0981, -2.4883, 1.7287, 0.3174, -2.078, 1.7287, 0.3174, -2.078, 1.7287, 0.0981, -2.4883, 1.7287, 0.2806, -2.0477, 1.7287, 0.2806, -2.0477, 1.7287, 0.0981, -2.4883, 1.7287, 0.2386, -2.0253, 1.7287, 0.2386, -2.0253, 1.7287, 0.0981, -2.4883, 1.7287, 0.193, -2.0114, 1.7287, 0.193, -2.0114, 1.7287, 0.0981, -2.4883, 1.7287, 0.1455, -2.0068, 1.7287, 0.1455, -2.0068, 1.7287, 0.0981, -2.4883, 1.7287, 0.0981, -2.0114, 1.7287, 0.0981, -2.0114, 1.7287, 0.0981, -2.4883, 1.7287, 0.0525, -2.0253, 1.7287, 0.0525, -2.0253, 1.7287, 0.0981, -2.4883, 1.7287, 0.0105, -2.0477, 1.7287, 0.0105, -2.0477, 1.7287, 0.0981, -2.4883, 1.7287, -0.0264, -2.078, 1.7287, -0.0264, -2.078, 1.7287, 0.0981, -2.4883, 1.7287, -0.0566, -2.1148, 1.7287, -0.0566, -2.1148, 1.7287, 0.0981, -2.4883, 1.7287, -0.0791, -2.1569, 1.7287, -0.0791, -2.1569, 1.7287, 0.0981, -2.4883, 1.7287, -0.0929, -2.2025, 1.7287, -0.0929, -2.2025, 1.7287, 0.0981, -2.4883, 1.7287, -0.0976, -2.2499, 1.7287, -0.0976, -2.2499, 1.7287, 0.0981, -2.4883, 1.7287, -0.0929, -2.2973, 1.7287, -0.0929, -2.2973, 1.7287, 0.0981, -2.4883, 1.7287, -0.0791, -2.3429, 1.7287, -0.0791, -2.3429, 1.7287, 0.0981, -2.4883, 1.7287, -0.0566, -2.3849, 1.7287, -0.0566, -2.3849, 1.7287, 0.0981, -2.4883, 1.7287, -0.0264, -2.4218, 1.7287, -0.0264, -2.4218, 1.7287, 0.0981, -2.4883, 1.7287, 0.0105, -2.452, 1.7287, 0.0105, -2.452, 1.7287, 0.0981, -2.4883, 1.7287, 0.0525, -2.4745, 1.7287, 0.2386, -2.4745, -1.8711, 0.2386, -2.4745, 1.7287, 0.193, -2.4883, 1.7287, 0.193, -2.4883, -1.8711, 0.2386, -2.4745, -1.8711, 0.193, -2.4883, 1.7287, 0.193, -2.4883, -1.8711, 0.193, -2.4883, 1.7287, 0.1455, -2.493, 1.7287, 0.1455, -2.493, -1.8711, 0.193, -2.4883, -1.8711, 0.1455, -2.493, -1.8711, 0.0981, -2.4883, -1.8711, 0.1455, -2.493, -1.8711, 0.0525, -2.4745, -1.8711, 0.0525, -2.4745, -1.8711, 0.1455, -2.493, -1.8711, 0.0105, -2.452, -1.8711, 0.0105, -2.452, -1.8711, 0.1455, -2.493, -1.8711, -0.0264, -2.4218, -1.8711, -0.0264, -2.4218, -1.8711, 0.1455, -2.493, -1.8711, -0.0566, -2.3849, -1.8711, -0.0566, -2.3849, -1.8711, 0.1455, -2.493, -1.8711, -0.0791, -2.3429, -1.8711, -0.0791, -2.3429, -1.8711, 0.1455, -2.493, -1.8711, -0.0929, -2.2973, -1.8711, -0.0929, -2.2973, -1.8711, 0.1455, -2.493, -1.8711, -0.0976, -2.2499, -1.8711, -0.0976, -2.2499, -1.8711, 0.1455, -2.493, -1.8711, -0.0929, -2.2025, -1.8711, -0.0929, -2.2025, -1.8711, 0.1455, -2.493, -1.8711, -0.0791, -2.1569, -1.8711, -0.0791, -2.1569, -1.8711, 0.1455, -2.493, -1.8711, -0.0566, -2.1148, -1.8711, -0.0566, -2.1148, -1.8711, 0.1455, -2.493, -1.8711, -0.0264, -2.078, -1.8711, -0.0264, -2.078, -1.8711, 0.1455, -2.493, -1.8711, 0.0105, -2.0477, -1.8711, 0.0105, -2.0477, -1.8711, 0.1455, -2.493, -1.8711, 0.0525, -2.0253, -1.8711, 0.0525, -2.0253, -1.8711, 0.1455, -2.493, -1.8711, 0.0981, -2.0114, -1.8711, 0.0981, -2.0114, -1.8711, 0.1455, -2.493, -1.8711, 0.1455, -2.0068, -1.8711, 0.1455, -2.0068, -1.8711, 0.1455, -2.493, -1.8711, 0.193, -2.0114, -1.8711, 0.193, -2.0114, -1.8711, 0.1455, -2.493, -1.8711, 0.2386, -2.0253, -1.8711, 0.2386, -2.0253, -1.8711, 0.1455, -2.493, -1.8711, 0.2806, -2.0477, -1.8711, 0.2806, -2.0477, -1.8711, 0.1455, -2.493, -1.8711, 0.3174, -2.078, -1.8711, 0.3174, -2.078, -1.8711, 0.1455, -2.493, -1.8711, 0.3477, -2.1148, -1.8711, 0.3477, -2.1148, -1.8711, 0.1455, -2.493, -1.8711, 0.3701, -2.1569, -1.8711, 0.3701, -2.1569, -1.8711, 0.1455, -2.493, -1.8711, 0.384, -2.2025, -1.8711, 0.384, -2.2025, -1.8711, 0.1455, -2.493, -1.8711, 0.3886, -2.2499, -1.8711, 0.3886, -2.2499, -1.8711, 0.1455, -2.493, -1.8711, 0.384, -2.2973, -1.8711, 0.384, -2.2973, -1.8711, 0.1455, -2.493, -1.8711, 0.3701, -2.3429, -1.8711, 0.3701, -2.3429, -1.8711, 0.1455, -2.493, -1.8711, 0.3477, -2.3849, -1.8711, 0.3477, -2.3849, -1.8711, 0.1455, -2.493, -1.8711, 0.3174, -2.4218, -1.8711, 0.3174, -2.4218, -1.8711, 0.1455, -2.493, -1.8711, 0.2806, -2.452, -1.8711, 0.2806, -2.452, -1.8711, 0.1455, -2.493, -1.8711, 0.2386, -2.4745, -1.8711, 0.2386, -2.4745, -1.8711, 0.1455, -2.493, -1.8711, 0.193, -2.4883, 1.7287, 1.3074, -1.9121, -1.8711, 1.3074, -1.9121, 1.7287, 1.26, -1.9074, 1.7287, 1.26, -1.9074, -1.8711, 1.3074, -1.9121, -1.8711, 1.26, -1.9074, 1.7287, 1.26, -1.9074, -1.8711, 1.26, -1.9074, 1.7287, 1.2144, -1.8936, 1.7287, 1.2144, -1.8936, -1.8711, 1.26, -1.9074, -1.8711, 1.2144, -1.8936, 1.7287, 1.2144, -1.8936, -1.8711, 1.2144, -1.8936, 1.7287, 1.1723, -1.8711, 1.7287, 1.1723, -1.8711, -1.8711, 1.2144, -1.8936, -1.8711, 1.1723, -1.8711, 1.7287, 1.1723, -1.8711, -1.8711, 1.1723, -1.8711, 1.7287, 1.1355, -1.8409, 1.7287, 1.1355, -1.8409, -1.8711, 1.1723, -1.8711, -1.8711, 1.1355, -1.8409, 1.7287, 1.1355, -1.8409, -1.8711, 1.1355, -1.8409, 1.7287, 1.1053, -1.804, 1.7287, 1.1053, -1.804, -1.8711, 1.1355, -1.8409, -1.8711, 1.1053, -1.804, 1.7287, 1.1053, -1.804, -1.8711, 1.1053, -1.804, 1.7287, 1.0828, -1.762, 1.7287, 1.0828, -1.762, -1.8711, 1.1053, -1.804, -1.8711, 1.0828, -1.762, 1.7287, 1.0828, -1.762, -1.8711, 1.0828, -1.762, 1.7287, 1.069, -1.7164, 1.7287, 1.069, -1.7164, -1.8711, 1.0828, -1.762, -1.8711, 1.069, -1.7164, 1.7287, 1.069, -1.7164, -1.8711, 1.069, -1.7164, 1.7287, 1.0643, -1.669, 1.7287, 1.0643, -1.669, -1.8711, 1.069, -1.7164, -1.8711, 1.0643, -1.669, 1.7287, 1.0643, -1.669, -1.8711, 1.0643, -1.669, 1.7287, 1.069, -1.6215, 1.7287, 1.069, -1.6215, -1.8711, 1.0643, -1.669, -1.8711, 1.069, -1.6215, 1.7287, 1.069, -1.6215, -1.8711, 1.069, -1.6215, 1.7287, 1.0828, -1.5759, 1.7287, 1.0828, -1.5759, -1.8711, 1.069, -1.6215, -1.8711, 1.0828, -1.5759, 1.7287, 1.0828, -1.5759, -1.8711, 1.0828, -1.5759, 1.7287, 1.1053, -1.5339, 1.7287, 1.1053, -1.5339, -1.8711, 1.0828, -1.5759, -1.8711, 1.1053, -1.5339, 1.7287, 1.1053, -1.5339, -1.8711, 1.1053, -1.5339, 1.7287, 1.1355, -1.4971, 1.7287, 1.1355, -1.4971, -1.8711, 1.1053, -1.5339, -1.8711, 1.1355, -1.4971, 1.7287, 1.1355, -1.4971, -1.8711, 1.1355, -1.4971, 1.7287, 1.1723, -1.4668, 1.7287, 1.1723, -1.4668, -1.8711, 1.1355, -1.4971, -1.8711, 1.1723, -1.4668, 1.7287, 1.1723, -1.4668, -1.8711, 1.1723, -1.4668, 1.7287, 1.2144, -1.4444, 1.7287, 1.2144, -1.4444, -1.8711, 1.1723, -1.4668, -1.8711, 1.2144, -1.4444, 1.7287, 1.2144, -1.4444, -1.8711, 1.2144, -1.4444, 1.7287, 1.26, -1.4305, 1.7287, 1.26, -1.4305, -1.8711, 1.2144, -1.4444, -1.8711, 1.26, -1.4305, 1.7287, 1.26, -1.4305, -1.8711, 1.26, -1.4305, 1.7287, 1.3074, -1.4258, 1.7287, 1.3074, -1.4258, -1.8711, 1.26, -1.4305, -1.8711, 1.3074, -1.4258, 1.7287, 1.3074, -1.4258, -1.8711, 1.3074, -1.4258, 1.7287, 1.3548, -1.4305, 1.7287, 1.3548, -1.4305, -1.8711, 1.3074, -1.4258, -1.8711, 1.3548, -1.4305, 1.7287, 1.3548, -1.4305, -1.8711, 1.3548, -1.4305, 1.7287, 1.4004, -1.4444, 1.7287, 1.4004, -1.4444, -1.8711, 1.3548, -1.4305, -1.8711, 1.4004, -1.4444, 1.7287, 1.4004, -1.4444, -1.8711, 1.4004, -1.4444, 1.7287, 1.4425, -1.4668, 1.7287, 1.4425, -1.4668, -1.8711, 1.4004, -1.4444, -1.8711, 1.4425, -1.4668, 1.7287, 1.4425, -1.4668, -1.8711, 1.4425, -1.4668, 1.7287, 1.4793, -1.4971, 1.7287, 1.4793, -1.4971, -1.8711, 1.4425, -1.4668, -1.8711, 1.4793, -1.4971, 1.7287, 1.4793, -1.4971, -1.8711, 1.4793, -1.4971, 1.7287, 1.5095, -1.5339, 1.7287, 1.5095, -1.5339, -1.8711, 1.4793, -1.4971, -1.8711, 1.5095, -1.5339, 1.7287, 1.5095, -1.5339, -1.8711, 1.5095, -1.5339, 1.7287, 1.532, -1.5759, 1.7287, 1.532, -1.5759, -1.8711, 1.5095, -1.5339, -1.8711, 1.532, -1.5759, 1.7287, 1.532, -1.5759, -1.8711, 1.532, -1.5759, 1.7287, 1.5458, -1.6215, 1.7287, 1.5458, -1.6215, -1.8711, 1.532, -1.5759, -1.8711, 1.5458, -1.6215, 1.7287, 1.5458, -1.6215, -1.8711, 1.5458, -1.6215, 1.7287, 1.5505, -1.669, 1.7287, 1.5505, -1.669, -1.8711, 1.5458, -1.6215, -1.8711, 1.5505, -1.669, 1.7287, 1.5505, -1.669, -1.8711, 1.5505, -1.669, 1.7287, 1.5458, -1.7164, 1.7287, 1.5458, -1.7164, -1.8711, 1.5505, -1.669, -1.8711, 1.5458, -1.7164, 1.7287, 1.5458, -1.7164, -1.8711, 1.5458, -1.7164, 1.7287, 1.532, -1.762, 1.7287, 1.532, -1.762, -1.8711, 1.5458, -1.7164, -1.8711, 1.532, -1.762, 1.7287, 1.532, -1.762, -1.8711, 1.532, -1.762, 1.7287, 1.5095, -1.804, 1.7287, 1.5095, -1.804, -1.8711, 1.532, -1.762, -1.8711, 1.5095, -1.804, 1.7287, 1.5095, -1.804, -1.8711, 1.5095, -1.804, 1.7287, 1.4793, -1.8409, 1.7287, 1.4793, -1.8409, -1.8711, 1.5095, -1.804, -1.8711, 1.4793, -1.8409, 1.7287, 1.4793, -1.8409, -1.8711, 1.4793, -1.8409, 1.7287, 1.4425, -1.8711, 1.7287, 1.4425, -1.8711, -1.8711, 1.4793, -1.8409, -1.8711, 1.4425, -1.8711, 1.7287, 1.4425, -1.8711, -1.8711, 1.4425, -1.8711, 1.7287, 1.4004, -1.8936, 1.7287, 1.4004, -1.8936, -1.8711, 1.4425, -1.8711, -1.8711, 1.4004, -1.8936, 1.7287, 1.3074, -1.9121, 1.7287, 1.26, -1.9074, 1.7287, 1.3548, -1.9074, 1.7287, 1.3548, -1.9074, 1.7287, 1.26, -1.9074, 1.7287, 1.4004, -1.8936, 1.7287, 1.4004, -1.8936, 1.7287, 1.26, -1.9074, 1.7287, 1.4425, -1.8711, 1.7287, 1.4425, -1.8711, 1.7287, 1.26, -1.9074, 1.7287, 1.4793, -1.8409, 1.7287, 1.4793, -1.8409, 1.7287, 1.26, -1.9074, 1.7287, 1.5095, -1.804, 1.7287, 1.5095, -1.804, 1.7287, 1.26, -1.9074, 1.7287, 1.532, -1.762, 1.7287, 1.532, -1.762, 1.7287, 1.26, -1.9074, 1.7287, 1.5458, -1.7164, 1.7287, 1.5458, -1.7164, 1.7287, 1.26, -1.9074, 1.7287, 1.5505, -1.669, 1.7287, 1.5505, -1.669, 1.7287, 1.26, -1.9074, 1.7287, 1.5458, -1.6215, 1.7287, 1.5458, -1.6215, 1.7287, 1.26, -1.9074, 1.7287, 1.532, -1.5759, 1.7287, 1.532, -1.5759, 1.7287, 1.26, -1.9074, 1.7287, 1.5095, -1.5339, 1.7287, 1.5095, -1.5339, 1.7287, 1.26, -1.9074, 1.7287, 1.4793, -1.4971, 1.7287, 1.4793, -1.4971, 1.7287, 1.26, -1.9074, 1.7287, 1.4425, -1.4668, 1.7287, 1.4425, -1.4668, 1.7287, 1.26, -1.9074, 1.7287, 1.4004, -1.4444, 1.7287, 1.4004, -1.4444, 1.7287, 1.26, -1.9074, 1.7287, 1.3548, -1.4305, 1.7287, 1.3548, -1.4305, 1.7287, 1.26, -1.9074, 1.7287, 1.3074, -1.4258, 1.7287, 1.3074, -1.4258, 1.7287, 1.26, -1.9074, 1.7287, 1.26, -1.4305, 1.7287, 1.26, -1.4305, 1.7287, 1.26, -1.9074, 1.7287, 1.2144, -1.4444, 1.7287, 1.2144, -1.4444, 1.7287, 1.26, -1.9074, 1.7287, 1.1723, -1.4668, 1.7287, 1.1723, -1.4668, 1.7287, 1.26, -1.9074, 1.7287, 1.1355, -1.4971, 1.7287, 1.1355, -1.4971, 1.7287, 1.26, -1.9074, 1.7287, 1.1053, -1.5339, 1.7287, 1.1053, -1.5339, 1.7287, 1.26, -1.9074, 1.7287, 1.0828, -1.5759, 1.7287, 1.0828, -1.5759, 1.7287, 1.26, -1.9074, 1.7287, 1.069, -1.6215, 1.7287, 1.069, -1.6215, 1.7287, 1.26, -1.9074, 1.7287, 1.0643, -1.669, 1.7287, 1.0643, -1.669, 1.7287, 1.26, -1.9074, 1.7287, 1.069, -1.7164, 1.7287, 1.069, -1.7164, 1.7287, 1.26, -1.9074, 1.7287, 1.0828, -1.762, 1.7287, 1.0828, -1.762, 1.7287, 1.26, -1.9074, 1.7287, 1.1053, -1.804, 1.7287, 1.1053, -1.804, 1.7287, 1.26, -1.9074, 1.7287, 1.1355, -1.8409, 1.7287, 1.1355, -1.8409, 1.7287, 1.26, -1.9074, 1.7287, 1.1723, -1.8711, 1.7287, 1.1723, -1.8711, 1.7287, 1.26, -1.9074, 1.7287, 1.2144, -1.8936, 1.7287, 1.4004, -1.8936, -1.8711, 1.4004, -1.8936, 1.7287, 1.3548, -1.9074, 1.7287, 1.3548, -1.9074, -1.8711, 1.4004, -1.8936, -1.8711, 1.3548, -1.9074, 1.7287, 1.3548, -1.9074, -1.8711, 1.3548, -1.9074, 1.7287, 1.3074, -1.9121, 1.7287, 1.3074, -1.9121, -1.8711, 1.3548, -1.9074, -1.8711, 1.3074, -1.9121, -1.8711, 1.26, -1.9074, -1.8711, 1.3074, -1.9121, -1.8711, 1.2144, -1.8936, -1.8711, 1.2144, -1.8936, -1.8711, 1.3074, -1.9121, -1.8711, 1.1723, -1.8711, -1.8711, 1.1723, -1.8711, -1.8711, 1.3074, -1.9121, -1.8711, 1.1355, -1.8409, -1.8711, 1.1355, -1.8409, -1.8711, 1.3074, -1.9121, -1.8711, 1.1053, -1.804, -1.8711, 1.1053, -1.804, -1.8711, 1.3074, -1.9121, -1.8711, 1.0828, -1.762, -1.8711, 1.0828, -1.762, -1.8711, 1.3074, -1.9121, -1.8711, 1.069, -1.7164, -1.8711, 1.069, -1.7164, -1.8711, 1.3074, -1.9121, -1.8711, 1.0643, -1.669, -1.8711, 1.0643, -1.669, -1.8711, 1.3074, -1.9121, -1.8711, 1.069, -1.6215, -1.8711, 1.069, -1.6215, -1.8711, 1.3074, -1.9121, -1.8711, 1.0828, -1.5759, -1.8711, 1.0828, -1.5759, -1.8711, 1.3074, -1.9121, -1.8711, 1.1053, -1.5339, -1.8711, 1.1053, -1.5339, -1.8711, 1.3074, -1.9121, -1.8711, 1.1355, -1.4971, -1.8711, 1.1355, -1.4971, -1.8711, 1.3074, -1.9121, -1.8711, 1.1723, -1.4668, -1.8711, 1.1723, -1.4668, -1.8711, 1.3074, -1.9121, -1.8711, 1.2144, -1.4444, -1.8711, 1.2144, -1.4444, -1.8711, 1.3074, -1.9121, -1.8711, 1.26, -1.4305, -1.8711, 1.26, -1.4305, -1.8711, 1.3074, -1.9121, -1.8711, 1.3074, -1.4258, -1.8711, 1.3074, -1.4258, -1.8711, 1.3074, -1.9121, -1.8711, 1.3548, -1.4305, -1.8711, 1.3548, -1.4305, -1.8711, 1.3074, -1.9121, -1.8711, 1.4004, -1.4444, -1.8711, 1.4004, -1.4444, -1.8711, 1.3074, -1.9121, -1.8711, 1.4425, -1.4668, -1.8711, 1.4425, -1.4668, -1.8711, 1.3074, -1.9121, -1.8711, 1.4793, -1.4971, -1.8711, 1.4793, -1.4971, -1.8711, 1.3074, -1.9121, -1.8711, 1.5095, -1.5339, -1.8711, 1.5095, -1.5339, -1.8711, 1.3074, -1.9121, -1.8711, 1.532, -1.5759, -1.8711, 1.532, -1.5759, -1.8711, 1.3074, -1.9121, -1.8711, 1.5458, -1.6215, -1.8711, 1.5458, -1.6215, -1.8711, 1.3074, -1.9121, -1.8711, 1.5505, -1.669, -1.8711, 1.5505, -1.669, -1.8711, 1.3074, -1.9121, -1.8711, 1.5458, -1.7164, -1.8711, 1.5458, -1.7164, -1.8711, 1.3074, -1.9121, -1.8711, 1.532, -1.762, -1.8711, 1.532, -1.762, -1.8711, 1.3074, -1.9121, -1.8711, 1.5095, -1.804, -1.8711, 1.5095, -1.804, -1.8711, 1.3074, -1.9121, -1.8711, 1.4793, -1.8409, -1.8711, 1.4793, -1.8409, -1.8711, 1.3074, -1.9121, -1.8711, 1.4425, -1.8711, -1.8711, 1.4425, -1.8711, -1.8711, 1.3074, -1.9121, -1.8711, 1.4004, -1.8936, -1.8711, 1.4004, -1.8936, -1.8711, 1.3074, -1.9121, -1.8711, 1.3548, -1.9074, 1.7287, 1.3074, -0.7502, -1.8711, 1.3074, -0.7502, 1.7287, 1.26, -0.7455, 1.7287, 1.26, -0.7455, -1.8711, 1.3074, -0.7502, -1.8711, 1.26, -0.7455, 1.7287, 1.26, -0.7455, -1.8711, 1.26, -0.7455, 1.7287, 1.2144, -0.7317, 1.7287, 1.2144, -0.7317, -1.8711, 1.26, -0.7455, -1.8711, 1.2144, -0.7317, 1.7287, 1.2144, -0.7317, -1.8711, 1.2144, -0.7317, 1.7287, 1.1723, -0.7092, 1.7287, 1.1723, -0.7092, -1.8711, 1.2144, -0.7317, -1.8711, 1.1723, -0.7092, 1.7287, 1.1723, -0.7092, -1.8711, 1.1723, -0.7092, 1.7287, 1.1355, -0.679, 1.7287, 1.1355, -0.679, -1.8711, 1.1723, -0.7092, -1.8711, 1.1355, -0.679, 1.7287, 1.1355, -0.679, -1.8711, 1.1355, -0.679, 1.7287, 1.1053, -0.6422, 1.7287, 1.1053, -0.6422, -1.8711, 1.1355, -0.679, -1.8711, 1.1053, -0.6422, 1.7287, 1.1053, -0.6422, -1.8711, 1.1053, -0.6422, 1.7287, 1.0828, -0.6001, 1.7287, 1.0828, -0.6001, -1.8711, 1.1053, -0.6422, -1.8711, 1.0828, -0.6001, 1.7287, 1.0828, -0.6001, -1.8711, 1.0828, -0.6001, 1.7287, 1.069, -0.5545, 1.7287, 1.069, -0.5545, -1.8711, 1.0828, -0.6001, -1.8711, 1.069, -0.5545, 1.7287, 1.069, -0.5545, -1.8711, 1.069, -0.5545, 1.7287, 1.0643, -0.5071, 1.7287, 1.0643, -0.5071, -1.8711, 1.069, -0.5545, -1.8711, 1.0643, -0.5071, 1.7287, 1.0643, -0.5071, -1.8711, 1.0643, -0.5071, 1.7287, 1.069, -0.4597, 1.7287, 1.069, -0.4597, -1.8711, 1.0643, -0.5071, -1.8711, 1.069, -0.4597, 1.7287, 1.069, -0.4597, -1.8711, 1.069, -0.4597, 1.7287, 1.0828, -0.4141, 1.7287, 1.0828, -0.4141, -1.8711, 1.069, -0.4597, -1.8711, 1.0828, -0.4141, 1.7287, 1.0828, -0.4141, -1.8711, 1.0828, -0.4141, 1.7287, 1.1053, -0.372, 1.7287, 1.1053, -0.372, -1.8711, 1.0828, -0.4141, -1.8711, 1.1053, -0.372, 1.7287, 1.1053, -0.372, -1.8711, 1.1053, -0.372, 1.7287, 1.1355, -0.3352, 1.7287, 1.1355, -0.3352, -1.8711, 1.1053, -0.372, -1.8711, 1.1355, -0.3352, 1.7287, 1.1355, -0.3352, -1.8711, 1.1355, -0.3352, 1.7287, 1.1723, -0.305, 1.7287, 1.1723, -0.305, -1.8711, 1.1355, -0.3352, -1.8711, 1.1723, -0.305, 1.7287, 1.1723, -0.305, -1.8711, 1.1723, -0.305, 1.7287, 1.2144, -0.2825, 1.7287, 1.2144, -0.2825, -1.8711, 1.1723, -0.305, -1.8711, 1.2144, -0.2825, 1.7287, 1.2144, -0.2825, -1.8711, 1.2144, -0.2825, 1.7287, 1.26, -0.2687, 1.7287, 1.26, -0.2687, -1.8711, 1.2144, -0.2825, -1.8711, 1.26, -0.2687, 1.7287, 1.26, -0.2687, -1.8711, 1.26, -0.2687, 1.7287, 1.3074, -0.264, 1.7287, 1.3074, -0.264, -1.8711, 1.26, -0.2687, -1.8711, 1.3074, -0.264, 1.7287, 1.3074, -0.264, -1.8711, 1.3074, -0.264, 1.7287, 1.3548, -0.2687, 1.7287, 1.3548, -0.2687, -1.8711, 1.3074, -0.264, -1.8711, 1.3548, -0.2687, 1.7287, 1.3548, -0.2687, -1.8711, 1.3548, -0.2687, 1.7287, 1.4004, -0.2825, 1.7287, 1.4004, -0.2825, -1.8711, 1.3548, -0.2687, -1.8711, 1.4004, -0.2825, 1.7287, 1.4004, -0.2825, -1.8711, 1.4004, -0.2825, 1.7287, 1.4425, -0.305, 1.7287, 1.4425, -0.305, -1.8711, 1.4004, -0.2825, -1.8711, 1.4425, -0.305, 1.7287, 1.4425, -0.305, -1.8711, 1.4425, -0.305, 1.7287, 1.4793, -0.3352, 1.7287, 1.4793, -0.3352, -1.8711, 1.4425, -0.305, -1.8711, 1.4793, -0.3352, 1.7287, 1.4793, -0.3352, -1.8711, 1.4793, -0.3352, 1.7287, 1.5095, -0.372, 1.7287, 1.5095, -0.372, -1.8711, 1.4793, -0.3352, -1.8711, 1.5095, -0.372, 1.7287, 1.5095, -0.372, -1.8711, 1.5095, -0.372, 1.7287, 1.532, -0.4141, 1.7287, 1.532, -0.4141, -1.8711, 1.5095, -0.372, -1.8711, 1.532, -0.4141, 1.7287, 1.532, -0.4141, -1.8711, 1.532, -0.4141, 1.7287, 1.5458, -0.4597, 1.7287, 1.5458, -0.4597, -1.8711, 1.532, -0.4141, -1.8711, 1.5458, -0.4597, 1.7287, 1.5458, -0.4597, -1.8711, 1.5458, -0.4597, 1.7287, 1.5505, -0.5071, 1.7287, 1.5505, -0.5071, -1.8711, 1.5458, -0.4597, -1.8711, 1.5505, -0.5071, 1.7287, 1.5505, -0.5071, -1.8711, 1.5505, -0.5071, 1.7287, 1.5458, -0.5545, 1.7287, 1.5458, -0.5545, -1.8711, 1.5505, -0.5071, -1.8711, 1.5458, -0.5545, 1.7287, 1.5458, -0.5545, -1.8711, 1.5458, -0.5545, 1.7287, 1.532, -0.6001, 1.7287, 1.532, -0.6001, -1.8711, 1.5458, -0.5545, -1.8711, 1.532, -0.6001, 1.7287, 1.532, -0.6001, -1.8711, 1.532, -0.6001, 1.7287, 1.5095, -0.6422, 1.7287, 1.5095, -0.6422, -1.8711, 1.532, -0.6001, -1.8711, 1.5095, -0.6422, 1.7287, 1.5095, -0.6422, -1.8711, 1.5095, -0.6422, 1.7287, 1.4793, -0.679, 1.7287, 1.4793, -0.679, -1.8711, 1.5095, -0.6422, -1.8711, 1.4793, -0.679, 1.7287, 1.4793, -0.679, -1.8711, 1.4793, -0.679, 1.7287, 1.4425, -0.7092, 1.7287, 1.4425, -0.7092, -1.8711, 1.4793, -0.679, -1.8711, 1.4425, -0.7092, 1.7287, 1.4425, -0.7092, -1.8711, 1.4425, -0.7092, 1.7287, 1.4004, -0.7317, 1.7287, 1.4004, -0.7317, -1.8711, 1.4425, -0.7092, -1.8711, 1.4004, -0.7317, 1.7287, 1.3074, -0.7502, 1.7287, 1.26, -0.7455, 1.7287, 1.3548, -0.7455, 1.7287, 1.3548, -0.7455, 1.7287, 1.26, -0.7455, 1.7287, 1.4004, -0.7317, 1.7287, 1.4004, -0.7317, 1.7287, 1.26, -0.7455, 1.7287, 1.4425, -0.7092, 1.7287, 1.4425, -0.7092, 1.7287, 1.26, -0.7455, 1.7287, 1.4793, -0.679, 1.7287, 1.4793, -0.679, 1.7287, 1.26, -0.7455, 1.7287, 1.5095, -0.6422, 1.7287, 1.5095, -0.6422, 1.7287, 1.26, -0.7455, 1.7287, 1.532, -0.6001, 1.7287, 1.532, -0.6001, 1.7287, 1.26, -0.7455, 1.7287, 1.5458, -0.5545, 1.7287, 1.5458, -0.5545, 1.7287, 1.26, -0.7455, 1.7287, 1.5505, -0.5071, 1.7287, 1.5505, -0.5071, 1.7287, 1.26, -0.7455, 1.7287, 1.5458, -0.4597, 1.7287, 1.5458, -0.4597, 1.7287, 1.26, -0.7455, 1.7287, 1.532, -0.4141, 1.7287, 1.532, -0.4141, 1.7287, 1.26, -0.7455, 1.7287, 1.5095, -0.372, 1.7287, 1.5095, -0.372, 1.7287, 1.26, -0.7455, 1.7287, 1.4793, -0.3352, 1.7287, 1.4793, -0.3352, 1.7287, 1.26, -0.7455, 1.7287, 1.4425, -0.305, 1.7287, 1.4425, -0.305, 1.7287, 1.26, -0.7455, 1.7287, 1.4004, -0.2825, 1.7287, 1.4004, -0.2825, 1.7287, 1.26, -0.7455, 1.7287, 1.3548, -0.2687, 1.7287, 1.3548, -0.2687, 1.7287, 1.26, -0.7455, 1.7287, 1.3074, -0.264, 1.7287, 1.3074, -0.264, 1.7287, 1.26, -0.7455, 1.7287, 1.26, -0.2687, 1.7287, 1.26, -0.2687, 1.7287, 1.26, -0.7455, 1.7287, 1.2144, -0.2825, 1.7287, 1.2144, -0.2825, 1.7287, 1.26, -0.7455, 1.7287, 1.1723, -0.305, 1.7287, 1.1723, -0.305, 1.7287, 1.26, -0.7455, 1.7287, 1.1355, -0.3352, 1.7287, 1.1355, -0.3352, 1.7287, 1.26, -0.7455, 1.7287, 1.1053, -0.372, 1.7287, 1.1053, -0.372, 1.7287, 1.26, -0.7455, 1.7287, 1.0828, -0.4141, 1.7287, 1.0828, -0.4141, 1.7287, 1.26, -0.7455, 1.7287, 1.069, -0.4597, 1.7287, 1.069, -0.4597, 1.7287, 1.26, -0.7455, 1.7287, 1.0643, -0.5071, 1.7287, 1.0643, -0.5071, 1.7287, 1.26, -0.7455, 1.7287, 1.069, -0.5545, 1.7287, 1.069, -0.5545, 1.7287, 1.26, -0.7455, 1.7287, 1.0828, -0.6001, 1.7287, 1.0828, -0.6001, 1.7287, 1.26, -0.7455, 1.7287, 1.1053, -0.6422, 1.7287, 1.1053, -0.6422, 1.7287, 1.26, -0.7455, 1.7287, 1.1355, -0.679, 1.7287, 1.1355, -0.679, 1.7287, 1.26, -0.7455, 1.7287, 1.1723, -0.7092, 1.7287, 1.1723, -0.7092, 1.7287, 1.26, -0.7455, 1.7287, 1.2144, -0.7317, 1.7287, 1.4004, -0.7317, -1.8711, 1.4004, -0.7317, 1.7287, 1.3548, -0.7455, 1.7287, 1.3548, -0.7455, -1.8711, 1.4004, -0.7317, -1.8711, 1.3548, -0.7455, 1.7287, 1.3548, -0.7455, -1.8711, 1.3548, -0.7455, 1.7287, 1.3074, -0.7502, 1.7287, 1.3074, -0.7502, -1.8711, 1.3548, -0.7455, -1.8711, 1.3074, -0.7502, -1.8711, 1.26, -0.7455, -1.8711, 1.3074, -0.7502, -1.8711, 1.2144, -0.7317, -1.8711, 1.2144, -0.7317, -1.8711, 1.3074, -0.7502, -1.8711, 1.1723, -0.7092, -1.8711, 1.1723, -0.7092, -1.8711, 1.3074, -0.7502, -1.8711, 1.1355, -0.679, -1.8711, 1.1355, -0.679, -1.8711, 1.3074, -0.7502, -1.8711, 1.1053, -0.6422, -1.8711, 1.1053, -0.6422, -1.8711, 1.3074, -0.7502, -1.8711, 1.0828, -0.6001, -1.8711, 1.0828, -0.6001, -1.8711, 1.3074, -0.7502, -1.8711, 1.069, -0.5545, -1.8711, 1.069, -0.5545, -1.8711, 1.3074, -0.7502, -1.8711, 1.0643, -0.5071, -1.8711, 1.0643, -0.5071, -1.8711, 1.3074, -0.7502, -1.8711, 1.069, -0.4597, -1.8711, 1.069, -0.4597, -1.8711, 1.3074, -0.7502, -1.8711, 1.0828, -0.4141, -1.8711, 1.0828, -0.4141, -1.8711, 1.3074, -0.7502, -1.8711, 1.1053, -0.372, -1.8711, 1.1053, -0.372, -1.8711, 1.3074, -0.7502, -1.8711, 1.1355, -0.3352, -1.8711, 1.1355, -0.3352, -1.8711, 1.3074, -0.7502, -1.8711, 1.1723, -0.305, -1.8711, 1.1723, -0.305, -1.8711, 1.3074, -0.7502, -1.8711, 1.2144, -0.2825, -1.8711, 1.2144, -0.2825, -1.8711, 1.3074, -0.7502, -1.8711, 1.26, -0.2687, -1.8711, 1.26, -0.2687, -1.8711, 1.3074, -0.7502, -1.8711, 1.3074, -0.264, -1.8711, 1.3074, -0.264, -1.8711, 1.3074, -0.7502, -1.8711, 1.3548, -0.2687, -1.8711, 1.3548, -0.2687, -1.8711, 1.3074, -0.7502, -1.8711, 1.4004, -0.2825, -1.8711, 1.4004, -0.2825, -1.8711, 1.3074, -0.7502, -1.8711, 1.4425, -0.305, -1.8711, 1.4425, -0.305, -1.8711, 1.3074, -0.7502, -1.8711, 1.4793, -0.3352, -1.8711, 1.4793, -0.3352, -1.8711, 1.3074, -0.7502, -1.8711, 1.5095, -0.372, -1.8711, 1.5095, -0.372, -1.8711, 1.3074, -0.7502, -1.8711, 1.532, -0.4141, -1.8711, 1.532, -0.4141, -1.8711, 1.3074, -0.7502, -1.8711, 1.5458, -0.4597, -1.8711, 1.5458, -0.4597, -1.8711, 1.3074, -0.7502, -1.8711, 1.5505, -0.5071, -1.8711, 1.5505, -0.5071, -1.8711, 1.3074, -0.7502, -1.8711, 1.5458, -0.5545, -1.8711, 1.5458, -0.5545, -1.8711, 1.3074, -0.7502, -1.8711, 1.532, -0.6001, -1.8711, 1.532, -0.6001, -1.8711, 1.3074, -0.7502, -1.8711, 1.5095, -0.6422, -1.8711, 1.5095, -0.6422, -1.8711, 1.3074, -0.7502, -1.8711, 1.4793, -0.679, -1.8711, 1.4793, -0.679, -1.8711, 1.3074, -0.7502, -1.8711, 1.4425, -0.7092, -1.8711, 1.4425, -0.7092, -1.8711, 1.3074, -0.7502, -1.8711, 1.4004, -0.7317, -1.8711, 1.4004, -0.7317, -1.8711, 1.3074, -0.7502, -1.8711, 1.3548, -0.7455, 1.7287, 1.3074, 0.4116, -1.8711, 1.3074, 0.4116, 1.7287, 1.26, 0.4163, 1.7287, 1.26, 0.4163, -1.8711, 1.3074, 0.4116, -1.8711, 1.26, 0.4163, 1.7287, 1.26, 0.4163, -1.8711, 1.26, 0.4163, 1.7287, 1.2144, 0.4301, 1.7287, 1.2144, 0.4301, -1.8711, 1.26, 0.4163, -1.8711, 1.2144, 0.4301, 1.7287, 1.2144, 0.4301, -1.8711, 1.2144, 0.4301, 1.7287, 1.1723, 0.4526, 1.7287, 1.1723, 0.4526, -1.8711, 1.2144, 0.4301, -1.8711, 1.1723, 0.4526, 1.7287, 1.1723, 0.4526, -1.8711, 1.1723, 0.4526, 1.7287, 1.1355, 0.4828, 1.7287, 1.1355, 0.4828, -1.8711, 1.1723, 0.4526, -1.8711, 1.1355, 0.4828, 1.7287, 1.1355, 0.4828, -1.8711, 1.1355, 0.4828, 1.7287, 1.1053, 0.5197, 1.7287, 1.1053, 0.5197, -1.8711, 1.1355, 0.4828, -1.8711, 1.1053, 0.5197, 1.7287, 1.1053, 0.5197, -1.8711, 1.1053, 0.5197, 1.7287, 1.0828, 0.5617, 1.7287, 1.0828, 0.5617, -1.8711, 1.1053, 0.5197, -1.8711, 1.0828, 0.5617, 1.7287, 1.0828, 0.5617, -1.8711, 1.0828, 0.5617, 1.7287, 1.069, 0.6073, 1.7287, 1.069, 0.6073, -1.8711, 1.0828, 0.5617, -1.8711, 1.069, 0.6073, 1.7287, 1.069, 0.6073, -1.8711, 1.069, 0.6073, 1.7287, 1.0643, 0.6547, 1.7287, 1.0643, 0.6547, -1.8711, 1.069, 0.6073, -1.8711, 1.0643, 0.6547, 1.7287, 1.0643, 0.6547, -1.8711, 1.0643, 0.6547, 1.7287, 1.069, 0.7022, 1.7287, 1.069, 0.7022, -1.8711, 1.0643, 0.6547, -1.8711, 1.069, 0.7022, 1.7287, 1.069, 0.7022, -1.8711, 1.069, 0.7022, 1.7287, 1.0828, 0.7478, 1.7287, 1.0828, 0.7478, -1.8711, 1.069, 0.7022, -1.8711, 1.0828, 0.7478, 1.7287, 1.0828, 0.7478, -1.8711, 1.0828, 0.7478, 1.7287, 1.1053, 0.7898, 1.7287, 1.1053, 0.7898, -1.8711, 1.0828, 0.7478, -1.8711, 1.1053, 0.7898, 1.7287, 1.1053, 0.7898, -1.8711, 1.1053, 0.7898, 1.7287, 1.1355, 0.8267, 1.7287, 1.1355, 0.8267, -1.8711, 1.1053, 0.7898, -1.8711, 1.1355, 0.8267, 1.7287, 1.1355, 0.8267, -1.8711, 1.1355, 0.8267, 1.7287, 1.1723, 0.8569, 1.7287, 1.1723, 0.8569, -1.8711, 1.1355, 0.8267, -1.8711, 1.1723, 0.8569, 1.7287, 1.1723, 0.8569, -1.8711, 1.1723, 0.8569, 1.7287, 1.2144, 0.8793, 1.7287, 1.2144, 0.8793, -1.8711, 1.1723, 0.8569, -1.8711, 1.2144, 0.8793, 1.7287, 1.2144, 0.8793, -1.8711, 1.2144, 0.8793, 1.7287, 1.26, 0.8932, 1.7287, 1.26, 0.8932, -1.8711, 1.2144, 0.8793, -1.8711, 1.26, 0.8932, 1.7287, 1.26, 0.8932, -1.8711, 1.26, 0.8932, 1.7287, 1.3074, 0.8979, 1.7287, 1.3074, 0.8979, -1.8711, 1.26, 0.8932, -1.8711, 1.3074, 0.8979, 1.7287, 1.3074, 0.8979, -1.8711, 1.3074, 0.8979, 1.7287, 1.3548, 0.8932, 1.7287, 1.3548, 0.8932, -1.8711, 1.3074, 0.8979, -1.8711, 1.3548, 0.8932, 1.7287, 1.3548, 0.8932, -1.8711, 1.3548, 0.8932, 1.7287, 1.4004, 0.8793, 1.7287, 1.4004, 0.8793, -1.8711, 1.3548, 0.8932, -1.8711, 1.4004, 0.8793, 1.7287, 1.4004, 0.8793, -1.8711, 1.4004, 0.8793, 1.7287, 1.4425, 0.8569, 1.7287, 1.4425, 0.8569, -1.8711, 1.4004, 0.8793, -1.8711, 1.4425, 0.8569, 1.7287, 1.4425, 0.8569, -1.8711, 1.4425, 0.8569, 1.7287, 1.4793, 0.8267, 1.7287, 1.4793, 0.8267, -1.8711, 1.4425, 0.8569, -1.8711, 1.4793, 0.8267, 1.7287, 1.4793, 0.8267, -1.8711, 1.4793, 0.8267, 1.7287, 1.5095, 0.7898, 1.7287, 1.5095, 0.7898, -1.8711, 1.4793, 0.8267, -1.8711, 1.5095, 0.7898, 1.7287, 1.5095, 0.7898, -1.8711, 1.5095, 0.7898, 1.7287, 1.532, 0.7478, 1.7287, 1.532, 0.7478, -1.8711, 1.5095, 0.7898, -1.8711, 1.532, 0.7478, 1.7287, 1.532, 0.7478, -1.8711, 1.532, 0.7478, 1.7287, 1.5458, 0.7022, 1.7287, 1.5458, 0.7022, -1.8711, 1.532, 0.7478, -1.8711, 1.5458, 0.7022, 1.7287, 1.5458, 0.7022, -1.8711, 1.5458, 0.7022, 1.7287, 1.5505, 0.6547, 1.7287, 1.5505, 0.6547, -1.8711, 1.5458, 0.7022, -1.8711, 1.5505, 0.6547, 1.7287, 1.5505, 0.6547, -1.8711, 1.5505, 0.6547, 1.7287, 1.5458, 0.6073, 1.7287, 1.5458, 0.6073, -1.8711, 1.5505, 0.6547, -1.8711, 1.5458, 0.6073, 1.7287, 1.5458, 0.6073, -1.8711, 1.5458, 0.6073, 1.7287, 1.532, 0.5617, 1.7287, 1.532, 0.5617, -1.8711, 1.5458, 0.6073, -1.8711, 1.532, 0.5617, 1.7287, 1.532, 0.5617, -1.8711, 1.532, 0.5617, 1.7287, 1.5095, 0.5197, 1.7287, 1.5095, 0.5197, -1.8711, 1.532, 0.5617, -1.8711, 1.5095, 0.5197, 1.7287, 1.5095, 0.5197, -1.8711, 1.5095, 0.5197, 1.7287, 1.4793, 0.4828, 1.7287, 1.4793, 0.4828, -1.8711, 1.5095, 0.5197, -1.8711, 1.4793, 0.4828, 1.7287, 1.4793, 0.4828, -1.8711, 1.4793, 0.4828, 1.7287, 1.4425, 0.4526, 1.7287, 1.4425, 0.4526, -1.8711, 1.4793, 0.4828, -1.8711, 1.4425, 0.4526, 1.7287, 1.4425, 0.4526, -1.8711, 1.4425, 0.4526, 1.7287, 1.4004, 0.4301, 1.7287, 1.4004, 0.4301, -1.8711, 1.4425, 0.4526, -1.8711, 1.4004, 0.4301, 1.7287, 1.3074, 0.4116, 1.7287, 1.26, 0.4163, 1.7287, 1.3548, 0.4163, 1.7287, 1.3548, 0.4163, 1.7287, 1.26, 0.4163, 1.7287, 1.4004, 0.4301, 1.7287, 1.4004, 0.4301, 1.7287, 1.26, 0.4163, 1.7287, 1.4425, 0.4526, 1.7287, 1.4425, 0.4526, 1.7287, 1.26, 0.4163, 1.7287, 1.4793, 0.4828, 1.7287, 1.4793, 0.4828, 1.7287, 1.26, 0.4163, 1.7287, 1.5095, 0.5197, 1.7287, 1.5095, 0.5197, 1.7287, 1.26, 0.4163, 1.7287, 1.532, 0.5617, 1.7287, 1.532, 0.5617, 1.7287, 1.26, 0.4163, 1.7287, 1.5458, 0.6073, 1.7287, 1.5458, 0.6073, 1.7287, 1.26, 0.4163, 1.7287, 1.5505, 0.6547, 1.7287, 1.5505, 0.6547, 1.7287, 1.26, 0.4163, 1.7287, 1.5458, 0.7022, 1.7287, 1.5458, 0.7022, 1.7287, 1.26, 0.4163, 1.7287, 1.532, 0.7478, 1.7287, 1.532, 0.7478, 1.7287, 1.26, 0.4163, 1.7287, 1.5095, 0.7898, 1.7287, 1.5095, 0.7898, 1.7287, 1.26, 0.4163, 1.7287, 1.4793, 0.8267, 1.7287, 1.4793, 0.8267, 1.7287, 1.26, 0.4163, 1.7287, 1.4425, 0.8569, 1.7287, 1.4425, 0.8569, 1.7287, 1.26, 0.4163, 1.7287, 1.4004, 0.8793, 1.7287, 1.4004, 0.8793, 1.7287, 1.26, 0.4163, 1.7287, 1.3548, 0.8932, 1.7287, 1.3548, 0.8932, 1.7287, 1.26, 0.4163, 1.7287, 1.3074, 0.8979, 1.7287, 1.3074, 0.8979, 1.7287, 1.26, 0.4163, 1.7287, 1.26, 0.8932, 1.7287, 1.26, 0.8932, 1.7287, 1.26, 0.4163, 1.7287, 1.2144, 0.8793, 1.7287, 1.2144, 0.8793, 1.7287, 1.26, 0.4163, 1.7287, 1.1723, 0.8569, 1.7287, 1.1723, 0.8569, 1.7287, 1.26, 0.4163, 1.7287, 1.1355, 0.8267, 1.7287, 1.1355, 0.8267, 1.7287, 1.26, 0.4163, 1.7287, 1.1053, 0.7898, 1.7287, 1.1053, 0.7898, 1.7287, 1.26, 0.4163, 1.7287, 1.0828, 0.7478, 1.7287, 1.0828, 0.7478, 1.7287, 1.26, 0.4163, 1.7287, 1.069, 0.7022, 1.7287, 1.069, 0.7022, 1.7287, 1.26, 0.4163, 1.7287, 1.0643, 0.6547, 1.7287, 1.0643, 0.6547, 1.7287, 1.26, 0.4163, 1.7287, 1.069, 0.6073, 1.7287, 1.069, 0.6073, 1.7287, 1.26, 0.4163, 1.7287, 1.0828, 0.5617, 1.7287, 1.0828, 0.5617, 1.7287, 1.26, 0.4163, 1.7287, 1.1053, 0.5197, 1.7287, 1.1053, 0.5197, 1.7287, 1.26, 0.4163, 1.7287, 1.1355, 0.4828, 1.7287, 1.1355, 0.4828, 1.7287, 1.26, 0.4163, 1.7287, 1.1723, 0.4526, 1.7287, 1.1723, 0.4526, 1.7287, 1.26, 0.4163, 1.7287, 1.2144, 0.4301, 1.7287, 1.4004, 0.4301, -1.8711, 1.4004, 0.4301, 1.7287, 1.3548, 0.4163, 1.7287, 1.3548, 0.4163, -1.8711, 1.4004, 0.4301, -1.8711, 1.3548, 0.4163, 1.7287, 1.3548, 0.4163, -1.8711, 1.3548, 0.4163, 1.7287, 1.3074, 0.4116, 1.7287, 1.3074, 0.4116, -1.8711, 1.3548, 0.4163, -1.8711, 1.3074, 0.4116, -1.8711, 1.26, 0.4163, -1.8711, 1.3074, 0.4116, -1.8711, 1.2144, 0.4301, -1.8711, 1.2144, 0.4301, -1.8711, 1.3074, 0.4116, -1.8711, 1.1723, 0.4526, -1.8711, 1.1723, 0.4526, -1.8711, 1.3074, 0.4116, -1.8711, 1.1355, 0.4828, -1.8711, 1.1355, 0.4828, -1.8711, 1.3074, 0.4116, -1.8711, 1.1053, 0.5197, -1.8711, 1.1053, 0.5197, -1.8711, 1.3074, 0.4116, -1.8711, 1.0828, 0.5617, -1.8711, 1.0828, 0.5617, -1.8711, 1.3074, 0.4116, -1.8711, 1.069, 0.6073, -1.8711, 1.069, 0.6073, -1.8711, 1.3074, 0.4116, -1.8711, 1.0643, 0.6547, -1.8711, 1.0643, 0.6547, -1.8711, 1.3074, 0.4116, -1.8711, 1.069, 0.7022, -1.8711, 1.069, 0.7022, -1.8711, 1.3074, 0.4116, -1.8711, 1.0828, 0.7478, -1.8711, 1.0828, 0.7478, -1.8711, 1.3074, 0.4116, -1.8711, 1.1053, 0.7898, -1.8711, 1.1053, 0.7898, -1.8711, 1.3074, 0.4116, -1.8711, 1.1355, 0.8267, -1.8711, 1.1355, 0.8267, -1.8711, 1.3074, 0.4116, -1.8711, 1.1723, 0.8569, -1.8711, 1.1723, 0.8569, -1.8711, 1.3074, 0.4116, -1.8711, 1.2144, 0.8793, -1.8711, 1.2144, 0.8793, -1.8711, 1.3074, 0.4116, -1.8711, 1.26, 0.8932, -1.8711, 1.26, 0.8932, -1.8711, 1.3074, 0.4116, -1.8711, 1.3074, 0.8979, -1.8711, 1.3074, 0.8979, -1.8711, 1.3074, 0.4116, -1.8711, 1.3548, 0.8932, -1.8711, 1.3548, 0.8932, -1.8711, 1.3074, 0.4116, -1.8711, 1.4004, 0.8793, -1.8711, 1.4004, 0.8793, -1.8711, 1.3074, 0.4116, -1.8711, 1.4425, 0.8569, -1.8711, 1.4425, 0.8569, -1.8711, 1.3074, 0.4116, -1.8711, 1.4793, 0.8267, -1.8711, 1.4793, 0.8267, -1.8711, 1.3074, 0.4116, -1.8711, 1.5095, 0.7898, -1.8711, 1.5095, 0.7898, -1.8711, 1.3074, 0.4116, -1.8711, 1.532, 0.7478, -1.8711, 1.532, 0.7478, -1.8711, 1.3074, 0.4116, -1.8711, 1.5458, 0.7022, -1.8711, 1.5458, 0.7022, -1.8711, 1.3074, 0.4116, -1.8711, 1.5505, 0.6547, -1.8711, 1.5505, 0.6547, -1.8711, 1.3074, 0.4116, -1.8711, 1.5458, 0.6073, -1.8711, 1.5458, 0.6073, -1.8711, 1.3074, 0.4116, -1.8711, 1.532, 0.5617, -1.8711, 1.532, 0.5617, -1.8711, 1.3074, 0.4116, -1.8711, 1.5095, 0.5197, -1.8711, 1.5095, 0.5197, -1.8711, 1.3074, 0.4116, -1.8711, 1.4793, 0.4828, -1.8711, 1.4793, 0.4828, -1.8711, 1.3074, 0.4116, -1.8711, 1.4425, 0.4526, -1.8711, 1.4425, 0.4526, -1.8711, 1.3074, 0.4116, -1.8711, 1.4004, 0.4301, -1.8711, 1.4004, 0.4301, -1.8711, 1.3074, 0.4116, -1.8711, 1.3548, 0.4163, 1.7287, 0.1455, 0.9926, -1.8711, 0.1455, 0.9926, 1.7287, 0.0981, 0.9972, 1.7287, 0.0981, 0.9972, -1.8711, 0.1455, 0.9926, -1.8711, 0.0981, 0.9972, 1.7287, 0.0981, 0.9972, -1.8711, 0.0981, 0.9972, 1.7287, 0.0525, 1.0111, 1.7287, 0.0525, 1.0111, -1.8711, 0.0981, 0.9972, -1.8711, 0.0525, 1.0111, 1.7287, 0.0525, 1.0111, -1.8711, 0.0525, 1.0111, 1.7287, 0.0105, 1.0335, 1.7287, 0.0105, 1.0335, -1.8711, 0.0525, 1.0111, -1.8711, 0.0105, 1.0335, 1.7287, 0.0105, 1.0335, -1.8711, 0.0105, 1.0335, 1.7287, -0.0264, 1.0638, 1.7287, -0.0264, 1.0638, -1.8711, 0.0105, 1.0335, -1.8711, -0.0264, 1.0638, 1.7287, -0.0264, 1.0638, -1.8711, -0.0264, 1.0638, 1.7287, -0.0566, 1.1006, 1.7287, -0.0566, 1.1006, -1.8711, -0.0264, 1.0638, -1.8711, -0.0566, 1.1006, 1.7287, -0.0566, 1.1006, -1.8711, -0.0566, 1.1006, 1.7287, -0.0791, 1.1426, 1.7287, -0.0791, 1.1426, -1.8711, -0.0566, 1.1006, -1.8711, -0.0791, 1.1426, 1.7287, -0.0791, 1.1426, -1.8711, -0.0791, 1.1426, 1.7287, -0.0929, 1.1882, 1.7287, -0.0929, 1.1882, -1.8711, -0.0791, 1.1426, -1.8711, -0.0929, 1.1882, 1.7287, -0.0929, 1.1882, -1.8711, -0.0929, 1.1882, 1.7287, -0.0976, 1.2357, 1.7287, -0.0976, 1.2357, -1.8711, -0.0929, 1.1882, -1.8711, -0.0976, 1.2357, 1.7287, -0.0976, 1.2357, -1.8711, -0.0976, 1.2357, 1.7287, -0.0929, 1.2831, 1.7287, -0.0929, 1.2831, -1.8711, -0.0976, 1.2357, -1.8711, -0.0929, 1.2831, 1.7287, -0.0929, 1.2831, -1.8711, -0.0929, 1.2831, 1.7287, -0.0791, 1.3287, 1.7287, -0.0791, 1.3287, -1.8711, -0.0929, 1.2831, -1.8711, -0.0791, 1.3287, 1.7287, -0.0791, 1.3287, -1.8711, -0.0791, 1.3287, 1.7287, -0.0566, 1.3707, 1.7287, -0.0566, 1.3707, -1.8711, -0.0791, 1.3287, -1.8711, -0.0566, 1.3707, 1.7287, -0.0566, 1.3707, -1.8711, -0.0566, 1.3707, 1.7287, -0.0264, 1.4076, 1.7287, -0.0264, 1.4076, -1.8711, -0.0566, 1.3707, -1.8711, -0.0264, 1.4076, 1.7287, -0.0264, 1.4076, -1.8711, -0.0264, 1.4076, 1.7287, 0.0105, 1.4378, 1.7287, 0.0105, 1.4378, -1.8711, -0.0264, 1.4076, -1.8711, 0.0105, 1.4378, 1.7287, 0.0105, 1.4378, -1.8711, 0.0105, 1.4378, 1.7287, 0.0525, 1.4603, 1.7287, 0.0525, 1.4603, -1.8711, 0.0105, 1.4378, -1.8711, 0.0525, 1.4603, 1.7287, 0.0525, 1.4603, -1.8711, 0.0525, 1.4603, 1.7287, 0.0981, 1.4741, 1.7287, 0.0981, 1.4741, -1.8711, 0.0525, 1.4603, -1.8711, 0.0981, 1.4741, 1.7287, 0.0981, 1.4741, -1.8711, 0.0981, 1.4741, 1.7287, 0.1455, 1.4788, 1.7287, 0.1455, 1.4788, -1.8711, 0.0981, 1.4741, -1.8711, 0.1455, 1.4788, 1.7287, 0.1455, 1.4788, -1.8711, 0.1455, 1.4788, 1.7287, 0.193, 1.4741, 1.7287, 0.193, 1.4741, -1.8711, 0.1455, 1.4788, -1.8711, 0.193, 1.4741, 1.7287, 0.193, 1.4741, -1.8711, 0.193, 1.4741, 1.7287, 0.2386, 1.4603, 1.7287, 0.2386, 1.4603, -1.8711, 0.193, 1.4741, -1.8711, 0.2386, 1.4603, 1.7287, 0.2386, 1.4603, -1.8711, 0.2386, 1.4603, 1.7287, 0.2806, 1.4378, 1.7287, 0.2806, 1.4378, -1.8711, 0.2386, 1.4603, -1.8711, 0.2806, 1.4378, 1.7287, 0.2806, 1.4378, -1.8711, 0.2806, 1.4378, 1.7287, 0.3174, 1.4076, 1.7287, 0.3174, 1.4076, -1.8711, 0.2806, 1.4378, -1.8711, 0.3174, 1.4076, 1.7287, 0.3174, 1.4076, -1.8711, 0.3174, 1.4076, 1.7287, 0.3477, 1.3707, 1.7287, 0.3477, 1.3707, -1.8711, 0.3174, 1.4076, -1.8711, 0.3477, 1.3707, 1.7287, 0.3477, 1.3707, -1.8711, 0.3477, 1.3707, 1.7287, 0.3701, 1.3287, 1.7287, 0.3701, 1.3287, -1.8711, 0.3477, 1.3707, -1.8711, 0.3701, 1.3287, 1.7287, 0.3701, 1.3287, -1.8711, 0.3701, 1.3287, 1.7287, 0.384, 1.2831, 1.7287, 0.384, 1.2831, -1.8711, 0.3701, 1.3287, -1.8711, 0.384, 1.2831, 1.7287, 0.384, 1.2831, -1.8711, 0.384, 1.2831, 1.7287, 0.3886, 1.2357, 1.7287, 0.3886, 1.2357, -1.8711, 0.384, 1.2831, -1.8711, 0.3886, 1.2357, 1.7287, 0.3886, 1.2357, -1.8711, 0.3886, 1.2357, 1.7287, 0.384, 1.1882, 1.7287, 0.384, 1.1882, -1.8711, 0.3886, 1.2357, -1.8711, 0.384, 1.1882, 1.7287, 0.384, 1.1882, -1.8711, 0.384, 1.1882, 1.7287, 0.3701, 1.1426, 1.7287, 0.3701, 1.1426, -1.8711, 0.384, 1.1882, -1.8711, 0.3701, 1.1426, 1.7287, 0.3701, 1.1426, -1.8711, 0.3701, 1.1426, 1.7287, 0.3477, 1.1006, 1.7287, 0.3477, 1.1006, -1.8711, 0.3701, 1.1426, -1.8711, 0.3477, 1.1006, 1.7287, 0.3477, 1.1006, -1.8711, 0.3477, 1.1006, 1.7287, 0.3174, 1.0638, 1.7287, 0.3174, 1.0638, -1.8711, 0.3477, 1.1006, -1.8711, 0.3174, 1.0638, 1.7287, 0.3174, 1.0638, -1.8711, 0.3174, 1.0638, 1.7287, 0.2806, 1.0335, 1.7287, 0.2806, 1.0335, -1.8711, 0.3174, 1.0638, -1.8711, 0.2806, 1.0335, 1.7287, 0.2806, 1.0335, -1.8711, 0.2806, 1.0335, 1.7287, 0.2386, 1.0111, 1.7287, 0.2386, 1.0111, -1.8711, 0.2806, 1.0335, -1.8711, 0.2386, 1.0111, 1.7287, 0.1455, 0.9926, 1.7287, 0.0981, 0.9972, 1.7287, 0.193, 0.9972, 1.7287, 0.193, 0.9972, 1.7287, 0.0981, 0.9972, 1.7287, 0.2386, 1.0111, 1.7287, 0.2386, 1.0111, 1.7287, 0.0981, 0.9972, 1.7287, 0.2806, 1.0335, 1.7287, 0.2806, 1.0335, 1.7287, 0.0981, 0.9972, 1.7287, 0.3174, 1.0638, 1.7287, 0.3174, 1.0638, 1.7287, 0.0981, 0.9972, 1.7287, 0.3477, 1.1006, 1.7287, 0.3477, 1.1006, 1.7287, 0.0981, 0.9972, 1.7287, 0.3701, 1.1426, 1.7287, 0.3701, 1.1426, 1.7287, 0.0981, 0.9972, 1.7287, 0.384, 1.1882, 1.7287, 0.384, 1.1882, 1.7287, 0.0981, 0.9972, 1.7287, 0.3886, 1.2357, 1.7287, 0.3886, 1.2357, 1.7287, 0.0981, 0.9972, 1.7287, 0.384, 1.2831, 1.7287, 0.384, 1.2831, 1.7287, 0.0981, 0.9972, 1.7287, 0.3701, 1.3287, 1.7287, 0.3701, 1.3287, 1.7287, 0.0981, 0.9972, 1.7287, 0.3477, 1.3707, 1.7287, 0.3477, 1.3707, 1.7287, 0.0981, 0.9972, 1.7287, 0.3174, 1.4076, 1.7287, 0.3174, 1.4076, 1.7287, 0.0981, 0.9972, 1.7287, 0.2806, 1.4378, 1.7287, 0.2806, 1.4378, 1.7287, 0.0981, 0.9972, 1.7287, 0.2386, 1.4603, 1.7287, 0.2386, 1.4603, 1.7287, 0.0981, 0.9972, 1.7287, 0.193, 1.4741, 1.7287, 0.193, 1.4741, 1.7287, 0.0981, 0.9972, 1.7287, 0.1455, 1.4788, 1.7287, 0.1455, 1.4788, 1.7287, 0.0981, 0.9972, 1.7287, 0.0981, 1.4741, 1.7287, 0.0981, 1.4741, 1.7287, 0.0981, 0.9972, 1.7287, 0.0525, 1.4603, 1.7287, 0.0525, 1.4603, 1.7287, 0.0981, 0.9972, 1.7287, 0.0105, 1.4378, 1.7287, 0.0105, 1.4378, 1.7287, 0.0981, 0.9972, 1.7287, -0.0264, 1.4076, 1.7287, -0.0264, 1.4076, 1.7287, 0.0981, 0.9972, 1.7287, -0.0566, 1.3707, 1.7287, -0.0566, 1.3707, 1.7287, 0.0981, 0.9972, 1.7287, -0.0791, 1.3287, 1.7287, -0.0791, 1.3287, 1.7287, 0.0981, 0.9972, 1.7287, -0.0929, 1.2831, 1.7287, -0.0929, 1.2831, 1.7287, 0.0981, 0.9972, 1.7287, -0.0976, 1.2357, 1.7287, -0.0976, 1.2357, 1.7287, 0.0981, 0.9972, 1.7287, -0.0929, 1.1882, 1.7287, -0.0929, 1.1882, 1.7287, 0.0981, 0.9972, 1.7287, -0.0791, 1.1426, 1.7287, -0.0791, 1.1426, 1.7287, 0.0981, 0.9972, 1.7287, -0.0566, 1.1006, 1.7287, -0.0566, 1.1006, 1.7287, 0.0981, 0.9972, 1.7287, -0.0264, 1.0638, 1.7287, -0.0264, 1.0638, 1.7287, 0.0981, 0.9972, 1.7287, 0.0105, 1.0335, 1.7287, 0.0105, 1.0335, 1.7287, 0.0981, 0.9972, 1.7287, 0.0525, 1.0111, 1.7287, 0.2386, 1.0111, -1.8711, 0.2386, 1.0111, 1.7287, 0.193, 0.9972, 1.7287, 0.193, 0.9972, -1.8711, 0.2386, 1.0111, -1.8711, 0.193, 0.9972, 1.7287, 0.193, 0.9972, -1.8711, 0.193, 0.9972, 1.7287, 0.1455, 0.9926, 1.7287, 0.1455, 0.9926, -1.8711, 0.193, 0.9972, -1.8711, 0.1455, 0.9926, -1.8711, 0.0981, 0.9972, -1.8711, 0.1455, 0.9926, -1.8711, 0.0525, 1.0111, -1.8711, 0.0525, 1.0111, -1.8711, 0.1455, 0.9926, -1.8711, 0.0105, 1.0335, -1.8711, 0.0105, 1.0335, -1.8711, 0.1455, 0.9926, -1.8711, -0.0264, 1.0638, -1.8711, -0.0264, 1.0638, -1.8711, 0.1455, 0.9926, -1.8711, -0.0566, 1.1006, -1.8711, -0.0566, 1.1006, -1.8711, 0.1455, 0.9926, -1.8711, -0.0791, 1.1426, -1.8711, -0.0791, 1.1426, -1.8711, 0.1455, 0.9926, -1.8711, -0.0929, 1.1882, -1.8711, -0.0929, 1.1882, -1.8711, 0.1455, 0.9926, -1.8711, -0.0976, 1.2357, -1.8711, -0.0976, 1.2357, -1.8711, 0.1455, 0.9926, -1.8711, -0.0929, 1.2831, -1.8711, -0.0929, 1.2831, -1.8711, 0.1455, 0.9926, -1.8711, -0.0791, 1.3287, -1.8711, -0.0791, 1.3287, -1.8711, 0.1455, 0.9926, -1.8711, -0.0566, 1.3707, -1.8711, -0.0566, 1.3707, -1.8711, 0.1455, 0.9926, -1.8711, -0.0264, 1.4076, -1.8711, -0.0264, 1.4076, -1.8711, 0.1455, 0.9926, -1.8711, 0.0105, 1.4378, -1.8711, 0.0105, 1.4378, -1.8711, 0.1455, 0.9926, -1.8711, 0.0525, 1.4603, -1.8711, 0.0525, 1.4603, -1.8711, 0.1455, 0.9926, -1.8711, 0.0981, 1.4741, -1.8711, 0.0981, 1.4741, -1.8711, 0.1455, 0.9926, -1.8711, 0.1455, 1.4788, -1.8711, 0.1455, 1.4788, -1.8711, 0.1455, 0.9926, -1.8711, 0.193, 1.4741, -1.8711, 0.193, 1.4741, -1.8711, 0.1455, 0.9926, -1.8711, 0.2386, 1.4603, -1.8711, 0.2386, 1.4603, -1.8711, 0.1455, 0.9926, -1.8711, 0.2806, 1.4378, -1.8711, 0.2806, 1.4378, -1.8711, 0.1455, 0.9926, -1.8711, 0.3174, 1.4076, -1.8711, 0.3174, 1.4076, -1.8711, 0.1455, 0.9926, -1.8711, 0.3477, 1.3707, -1.8711, 0.3477, 1.3707, -1.8711, 0.1455, 0.9926, -1.8711, 0.3701, 1.3287, -1.8711, 0.3701, 1.3287, -1.8711, 0.1455, 0.9926, -1.8711, 0.384, 1.2831, -1.8711, 0.384, 1.2831, -1.8711, 0.1455, 0.9926, -1.8711, 0.3886, 1.2357, -1.8711, 0.3886, 1.2357, -1.8711, 0.1455, 0.9926, -1.8711, 0.384, 1.1882, -1.8711, 0.384, 1.1882, -1.8711, 0.1455, 0.9926, -1.8711, 0.3701, 1.1426, -1.8711, 0.3701, 1.1426, -1.8711, 0.1455, 0.9926, -1.8711, 0.3477, 1.1006, -1.8711, 0.3477, 1.1006, -1.8711, 0.1455, 0.9926, -1.8711, 0.3174, 1.0638, -1.8711, 0.3174, 1.0638, -1.8711, 0.1455, 0.9926, -1.8711, 0.2806, 1.0335, -1.8711, 0.2806, 1.0335, -1.8711, 0.1455, 0.9926, -1.8711, 0.2386, 1.0111, -1.8711, 0.2386, 1.0111, -1.8711, 0.1455, 0.9926, -1.8711, 0.193, 0.9972, 1.7287, 1.3074, 1.5735, -1.8711, 1.3074, 1.5735, 1.7287, 1.26, 1.5782, 1.7287, 1.26, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 1.5782, 1.7287, 1.26, 1.5782, -1.8711, 1.26, 1.5782, 1.7287, 1.2144, 1.592, 1.7287, 1.2144, 1.592, -1.8711, 1.26, 1.5782, -1.8711, 1.2144, 1.592, 1.7287, 1.2144, 1.592, -1.8711, 1.2144, 1.592, 1.7287, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, -1.8711, 1.2144, 1.592, -1.8711, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, -1.8711, 1.1723, 1.6145, 1.7287, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, -1.8711, 1.1723, 1.6145, -1.8711, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, -1.8711, 1.1355, 1.6447, 1.7287, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, -1.8711, 1.1355, 1.6447, -1.8711, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, -1.8711, 1.1053, 1.6815, 1.7287, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, -1.8711, 1.1053, 1.6815, -1.8711, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, -1.8711, 1.0828, 1.7236, 1.7287, 1.069, 1.7692, 1.7287, 1.069, 1.7692, -1.8711, 1.0828, 1.7236, -1.8711, 1.069, 1.7692, 1.7287, 1.069, 1.7692, -1.8711, 1.069, 1.7692, 1.7287, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, -1.8711, 1.069, 1.7692, -1.8711, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, -1.8711, 1.0643, 1.8166, 1.7287, 1.069, 1.864, 1.7287, 1.069, 1.864, -1.8711, 1.0643, 1.8166, -1.8711, 1.069, 1.864, 1.7287, 1.069, 1.864, -1.8711, 1.069, 1.864, 1.7287, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, -1.8711, 1.069, 1.864, -1.8711, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, -1.8711, 1.0828, 1.9096, 1.7287, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, -1.8711, 1.0828, 1.9096, -1.8711, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, -1.8711, 1.1053, 1.9517, 1.7287, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, -1.8711, 1.1053, 1.9517, -1.8711, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, -1.8711, 1.1355, 1.9885, 1.7287, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, -1.8711, 1.1355, 1.9885, -1.8711, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, -1.8711, 1.1723, 2.0187, 1.7287, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, -1.8711, 1.1723, 2.0187, -1.8711, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, -1.8711, 1.2144, 2.0412, 1.7287, 1.26, 2.055, 1.7287, 1.26, 2.055, -1.8711, 1.2144, 2.0412, -1.8711, 1.26, 2.055, 1.7287, 1.26, 2.055, -1.8711, 1.26, 2.055, 1.7287, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, -1.8711, 1.26, 2.055, -1.8711, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, -1.8711, 1.3074, 2.0597, 1.7287, 1.3548, 2.055, 1.7287, 1.3548, 2.055, -1.8711, 1.3074, 2.0597, -1.8711, 1.3548, 2.055, 1.7287, 1.3548, 2.055, -1.8711, 1.3548, 2.055, 1.7287, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, -1.8711, 1.3548, 2.055, -1.8711, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, -1.8711, 1.4004, 2.0412, 1.7287, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, -1.8711, 1.4004, 2.0412, -1.8711, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, -1.8711, 1.4425, 2.0187, 1.7287, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, -1.8711, 1.4425, 2.0187, -1.8711, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, -1.8711, 1.4793, 1.9885, 1.7287, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, -1.8711, 1.4793, 1.9885, -1.8711, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, -1.8711, 1.5095, 1.9517, 1.7287, 1.532, 1.9096, 1.7287, 1.532, 1.9096, -1.8711, 1.5095, 1.9517, -1.8711, 1.532, 1.9096, 1.7287, 1.532, 1.9096, -1.8711, 1.532, 1.9096, 1.7287, 1.5458, 1.864, 1.7287, 1.5458, 1.864, -1.8711, 1.532, 1.9096, -1.8711, 1.5458, 1.864, 1.7287, 1.5458, 1.864, -1.8711, 1.5458, 1.864, 1.7287, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, -1.8711, 1.5458, 1.864, -1.8711, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, -1.8711, 1.5505, 1.8166, 1.7287, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, -1.8711, 1.5505, 1.8166, -1.8711, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, -1.8711, 1.5458, 1.7692, 1.7287, 1.532, 1.7236, 1.7287, 1.532, 1.7236, -1.8711, 1.5458, 1.7692, -1.8711, 1.532, 1.7236, 1.7287, 1.532, 1.7236, -1.8711, 1.532, 1.7236, 1.7287, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, -1.8711, 1.532, 1.7236, -1.8711, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, -1.8711, 1.5095, 1.6815, 1.7287, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, -1.8711, 1.5095, 1.6815, -1.8711, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, -1.8711, 1.4793, 1.6447, 1.7287, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, -1.8711, 1.4793, 1.6447, -1.8711, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, -1.8711, 1.4425, 1.6145, 1.7287, 1.4004, 1.592, 1.7287, 1.4004, 1.592, -1.8711, 1.4425, 1.6145, -1.8711, 1.4004, 1.592, 1.7287, 1.3074, 1.5735, 1.7287, 1.26, 1.5782, 1.7287, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, 1.7287, 1.26, 1.5782, 1.7287, 1.4004, 1.592, 1.7287, 1.4004, 1.592, 1.7287, 1.26, 1.5782, 1.7287, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, 1.7287, 1.26, 1.5782, 1.7287, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, 1.7287, 1.26, 1.5782, 1.7287, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, 1.7287, 1.26, 1.5782, 1.7287, 1.532, 1.7236, 1.7287, 1.532, 1.7236, 1.7287, 1.26, 1.5782, 1.7287, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, 1.7287, 1.26, 1.5782, 1.7287, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, 1.7287, 1.26, 1.5782, 1.7287, 1.5458, 1.864, 1.7287, 1.5458, 1.864, 1.7287, 1.26, 1.5782, 1.7287, 1.532, 1.9096, 1.7287, 1.532, 1.9096, 1.7287, 1.26, 1.5782, 1.7287, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, 1.7287, 1.26, 1.5782, 1.7287, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, 1.7287, 1.26, 1.5782, 1.7287, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, 1.7287, 1.26, 1.5782, 1.7287, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, 1.7287, 1.26, 1.5782, 1.7287, 1.3548, 2.055, 1.7287, 1.3548, 2.055, 1.7287, 1.26, 1.5782, 1.7287, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, 1.7287, 1.26, 1.5782, 1.7287, 1.26, 2.055, 1.7287, 1.26, 2.055, 1.7287, 1.26, 1.5782, 1.7287, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, 1.7287, 1.26, 1.5782, 1.7287, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, 1.7287, 1.26, 1.5782, 1.7287, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, 1.7287, 1.26, 1.5782, 1.7287, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, 1.7287, 1.26, 1.5782, 1.7287, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, 1.7287, 1.26, 1.5782, 1.7287, 1.069, 1.864, 1.7287, 1.069, 1.864, 1.7287, 1.26, 1.5782, 1.7287, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, 1.7287, 1.26, 1.5782, 1.7287, 1.069, 1.7692, 1.7287, 1.069, 1.7692, 1.7287, 1.26, 1.5782, 1.7287, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, 1.7287, 1.26, 1.5782, 1.7287, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, 1.7287, 1.26, 1.5782, 1.7287, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, 1.7287, 1.26, 1.5782, 1.7287, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, 1.7287, 1.26, 1.5782, 1.7287, 1.2144, 1.592, 1.7287, 1.4004, 1.592, -1.8711, 1.4004, 1.592, 1.7287, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, -1.8711, 1.4004, 1.592, -1.8711, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, -1.8711, 1.3548, 1.5782, 1.7287, 1.3074, 1.5735, 1.7287, 1.3074, 1.5735, -1.8711, 1.3548, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.2144, 1.592, -1.8711, 1.2144, 1.592, -1.8711, 1.3074, 1.5735, -1.8711, 1.1723, 1.6145, -1.8711, 1.1723, 1.6145, -1.8711, 1.3074, 1.5735, -1.8711, 1.1355, 1.6447, -1.8711, 1.1355, 1.6447, -1.8711, 1.3074, 1.5735, -1.8711, 1.1053, 1.6815, -1.8711, 1.1053, 1.6815, -1.8711, 1.3074, 1.5735, -1.8711, 1.0828, 1.7236, -1.8711, 1.0828, 1.7236, -1.8711, 1.3074, 1.5735, -1.8711, 1.069, 1.7692, -1.8711, 1.069, 1.7692, -1.8711, 1.3074, 1.5735, -1.8711, 1.0643, 1.8166, -1.8711, 1.0643, 1.8166, -1.8711, 1.3074, 1.5735, -1.8711, 1.069, 1.864, -1.8711, 1.069, 1.864, -1.8711, 1.3074, 1.5735, -1.8711, 1.0828, 1.9096, -1.8711, 1.0828, 1.9096, -1.8711, 1.3074, 1.5735, -1.8711, 1.1053, 1.9517, -1.8711, 1.1053, 1.9517, -1.8711, 1.3074, 1.5735, -1.8711, 1.1355, 1.9885, -1.8711, 1.1355, 1.9885, -1.8711, 1.3074, 1.5735, -1.8711, 1.1723, 2.0187, -1.8711, 1.1723, 2.0187, -1.8711, 1.3074, 1.5735, -1.8711, 1.2144, 2.0412, -1.8711, 1.2144, 2.0412, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 2.055, -1.8711, 1.26, 2.055, -1.8711, 1.3074, 1.5735, -1.8711, 1.3074, 2.0597, -1.8711, 1.3074, 2.0597, -1.8711, 1.3074, 1.5735, -1.8711, 1.3548, 2.055, -1.8711, 1.3548, 2.055, -1.8711, 1.3074, 1.5735, -1.8711, 1.4004, 2.0412, -1.8711, 1.4004, 2.0412, -1.8711, 1.3074, 1.5735, -1.8711, 1.4425, 2.0187, -1.8711, 1.4425, 2.0187, -1.8711, 1.3074, 1.5735, -1.8711, 1.4793, 1.9885, -1.8711, 1.4793, 1.9885, -1.8711, 1.3074, 1.5735, -1.8711, 1.5095, 1.9517, -1.8711, 1.5095, 1.9517, -1.8711, 1.3074, 1.5735, -1.8711, 1.532, 1.9096, -1.8711, 1.532, 1.9096, -1.8711, 1.3074, 1.5735, -1.8711, 1.5458, 1.864, -1.8711, 1.5458, 1.864, -1.8711, 1.3074, 1.5735, -1.8711, 1.5505, 1.8166, -1.8711, 1.5505, 1.8166, -1.8711, 1.3074, 1.5735, -1.8711, 1.5458, 1.7692, -1.8711, 1.5458, 1.7692, -1.8711, 1.3074, 1.5735, -1.8711, 1.532, 1.7236, -1.8711, 1.532, 1.7236, -1.8711, 1.3074, 1.5735, -1.8711, 1.5095, 1.6815, -1.8711, 1.5095, 1.6815, -1.8711, 1.3074, 1.5735, -1.8711, 1.4793, 1.6447, -1.8711, 1.4793, 1.6447, -1.8711, 1.3074, 1.5735, -1.8711, 1.4425, 1.6145, -1.8711, 1.4425, 1.6145, -1.8711, 1.3074, 1.5735, -1.8711, 1.4004, 1.592, -1.8711, 1.4004, 1.592, -1.8711, 1.3074, 1.5735, -1.8711, 1.3548, 1.5782, 1.7287, 1.3074, 1.5735, -1.8711, 1.3074, 1.5735, 1.7287, 1.26, 1.5782, 1.7287, 1.26, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 1.5782, 1.7287, 1.26, 1.5782, -1.8711, 1.26, 1.5782, 1.7287, 1.2144, 1.592, 1.7287, 1.2144, 1.592, -1.8711, 1.26, 1.5782, -1.8711, 1.2144, 1.592, 1.7287, 1.2144, 1.592, -1.8711, 1.2144, 1.592, 1.7287, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, -1.8711, 1.2144, 1.592, -1.8711, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, -1.8711, 1.1723, 1.6145, 1.7287, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, -1.8711, 1.1723, 1.6145, -1.8711, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, -1.8711, 1.1355, 1.6447, 1.7287, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, -1.8711, 1.1355, 1.6447, -1.8711, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, -1.8711, 1.1053, 1.6815, 1.7287, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, -1.8711, 1.1053, 1.6815, -1.8711, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, -1.8711, 1.0828, 1.7236, 1.7287, 1.069, 1.7692, 1.7287, 1.069, 1.7692, -1.8711, 1.0828, 1.7236, -1.8711, 1.069, 1.7692, 1.7287, 1.069, 1.7692, -1.8711, 1.069, 1.7692, 1.7287, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, -1.8711, 1.069, 1.7692, -1.8711, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, -1.8711, 1.0643, 1.8166, 1.7287, 1.069, 1.864, 1.7287, 1.069, 1.864, -1.8711, 1.0643, 1.8166, -1.8711, 1.069, 1.864, 1.7287, 1.069, 1.864, -1.8711, 1.069, 1.864, 1.7287, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, -1.8711, 1.069, 1.864, -1.8711, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, -1.8711, 1.0828, 1.9096, 1.7287, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, -1.8711, 1.0828, 1.9096, -1.8711, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, -1.8711, 1.1053, 1.9517, 1.7287, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, -1.8711, 1.1053, 1.9517, -1.8711, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, -1.8711, 1.1355, 1.9885, 1.7287, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, -1.8711, 1.1355, 1.9885, -1.8711, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, -1.8711, 1.1723, 2.0187, 1.7287, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, -1.8711, 1.1723, 2.0187, -1.8711, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, -1.8711, 1.2144, 2.0412, 1.7287, 1.26, 2.055, 1.7287, 1.26, 2.055, -1.8711, 1.2144, 2.0412, -1.8711, 1.26, 2.055, 1.7287, 1.26, 2.055, -1.8711, 1.26, 2.055, 1.7287, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, -1.8711, 1.26, 2.055, -1.8711, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, -1.8711, 1.3074, 2.0597, 1.7287, 1.3548, 2.055, 1.7287, 1.3548, 2.055, -1.8711, 1.3074, 2.0597, -1.8711, 1.3548, 2.055, 1.7287, 1.3548, 2.055, -1.8711, 1.3548, 2.055, 1.7287, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, -1.8711, 1.3548, 2.055, -1.8711, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, -1.8711, 1.4004, 2.0412, 1.7287, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, -1.8711, 1.4004, 2.0412, -1.8711, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, -1.8711, 1.4425, 2.0187, 1.7287, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, -1.8711, 1.4425, 2.0187, -1.8711, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, -1.8711, 1.4793, 1.9885, 1.7287, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, -1.8711, 1.4793, 1.9885, -1.8711, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, -1.8711, 1.5095, 1.9517, 1.7287, 1.532, 1.9096, 1.7287, 1.532, 1.9096, -1.8711, 1.5095, 1.9517, -1.8711, 1.532, 1.9096, 1.7287, 1.532, 1.9096, -1.8711, 1.532, 1.9096, 1.7287, 1.5458, 1.864, 1.7287, 1.5458, 1.864, -1.8711, 1.532, 1.9096, -1.8711, 1.5458, 1.864, 1.7287, 1.5458, 1.864, -1.8711, 1.5458, 1.864, 1.7287, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, -1.8711, 1.5458, 1.864, -1.8711, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, -1.8711, 1.5505, 1.8166, 1.7287, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, -1.8711, 1.5505, 1.8166, -1.8711, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, -1.8711, 1.5458, 1.7692, 1.7287, 1.532, 1.7236, 1.7287, 1.532, 1.7236, -1.8711, 1.5458, 1.7692, -1.8711, 1.532, 1.7236, 1.7287, 1.532, 1.7236, -1.8711, 1.532, 1.7236, 1.7287, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, -1.8711, 1.532, 1.7236, -1.8711, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, -1.8711, 1.5095, 1.6815, 1.7287, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, -1.8711, 1.5095, 1.6815, -1.8711, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, -1.8711, 1.4793, 1.6447, 1.7287, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, -1.8711, 1.4793, 1.6447, -1.8711, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, -1.8711, 1.4425, 1.6145, 1.7287, 1.4004, 1.592, 1.7287, 1.4004, 1.592, -1.8711, 1.4425, 1.6145, -1.8711, 1.4004, 1.592, 1.7287, 1.3074, 1.5735, 1.7287, 1.26, 1.5782, 1.7287, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, 1.7287, 1.26, 1.5782, 1.7287, 1.4004, 1.592, 1.7287, 1.4004, 1.592, 1.7287, 1.26, 1.5782, 1.7287, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, 1.7287, 1.26, 1.5782, 1.7287, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, 1.7287, 1.26, 1.5782, 1.7287, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, 1.7287, 1.26, 1.5782, 1.7287, 1.532, 1.7236, 1.7287, 1.532, 1.7236, 1.7287, 1.26, 1.5782, 1.7287, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, 1.7287, 1.26, 1.5782, 1.7287, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, 1.7287, 1.26, 1.5782, 1.7287, 1.5458, 1.864, 1.7287, 1.5458, 1.864, 1.7287, 1.26, 1.5782, 1.7287, 1.532, 1.9096, 1.7287, 1.532, 1.9096, 1.7287, 1.26, 1.5782, 1.7287, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, 1.7287, 1.26, 1.5782, 1.7287, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, 1.7287, 1.26, 1.5782, 1.7287, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, 1.7287, 1.26, 1.5782, 1.7287, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, 1.7287, 1.26, 1.5782, 1.7287, 1.3548, 2.055, 1.7287, 1.3548, 2.055, 1.7287, 1.26, 1.5782, 1.7287, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, 1.7287, 1.26, 1.5782, 1.7287, 1.26, 2.055, 1.7287, 1.26, 2.055, 1.7287, 1.26, 1.5782, 1.7287, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, 1.7287, 1.26, 1.5782, 1.7287, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, 1.7287, 1.26, 1.5782, 1.7287, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, 1.7287, 1.26, 1.5782, 1.7287, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, 1.7287, 1.26, 1.5782, 1.7287, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, 1.7287, 1.26, 1.5782, 1.7287, 1.069, 1.864, 1.7287, 1.069, 1.864, 1.7287, 1.26, 1.5782, 1.7287, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, 1.7287, 1.26, 1.5782, 1.7287, 1.069, 1.7692, 1.7287, 1.069, 1.7692, 1.7287, 1.26, 1.5782, 1.7287, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, 1.7287, 1.26, 1.5782, 1.7287, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, 1.7287, 1.26, 1.5782, 1.7287, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, 1.7287, 1.26, 1.5782, 1.7287, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, 1.7287, 1.26, 1.5782, 1.7287, 1.2144, 1.592, 1.7287, 1.4004, 1.592, -1.8711, 1.4004, 1.592, 1.7287, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, -1.8711, 1.4004, 1.592, -1.8711, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, -1.8711, 1.3548, 1.5782, 1.7287, 1.3074, 1.5735, 1.7287, 1.3074, 1.5735, -1.8711, 1.3548, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.2144, 1.592, -1.8711, 1.2144, 1.592, -1.8711, 1.3074, 1.5735, -1.8711, 1.1723, 1.6145, -1.8711, 1.1723, 1.6145, -1.8711, 1.3074, 1.5735, -1.8711, 1.1355, 1.6447, -1.8711, 1.1355, 1.6447, -1.8711, 1.3074, 1.5735, -1.8711, 1.1053, 1.6815, -1.8711, 1.1053, 1.6815, -1.8711, 1.3074, 1.5735, -1.8711, 1.0828, 1.7236, -1.8711, 1.0828, 1.7236, -1.8711, 1.3074, 1.5735, -1.8711, 1.069, 1.7692, -1.8711, 1.069, 1.7692, -1.8711, 1.3074, 1.5735, -1.8711, 1.0643, 1.8166, -1.8711, 1.0643, 1.8166, -1.8711, 1.3074, 1.5735, -1.8711, 1.069, 1.864, -1.8711, 1.069, 1.864, -1.8711, 1.3074, 1.5735, -1.8711, 1.0828, 1.9096, -1.8711, 1.0828, 1.9096, -1.8711, 1.3074, 1.5735, -1.8711, 1.1053, 1.9517, -1.8711, 1.1053, 1.9517, -1.8711, 1.3074, 1.5735, -1.8711, 1.1355, 1.9885, -1.8711, 1.1355, 1.9885, -1.8711, 1.3074, 1.5735, -1.8711, 1.1723, 2.0187, -1.8711, 1.1723, 2.0187, -1.8711, 1.3074, 1.5735, -1.8711, 1.2144, 2.0412, -1.8711, 1.2144, 2.0412, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 2.055, -1.8711, 1.26, 2.055, -1.8711, 1.3074, 1.5735, -1.8711, 1.3074, 2.0597, -1.8711, 1.3074, 2.0597, -1.8711, 1.3074, 1.5735, -1.8711, 1.3548, 2.055, -1.8711, 1.3548, 2.055, -1.8711, 1.3074, 1.5735, -1.8711, 1.4004, 2.0412, -1.8711, 1.4004, 2.0412, -1.8711, 1.3074, 1.5735, -1.8711, 1.4425, 2.0187, -1.8711, 1.4425, 2.0187, -1.8711, 1.3074, 1.5735, -1.8711, 1.4793, 1.9885, -1.8711, 1.4793, 1.9885, -1.8711, 1.3074, 1.5735, -1.8711, 1.5095, 1.9517, -1.8711, 1.5095, 1.9517, -1.8711, 1.3074, 1.5735, -1.8711, 1.532, 1.9096, -1.8711, 1.532, 1.9096, -1.8711, 1.3074, 1.5735, -1.8711, 1.5458, 1.864, -1.8711, 1.5458, 1.864, -1.8711, 1.3074, 1.5735, -1.8711, 1.5505, 1.8166, -1.8711, 1.5505, 1.8166, -1.8711, 1.3074, 1.5735, -1.8711, 1.5458, 1.7692, -1.8711, 1.5458, 1.7692, -1.8711, 1.3074, 1.5735, -1.8711, 1.532, 1.7236, -1.8711, 1.532, 1.7236, -1.8711, 1.3074, 1.5735, -1.8711, 1.5095, 1.6815, -1.8711, 1.5095, 1.6815, -1.8711, 1.3074, 1.5735, -1.8711, 1.4793, 1.6447, -1.8711, 1.4793, 1.6447, -1.8711, 1.3074, 1.5735, -1.8711, 1.4425, 1.6145, -1.8711, 1.4425, 1.6145, -1.8711, 1.3074, 1.5735, -1.8711, 1.4004, 1.592, -1.8711, 1.4004, 1.592, -1.8711, 1.3074, 1.5735, -1.8711, 1.3548, 1.5782, 1.7287, -1.0163, 1.5735, -1.8711, -1.0163, 1.5735, 1.7287, -1.0637, 1.5782, 1.7287, -1.0637, 1.5782, -1.8711, -1.0163, 1.5735, -1.8711, -1.0637, 1.5782, 1.7287, -1.0637, 1.5782, -1.8711, -1.0637, 1.5782, 1.7287, -1.1093, 1.592, 1.7287, -1.1093, 1.592, -1.8711, -1.0637, 1.5782, -1.8711, -1.1093, 1.592, 1.7287, -1.1093, 1.592, -1.8711, -1.1093, 1.592, 1.7287, -1.1514, 1.6145, 1.7287, -1.1514, 1.6145, -1.8711, -1.1093, 1.592, -1.8711, -1.1514, 1.6145, 1.7287, -1.1514, 1.6145, -1.8711, -1.1514, 1.6145, 1.7287, -1.1882, 1.6447, 1.7287, -1.1882, 1.6447, -1.8711, -1.1514, 1.6145, -1.8711, -1.1882, 1.6447, 1.7287, -1.1882, 1.6447, -1.8711, -1.1882, 1.6447, 1.7287, -1.2185, 1.6815, 1.7287, -1.2185, 1.6815, -1.8711, -1.1882, 1.6447, -1.8711, -1.2185, 1.6815, 1.7287, -1.2185, 1.6815, -1.8711, -1.2185, 1.6815, 1.7287, -1.2409, 1.7236, 1.7287, -1.2409, 1.7236, -1.8711, -1.2185, 1.6815, -1.8711, -1.2409, 1.7236, 1.7287, -1.2409, 1.7236, -1.8711, -1.2409, 1.7236, 1.7287, -1.2548, 1.7692, 1.7287, -1.2548, 1.7692, -1.8711, -1.2409, 1.7236, -1.8711, -1.2548, 1.7692, 1.7287, -1.2548, 1.7692, -1.8711, -1.2548, 1.7692, 1.7287, -1.2594, 1.8166, 1.7287, -1.2594, 1.8166, -1.8711, -1.2548, 1.7692, -1.8711, -1.2594, 1.8166, 1.7287, -1.2594, 1.8166, -1.8711, -1.2594, 1.8166, 1.7287, -1.2548, 1.864, 1.7287, -1.2548, 1.864, -1.8711, -1.2594, 1.8166, -1.8711, -1.2548, 1.864, 1.7287, -1.2548, 1.864, -1.8711, -1.2548, 1.864, 1.7287, -1.2409, 1.9096, 1.7287, -1.2409, 1.9096, -1.8711, -1.2548, 1.864, -1.8711, -1.2409, 1.9096, 1.7287, -1.2409, 1.9096, -1.8711, -1.2409, 1.9096, 1.7287, -1.2185, 1.9517, 1.7287, -1.2185, 1.9517, -1.8711, -1.2409, 1.9096, -1.8711, -1.2185, 1.9517, 1.7287, -1.2185, 1.9517, -1.8711, -1.2185, 1.9517, 1.7287, -1.1882, 1.9885, 1.7287, -1.1882, 1.9885, -1.8711, -1.2185, 1.9517, -1.8711, -1.1882, 1.9885, 1.7287, -1.1882, 1.9885, -1.8711, -1.1882, 1.9885, 1.7287, -1.1514, 2.0187, 1.7287, -1.1514, 2.0187, -1.8711, -1.1882, 1.9885, -1.8711, -1.1514, 2.0187, 1.7287, -1.1514, 2.0187, -1.8711, -1.1514, 2.0187, 1.7287, -1.1093, 2.0412, 1.7287, -1.1093, 2.0412, -1.8711, -1.1514, 2.0187, -1.8711, -1.1093, 2.0412, 1.7287, -1.1093, 2.0412, -1.8711, -1.1093, 2.0412, 1.7287, -1.0637, 2.055, 1.7287, -1.0637, 2.055, -1.8711, -1.1093, 2.0412, -1.8711, -1.0637, 2.055, 1.7287, -1.0637, 2.055, -1.8711, -1.0637, 2.055, 1.7287, -1.0163, 2.0597, 1.7287, -1.0163, 2.0597, -1.8711, -1.0637, 2.055, -1.8711, -1.0163, 2.0597, 1.7287, -1.0163, 2.0597, -1.8711, -1.0163, 2.0597, 1.7287, -0.9689, 2.055, 1.7287, -0.9689, 2.055, -1.8711, -1.0163, 2.0597, -1.8711, -0.9689, 2.055, 1.7287, -0.9689, 2.055, -1.8711, -0.9689, 2.055, 1.7287, -0.9233, 2.0412, 1.7287, -0.9233, 2.0412, -1.8711, -0.9689, 2.055, -1.8711, -0.9233, 2.0412, 1.7287, -0.9233, 2.0412, -1.8711, -0.9233, 2.0412, 1.7287, -0.8812, 2.0187, 1.7287, -0.8812, 2.0187, -1.8711, -0.9233, 2.0412, -1.8711, -0.8812, 2.0187, 1.7287, -0.8812, 2.0187, -1.8711, -0.8812, 2.0187, 1.7287, -0.8444, 1.9885, 1.7287, -0.8444, 1.9885, -1.8711, -0.8812, 2.0187, -1.8711, -0.8444, 1.9885, 1.7287, -0.8444, 1.9885, -1.8711, -0.8444, 1.9885, 1.7287, -0.8142, 1.9517, 1.7287, -0.8142, 1.9517, -1.8711, -0.8444, 1.9885, -1.8711, -0.8142, 1.9517, 1.7287, -0.8142, 1.9517, -1.8711, -0.8142, 1.9517, 1.7287, -0.7917, 1.9096, 1.7287, -0.7917, 1.9096, -1.8711, -0.8142, 1.9517, -1.8711, -0.7917, 1.9096, 1.7287, -0.7917, 1.9096, -1.8711, -0.7917, 1.9096, 1.7287, -0.7779, 1.864, 1.7287, -0.7779, 1.864, -1.8711, -0.7917, 1.9096, -1.8711, -0.7779, 1.864, 1.7287, -0.7779, 1.864, -1.8711, -0.7779, 1.864, 1.7287, -0.7732, 1.8166, 1.7287, -0.7732, 1.8166, -1.8711, -0.7779, 1.864, -1.8711, -0.7732, 1.8166, 1.7287, -0.7732, 1.8166, -1.8711, -0.7732, 1.8166, 1.7287, -0.7779, 1.7692, 1.7287, -0.7779, 1.7692, -1.8711, -0.7732, 1.8166, -1.8711, -0.7779, 1.7692, 1.7287, -0.7779, 1.7692, -1.8711, -0.7779, 1.7692, 1.7287, -0.7917, 1.7236, 1.7287, -0.7917, 1.7236, -1.8711, -0.7779, 1.7692, -1.8711, -0.7917, 1.7236, 1.7287, -0.7917, 1.7236, -1.8711, -0.7917, 1.7236, 1.7287, -0.8142, 1.6815, 1.7287, -0.8142, 1.6815, -1.8711, -0.7917, 1.7236, -1.8711, -0.8142, 1.6815, 1.7287, -0.8142, 1.6815, -1.8711, -0.8142, 1.6815, 1.7287, -0.8444, 1.6447, 1.7287, -0.8444, 1.6447, -1.8711, -0.8142, 1.6815, -1.8711, -0.8444, 1.6447, 1.7287, -0.8444, 1.6447, -1.8711, -0.8444, 1.6447, 1.7287, -0.8813, 1.6145, 1.7287, -0.8813, 1.6145, -1.8711, -0.8444, 1.6447, -1.8711, -0.8812, 1.6145, 1.7287, -0.8813, 1.6145, -1.8711, -0.8812, 1.6145, 1.7287, -0.9233, 1.592, 1.7287, -0.9233, 1.592, -1.8711, -0.8812, 1.6145, -1.8711, -0.9233, 1.592, 1.7287, -1.0163, 1.5735, 1.7287, -1.0637, 1.5782, 1.7287, -0.9689, 1.5782, 1.7287, -0.9689, 1.5782, 1.7287, -1.0637, 1.5782, 1.7287, -0.9233, 1.592, 1.7287, -0.9233, 1.592, 1.7287, -1.0637, 1.5782, 1.7287, -0.8813, 1.6145, 1.7287, -0.8813, 1.6145, 1.7287, -1.0637, 1.5782, 1.7287, -0.8444, 1.6447, 1.7287, -0.8444, 1.6447, 1.7287, -1.0637, 1.5782, 1.7287, -0.8142, 1.6815, 1.7287, -0.8142, 1.6815, 1.7287, -1.0637, 1.5782, 1.7287, -0.7917, 1.7236, 1.7287, -0.7917, 1.7236, 1.7287, -1.0637, 1.5782, 1.7287, -0.7779, 1.7692, 1.7287, -0.7779, 1.7692, 1.7287, -1.0637, 1.5782, 1.7287, -0.7732, 1.8166, 1.7287, -0.7732, 1.8166, 1.7287, -1.0637, 1.5782, 1.7287, -0.7779, 1.864, 1.7287, -0.7779, 1.864, 1.7287, -1.0637, 1.5782, 1.7287, -0.7917, 1.9096, 1.7287, -0.7917, 1.9096, 1.7287, -1.0637, 1.5782, 1.7287, -0.8142, 1.9517, 1.7287, -0.8142, 1.9517, 1.7287, -1.0637, 1.5782, 1.7287, -0.8444, 1.9885, 1.7287, -0.8444, 1.9885, 1.7287, -1.0637, 1.5782, 1.7287, -0.8812, 2.0187, 1.7287, -0.8812, 2.0187, 1.7287, -1.0637, 1.5782, 1.7287, -0.9233, 2.0412, 1.7287, -0.9233, 2.0412, 1.7287, -1.0637, 1.5782, 1.7287, -0.9689, 2.055, 1.7287, -0.9689, 2.055, 1.7287, -1.0637, 1.5782, 1.7287, -1.0163, 2.0597, 1.7287, -1.0163, 2.0597, 1.7287, -1.0637, 1.5782, 1.7287, -1.0637, 2.055, 1.7287, -1.0637, 2.055, 1.7287, -1.0637, 1.5782, 1.7287, -1.1093, 2.0412, 1.7287, -1.1093, 2.0412, 1.7287, -1.0637, 1.5782, 1.7287, -1.1514, 2.0187, 1.7287, -1.1514, 2.0187, 1.7287, -1.0637, 1.5782, 1.7287, -1.1882, 1.9885, 1.7287, -1.1882, 1.9885, 1.7287, -1.0637, 1.5782, 1.7287, -1.2185, 1.9517, 1.7287, -1.2185, 1.9517, 1.7287, -1.0637, 1.5782, 1.7287, -1.2409, 1.9096, 1.7287, -1.2409, 1.9096, 1.7287, -1.0637, 1.5782, 1.7287, -1.2548, 1.864, 1.7287, -1.2548, 1.864, 1.7287, -1.0637, 1.5782, 1.7287, -1.2594, 1.8166, 1.7287, -1.2594, 1.8166, 1.7287, -1.0637, 1.5782, 1.7287, -1.2548, 1.7692, 1.7287, -1.2548, 1.7692, 1.7287, -1.0637, 1.5782, 1.7287, -1.2409, 1.7236, 1.7287, -1.2409, 1.7236, 1.7287, -1.0637, 1.5782, 1.7287, -1.2185, 1.6815, 1.7287, -1.2185, 1.6815, 1.7287, -1.0637, 1.5782, 1.7287, -1.1882, 1.6447, 1.7287, -1.1882, 1.6447, 1.7287, -1.0637, 1.5782, 1.7287, -1.1514, 1.6145, 1.7287, -1.1514, 1.6145, 1.7287, -1.0637, 1.5782, 1.7287, -1.1093, 1.592, 1.7287, -0.9233, 1.592, -1.8711, -0.9233, 1.592, 1.7287, -0.9689, 1.5782, 1.7287, -0.9689, 1.5782, -1.8711, -0.9233, 1.592, -1.8711, -0.9689, 1.5782, 1.7287, -0.9689, 1.5782, -1.8711, -0.9689, 1.5782, 1.7287, -1.0163, 1.5735, 1.7287, -1.0163, 1.5735, -1.8711, -0.9689, 1.5782, -1.8711, -1.0163, 1.5735, -1.8711, -1.0637, 1.5782, -1.8711, -1.0163, 1.5735, -1.8711, -1.1093, 1.592, -1.8711, -1.1093, 1.592, -1.8711, -1.0163, 1.5735, -1.8711, -1.1514, 1.6145, -1.8711, -1.1514, 1.6145, -1.8711, -1.0163, 1.5735, -1.8711, -1.1882, 1.6447, -1.8711, -1.1882, 1.6447, -1.8711, -1.0163, 1.5735, -1.8711, -1.2185, 1.6815, -1.8711, -1.2185, 1.6815, -1.8711, -1.0163, 1.5735, -1.8711, -1.2409, 1.7236, -1.8711, -1.2409, 1.7236, -1.8711, -1.0163, 1.5735, -1.8711, -1.2548, 1.7692, -1.8711, -1.2548, 1.7692, -1.8711, -1.0163, 1.5735, -1.8711, -1.2594, 1.8166, -1.8711, -1.2594, 1.8166, -1.8711, -1.0163, 1.5735, -1.8711, -1.2548, 1.864, -1.8711, -1.2548, 1.864, -1.8711, -1.0163, 1.5735, -1.8711, -1.2409, 1.9096, -1.8711, -1.2409, 1.9096, -1.8711, -1.0163, 1.5735, -1.8711, -1.2185, 1.9517, -1.8711, -1.2185, 1.9517, -1.8711, -1.0163, 1.5735, -1.8711, -1.1882, 1.9885, -1.8711, -1.1882, 1.9885, -1.8711, -1.0163, 1.5735, -1.8711, -1.1514, 2.0187, -1.8711, -1.1514, 2.0187, -1.8711, -1.0163, 1.5735, -1.8711, -1.1093, 2.0412, -1.8711, -1.1093, 2.0412, -1.8711, -1.0163, 1.5735, -1.8711, -1.0637, 2.055, -1.8711, -1.0637, 2.055, -1.8711, -1.0163, 1.5735, -1.8711, -1.0163, 2.0597, -1.8711, -1.0163, 2.0597, -1.8711, -1.0163, 1.5735, -1.8711, -0.9689, 2.055, -1.8711, -0.9689, 2.055, -1.8711, -1.0163, 1.5735, -1.8711, -0.9233, 2.0412, -1.8711, -0.9233, 2.0412, -1.8711, -1.0163, 1.5735, -1.8711, -0.8812, 2.0187, -1.8711, -0.8812, 2.0187, -1.8711, -1.0163, 1.5735, -1.8711, -0.8444, 1.9885, -1.8711, -0.8444, 1.9885, -1.8711, -1.0163, 1.5735, -1.8711, -0.8142, 1.9517, -1.8711, -0.8142, 1.9517, -1.8711, -1.0163, 1.5735, -1.8711, -0.7917, 1.9096, -1.8711, -0.7917, 1.9096, -1.8711, -1.0163, 1.5735, -1.8711, -0.7779, 1.864, -1.8711, -0.7779, 1.864, -1.8711, -1.0163, 1.5735, -1.8711, -0.7732, 1.8166, -1.8711, -0.7732, 1.8166, -1.8711, -1.0163, 1.5735, -1.8711, -0.7779, 1.7692, -1.8711, -0.7779, 1.7692, -1.8711, -1.0163, 1.5735, -1.8711, -0.7917, 1.7236, -1.8711, -0.7917, 1.7236, -1.8711, -1.0163, 1.5735, -1.8711, -0.8142, 1.6815, -1.8711, -0.8142, 1.6815, -1.8711, -1.0163, 1.5735, -1.8711, -0.8444, 1.6447, -1.8711, -0.8444, 1.6447, -1.8711, -1.0163, 1.5735, -1.8711, -0.8812, 1.6145, -1.8711, -0.8812, 1.6145, -1.8711, -1.0163, 1.5735, -1.8711, -0.9233, 1.592, -1.8711, -0.9233, 1.592, -1.8711, -1.0163, 1.5735, -1.8711, -0.9689, 1.5782, 1.7287, 0.1455, 2.1544, -1.8711, 0.1455, 2.1544, 1.7287, 0.0981, 2.1591, 1.7287, 0.0981, 2.1591, -1.8711, 0.1455, 2.1544, -1.8711, 0.0981, 2.1591, 1.7287, 0.0981, 2.1591, -1.8711, 0.0981, 2.1591, 1.7287, 0.0525, 2.1729, 1.7287, 0.0525, 2.1729, -1.8711, 0.0981, 2.1591, -1.8711, 0.0525, 2.1729, 1.7287, 0.0525, 2.1729, -1.8711, 0.0525, 2.1729, 1.7287, 0.0105, 2.1954, 1.7287, 0.0105, 2.1954, -1.8711, 0.0525, 2.1729, -1.8711, 0.0105, 2.1954, 1.7287, 0.0105, 2.1954, -1.8711, 0.0105, 2.1954, 1.7287, -0.0264, 2.2256, 1.7287, -0.0264, 2.2256, -1.8711, 0.0105, 2.1954, -1.8711, -0.0264, 2.2256, 1.7287, -0.0264, 2.2256, -1.8711, -0.0264, 2.2256, 1.7287, -0.0566, 2.2625, 1.7287, -0.0566, 2.2625, -1.8711, -0.0264, 2.2256, -1.8711, -0.0566, 2.2625, 1.7287, -0.0566, 2.2625, -1.8711, -0.0566, 2.2625, 1.7287, -0.0791, 2.3045, 1.7287, -0.0791, 2.3045, -1.8711, -0.0566, 2.2625, -1.8711, -0.0791, 2.3045, 1.7287, -0.0791, 2.3045, -1.8711, -0.0791, 2.3045, 1.7287, -0.0929, 2.3501, 1.7287, -0.0929, 2.3501, -1.8711, -0.0791, 2.3045, -1.8711, -0.0929, 2.3501, 1.7287, -0.0929, 2.3501, -1.8711, -0.0929, 2.3501, 1.7287, -0.0976, 2.3975, 1.7287, -0.0976, 2.3975, -1.8711, -0.0929, 2.3501, -1.8711, -0.0976, 2.3975, 1.7287, -0.0976, 2.3975, -1.8711, -0.0976, 2.3975, 1.7287, -0.0929, 2.445, 1.7287, -0.0929, 2.445, -1.8711, -0.0976, 2.3975, -1.8711, -0.0929, 2.445, 1.7287, -0.0929, 2.445, -1.8711, -0.0929, 2.445, 1.7287, -0.0791, 2.4906, 1.7287, -0.0791, 2.4906, -1.8711, -0.0929, 2.445, -1.8711, -0.0791, 2.4906, 1.7287, -0.0791, 2.4906, -1.8711, -0.0791, 2.4906, 1.7287, -0.0566, 2.5326, 1.7287, -0.0566, 2.5326, -1.8711, -0.0791, 2.4906, -1.8711, -0.0566, 2.5326, 1.7287, -0.0566, 2.5326, -1.8711, -0.0566, 2.5326, 1.7287, -0.0264, 2.5694, 1.7287, -0.0264, 2.5694, -1.8711, -0.0566, 2.5326, -1.8711, -0.0264, 2.5694, 1.7287, -0.0264, 2.5694, -1.8711, -0.0264, 2.5694, 1.7287, 0.0105, 2.5997, 1.7287, 0.0105, 2.5997, -1.8711, -0.0264, 2.5694, -1.8711, 0.0105, 2.5997, 1.7287, 0.0105, 2.5997, -1.8711, 0.0105, 2.5997, 1.7287, 0.0525, 2.6221, 1.7287, 0.0525, 2.6221, -1.8711, 0.0105, 2.5997, -1.8711, 0.0525, 2.6221, 1.7287, 0.0525, 2.6221, -1.8711, 0.0525, 2.6221, 1.7287, 0.0981, 2.636, 1.7287, 0.0981, 2.636, -1.8711, 0.0525, 2.6221, -1.8711, 0.0981, 2.636, 1.7287, 0.0981, 2.636, -1.8711, 0.0981, 2.636, 1.7287, 0.1455, 2.6406, 1.7287, 0.1455, 2.6406, -1.8711, 0.0981, 2.636, -1.8711, 0.1455, 2.6406, 1.7287, 0.1455, 2.6406, -1.8711, 0.1455, 2.6406, 1.7287, 0.193, 2.636, 1.7287, 0.193, 2.636, -1.8711, 0.1455, 2.6406, -1.8711, 0.193, 2.636, 1.7287, 0.193, 2.636, -1.8711, 0.193, 2.636, 1.7287, 0.2386, 2.6221, 1.7287, 0.2386, 2.6221, -1.8711, 0.193, 2.636, -1.8711, 0.2386, 2.6221, 1.7287, 0.2386, 2.6221, -1.8711, 0.2386, 2.6221, 1.7287, 0.2806, 2.5997, 1.7287, 0.2806, 2.5997, -1.8711, 0.2386, 2.6221, -1.8711, 0.2806, 2.5997, 1.7287, 0.2806, 2.5997, -1.8711, 0.2806, 2.5997, 1.7287, 0.3174, 2.5694, 1.7287, 0.3174, 2.5694, -1.8711, 0.2806, 2.5997, -1.8711, 0.3174, 2.5694, 1.7287, 0.3174, 2.5694, -1.8711, 0.3174, 2.5694, 1.7287, 0.3477, 2.5326, 1.7287, 0.3477, 2.5326, -1.8711, 0.3174, 2.5694, -1.8711, 0.3477, 2.5326, 1.7287, 0.3477, 2.5326, -1.8711, 0.3477, 2.5326, 1.7287, 0.3701, 2.4906, 1.7287, 0.3701, 2.4906, -1.8711, 0.3477, 2.5326, -1.8711, 0.3701, 2.4906, 1.7287, 0.3701, 2.4906, -1.8711, 0.3701, 2.4906, 1.7287, 0.384, 2.445, 1.7287, 0.384, 2.445, -1.8711, 0.3701, 2.4906, -1.8711, 0.384, 2.445, 1.7287, 0.384, 2.445, -1.8711, 0.384, 2.445, 1.7287, 0.3886, 2.3975, 1.7287, 0.3886, 2.3975, -1.8711, 0.384, 2.445, -1.8711, 0.3886, 2.3975, 1.7287, 0.3886, 2.3975, -1.8711, 0.3886, 2.3975, 1.7287, 0.384, 2.3501, 1.7287, 0.384, 2.3501, -1.8711, 0.3886, 2.3975, -1.8711, 0.384, 2.3501, 1.7287, 0.384, 2.3501, -1.8711, 0.384, 2.3501, 1.7287, 0.3701, 2.3045, 1.7287, 0.3701, 2.3045, -1.8711, 0.384, 2.3501, -1.8711, 0.3701, 2.3045, 1.7287, 0.3701, 2.3045, -1.8711, 0.3701, 2.3045, 1.7287, 0.3477, 2.2625, 1.7287, 0.3477, 2.2625, -1.8711, 0.3701, 2.3045, -1.8711, 0.3477, 2.2625, 1.7287, 0.3477, 2.2625, -1.8711, 0.3477, 2.2625, 1.7287, 0.3174, 2.2256, 1.7287, 0.3174, 2.2256, -1.8711, 0.3477, 2.2625, -1.8711, 0.3174, 2.2256, 1.7287, 0.3174, 2.2256, -1.8711, 0.3174, 2.2256, 1.7287, 0.2806, 2.1954, 1.7287, 0.2806, 2.1954, -1.8711, 0.3174, 2.2256, -1.8711, 0.2806, 2.1954, 1.7287, 0.2806, 2.1954, -1.8711, 0.2806, 2.1954, 1.7287, 0.2386, 2.1729, 1.7287, 0.2386, 2.1729, -1.8711, 0.2806, 2.1954, -1.8711, 0.2386, 2.1729, 1.7287, 0.1455, 2.1544, 1.7287, 0.0981, 2.1591, 1.7287, 0.193, 2.1591, 1.7287, 0.193, 2.1591, 1.7287, 0.0981, 2.1591, 1.7287, 0.2386, 2.1729, 1.7287, 0.2386, 2.1729, 1.7287, 0.0981, 2.1591, 1.7287, 0.2806, 2.1954, 1.7287, 0.2806, 2.1954, 1.7287, 0.0981, 2.1591, 1.7287, 0.3174, 2.2256, 1.7287, 0.3174, 2.2256, 1.7287, 0.0981, 2.1591, 1.7287, 0.3477, 2.2625, 1.7287, 0.3477, 2.2625, 1.7287, 0.0981, 2.1591, 1.7287, 0.3701, 2.3045, 1.7287, 0.3701, 2.3045, 1.7287, 0.0981, 2.1591, 1.7287, 0.384, 2.3501, 1.7287, 0.384, 2.3501, 1.7287, 0.0981, 2.1591, 1.7287, 0.3886, 2.3975, 1.7287, 0.3886, 2.3975, 1.7287, 0.0981, 2.1591, 1.7287, 0.384, 2.445, 1.7287, 0.384, 2.445, 1.7287, 0.0981, 2.1591, 1.7287, 0.3701, 2.4906, 1.7287, 0.3701, 2.4906, 1.7287, 0.0981, 2.1591, 1.7287, 0.3477, 2.5326, 1.7287, 0.3477, 2.5326, 1.7287, 0.0981, 2.1591, 1.7287, 0.3174, 2.5694, 1.7287, 0.3174, 2.5694, 1.7287, 0.0981, 2.1591, 1.7287, 0.2806, 2.5997, 1.7287, 0.2806, 2.5997, 1.7287, 0.0981, 2.1591, 1.7287, 0.2386, 2.6221, 1.7287, 0.2386, 2.6221, 1.7287, 0.0981, 2.1591, 1.7287, 0.193, 2.636, 1.7287, 0.193, 2.636, 1.7287, 0.0981, 2.1591, 1.7287, 0.1455, 2.6406, 1.7287, 0.1455, 2.6406, 1.7287, 0.0981, 2.1591, 1.7287, 0.0981, 2.636, 1.7287, 0.0981, 2.636, 1.7287, 0.0981, 2.1591, 1.7287, 0.0525, 2.6221, 1.7287, 0.0525, 2.6221, 1.7287, 0.0981, 2.1591, 1.7287, 0.0105, 2.5997, 1.7287, 0.0105, 2.5997, 1.7287, 0.0981, 2.1591, 1.7287, -0.0264, 2.5694, 1.7287, -0.0264, 2.5694, 1.7287, 0.0981, 2.1591, 1.7287, -0.0566, 2.5326, 1.7287, -0.0566, 2.5326, 1.7287, 0.0981, 2.1591, 1.7287, -0.0791, 2.4906, 1.7287, -0.0791, 2.4906, 1.7287, 0.0981, 2.1591, 1.7287, -0.0929, 2.445, 1.7287, -0.0929, 2.445, 1.7287, 0.0981, 2.1591, 1.7287, -0.0976, 2.3975, 1.7287, -0.0976, 2.3975, 1.7287, 0.0981, 2.1591, 1.7287, -0.0929, 2.3501, 1.7287, -0.0929, 2.3501, 1.7287, 0.0981, 2.1591, 1.7287, -0.0791, 2.3045, 1.7287, -0.0791, 2.3045, 1.7287, 0.0981, 2.1591, 1.7287, -0.0566, 2.2625, 1.7287, -0.0566, 2.2625, 1.7287, 0.0981, 2.1591, 1.7287, -0.0264, 2.2256, 1.7287, -0.0264, 2.2256, 1.7287, 0.0981, 2.1591, 1.7287, 0.0105, 2.1954, 1.7287, 0.0105, 2.1954, 1.7287, 0.0981, 2.1591, 1.7287, 0.0525, 2.1729, 1.7287, 0.2386, 2.1729, -1.8711, 0.2386, 2.1729, 1.7287, 0.193, 2.1591, 1.7287, 0.193, 2.1591, -1.8711, 0.2386, 2.1729, -1.8711, 0.193, 2.1591, 1.7287, 0.193, 2.1591, -1.8711, 0.193, 2.1591, 1.7287, 0.1455, 2.1544, 1.7287, 0.1455, 2.1544, -1.8711, 0.193, 2.1591, -1.8711, 0.1455, 2.1544, -1.8711, 0.0981, 2.1591, -1.8711, 0.1455, 2.1544, -1.8711, 0.0525, 2.1729, -1.8711, 0.0525, 2.1729, -1.8711, 0.1455, 2.1544, -1.8711, 0.0105, 2.1954, -1.8711, 0.0105, 2.1954, -1.8711, 0.1455, 2.1544, -1.8711, -0.0264, 2.2256, -1.8711, -0.0264, 2.2256, -1.8711, 0.1455, 2.1544, -1.8711, -0.0566, 2.2625, -1.8711, -0.0566, 2.2625, -1.8711, 0.1455, 2.1544, -1.8711, -0.0791, 2.3045, -1.8711, -0.0791, 2.3045, -1.8711, 0.1455, 2.1544, -1.8711, -0.0929, 2.3501, -1.8711, -0.0929, 2.3501, -1.8711, 0.1455, 2.1544, -1.8711, -0.0976, 2.3975, -1.8711, -0.0976, 2.3975, -1.8711, 0.1455, 2.1544, -1.8711, -0.0929, 2.445, -1.8711, -0.0929, 2.445, -1.8711, 0.1455, 2.1544, -1.8711, -0.0791, 2.4906, -1.8711, -0.0791, 2.4906, -1.8711, 0.1455, 2.1544, -1.8711, -0.0566, 2.5326, -1.8711, -0.0566, 2.5326, -1.8711, 0.1455, 2.1544, -1.8711, -0.0264, 2.5694, -1.8711, -0.0264, 2.5694, -1.8711, 0.1455, 2.1544, -1.8711, 0.0105, 2.5997, -1.8711, 0.0105, 2.5997, -1.8711, 0.1455, 2.1544, -1.8711, 0.0525, 2.6221, -1.8711, 0.0525, 2.6221, -1.8711, 0.1455, 2.1544, -1.8711, 0.0981, 2.636, -1.8711, 0.0981, 2.636, -1.8711, 0.1455, 2.1544, -1.8711, 0.1455, 2.6406, -1.8711, 0.1455, 2.6406, -1.8711, 0.1455, 2.1544, -1.8711, 0.193, 2.636, -1.8711, 0.193, 2.636, -1.8711, 0.1455, 2.1544, -1.8711, 0.2386, 2.6221, -1.8711, 0.2386, 2.6221, -1.8711, 0.1455, 2.1544, -1.8711, 0.2806, 2.5997, -1.8711, 0.2806, 2.5997, -1.8711, 0.1455, 2.1544, -1.8711, 0.3174, 2.5694, -1.8711, 0.3174, 2.5694, -1.8711, 0.1455, 2.1544, -1.8711, 0.3477, 2.5326, -1.8711, 0.3477, 2.5326, -1.8711, 0.1455, 2.1544, -1.8711, 0.3701, 2.4906, -1.8711, 0.3701, 2.4906, -1.8711, 0.1455, 2.1544, -1.8711, 0.384, 2.445, -1.8711, 0.384, 2.445, -1.8711, 0.1455, 2.1544, -1.8711, 0.3886, 2.3975, -1.8711, 0.3886, 2.3975, -1.8711, 0.1455, 2.1544, -1.8711, 0.384, 2.3501, -1.8711, 0.384, 2.3501, -1.8711, 0.1455, 2.1544, -1.8711, 0.3701, 2.3045, -1.8711, 0.3701, 2.3045, -1.8711, 0.1455, 2.1544, -1.8711, 0.3477, 2.2625, -1.8711, 0.3477, 2.2625, -1.8711, 0.1455, 2.1544, -1.8711, 0.3174, 2.2256, -1.8711, 0.3174, 2.2256, -1.8711, 0.1455, 2.1544, -1.8711, 0.2806, 2.1954, -1.8711, 0.2806, 2.1954, -1.8711, 0.1455, 2.1544, -1.8711, 0.2386, 2.1729, -1.8711, 0.2386, 2.1729, -1.8711, 0.1455, 2.1544, -1.8711, 0.193, 2.1591, 1.7287, -1.0163, -1.9121, -1.8711, -1.0163, -1.9121, 1.7287, -1.0637, -1.9074, 1.7287, -1.0637, -1.9074, -1.8711, -1.0163, -1.9121, -1.8711, -1.0637, -1.9074, 1.7287, -1.0637, -1.9074, -1.8711, -1.0637, -1.9074, 1.7287, -1.1093, -1.8936, 1.7287, -1.1093, -1.8936, -1.8711, -1.0637, -1.9074, -1.8711, -1.1093, -1.8936, 1.7287, -1.1093, -1.8936, -1.8711, -1.1093, -1.8936, 1.7287, -1.1514, -1.8711, 1.7287, -1.1514, -1.8711, -1.8711, -1.1093, -1.8936, -1.8711, -1.1514, -1.8711, 1.7287, -1.1514, -1.8711, -1.8711, -1.1514, -1.8711, 1.7287, -1.1882, -1.8409, 1.7287, -1.1882, -1.8409, -1.8711, -1.1514, -1.8711, -1.8711, -1.1882, -1.8409, 1.7287, -1.1882, -1.8409, -1.8711, -1.1882, -1.8409, 1.7287, -1.2185, -1.804, 1.7287, -1.2185, -1.804, -1.8711, -1.1882, -1.8409, -1.8711, -1.2185, -1.804, 1.7287, -1.2185, -1.804, -1.8711, -1.2185, -1.804, 1.7287, -1.2409, -1.762, 1.7287, -1.2409, -1.762, -1.8711, -1.2185, -1.804, -1.8711, -1.2409, -1.762, 1.7287, -1.2409, -1.762, -1.8711, -1.2409, -1.762, 1.7287, -1.2548, -1.7164, 1.7287, -1.2548, -1.7164, -1.8711, -1.2409, -1.762, -1.8711, -1.2548, -1.7164, 1.7287, -1.2548, -1.7164, -1.8711, -1.2548, -1.7164, 1.7287, -1.2594, -1.669, 1.7287, -1.2594, -1.669, -1.8711, -1.2548, -1.7164, -1.8711, -1.2594, -1.669, 1.7287, -1.2594, -1.669, -1.8711, -1.2594, -1.669, 1.7287, -1.2548, -1.6215, 1.7287, -1.2548, -1.6215, -1.8711, -1.2594, -1.669, -1.8711, -1.2548, -1.6215, 1.7287, -1.2548, -1.6215, -1.8711, -1.2548, -1.6215, 1.7287, -1.2409, -1.5759, 1.7287, -1.2409, -1.5759, -1.8711, -1.2548, -1.6215, -1.8711, -1.2409, -1.5759, 1.7287, -1.2409, -1.5759, -1.8711, -1.2409, -1.5759, 1.7287, -1.2185, -1.5339, 1.7287, -1.2185, -1.5339, -1.8711, -1.2409, -1.5759, -1.8711, -1.2185, -1.5339, 1.7287, -1.2185, -1.5339, -1.8711, -1.2185, -1.5339, 1.7287, -1.1882, -1.4971, 1.7287, -1.1882, -1.4971, -1.8711, -1.2185, -1.5339, -1.8711, -1.1882, -1.4971, 1.7287, -1.1882, -1.4971, -1.8711, -1.1882, -1.4971, 1.7287, -1.1514, -1.4668, 1.7287, -1.1514, -1.4668, -1.8711, -1.1882, -1.4971, -1.8711, -1.1514, -1.4668, 1.7287, -1.1514, -1.4668, -1.8711, -1.1514, -1.4668, 1.7287, -1.1093, -1.4444, 1.7287, -1.1093, -1.4444, -1.8711, -1.1514, -1.4668, -1.8711, -1.1093, -1.4444, 1.7287, -1.1093, -1.4444, -1.8711, -1.1093, -1.4444, 1.7287, -1.0637, -1.4305, 1.7287, -1.0637, -1.4305, -1.8711, -1.1093, -1.4444, -1.8711, -1.0637, -1.4305, 1.7287, -1.0637, -1.4305, -1.8711, -1.0637, -1.4305, 1.7287, -1.0163, -1.4258, 1.7287, -1.0163, -1.4258, -1.8711, -1.0637, -1.4305, -1.8711, -1.0163, -1.4258, 1.7287, -1.0163, -1.4258, -1.8711, -1.0163, -1.4258, 1.7287, -0.9689, -1.4305, 1.7287, -0.9689, -1.4305, -1.8711, -1.0163, -1.4258, -1.8711, -0.9689, -1.4305, 1.7287, -0.9689, -1.4305, -1.8711, -0.9689, -1.4305, 1.7287, -0.9233, -1.4444, 1.7287, -0.9233, -1.4444, -1.8711, -0.9689, -1.4305, -1.8711, -0.9233, -1.4444, 1.7287, -0.9233, -1.4444, -1.8711, -0.9233, -1.4444, 1.7287, -0.8812, -1.4668, 1.7287, -0.8812, -1.4668, -1.8711, -0.9233, -1.4444, -1.8711, -0.8812, -1.4668, 1.7287, -0.8812, -1.4668, -1.8711, -0.8812, -1.4668, 1.7287, -0.8444, -1.4971, 1.7287, -0.8444, -1.4971, -1.8711, -0.8812, -1.4668, -1.8711, -0.8444, -1.4971, 1.7287, -0.8444, -1.4971, -1.8711, -0.8444, -1.4971, 1.7287, -0.8142, -1.5339, 1.7287, -0.8142, -1.5339, -1.8711, -0.8444, -1.4971, -1.8711, -0.8142, -1.5339, 1.7287, -0.8142, -1.5339, -1.8711, -0.8142, -1.5339, 1.7287, -0.7917, -1.5759, 1.7287, -0.7917, -1.5759, -1.8711, -0.8142, -1.5339, -1.8711, -0.7917, -1.5759, 1.7287, -0.7917, -1.5759, -1.8711, -0.7917, -1.5759, 1.7287, -0.7779, -1.6215, 1.7287, -0.7779, -1.6215, -1.8711, -0.7917, -1.5759, -1.8711, -0.7779, -1.6215, 1.7287, -0.7779, -1.6215, -1.8711, -0.7779, -1.6215, 1.7287, -0.7732, -1.669, 1.7287, -0.7732, -1.669, -1.8711, -0.7779, -1.6215, -1.8711, -0.7732, -1.669, 1.7287, -0.7732, -1.669, -1.8711, -0.7732, -1.669, 1.7287, -0.7779, -1.7164, 1.7287, -0.7779, -1.7164, -1.8711, -0.7732, -1.669, -1.8711, -0.7779, -1.7164, 1.7287, -0.7779, -1.7164, -1.8711, -0.7779, -1.7164, 1.7287, -0.7917, -1.762, 1.7287, -0.7917, -1.762, -1.8711, -0.7779, -1.7164, -1.8711, -0.7917, -1.762, 1.7287, -0.7917, -1.762, -1.8711, -0.7917, -1.762, 1.7287, -0.8142, -1.804, 1.7287, -0.8142, -1.804, -1.8711, -0.7917, -1.762, -1.8711, -0.8142, -1.804, 1.7287, -0.8142, -1.804, -1.8711, -0.8142, -1.804, 1.7287, -0.8444, -1.8409, 1.7287, -0.8444, -1.8409, -1.8711, -0.8142, -1.804, -1.8711, -0.8444, -1.8409, 1.7287, -0.8444, -1.8409, -1.8711, -0.8444, -1.8409, 1.7287, -0.8813, -1.8711, 1.7287, -0.8813, -1.8711, -1.8711, -0.8444, -1.8409, -1.8711, -0.8812, -1.8711, 1.7287, -0.8813, -1.8711, -1.8711, -0.8812, -1.8711, 1.7287, -0.9233, -1.8936, 1.7287, -0.9233, -1.8936, -1.8711, -0.8812, -1.8711, -1.8711, -0.9233, -1.8936, 1.7287, -1.0163, -1.9121, 1.7287, -1.0637, -1.9074, 1.7287, -0.9689, -1.9074, 1.7287, -0.9689, -1.9074, 1.7287, -1.0637, -1.9074, 1.7287, -0.9233, -1.8936, 1.7287, -0.9233, -1.8936, 1.7287, -1.0637, -1.9074, 1.7287, -0.8813, -1.8711, 1.7287, -0.8813, -1.8711, 1.7287, -1.0637, -1.9074, 1.7287, -0.8444, -1.8409, 1.7287, -0.8444, -1.8409, 1.7287, -1.0637, -1.9074, 1.7287, -0.8142, -1.804, 1.7287, -0.8142, -1.804, 1.7287, -1.0637, -1.9074, 1.7287, -0.7917, -1.762, 1.7287, -0.7917, -1.762, 1.7287, -1.0637, -1.9074, 1.7287, -0.7779, -1.7164, 1.7287, -0.7779, -1.7164, 1.7287, -1.0637, -1.9074, 1.7287, -0.7732, -1.669, 1.7287, -0.7732, -1.669, 1.7287, -1.0637, -1.9074, 1.7287, -0.7779, -1.6215, 1.7287, -0.7779, -1.6215, 1.7287, -1.0637, -1.9074, 1.7287, -0.7917, -1.5759, 1.7287, -0.7917, -1.5759, 1.7287, -1.0637, -1.9074, 1.7287, -0.8142, -1.5339, 1.7287, -0.8142, -1.5339, 1.7287, -1.0637, -1.9074, 1.7287, -0.8444, -1.4971, 1.7287, -0.8444, -1.4971, 1.7287, -1.0637, -1.9074, 1.7287, -0.8812, -1.4668, 1.7287, -0.8812, -1.4668, 1.7287, -1.0637, -1.9074, 1.7287, -0.9233, -1.4444, 1.7287, -0.9233, -1.4444, 1.7287, -1.0637, -1.9074, 1.7287, -0.9689, -1.4305, 1.7287, -0.9689, -1.4305, 1.7287, -1.0637, -1.9074, 1.7287, -1.0163, -1.4258, 1.7287, -1.0163, -1.4258, 1.7287, -1.0637, -1.9074, 1.7287, -1.0637, -1.4305, 1.7287, -1.0637, -1.4305, 1.7287, -1.0637, -1.9074, 1.7287, -1.1093, -1.4444, 1.7287, -1.1093, -1.4444, 1.7287, -1.0637, -1.9074, 1.7287, -1.1514, -1.4668, 1.7287, -1.1514, -1.4668, 1.7287, -1.0637, -1.9074, 1.7287, -1.1882, -1.4971, 1.7287, -1.1882, -1.4971, 1.7287, -1.0637, -1.9074, 1.7287, -1.2185, -1.5339, 1.7287, -1.2185, -1.5339, 1.7287, -1.0637, -1.9074, 1.7287, -1.2409, -1.5759, 1.7287, -1.2409, -1.5759, 1.7287, -1.0637, -1.9074, 1.7287, -1.2548, -1.6215, 1.7287, -1.2548, -1.6215, 1.7287, -1.0637, -1.9074, 1.7287, -1.2594, -1.669, 1.7287, -1.2594, -1.669, 1.7287, -1.0637, -1.9074, 1.7287, -1.2548, -1.7164, 1.7287, -1.2548, -1.7164, 1.7287, -1.0637, -1.9074, 1.7287, -1.2409, -1.762, 1.7287, -1.2409, -1.762, 1.7287, -1.0637, -1.9074, 1.7287, -1.2185, -1.804, 1.7287, -1.2185, -1.804, 1.7287, -1.0637, -1.9074, 1.7287, -1.1882, -1.8409, 1.7287, -1.1882, -1.8409, 1.7287, -1.0637, -1.9074, 1.7287, -1.1514, -1.8711, 1.7287, -1.1514, -1.8711, 1.7287, -1.0637, -1.9074, 1.7287, -1.1093, -1.8936, 1.7287, -0.9233, -1.8936, -1.8711, -0.9233, -1.8936, 1.7287, -0.9689, -1.9074, 1.7287, -0.9689, -1.9074, -1.8711, -0.9233, -1.8936, -1.8711, -0.9689, -1.9074, 1.7287, -0.9689, -1.9074, -1.8711, -0.9689, -1.9074, 1.7287, -1.0163, -1.9121, 1.7287, -1.0163, -1.9121, -1.8711, -0.9689, -1.9074, -1.8711, -1.0163, -1.9121, -1.8711, -1.0637, -1.9074, -1.8711, -1.0163, -1.9121, -1.8711, -1.1093, -1.8936, -1.8711, -1.1093, -1.8936, -1.8711, -1.0163, -1.9121, -1.8711, -1.1514, -1.8711, -1.8711, -1.1514, -1.8711, -1.8711, -1.0163, -1.9121, -1.8711, -1.1882, -1.8409, -1.8711, -1.1882, -1.8409, -1.8711, -1.0163, -1.9121, -1.8711, -1.2185, -1.804, -1.8711, -1.2185, -1.804, -1.8711, -1.0163, -1.9121, -1.8711, -1.2409, -1.762, -1.8711, -1.2409, -1.762, -1.8711, -1.0163, -1.9121, -1.8711, -1.2548, -1.7164, -1.8711, -1.2548, -1.7164, -1.8711, -1.0163, -1.9121, -1.8711, -1.2594, -1.669, -1.8711, -1.2594, -1.669, -1.8711, -1.0163, -1.9121, -1.8711, -1.2548, -1.6215, -1.8711, -1.2548, -1.6215, -1.8711, -1.0163, -1.9121, -1.8711, -1.2409, -1.5759, -1.8711, -1.2409, -1.5759, -1.8711, -1.0163, -1.9121, -1.8711, -1.2185, -1.5339, -1.8711, -1.2185, -1.5339, -1.8711, -1.0163, -1.9121, -1.8711, -1.1882, -1.4971, -1.8711, -1.1882, -1.4971, -1.8711, -1.0163, -1.9121, -1.8711, -1.1514, -1.4668, -1.8711, -1.1514, -1.4668, -1.8711, -1.0163, -1.9121, -1.8711, -1.1093, -1.4444, -1.8711, -1.1093, -1.4444, -1.8711, -1.0163, -1.9121, -1.8711, -1.0637, -1.4305, -1.8711, -1.0637, -1.4305, -1.8711, -1.0163, -1.9121, -1.8711, -1.0163, -1.4258, -1.8711, -1.0163, -1.4258, -1.8711, -1.0163, -1.9121, -1.8711, -0.9689, -1.4305, -1.8711, -0.9689, -1.4305, -1.8711, -1.0163, -1.9121, -1.8711, -0.9233, -1.4444, -1.8711, -0.9233, -1.4444, -1.8711, -1.0163, -1.9121, -1.8711, -0.8812, -1.4668, -1.8711, -0.8812, -1.4668, -1.8711, -1.0163, -1.9121, -1.8711, -0.8444, -1.4971, -1.8711, -0.8444, -1.4971, -1.8711, -1.0163, -1.9121, -1.8711, -0.8142, -1.5339, -1.8711, -0.8142, -1.5339, -1.8711, -1.0163, -1.9121, -1.8711, -0.7917, -1.5759, -1.8711, -0.7917, -1.5759, -1.8711, -1.0163, -1.9121, -1.8711, -0.7779, -1.6215, -1.8711, -0.7779, -1.6215, -1.8711, -1.0163, -1.9121, -1.8711, -0.7732, -1.669, -1.8711, -0.7732, -1.669, -1.8711, -1.0163, -1.9121, -1.8711, -0.7779, -1.7164, -1.8711, -0.7779, -1.7164, -1.8711, -1.0163, -1.9121, -1.8711, -0.7917, -1.762, -1.8711, -0.7917, -1.762, -1.8711, -1.0163, -1.9121, -1.8711, -0.8142, -1.804, -1.8711, -0.8142, -1.804, -1.8711, -1.0163, -1.9121, -1.8711, -0.8444, -1.8409, -1.8711, -0.8444, -1.8409, -1.8711, -1.0163, -1.9121, -1.8711, -0.8812, -1.8711, -1.8711, -0.8812, -1.8711, -1.8711, -1.0163, -1.9121, -1.8711, -0.9233, -1.8936, -1.8711, -0.9233, -1.8936, -1.8711, -1.0163, -1.9121, -1.8711, -0.9689, -1.9074, 1.7287, -1.0163, -0.7502, -1.8711, -1.0163, -0.7502, 1.7287, -1.0637, -0.7455, 1.7287, -1.0637, -0.7455, -1.8711, -1.0163, -0.7502, -1.8711, -1.0637, -0.7455, 1.7287, -1.0637, -0.7455, -1.8711, -1.0637, -0.7455, 1.7287, -1.1093, -0.7317, 1.7287, -1.1093, -0.7317, -1.8711, -1.0637, -0.7455, -1.8711, -1.1093, -0.7317, 1.7287, -1.1093, -0.7317, -1.8711, -1.1093, -0.7317, 1.7287, -1.1514, -0.7092, 1.7287, -1.1514, -0.7092, -1.8711, -1.1093, -0.7317, -1.8711, -1.1514, -0.7092, 1.7287, -1.1514, -0.7092, -1.8711, -1.1514, -0.7092, 1.7287, -1.1882, -0.679, 1.7287, -1.1882, -0.679, -1.8711, -1.1514, -0.7092, -1.8711, -1.1882, -0.679, 1.7287, -1.1882, -0.679, -1.8711, -1.1882, -0.679, 1.7287, -1.2185, -0.6422, 1.7287, -1.2185, -0.6422, -1.8711, -1.1882, -0.679, -1.8711, -1.2185, -0.6422, 1.7287, -1.2185, -0.6422, -1.8711, -1.2185, -0.6422, 1.7287, -1.2409, -0.6001, 1.7287, -1.2409, -0.6001, -1.8711, -1.2185, -0.6422, -1.8711, -1.2409, -0.6001, 1.7287, -1.2409, -0.6001, -1.8711, -1.2409, -0.6001, 1.7287, -1.2548, -0.5545, 1.7287, -1.2548, -0.5545, -1.8711, -1.2409, -0.6001, -1.8711, -1.2548, -0.5545, 1.7287, -1.2548, -0.5545, -1.8711, -1.2548, -0.5545, 1.7287, -1.2594, -0.5071, 1.7287, -1.2594, -0.5071, -1.8711, -1.2548, -0.5545, -1.8711, -1.2594, -0.5071, 1.7287, -1.2594, -0.5071, -1.8711, -1.2594, -0.5071, 1.7287, -1.2548, -0.4597, 1.7287, -1.2548, -0.4597, -1.8711, -1.2594, -0.5071, -1.8711, -1.2548, -0.4597, 1.7287, -1.2548, -0.4597, -1.8711, -1.2548, -0.4597, 1.7287, -1.2409, -0.4141, 1.7287, -1.2409, -0.4141, -1.8711, -1.2548, -0.4597, -1.8711, -1.2409, -0.4141, 1.7287, -1.2409, -0.4141, -1.8711, -1.2409, -0.4141, 1.7287, -1.2185, -0.372, 1.7287, -1.2185, -0.372, -1.8711, -1.2409, -0.4141, -1.8711, -1.2185, -0.372, 1.7287, -1.2185, -0.372, -1.8711, -1.2185, -0.372, 1.7287, -1.1882, -0.3352, 1.7287, -1.1882, -0.3352, -1.8711, -1.2185, -0.372, -1.8711, -1.1882, -0.3352, 1.7287, -1.1882, -0.3352, -1.8711, -1.1882, -0.3352, 1.7287, -1.1514, -0.305, 1.7287, -1.1514, -0.305, -1.8711, -1.1882, -0.3352, -1.8711, -1.1514, -0.305, 1.7287, -1.1514, -0.305, -1.8711, -1.1514, -0.305, 1.7287, -1.1093, -0.2825, 1.7287, -1.1093, -0.2825, -1.8711, -1.1514, -0.305, -1.8711, -1.1093, -0.2825, 1.7287, -1.1093, -0.2825, -1.8711, -1.1093, -0.2825, 1.7287, -1.0637, -0.2687, 1.7287, -1.0637, -0.2687, -1.8711, -1.1093, -0.2825, -1.8711, -1.0637, -0.2687, 1.7287, -1.0637, -0.2687, -1.8711, -1.0637, -0.2687, 1.7287, -1.0163, -0.264, 1.7287, -1.0163, -0.264, -1.8711, -1.0637, -0.2687, -1.8711, -1.0163, -0.264, 1.7287, -1.0163, -0.264, -1.8711, -1.0163, -0.264, 1.7287, -0.9689, -0.2687, 1.7287, -0.9689, -0.2687, -1.8711, -1.0163, -0.264, -1.8711, -0.9689, -0.2687, 1.7287, -0.9689, -0.2687, -1.8711, -0.9689, -0.2687, 1.7287, -0.9233, -0.2825, 1.7287, -0.9233, -0.2825, -1.8711, -0.9689, -0.2687, -1.8711, -0.9233, -0.2825, 1.7287, -0.9233, -0.2825, -1.8711, -0.9233, -0.2825, 1.7287, -0.8812, -0.305, 1.7287, -0.8812, -0.305, -1.8711, -0.9233, -0.2825, -1.8711, -0.8812, -0.305, 1.7287, -0.8812, -0.305, -1.8711, -0.8812, -0.305, 1.7287, -0.8444, -0.3352, 1.7287, -0.8444, -0.3352, -1.8711, -0.8812, -0.305, -1.8711, -0.8444, -0.3352, 1.7287, -0.8444, -0.3352, -1.8711, -0.8444, -0.3352, 1.7287, -0.8142, -0.372, 1.7287, -0.8142, -0.372, -1.8711, -0.8444, -0.3352, -1.8711, -0.8142, -0.372, 1.7287, -0.8142, -0.372, -1.8711, -0.8142, -0.372, 1.7287, -0.7917, -0.4141, 1.7287, -0.7917, -0.4141, -1.8711, -0.8142, -0.372, -1.8711, -0.7917, -0.4141, 1.7287, -0.7917, -0.4141, -1.8711, -0.7917, -0.4141, 1.7287, -0.7779, -0.4597, 1.7287, -0.7779, -0.4597, -1.8711, -0.7917, -0.4141, -1.8711, -0.7779, -0.4597, 1.7287, -0.7779, -0.4597, -1.8711, -0.7779, -0.4597, 1.7287, -0.7732, -0.5071, 1.7287, -0.7732, -0.5071, -1.8711, -0.7779, -0.4597, -1.8711, -0.7732, -0.5071, 1.7287, -0.7732, -0.5071, -1.8711, -0.7732, -0.5071, 1.7287, -0.7779, -0.5545, 1.7287, -0.7779, -0.5545, -1.8711, -0.7732, -0.5071, -1.8711, -0.7779, -0.5545, 1.7287, -0.7779, -0.5545, -1.8711, -0.7779, -0.5545, 1.7287, -0.7917, -0.6001, 1.7287, -0.7917, -0.6001, -1.8711, -0.7779, -0.5545, -1.8711, -0.7917, -0.6001, 1.7287, -0.7917, -0.6001, -1.8711, -0.7917, -0.6001, 1.7287, -0.8142, -0.6422, 1.7287, -0.8142, -0.6422, -1.8711, -0.7917, -0.6001, -1.8711, -0.8142, -0.6422, 1.7287, -0.8142, -0.6422, -1.8711, -0.8142, -0.6422, 1.7287, -0.8444, -0.679, 1.7287, -0.8444, -0.679, -1.8711, -0.8142, -0.6422, -1.8711, -0.8444, -0.679, 1.7287, -0.8444, -0.679, -1.8711, -0.8444, -0.679, 1.7287, -0.8813, -0.7092, 1.7287, -0.8813, -0.7092, -1.8711, -0.8444, -0.679, -1.8711, -0.8812, -0.7092, 1.7287, -0.8813, -0.7092, -1.8711, -0.8812, -0.7092, 1.7287, -0.9233, -0.7317, 1.7287, -0.9233, -0.7317, -1.8711, -0.8812, -0.7092, -1.8711, -0.9233, -0.7317, 1.7287, -1.0163, -0.7502, 1.7287, -1.0637, -0.7455, 1.7287, -0.9689, -0.7455, 1.7287, -0.9689, -0.7455, 1.7287, -1.0637, -0.7455, 1.7287, -0.9233, -0.7317, 1.7287, -0.9233, -0.7317, 1.7287, -1.0637, -0.7455, 1.7287, -0.8813, -0.7092, 1.7287, -0.8813, -0.7092, 1.7287, -1.0637, -0.7455, 1.7287, -0.8444, -0.679, 1.7287, -0.8444, -0.679, 1.7287, -1.0637, -0.7455, 1.7287, -0.8142, -0.6422, 1.7287, -0.8142, -0.6422, 1.7287, -1.0637, -0.7455, 1.7287, -0.7917, -0.6001, 1.7287, -0.7917, -0.6001, 1.7287, -1.0637, -0.7455, 1.7287, -0.7779, -0.5545, 1.7287, -0.7779, -0.5545, 1.7287, -1.0637, -0.7455, 1.7287, -0.7732, -0.5071, 1.7287, -0.7732, -0.5071, 1.7287, -1.0637, -0.7455, 1.7287, -0.7779, -0.4597, 1.7287, -0.7779, -0.4597, 1.7287, -1.0637, -0.7455, 1.7287, -0.7917, -0.4141, 1.7287, -0.7917, -0.4141, 1.7287, -1.0637, -0.7455, 1.7287, -0.8142, -0.372, 1.7287, -0.8142, -0.372, 1.7287, -1.0637, -0.7455, 1.7287, -0.8444, -0.3352, 1.7287, -0.8444, -0.3352, 1.7287, -1.0637, -0.7455, 1.7287, -0.8812, -0.305, 1.7287, -0.8812, -0.305, 1.7287, -1.0637, -0.7455, 1.7287, -0.9233, -0.2825, 1.7287, -0.9233, -0.2825, 1.7287, -1.0637, -0.7455, 1.7287, -0.9689, -0.2687, 1.7287, -0.9689, -0.2687, 1.7287, -1.0637, -0.7455, 1.7287, -1.0163, -0.264, 1.7287, -1.0163, -0.264, 1.7287, -1.0637, -0.7455, 1.7287, -1.0637, -0.2687, 1.7287, -1.0637, -0.2687, 1.7287, -1.0637, -0.7455, 1.7287, -1.1093, -0.2825, 1.7287, -1.1093, -0.2825, 1.7287, -1.0637, -0.7455, 1.7287, -1.1514, -0.305, 1.7287, -1.1514, -0.305, 1.7287, -1.0637, -0.7455, 1.7287, -1.1882, -0.3352, 1.7287, -1.1882, -0.3352, 1.7287, -1.0637, -0.7455, 1.7287, -1.2185, -0.372, 1.7287, -1.2185, -0.372, 1.7287, -1.0637, -0.7455, 1.7287, -1.2409, -0.4141, 1.7287, -1.2409, -0.4141, 1.7287, -1.0637, -0.7455, 1.7287, -1.2548, -0.4597, 1.7287, -1.2548, -0.4597, 1.7287, -1.0637, -0.7455, 1.7287, -1.2594, -0.5071, 1.7287, -1.2594, -0.5071, 1.7287, -1.0637, -0.7455, 1.7287, -1.2548, -0.5545, 1.7287, -1.2548, -0.5545, 1.7287, -1.0637, -0.7455, 1.7287, -1.2409, -0.6001, 1.7287, -1.2409, -0.6001, 1.7287, -1.0637, -0.7455, 1.7287, -1.2185, -0.6422, 1.7287, -1.2185, -0.6422, 1.7287, -1.0637, -0.7455, 1.7287, -1.1882, -0.679, 1.7287, -1.1882, -0.679, 1.7287, -1.0637, -0.7455, 1.7287, -1.1514, -0.7092, 1.7287, -1.1514, -0.7092, 1.7287, -1.0637, -0.7455, 1.7287, -1.1093, -0.7317, 1.7287, -0.9233, -0.7317, -1.8711, -0.9233, -0.7317, 1.7287, -0.9689, -0.7455, 1.7287, -0.9689, -0.7455, -1.8711, -0.9233, -0.7317, -1.8711, -0.9689, -0.7455, 1.7287, -0.9689, -0.7455, -1.8711, -0.9689, -0.7455, 1.7287, -1.0163, -0.7502, 1.7287, -1.0163, -0.7502, -1.8711, -0.9689, -0.7455, -1.8711, -1.0163, -0.7502, -1.8711, -1.0637, -0.7455, -1.8711, -1.0163, -0.7502, -1.8711, -1.1093, -0.7317, -1.8711, -1.1093, -0.7317, -1.8711, -1.0163, -0.7502, -1.8711, -1.1514, -0.7092, -1.8711, -1.1514, -0.7092, -1.8711, -1.0163, -0.7502, -1.8711, -1.1882, -0.679, -1.8711, -1.1882, -0.679, -1.8711, -1.0163, -0.7502, -1.8711, -1.2185, -0.6422, -1.8711, -1.2185, -0.6422, -1.8711, -1.0163, -0.7502, -1.8711, -1.2409, -0.6001, -1.8711, -1.2409, -0.6001, -1.8711, -1.0163, -0.7502, -1.8711, -1.2548, -0.5545, -1.8711, -1.2548, -0.5545, -1.8711, -1.0163, -0.7502, -1.8711, -1.2594, -0.5071, -1.8711, -1.2594, -0.5071, -1.8711, -1.0163, -0.7502, -1.8711, -1.2548, -0.4597, -1.8711, -1.2548, -0.4597, -1.8711, -1.0163, -0.7502, -1.8711, -1.2409, -0.4141, -1.8711, -1.2409, -0.4141, -1.8711, -1.0163, -0.7502, -1.8711, -1.2185, -0.372, -1.8711, -1.2185, -0.372, -1.8711, -1.0163, -0.7502, -1.8711, -1.1882, -0.3352, -1.8711, -1.1882, -0.3352, -1.8711, -1.0163, -0.7502, -1.8711, -1.1514, -0.305, -1.8711, -1.1514, -0.305, -1.8711, -1.0163, -0.7502, -1.8711, -1.1093, -0.2825, -1.8711, -1.1093, -0.2825, -1.8711, -1.0163, -0.7502, -1.8711, -1.0637, -0.2687, -1.8711, -1.0637, -0.2687, -1.8711, -1.0163, -0.7502, -1.8711, -1.0163, -0.264, -1.8711, -1.0163, -0.264, -1.8711, -1.0163, -0.7502, -1.8711, -0.9689, -0.2687, -1.8711, -0.9689, -0.2687, -1.8711, -1.0163, -0.7502, -1.8711, -0.9233, -0.2825, -1.8711, -0.9233, -0.2825, -1.8711, -1.0163, -0.7502, -1.8711, -0.8812, -0.305, -1.8711, -0.8812, -0.305, -1.8711, -1.0163, -0.7502, -1.8711, -0.8444, -0.3352, -1.8711, -0.8444, -0.3352, -1.8711, -1.0163, -0.7502, -1.8711, -0.8142, -0.372, -1.8711, -0.8142, -0.372, -1.8711, -1.0163, -0.7502, -1.8711, -0.7917, -0.4141, -1.8711, -0.7917, -0.4141, -1.8711, -1.0163, -0.7502, -1.8711, -0.7779, -0.4597, -1.8711, -0.7779, -0.4597, -1.8711, -1.0163, -0.7502, -1.8711, -0.7732, -0.5071, -1.8711, -0.7732, -0.5071, -1.8711, -1.0163, -0.7502, -1.8711, -0.7779, -0.5545, -1.8711, -0.7779, -0.5545, -1.8711, -1.0163, -0.7502, -1.8711, -0.7917, -0.6001, -1.8711, -0.7917, -0.6001, -1.8711, -1.0163, -0.7502, -1.8711, -0.8142, -0.6422, -1.8711, -0.8142, -0.6422, -1.8711, -1.0163, -0.7502, -1.8711, -0.8444, -0.679, -1.8711, -0.8444, -0.679, -1.8711, -1.0163, -0.7502, -1.8711, -0.8812, -0.7092, -1.8711, -0.8812, -0.7092, -1.8711, -1.0163, -0.7502, -1.8711, -0.9233, -0.7317, -1.8711, -0.9233, -0.7317, -1.8711, -1.0163, -0.7502, -1.8711, -0.9689, -0.7455, 1.7287, -1.0163, 0.4116, -1.8711, -1.0163, 0.4116, 1.7287, -1.0637, 0.4163, 1.7287, -1.0637, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.4163, 1.7287, -1.0637, 0.4163, -1.8711, -1.0637, 0.4163, 1.7287, -1.1093, 0.4301, 1.7287, -1.1093, 0.4301, -1.8711, -1.0637, 0.4163, -1.8711, -1.1093, 0.4301, 1.7287, -1.1093, 0.4301, -1.8711, -1.1093, 0.4301, 1.7287, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, -1.8711, -1.1093, 0.4301, -1.8711, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, -1.8711, -1.1514, 0.4526, 1.7287, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, -1.8711, -1.1514, 0.4526, -1.8711, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, -1.8711, -1.1882, 0.4828, 1.7287, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, -1.8711, -1.1882, 0.4828, -1.8711, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, -1.8711, -1.2185, 0.5197, 1.7287, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, -1.8711, -1.2185, 0.5197, -1.8711, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, -1.8711, -1.2409, 0.5617, 1.7287, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, -1.8711, -1.2409, 0.5617, -1.8711, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, -1.8711, -1.2548, 0.6073, 1.7287, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, -1.8711, -1.2548, 0.6073, -1.8711, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, -1.8711, -1.2594, 0.6547, 1.7287, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, -1.8711, -1.2594, 0.6547, -1.8711, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, -1.8711, -1.2548, 0.7022, 1.7287, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, -1.8711, -1.2548, 0.7022, -1.8711, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, -1.8711, -1.2409, 0.7478, 1.7287, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, -1.8711, -1.2409, 0.7478, -1.8711, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, -1.8711, -1.2185, 0.7898, 1.7287, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, -1.8711, -1.2185, 0.7898, -1.8711, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, -1.8711, -1.1882, 0.8267, 1.7287, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, -1.8711, -1.1882, 0.8267, -1.8711, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, -1.8711, -1.1514, 0.8569, 1.7287, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, -1.8711, -1.1514, 0.8569, -1.8711, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, -1.8711, -1.1093, 0.8793, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, -1.8711, -1.1093, 0.8793, -1.8711, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, -1.8711, -1.0637, 0.8932, 1.7287, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, -1.8711, -1.0637, 0.8932, -1.8711, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, -1.8711, -1.0163, 0.8979, 1.7287, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, -1.8711, -1.0163, 0.8979, -1.8711, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, -1.8711, -0.9689, 0.8932, 1.7287, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, -1.8711, -0.9689, 0.8932, -1.8711, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, -1.8711, -0.9233, 0.8793, 1.7287, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, -1.8711, -0.9233, 0.8793, -1.8711, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, -1.8711, -0.8812, 0.8569, 1.7287, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, -1.8711, -0.8812, 0.8569, -1.8711, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, -1.8711, -0.8444, 0.8267, 1.7287, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, -1.8711, -0.8444, 0.8267, -1.8711, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, -1.8711, -0.8142, 0.7898, 1.7287, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, -1.8711, -0.8142, 0.7898, -1.8711, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, -1.8711, -0.7917, 0.7478, 1.7287, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, -1.8711, -0.7917, 0.7478, -1.8711, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, -1.8711, -0.7779, 0.7022, 1.7287, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, -1.8711, -0.7779, 0.7022, -1.8711, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, -1.8711, -0.7732, 0.6547, 1.7287, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, -1.8711, -0.7732, 0.6547, -1.8711, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, -1.8711, -0.7779, 0.6073, 1.7287, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, -1.8711, -0.7779, 0.6073, -1.8711, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, -1.8711, -0.7917, 0.5617, 1.7287, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, -1.8711, -0.7917, 0.5617, -1.8711, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, -1.8711, -0.8142, 0.5197, 1.7287, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, -1.8711, -0.8142, 0.5197, -1.8711, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, -1.8711, -0.8444, 0.4828, 1.7287, -0.8813, 0.4526, 1.7287, -0.8813, 0.4526, -1.8711, -0.8444, 0.4828, -1.8711, -0.8812, 0.4526, 1.7287, -0.8813, 0.4526, -1.8711, -0.8812, 0.4526, 1.7287, -0.9233, 0.4301, 1.7287, -0.9233, 0.4301, -1.8711, -0.8812, 0.4526, -1.8711, -0.9233, 0.4301, 1.7287, -1.0163, 0.4116, 1.7287, -1.0637, 0.4163, 1.7287, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, 1.7287, -1.0637, 0.4163, 1.7287, -0.9233, 0.4301, 1.7287, -0.9233, 0.4301, 1.7287, -1.0637, 0.4163, 1.7287, -0.8813, 0.4526, 1.7287, -0.8813, 0.4526, 1.7287, -1.0637, 0.4163, 1.7287, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, 1.7287, -1.0637, 0.4163, 1.7287, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, 1.7287, -1.0637, 0.4163, 1.7287, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, 1.7287, -1.0637, 0.4163, 1.7287, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, 1.7287, -1.0637, 0.4163, 1.7287, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, 1.7287, -1.0637, 0.4163, 1.7287, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, 1.7287, -1.0637, 0.4163, 1.7287, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, 1.7287, -1.0637, 0.4163, 1.7287, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, 1.7287, -1.0637, 0.4163, 1.7287, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, 1.7287, -1.0637, 0.4163, 1.7287, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, 1.7287, -1.0637, 0.4163, 1.7287, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, 1.7287, -1.0637, 0.4163, 1.7287, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, 1.7287, -1.0637, 0.4163, 1.7287, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, 1.7287, -1.0637, 0.4163, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.4163, 1.7287, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, 1.7287, -1.0637, 0.4163, 1.7287, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, 1.7287, -1.0637, 0.4163, 1.7287, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, 1.7287, -1.0637, 0.4163, 1.7287, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, 1.7287, -1.0637, 0.4163, 1.7287, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, 1.7287, -1.0637, 0.4163, 1.7287, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, 1.7287, -1.0637, 0.4163, 1.7287, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, 1.7287, -1.0637, 0.4163, 1.7287, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, 1.7287, -1.0637, 0.4163, 1.7287, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, 1.7287, -1.0637, 0.4163, 1.7287, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, 1.7287, -1.0637, 0.4163, 1.7287, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, 1.7287, -1.0637, 0.4163, 1.7287, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, 1.7287, -1.0637, 0.4163, 1.7287, -1.1093, 0.4301, 1.7287, -0.9233, 0.4301, -1.8711, -0.9233, 0.4301, 1.7287, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, -1.8711, -0.9233, 0.4301, -1.8711, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, -1.8711, -0.9689, 0.4163, 1.7287, -1.0163, 0.4116, 1.7287, -1.0163, 0.4116, -1.8711, -0.9689, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.1093, 0.4301, -1.8711, -1.1093, 0.4301, -1.8711, -1.0163, 0.4116, -1.8711, -1.1514, 0.4526, -1.8711, -1.1514, 0.4526, -1.8711, -1.0163, 0.4116, -1.8711, -1.1882, 0.4828, -1.8711, -1.1882, 0.4828, -1.8711, -1.0163, 0.4116, -1.8711, -1.2185, 0.5197, -1.8711, -1.2185, 0.5197, -1.8711, -1.0163, 0.4116, -1.8711, -1.2409, 0.5617, -1.8711, -1.2409, 0.5617, -1.8711, -1.0163, 0.4116, -1.8711, -1.2548, 0.6073, -1.8711, -1.2548, 0.6073, -1.8711, -1.0163, 0.4116, -1.8711, -1.2594, 0.6547, -1.8711, -1.2594, 0.6547, -1.8711, -1.0163, 0.4116, -1.8711, -1.2548, 0.7022, -1.8711, -1.2548, 0.7022, -1.8711, -1.0163, 0.4116, -1.8711, -1.2409, 0.7478, -1.8711, -1.2409, 0.7478, -1.8711, -1.0163, 0.4116, -1.8711, -1.2185, 0.7898, -1.8711, -1.2185, 0.7898, -1.8711, -1.0163, 0.4116, -1.8711, -1.1882, 0.8267, -1.8711, -1.1882, 0.8267, -1.8711, -1.0163, 0.4116, -1.8711, -1.1514, 0.8569, -1.8711, -1.1514, 0.8569, -1.8711, -1.0163, 0.4116, -1.8711, -1.1093, 0.8793, -1.8711, -1.1093, 0.8793, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.8932, -1.8711, -1.0637, 0.8932, -1.8711, -1.0163, 0.4116, -1.8711, -1.0163, 0.8979, -1.8711, -1.0163, 0.8979, -1.8711, -1.0163, 0.4116, -1.8711, -0.9689, 0.8932, -1.8711, -0.9689, 0.8932, -1.8711, -1.0163, 0.4116, -1.8711, -0.9233, 0.8793, -1.8711, -0.9233, 0.8793, -1.8711, -1.0163, 0.4116, -1.8711, -0.8812, 0.8569, -1.8711, -0.8812, 0.8569, -1.8711, -1.0163, 0.4116, -1.8711, -0.8444, 0.8267, -1.8711, -0.8444, 0.8267, -1.8711, -1.0163, 0.4116, -1.8711, -0.8142, 0.7898, -1.8711, -0.8142, 0.7898, -1.8711, -1.0163, 0.4116, -1.8711, -0.7917, 0.7478, -1.8711, -0.7917, 0.7478, -1.8711, -1.0163, 0.4116, -1.8711, -0.7779, 0.7022, -1.8711, -0.7779, 0.7022, -1.8711, -1.0163, 0.4116, -1.8711, -0.7732, 0.6547, -1.8711, -0.7732, 0.6547, -1.8711, -1.0163, 0.4116, -1.8711, -0.7779, 0.6073, -1.8711, -0.7779, 0.6073, -1.8711, -1.0163, 0.4116, -1.8711, -0.7917, 0.5617, -1.8711, -0.7917, 0.5617, -1.8711, -1.0163, 0.4116, -1.8711, -0.8142, 0.5197, -1.8711, -0.8142, 0.5197, -1.8711, -1.0163, 0.4116, -1.8711, -0.8444, 0.4828, -1.8711, -0.8444, 0.4828, -1.8711, -1.0163, 0.4116, -1.8711, -0.8812, 0.4526, -1.8711, -0.8812, 0.4526, -1.8711, -1.0163, 0.4116, -1.8711, -0.9233, 0.4301, -1.8711, -0.9233, 0.4301, -1.8711, -1.0163, 0.4116, -1.8711, -0.9689, 0.4163, 1.7287, -1.0163, 0.4116, -1.8711, -1.0163, 0.4116, 1.7287, -1.0637, 0.4163, 1.7287, -1.0637, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.4163, 1.7287, -1.0637, 0.4163, -1.8711, -1.0637, 0.4163, 1.7287, -1.1093, 0.4301, 1.7287, -1.1093, 0.4301, -1.8711, -1.0637, 0.4163, -1.8711, -1.1093, 0.4301, 1.7287, -1.1093, 0.4301, -1.8711, -1.1093, 0.4301, 1.7287, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, -1.8711, -1.1093, 0.4301, -1.8711, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, -1.8711, -1.1514, 0.4526, 1.7287, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, -1.8711, -1.1514, 0.4526, -1.8711, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, -1.8711, -1.1882, 0.4828, 1.7287, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, -1.8711, -1.1882, 0.4828, -1.8711, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, -1.8711, -1.2185, 0.5197, 1.7287, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, -1.8711, -1.2185, 0.5197, -1.8711, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, -1.8711, -1.2409, 0.5617, 1.7287, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, -1.8711, -1.2409, 0.5617, -1.8711, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, -1.8711, -1.2548, 0.6073, 1.7287, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, -1.8711, -1.2548, 0.6073, -1.8711, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, -1.8711, -1.2594, 0.6547, 1.7287, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, -1.8711, -1.2594, 0.6547, -1.8711, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, -1.8711, -1.2548, 0.7022, 1.7287, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, -1.8711, -1.2548, 0.7022, -1.8711, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, -1.8711, -1.2409, 0.7478, 1.7287, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, -1.8711, -1.2409, 0.7478, -1.8711, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, -1.8711, -1.2185, 0.7898, 1.7287, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, -1.8711, -1.2185, 0.7898, -1.8711, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, -1.8711, -1.1882, 0.8267, 1.7287, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, -1.8711, -1.1882, 0.8267, -1.8711, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, -1.8711, -1.1514, 0.8569, 1.7287, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, -1.8711, -1.1514, 0.8569, -1.8711, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, -1.8711, -1.1093, 0.8793, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, -1.8711, -1.1093, 0.8793, -1.8711, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, -1.8711, -1.0637, 0.8932, 1.7287, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, -1.8711, -1.0637, 0.8932, -1.8711, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, -1.8711, -1.0163, 0.8979, 1.7287, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, -1.8711, -1.0163, 0.8979, -1.8711, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, -1.8711, -0.9689, 0.8932, 1.7287, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, -1.8711, -0.9689, 0.8932, -1.8711, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, -1.8711, -0.9233, 0.8793, 1.7287, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, -1.8711, -0.9233, 0.8793, -1.8711, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, -1.8711, -0.8812, 0.8569, 1.7287, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, -1.8711, -0.8812, 0.8569, -1.8711, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, -1.8711, -0.8444, 0.8267, 1.7287, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, -1.8711, -0.8444, 0.8267, -1.8711, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, -1.8711, -0.8142, 0.7898, 1.7287, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, -1.8711, -0.8142, 0.7898, -1.8711, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, -1.8711, -0.7917, 0.7478, 1.7287, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, -1.8711, -0.7917, 0.7478, -1.8711, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, -1.8711, -0.7779, 0.7022, 1.7287, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, -1.8711, -0.7779, 0.7022, -1.8711, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, -1.8711, -0.7732, 0.6547, 1.7287, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, -1.8711, -0.7732, 0.6547, -1.8711, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, -1.8711, -0.7779, 0.6073, 1.7287, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, -1.8711, -0.7779, 0.6073, -1.8711, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, -1.8711, -0.7917, 0.5617, 1.7287, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, -1.8711, -0.7917, 0.5617, -1.8711, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, -1.8711, -0.8142, 0.5197, 1.7287, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, -1.8711, -0.8142, 0.5197, -1.8711, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, -1.8711, -0.8444, 0.4828, 1.7287, -0.8813, 0.4526, 1.7287, -0.8813, 0.4526, -1.8711, -0.8444, 0.4828, -1.8711, -0.8812, 0.4526, 1.7287, -0.8813, 0.4526, -1.8711, -0.8812, 0.4526, 1.7287, -0.9233, 0.4301, 1.7287, -0.9233, 0.4301, -1.8711, -0.8812, 0.4526, -1.8711, -0.9233, 0.4301, 1.7287, -1.0163, 0.4116, 1.7287, -1.0637, 0.4163, 1.7287, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, 1.7287, -1.0637, 0.4163, 1.7287, -0.9233, 0.4301, 1.7287, -0.9233, 0.4301, 1.7287, -1.0637, 0.4163, 1.7287, -0.8813, 0.4526, 1.7287, -0.8813, 0.4526, 1.7287, -1.0637, 0.4163, 1.7287, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, 1.7287, -1.0637, 0.4163, 1.7287, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, 1.7287, -1.0637, 0.4163, 1.7287, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, 1.7287, -1.0637, 0.4163, 1.7287, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, 1.7287, -1.0637, 0.4163, 1.7287, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, 1.7287, -1.0637, 0.4163, 1.7287, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, 1.7287, -1.0637, 0.4163, 1.7287, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, 1.7287, -1.0637, 0.4163, 1.7287, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, 1.7287, -1.0637, 0.4163, 1.7287, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, 1.7287, -1.0637, 0.4163, 1.7287, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, 1.7287, -1.0637, 0.4163, 1.7287, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, 1.7287, -1.0637, 0.4163, 1.7287, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, 1.7287, -1.0637, 0.4163, 1.7287, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, 1.7287, -1.0637, 0.4163, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.4163, 1.7287, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, 1.7287, -1.0637, 0.4163, 1.7287, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, 1.7287, -1.0637, 0.4163, 1.7287, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, 1.7287, -1.0637, 0.4163, 1.7287, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, 1.7287, -1.0637, 0.4163, 1.7287, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, 1.7287, -1.0637, 0.4163, 1.7287, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, 1.7287, -1.0637, 0.4163, 1.7287, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, 1.7287, -1.0637, 0.4163, 1.7287, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, 1.7287, -1.0637, 0.4163, 1.7287, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, 1.7287, -1.0637, 0.4163, 1.7287, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, 1.7287, -1.0637, 0.4163, 1.7287, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, 1.7287, -1.0637, 0.4163, 1.7287, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, 1.7287, -1.0637, 0.4163, 1.7287, -1.1093, 0.4301, 1.7287, -0.9233, 0.4301, -1.8711, -0.9233, 0.4301, 1.7287, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, -1.8711, -0.9233, 0.4301, -1.8711, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, -1.8711, -0.9689, 0.4163, 1.7287, -1.0163, 0.4116, 1.7287, -1.0163, 0.4116, -1.8711, -0.9689, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.1093, 0.4301, -1.8711, -1.1093, 0.4301, -1.8711, -1.0163, 0.4116, -1.8711, -1.1514, 0.4526, -1.8711, -1.1514, 0.4526, -1.8711, -1.0163, 0.4116, -1.8711, -1.1882, 0.4828, -1.8711, -1.1882, 0.4828, -1.8711, -1.0163, 0.4116, -1.8711, -1.2185, 0.5197, -1.8711, -1.2185, 0.5197, -1.8711, -1.0163, 0.4116, -1.8711, -1.2409, 0.5617, -1.8711, -1.2409, 0.5617, -1.8711, -1.0163, 0.4116, -1.8711, -1.2548, 0.6073, -1.8711, -1.2548, 0.6073, -1.8711, -1.0163, 0.4116, -1.8711, -1.2594, 0.6547, -1.8711, -1.2594, 0.6547, -1.8711, -1.0163, 0.4116, -1.8711, -1.2548, 0.7022, -1.8711, -1.2548, 0.7022, -1.8711, -1.0163, 0.4116, -1.8711, -1.2409, 0.7478, -1.8711, -1.2409, 0.7478, -1.8711, -1.0163, 0.4116, -1.8711, -1.2185, 0.7898, -1.8711, -1.2185, 0.7898, -1.8711, -1.0163, 0.4116, -1.8711, -1.1882, 0.8267, -1.8711, -1.1882, 0.8267, -1.8711, -1.0163, 0.4116, -1.8711, -1.1514, 0.8569, -1.8711, -1.1514, 0.8569, -1.8711, -1.0163, 0.4116, -1.8711, -1.1093, 0.8793, -1.8711, -1.1093, 0.8793, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.8932, -1.8711, -1.0637, 0.8932, -1.8711, -1.0163, 0.4116, -1.8711, -1.0163, 0.8979, -1.8711, -1.0163, 0.8979, -1.8711, -1.0163, 0.4116, -1.8711, -0.9689, 0.8932, -1.8711, -0.9689, 0.8932, -1.8711, -1.0163, 0.4116, -1.8711, -0.9233, 0.8793, -1.8711, -0.9233, 0.8793, -1.8711, -1.0163, 0.4116, -1.8711, -0.8812, 0.8569, -1.8711, -0.8812, 0.8569, -1.8711, -1.0163, 0.4116, -1.8711, -0.8444, 0.8267, -1.8711, -0.8444, 0.8267, -1.8711, -1.0163, 0.4116, -1.8711, -0.8142, 0.7898, -1.8711, -0.8142, 0.7898, -1.8711, -1.0163, 0.4116, -1.8711, -0.7917, 0.7478, -1.8711, -0.7917, 0.7478, -1.8711, -1.0163, 0.4116, -1.8711, -0.7779, 0.7022, -1.8711, -0.7779, 0.7022, -1.8711, -1.0163, 0.4116, -1.8711, -0.7732, 0.6547, -1.8711, -0.7732, 0.6547, -1.8711, -1.0163, 0.4116, -1.8711, -0.7779, 0.6073, -1.8711, -0.7779, 0.6073, -1.8711, -1.0163, 0.4116, -1.8711, -0.7917, 0.5617, -1.8711, -0.7917, 0.5617, -1.8711, -1.0163, 0.4116, -1.8711, -0.8142, 0.5197, -1.8711, -0.8142, 0.5197, -1.8711, -1.0163, 0.4116, -1.8711, -0.8444, 0.4828, -1.8711, -0.8444, 0.4828, -1.8711, -1.0163, 0.4116, -1.8711, -0.8812, 0.4526, -1.8711, -0.8812, 0.4526, -1.8711, -1.0163, 0.4116, -1.8711, -0.9233, 0.4301, -1.8711, -0.9233, 0.4301, -1.8711, -1.0163, 0.4116, -1.8711, -0.9689, 0.4163, -4.8296, -4.5958, 1.2941, -4.8712, -5.0703, 0, -5, -4.5958, 0, -4.2186, -5.0703, 2.4356, -4.8296, -4.5958, 1.2941, -4.3301, -4.5958, 2.5, -3.5355, -4.5958, 3.5355, -4.2186, -5.0703, 2.4356, -4.3301, -4.5958, 2.5, -2.5, -4.5958, 4.3301, -3.4444, -5.0703, 3.4444, -3.5355, -4.5958, 3.5355, -1.2941, -4.5958, 4.8296, -2.4356, -5.0703, 4.2186, -2.5, -4.5958, 4.3301, 0, -4.5958, 5, -1.2608, -5.0703, 4.7052, -1.2941, -4.5958, 4.8296, 1.2941, -4.5958, 4.8296, 0, -5.0703, 4.8712, 0, -4.5958, 5, 2.4356, -5.0703, 4.2186, 1.2941, -4.5958, 4.8296, 2.5, -4.5958, 4.3301, 3.4444, -5.0703, 3.4444, 2.5, -4.5958, 4.3301, 3.5355, -4.5958, 3.5355, 4.2186, -5.0703, 2.4356, 3.5355, -4.5958, 3.5355, 4.3301, -4.5958, 2.5, 4.8296, -4.5958, 1.2941, 4.2186, -5.0703, 2.4356, 4.3301, -4.5958, 2.5, 5, -4.5958, 0, 4.7052, -5.0703, 1.2608, 4.8296, -4.5958, 1.2941, 4.8296, -4.5958, -1.2941, 4.8712, -5.0703, 0, 5, -4.5958, 0, 4.3301, -4.5958, -2.5, 4.7052, -5.0703, -1.2608, 4.8296, -4.5958, -1.2941, 3.5355, -4.5958, -3.5355, 4.2186, -5.0703, -2.4356, 4.3301, -4.5958, -2.5, 2.5, -4.5958, -4.3301, 3.4444, -5.0703, -3.4444, 3.5355, -4.5958, -3.5355, 1.2608, -5.0703, -4.7052, 2.5, -4.5958, -4.3301, 1.2941, -4.5958, -4.8296, 0, -4.5958, -5, 1.2608, -5.0703, -4.7052, 1.2941, -4.5958, -4.8296, -1.2941, -4.5958, -4.8296, 0, -5.0703, -4.8712, 0, -4.5958, -5, -2.5, -4.5958, -4.3301, -1.2608, -5.0703, -4.7052, -1.2941, -4.5958, -4.8296, -3.5355, -4.5958, -3.5355, -2.4356, -5.0703, -4.2186, -2.5, -4.5958, -4.3301, -4.3301, -4.5958, -2.5, -3.4444, -5.0703, -3.4444, -3.5355, -4.5958, -3.5355, -4.7052, -5.0703, -1.2608, -4.3301, -4.5958, -2.5, -4.8296, -4.5958, -1.2941, -5, -4.5958, 0, -4.7052, -5.0703, -1.2608, -4.8296, -4.5958, -1.2941, -4.7052, -5.0703, 1.2608, -4.6672, -5.3105, 0, -4.8712, -5.0703, 0, -4.2186, -5.0703, 2.4356, -4.5081, -5.3105, 1.208, -4.7052, -5.0703, 1.2608, -3.4444, -5.0703, 3.4444, -4.0419, -5.3105, 2.3336, -4.2186, -5.0703, 2.4356, -2.4356, -5.0703, 4.2186, -3.3002, -5.3105, 3.3002, -3.4444, -5.0703, 3.4444, -1.2608, -5.0703, 4.7052, -2.3336, -5.3105, 4.0419, -2.4356, -5.0703, 4.2186, 0, -5.0703, 4.8712, -1.208, -5.3105, 4.5081, -1.2608, -5.0703, 4.7052, 1.208, -5.3105, 4.5081, 0, -5.0703, 4.8712, 1.2608, -5.0703, 4.7052, 2.4356, -5.0703, 4.2186, 1.208, -5.3105, 4.5081, 1.2608, -5.0703, 4.7052, 3.4444, -5.0703, 3.4444, 2.3336, -5.3105, 4.0419, 2.4356, -5.0703, 4.2186, 4.0419, -5.3105, 2.3336, 3.4444, -5.0703, 3.4444, 4.2186, -5.0703, 2.4356, 4.5081, -5.3105, 1.208, 4.2186, -5.0703, 2.4356, 4.7052, -5.0703, 1.2608, 4.8712, -5.0703, 0, 4.5081, -5.3105, 1.208, 4.7052, -5.0703, 1.2608, 4.7052, -5.0703, -1.2608, 4.6672, -5.3105, 0, 4.8712, -5.0703, 0, 4.2186, -5.0703, -2.4356, 4.5081, -5.3105, -1.208, 4.7052, -5.0703, -1.2608, 3.4444, -5.0703, -3.4444, 4.0419, -5.3105, -2.3336, 4.2186, -5.0703, -2.4356, 2.4356, -5.0703, -4.2186, 3.3002, -5.3105, -3.3002, 3.4444, -5.0703, -3.4444, 1.2608, -5.0703, -4.7052, 2.3336, -5.3105, -4.0419, 2.4356, -5.0703, -4.2186, 0, -5.0703, -4.8712, 1.208, -5.3105, -4.5081, 1.2608, -5.0703, -4.7052, -1.208, -5.3105, -4.5081, 0, -5.0703, -4.8712, -1.2608, -5.0703, -4.7052, -2.4356, -5.0703, -4.2186, -1.208, -5.3105, -4.5081, -1.2608, -5.0703, -4.7052, -3.3002, -5.3105, -3.3002, -2.4356, -5.0703, -4.2186, -3.4444, -5.0703, -3.4444, -4.2186, -5.0703, -2.4356, -3.3002, -5.3105, -3.3002, -3.4444, -5.0703, -3.4444, -4.7052, -5.0703, -1.2608, -4.0419, -5.3105, -2.3336, -4.2186, -5.0703, -2.4356, -4.8712, -5.0703, 0, -4.5081, -5.3105, -1.208, -4.7052, -5.0703, -1.2608, -4.5081, -5.3105, 1.208, -4.3434, -5.4788, 0, -4.6672, -5.3105, 0, -4.0419, -5.3105, 2.3336, -4.1954, -5.4788, 1.1242, -4.5081, -5.3105, 1.208, -3.0713, -5.4788, 3.0713, -4.0419, -5.3105, 2.3336, -3.3002, -5.3105, 3.3002, -2.3336, -5.3105, 4.0419, -3.0713, -5.4788, 3.0713, -3.3002, -5.3105, 3.3002, -1.208, -5.3105, 4.5081, -2.1717, -5.4788, 3.7615, -2.3336, -5.3105, 4.0419, 0, -5.3105, 4.6672, -1.1242, -5.4788, 4.1954, -1.208, -5.3105, 4.5081, 1.1242, -5.4788, 4.1954, 0, -5.3105, 4.6672, 1.208, -5.3105, 4.5081, 2.1717, -5.4788, 3.7615, 1.208, -5.3105, 4.5081, 2.3336, -5.3105, 4.0419, 3.0713, -5.4788, 3.0713, 2.3336, -5.3105, 4.0419, 3.3002, -5.3105, 3.3002, 4.0419, -5.3105, 2.3336, 3.0713, -5.4788, 3.0713, 3.3002, -5.3105, 3.3002, 4.5081, -5.3105, 1.208, 3.7615, -5.4788, 2.1717, 4.0419, -5.3105, 2.3336, 4.3434, -5.4788, 0, 4.5081, -5.3105, 1.208, 4.6672, -5.3105, 0, 4.5081, -5.3105, -1.208, 4.3434, -5.4788, 0, 4.6672, -5.3105, 0, 4.0419, -5.3105, -2.3336, 4.1954, -5.4788, -1.1242, 4.5081, -5.3105, -1.208, 3.0713, -5.4788, -3.0713, 4.0419, -5.3105, -2.3336, 3.3002, -5.3105, -3.3002, 2.3336, -5.3105, -4.0419, 3.0713, -5.4788, -3.0713, 3.3002, -5.3105, -3.3002, 1.1242, -5.4788, -4.1954, 2.3336, -5.3105, -4.0419, 1.208, -5.3105, -4.5081, 0, -5.4788, -4.3434, 1.208, -5.3105, -4.5081, 0, -5.3105, -4.6672, -1.1242, -5.4788, -4.1954, 0, -5.3105, -4.6672, -1.208, -5.3105, -4.5081, -2.3336, -5.3105, -4.0419, -1.1242, -5.4788, -4.1954, -1.208, -5.3105, -4.5081, -3.3002, -5.3105, -3.3002, -2.1717, -5.4788, -3.7615, -2.3336, -5.3105, -4.0419, -3.7615, -5.4788, -2.1717, -3.3002, -5.3105, -3.3002, -4.0419, -5.3105, -2.3336, -4.1954, -5.4788, -1.1242, -4.0419, -5.3105, -2.3336, -4.5081, -5.3105, -1.208, -4.6672, -5.3105, 0, -4.1954, -5.4788, -1.1242, -4.5081, -5.3105, -1.208, -3.7956, -5.5934, 1.017, -4.3434, -5.4788, 0, -4.1954, -5.4788, 1.1242, -3.7615, -5.4788, 2.1717, -3.7956, -5.5934, 1.017, -4.1954, -5.4788, 1.1242, -3.0713, -5.4788, 3.0713, -3.4031, -5.5934, 1.9648, -3.7615, -5.4788, 2.1717, -1.9648, -5.5934, 3.4031, -3.0713, -5.4788, 3.0713, -2.1717, -5.4788, 3.7615, -1.017, -5.5934, 3.7956, -2.1717, -5.4788, 3.7615, -1.1242, -5.4788, 4.1954, 0, -5.4788, 4.3434, -1.017, -5.5934, 3.7956, -1.1242, -5.4788, 4.1954, 1.1242, -5.4788, 4.1954, 0, -5.5934, 3.9295, 0, -5.4788, 4.3434, 1.9648, -5.5934, 3.4031, 1.1242, -5.4788, 4.1954, 2.1717, -5.4788, 3.7615, 3.0713, -5.4788, 3.0713, 1.9648, -5.5934, 3.4031, 2.1717, -5.4788, 3.7615, 3.7615, -5.4788, 2.1717, 2.7786, -5.5934, 2.7786, 3.0713, -5.4788, 3.0713, 4.1954, -5.4788, 1.1242, 3.4031, -5.5934, 1.9648, 3.7615, -5.4788, 2.1717, 3.9295, -5.5934, 0, 4.1954, -5.4788, 1.1242, 4.3434, -5.4788, 0, 3.7956, -5.5934, -1.017, 4.3434, -5.4788, 0, 4.1954, -5.4788, -1.1242, 3.7615, -5.4788, -2.1717, 3.7956, -5.5934, -1.017, 4.1954, -5.4788, -1.1242, 2.7786, -5.5934, -2.7786, 3.7615, -5.4788, -2.1717, 3.0713, -5.4788, -3.0713, 2.1717, -5.4788, -3.7615, 2.7786, -5.5934, -2.7786, 3.0713, -5.4788, -3.0713, 1.1242, -5.4788, -4.1954, 1.9648, -5.5934, -3.4031, 2.1717, -5.4788, -3.7615, 0, -5.4788, -4.3434, 1.017, -5.5934, -3.7956, 1.1242, -5.4788, -4.1954, -1.017, -5.5934, -3.7956, 0, -5.4788, -4.3434, -1.1242, -5.4788, -4.1954, -2.1717, -5.4788, -3.7615, -1.017, -5.5934, -3.7956, -1.1242, -5.4788, -4.1954, -3.0713, -5.4788, -3.0713, -1.9648, -5.5934, -3.4031, -2.1717, -5.4788, -3.7615, -3.7615, -5.4788, -2.1717, -2.7786, -5.5934, -2.7786, -3.0713, -5.4788, -3.0713, -4.1954, -5.4788, -1.1242, -3.4031, -5.5934, -1.9648, -3.7615, -5.4788, -2.1717, -4.3434, -5.4788, 0, -3.7956, -5.5934, -1.017, -4.1954, -5.4788, -1.1242, -3.7956, -5.5934, 1.017, -3.4551, -5.6722, 0, -3.9295, -5.5934, 0, -3.4031, -5.5934, 1.9648, -3.3374, -5.6722, 0.8943, -3.7956, -5.5934, 1.017, -2.4431, -5.6722, 2.4431, -3.4031, -5.5934, 1.9648, -2.7786, -5.5934, 2.7786, -1.7276, -5.6722, 2.9922, -2.7786, -5.5934, 2.7786, -1.9648, -5.5934, 3.4031, -1.017, -5.5934, 3.7956, -1.7276, -5.6722, 2.9922, -1.9648, -5.5934, 3.4031, 0, -5.6722, 3.4551, -1.017, -5.5934, 3.7956, 0, -5.5934, 3.9295, 1.017, -5.5934, 3.7956, 0, -5.6722, 3.4551, 0, -5.5934, 3.9295, 1.9648, -5.5934, 3.4031, 0.8943, -5.6722, 3.3374, 1.017, -5.5934, 3.7956, 2.7786, -5.5934, 2.7786, 1.7276, -5.6722, 2.9922, 1.9648, -5.5934, 3.4031, 2.9922, -5.6722, 1.7276, 2.7786, -5.5934, 2.7786, 3.4031, -5.5934, 1.9648, 3.7956, -5.5934, 1.017, 2.9922, -5.6722, 1.7276, 3.4031, -5.5934, 1.9648, 3.9295, -5.5934, 0, 3.3374, -5.6722, 0.8943, 3.7956, -5.5934, 1.017, 3.7956, -5.5934, -1.017, 3.4551, -5.6722, 0, 3.9295, -5.5934, 0, 3.4031, -5.5934, -1.9648, 3.3374, -5.6722, -0.8943, 3.7956, -5.5934, -1.017, 2.4431, -5.6722, -2.4431, 3.4031, -5.5934, -1.9648, 2.7786, -5.5934, -2.7786, 1.7276, -5.6722, -2.9922, 2.7786, -5.5934, -2.7786, 1.9648, -5.5934, -3.4031, 1.017, -5.5934, -3.7956, 1.7276, -5.6722, -2.9922, 1.9648, -5.5934, -3.4031, 0, -5.5934, -3.9295, 0.8943, -5.6722, -3.3374, 1.017, -5.5934, -3.7956, -1.017, -5.5934, -3.7956, 0, -5.6722, -3.4551, 0, -5.5934, -3.9295, -1.9648, -5.5934, -3.4031, -0.8943, -5.6722, -3.3374, -1.017, -5.5934, -3.7956, -2.7786, -5.5934, -2.7786, -1.7276, -5.6722, -2.9922, -1.9648, -5.5934, -3.4031, -3.4031, -5.5934, -1.9648, -2.4431, -5.6722, -2.4431, -2.7786, -5.5934, -2.7786, -3.7956, -5.5934, -1.017, -2.9922, -5.6722, -1.7276, -3.4031, -5.5934, -1.9648, -3.9295, -5.5934, 0, -3.3374, -5.6722, -0.8943, -3.7956, -5.5934, -1.017, -2.8493, -5.7334, 0.7635, -3.4551, -5.6722, 0, -3.3374, -5.6722, 0.8943, -2.9922, -5.6722, 1.7276, -2.8493, -5.7334, 0.7635, -3.3374, -5.6722, 0.8943, -2.4431, -5.6722, 2.4431, -2.5546, -5.7334, 1.4749, -2.9922, -5.6722, 1.7276, -1.4749, -5.7334, 2.5546, -2.4431, -5.6722, 2.4431, -1.7276, -5.6722, 2.9922, -0.8943, -5.6722, 3.3374, -1.4749, -5.7334, 2.5546, -1.7276, -5.6722, 2.9922, 0, -5.6722, 3.4551, -0.7635, -5.7334, 2.8493, -0.8943, -5.6722, 3.3374, 0.8943, -5.6722, 3.3374, 0, -5.7334, 2.9498, 0, -5.6722, 3.4551, 1.7276, -5.6722, 2.9922, 0.7635, -5.7334, 2.8493, 0.8943, -5.6722, 3.3374, 2.4431, -5.6722, 2.4431, 1.4749, -5.7334, 2.5546, 1.7276, -5.6722, 2.9922, 2.5546, -5.7334, 1.4749, 2.4431, -5.6722, 2.4431, 2.9922, -5.6722, 1.7276, 2.8493, -5.7334, 0.7635, 2.9922, -5.6722, 1.7276, 3.3374, -5.6722, 0.8943, 3.4551, -5.6722, 0, 2.8493, -5.7334, 0.7635, 3.3374, -5.6722, 0.8943, 2.8493, -5.7334, -0.7635, 3.4551, -5.6722, 0, 3.3374, -5.6722, -0.8943, 2.9922, -5.6722, -1.7276, 2.8493, -5.7334, -0.7635, 3.3374, -5.6722, -0.8943, 2.4431, -5.6722, -2.4431, 2.5546, -5.7334, -1.4749, 2.9922, -5.6722, -1.7276, 1.7276, -5.6722, -2.9922, 2.0858, -5.7334, -2.0858, 2.4431, -5.6722, -2.4431, 0.8943, -5.6722, -3.3374, 1.4749, -5.7334, -2.5546, 1.7276, -5.6722, -2.9922, 0, -5.6722, -3.4551, 0.7635, -5.7334, -2.8493, 0.8943, -5.6722, -3.3374, -0.8943, -5.6722, -3.3374, 0, -5.7334, -2.9498, 0, -5.6722, -3.4551, -1.7276, -5.6722, -2.9922, -0.7635, -5.7334, -2.8493, -0.8943, -5.6722, -3.3374, -2.4431, -5.6722, -2.4431, -1.4749, -5.7334, -2.5546, -1.7276, -5.6722, -2.9922, -2.9922, -5.6722, -1.7276, -2.0858, -5.7334, -2.0858, -2.4431, -5.6722, -2.4431, -2.8493, -5.7334, -0.7635, -2.9922, -5.6722, -1.7276, -3.3374, -5.6722, -0.8943, -3.4551, -5.6722, 0, -2.8493, -5.7334, -0.7635, -3.3374, -5.6722, -0.8943, -2.8493, -5.7334, 0.7635, -2.4431, -5.795, 0, -2.9498, -5.7334, 0, -2.5546, -5.7334, 1.4749, -2.3599, -5.795, 0.6323, -2.8493, -5.7334, 0.7635, -2.0858, -5.7334, 2.0858, -2.1158, -5.795, 1.2216, -2.5546, -5.7334, 1.4749, -1.2216, -5.795, 2.1158, -2.0858, -5.7334, 2.0858, -1.4749, -5.7334, 2.5546, -0.7635, -5.7334, 2.8493, -1.2216, -5.795, 2.1158, -1.4749, -5.7334, 2.5546, 0, -5.795, 2.4431, -0.7635, -5.7334, 2.8493, 0, -5.7334, 2.9498, 0.7635, -5.7334, 2.8493, 0, -5.795, 2.4431, 0, -5.7334, 2.9498, 1.4749, -5.7334, 2.5546, 0.6323, -5.795, 2.3599, 0.7635, -5.7334, 2.8493, 2.0858, -5.7334, 2.0858, 1.2216, -5.795, 2.1158, 1.4749, -5.7334, 2.5546, 2.1158, -5.795, 1.2216, 2.0858, -5.7334, 2.0858, 2.5546, -5.7334, 1.4749, 2.3599, -5.795, 0.6323, 2.5546, -5.7334, 1.4749, 2.8493, -5.7334, 0.7635, 2.9498, -5.7334, 0, 2.3599, -5.795, 0.6323, 2.8493, -5.7334, 0.7635, 2.8493, -5.7334, -0.7635, 2.4431, -5.795, 0, 2.9498, -5.7334, 0, 2.5546, -5.7334, -1.4749, 2.3599, -5.795, -0.6323, 2.8493, -5.7334, -0.7635, 2.0858, -5.7334, -2.0858, 2.1158, -5.795, -1.2216, 2.5546, -5.7334, -1.4749, 1.4749, -5.7334, -2.5546, 1.7275, -5.795, -1.7275, 2.0858, -5.7334, -2.0858, 0.6323, -5.795, -2.3599, 1.4749, -5.7334, -2.5546, 0.7635, -5.7334, -2.8493, 0, -5.7334, -2.9498, 0.6323, -5.795, -2.3599, 0.7635, -5.7334, -2.8493, -0.7635, -5.7334, -2.8493, 0, -5.795, -2.4431, 0, -5.7334, -2.9498, -1.4749, -5.7334, -2.5546, -0.6323, -5.795, -2.3599, -0.7635, -5.7334, -2.8493, -2.0858, -5.7334, -2.0858, -1.2216, -5.795, -2.1158, -1.4749, -5.7334, -2.5546, -2.1158, -5.795, -1.2216, -2.0858, -5.7334, -2.0858, -2.5546, -5.7334, -1.4749, -2.8493, -5.7334, -0.7635, -2.1158, -5.795, -1.2216, -2.5546, -5.7334, -1.4749, -2.9498, -5.7334, 0, -2.3599, -5.795, -0.6323, -2.8493, -5.7334, -0.7635, -2.3599, -5.795, 0.6323, -1.9647, -5.8749, 0, -2.4431, -5.795, 0, -2.1158, -5.795, 1.2216, -1.8978, -5.8749, 0.5085, -2.3599, -5.795, 0.6323, -1.7275, -5.795, 1.7275, -1.7015, -5.8749, 0.9824, -2.1158, -5.795, 1.2216, -1.2216, -5.795, 2.1158, -1.3893, -5.8749, 1.3893, -1.7275, -5.795, 1.7275, -0.6323, -5.795, 2.3599, -0.9824, -5.8749, 1.7015, -1.2216, -5.795, 2.1158, 0, -5.8749, 1.9647, -0.6323, -5.795, 2.3599, 0, -5.795, 2.4431, 0.6323, -5.795, 2.3599, 0, -5.8749, 1.9647, 0, -5.795, 2.4431, 1.2216, -5.795, 2.1158, 0.5085, -5.8749, 1.8978, 0.6323, -5.795, 2.3599, 1.7275, -5.795, 1.7275, 0.9824, -5.8749, 1.7015, 1.2216, -5.795, 2.1158, 2.1158, -5.795, 1.2216, 1.3893, -5.8749, 1.3893, 1.7275, -5.795, 1.7275, 2.3599, -5.795, 0.6323, 1.7015, -5.8749, 0.9824, 2.1158, -5.795, 1.2216, 2.4431, -5.795, 0, 1.8978, -5.8749, 0.5085, 2.3599, -5.795, 0.6323, 2.3599, -5.795, -0.6323, 1.9647, -5.8749, 0, 2.4431, -5.795, 0, 2.1158, -5.795, -1.2216, 1.8978, -5.8749, -0.5085, 2.3599, -5.795, -0.6323, 1.7275, -5.795, -1.7275, 1.7015, -5.8749, -0.9824, 2.1158, -5.795, -1.2216, 1.2216, -5.795, -2.1158, 1.3893, -5.8749, -1.3893, 1.7275, -5.795, -1.7275, 0.5085, -5.8749, -1.8978, 1.2216, -5.795, -2.1158, 0.6323, -5.795, -2.3599, 0, -5.8749, -1.9647, 0.6323, -5.795, -2.3599, 0, -5.795, -2.4431, -0.6323, -5.795, -2.3599, 0, -5.8749, -1.9647, 0, -5.795, -2.4431, -1.2216, -5.795, -2.1158, -0.5085, -5.8749, -1.8978, -0.6323, -5.795, -2.3599, -1.7275, -5.795, -1.7275, -0.9824, -5.8749, -1.7015, -1.2216, -5.795, -2.1158, -2.1158, -5.795, -1.2216, -1.3893, -5.8749, -1.3893, -1.7275, -5.795, -1.7275, -2.3599, -5.795, -0.6323, -1.7015, -5.8749, -0.9824, -2.1158, -5.795, -1.2216, -2.4431, -5.795, 0, -1.8978, -5.8749, -0.5085, -2.3599, -5.795, -0.6323, -1.4916, -5.9914, 0.3997, -1.9647, -5.8749, 0, -1.8978, -5.8749, 0.5085, -1.7015, -5.8749, 0.9824, -1.4916, -5.9914, 0.3997, -1.8978, -5.8749, 0.5085, -1.3893, -5.8749, 1.3893, -1.3373, -5.9914, 0.7721, -1.7015, -5.8749, 0.9824, -0.9824, -5.8749, 1.7015, -1.0919, -5.9914, 1.0919, -1.3893, -5.8749, 1.3893, -0.5085, -5.8749, 1.8978, -0.7721, -5.9914, 1.3373, -0.9824, -5.8749, 1.7015, 0, -5.8749, 1.9647, -0.3997, -5.9914, 1.4916, -0.5085, -5.8749, 1.8978, 0.5085, -5.8749, 1.8978, 0, -5.9914, 1.5442, 0, -5.8749, 1.9647, 0.7721, -5.9914, 1.3373, 0.5085, -5.8749, 1.8978, 0.9824, -5.8749, 1.7015, 1.3893, -5.8749, 1.3893, 0.7721, -5.9914, 1.3373, 0.9824, -5.8749, 1.7015, 1.3373, -5.9914, 0.7721, 1.3893, -5.8749, 1.3893, 1.7015, -5.8749, 0.9824, 1.8978, -5.8749, 0.5085, 1.3373, -5.9914, 0.7721, 1.7015, -5.8749, 0.9824, 1.9647, -5.8749, 0, 1.4916, -5.9914, 0.3997, 1.8978, -5.8749, 0.5085, 1.8978, -5.8749, -0.5085, 1.5442, -5.9914, 0, 1.9647, -5.8749, 0, 1.3373, -5.9914, -0.7721, 1.8978, -5.8749, -0.5085, 1.7015, -5.8749, -0.9824, 1.3893, -5.8749, -1.3893, 1.3373, -5.9914, -0.7721, 1.7015, -5.8749, -0.9824, 0.7721, -5.9914, -1.3373, 1.3893, -5.8749, -1.3893, 0.9824, -5.8749, -1.7015, 0.5085, -5.8749, -1.8978, 0.7721, -5.9914, -1.3373, 0.9824, -5.8749, -1.7015, 0, -5.8749, -1.9647, 0.3997, -5.9914, -1.4916, 0.5085, -5.8749, -1.8978, -0.5085, -5.8749, -1.8978, 0, -5.9914, -1.5442, 0, -5.8749, -1.9647, -0.7721, -5.9914, -1.3373, -0.5085, -5.8749, -1.8978, -0.9824, -5.8749, -1.7015, -1.3893, -5.8749, -1.3893, -0.7721, -5.9914, -1.3373, -0.9824, -5.8749, -1.7015, -1.3373, -5.9914, -0.7721, -1.3893, -5.8749, -1.3893, -1.7015, -5.8749, -0.9824, -1.8978, -5.8749, -0.5085, -1.3373, -5.9914, -0.7721, -1.7015, -5.8749, -0.9824, -1.9647, -5.8749, 0, -1.4916, -5.9914, -0.3997, -1.8978, -5.8749, -0.5085, -1.4916, -5.9914, 0.3997, -1.2111, -6.1624, 0, -1.5442, -5.9914, 0, -1.3373, -5.9914, 0.7721, -1.1699, -6.1624, 0.3135, -1.4916, -5.9914, 0.3997, -1.0919, -5.9914, 1.0919, -1.0489, -6.1624, 0.6056, -1.3373, -5.9914, 0.7721, -0.7721, -5.9914, 1.3373, -0.8564, -6.1624, 0.8564, -1.0919, -5.9914, 1.0919, -0.3997, -5.9914, 1.4916, -0.6056, -6.1624, 1.0489, -0.7721, -5.9914, 1.3373, 0, -5.9914, 1.5442, -0.3135, -6.1624, 1.1699, -0.3997, -5.9914, 1.4916, 0.3997, -5.9914, 1.4916, 0, -6.1624, 1.2111, 0, -5.9914, 1.5442, 0.7721, -5.9914, 1.3373, 0.3135, -6.1624, 1.1699, 0.3997, -5.9914, 1.4916, 1.0919, -5.9914, 1.0919, 0.6056, -6.1624, 1.0489, 0.7721, -5.9914, 1.3373, 1.3373, -5.9914, 0.7721, 0.8564, -6.1624, 0.8564, 1.0919, -5.9914, 1.0919, 1.4916, -5.9914, 0.3997, 1.0489, -6.1624, 0.6056, 1.3373, -5.9914, 0.7721, 1.5442, -5.9914, 0, 1.1699, -6.1624, 0.3135, 1.4916, -5.9914, 0.3997, 1.4916, -5.9914, -0.3997, 1.2111, -6.1624, 0, 1.5442, -5.9914, 0, 1.3373, -5.9914, -0.7721, 1.1699, -6.1624, -0.3135, 1.4916, -5.9914, -0.3997, 0.8564, -6.1624, -0.8564, 1.3373, -5.9914, -0.7721, 1.0919, -5.9914, -1.0919, 0.7721, -5.9914, -1.3373, 0.8564, -6.1624, -0.8564, 1.0919, -5.9914, -1.0919, 0.3997, -5.9914, -1.4916, 0.6056, -6.1624, -1.0489, 0.7721, -5.9914, -1.3373, 0, -5.9914, -1.5442, 0.3135, -6.1624, -1.1699, 0.3997, -5.9914, -1.4916, -0.3997, -5.9914, -1.4916, 0, -6.1624, -1.2111, 0, -5.9914, -1.5442, -0.7721, -5.9914, -1.3373, -0.3135, -6.1624, -1.1699, -0.3997, -5.9914, -1.4916, -1.0919, -5.9914, -1.0919, -0.6056, -6.1624, -1.0489, -0.7721, -5.9914, -1.3373, -1.3373, -5.9914, -0.7721, -0.8564, -6.1624, -0.8564, -1.0919, -5.9914, -1.0919, -1.4916, -5.9914, -0.3997, -1.0489, -6.1624, -0.6056, -1.3373, -5.9914, -0.7721, -1.5442, -5.9914, 0, -1.1699, -6.1624, -0.3135, -1.4916, -5.9914, -0.3997, -1.1699, -6.1624, 0.3135, -1.0452, -6.3726, 0, -1.2111, -6.1624, 0, -1.0489, -6.1624, 0.6056, -1.0096, -6.3726, 0.2705, -1.1699, -6.1624, 0.3135, -0.8564, -6.1624, 0.8564, -0.9052, -6.3726, 0.5226, -1.0489, -6.1624, 0.6056, -0.6056, -6.1624, 1.0489, -0.7391, -6.3726, 0.7391, -0.8564, -6.1624, 0.8564, -0.2705, -6.3726, 1.0096, -0.6056, -6.1624, 1.0489, -0.3135, -6.1624, 1.1699, 0, -6.3726, 1.0452, -0.3135, -6.1624, 1.1699, 0, -6.1624, 1.2111, 0.3135, -6.1624, 1.1699, 0, -6.3726, 1.0452, 0, -6.1624, 1.2111, 0.6056, -6.1624, 1.0489, 0.2705, -6.3726, 1.0096, 0.3135, -6.1624, 1.1699, 0.8564, -6.1624, 0.8564, 0.5226, -6.3726, 0.9052, 0.6056, -6.1624, 1.0489, 1.0489, -6.1624, 0.6056, 0.7391, -6.3726, 0.7391, 0.8564, -6.1624, 0.8564, 1.1699, -6.1624, 0.3135, 0.9052, -6.3726, 0.5226, 1.0489, -6.1624, 0.6056, 1.2111, -6.1624, 0, 1.0096, -6.3726, 0.2705, 1.1699, -6.1624, 0.3135, 1.0096, -6.3726, -0.2705, 1.2111, -6.1624, 0, 1.1699, -6.1624, -0.3135, 0.9052, -6.3726, -0.5226, 1.1699, -6.1624, -0.3135, 1.0489, -6.1624, -0.6056, 0.8564, -6.1624, -0.8564, 0.9052, -6.3726, -0.5226, 1.0489, -6.1624, -0.6056, 0.6056, -6.1624, -1.0489, 0.7391, -6.3726, -0.7391, 0.8564, -6.1624, -0.8564, 0.2705, -6.3726, -1.0096, 0.6056, -6.1624, -1.0489, 0.3135, -6.1624, -1.1699, 0, -6.3726, -1.0452, 0.3135, -6.1624, -1.1699, 0, -6.1624, -1.2111, -0.3135, -6.1624, -1.1699, 0, -6.3726, -1.0452, 0, -6.1624, -1.2111, -0.6056, -6.1624, -1.0489, -0.2705, -6.3726, -1.0096, -0.3135, -6.1624, -1.1699, -0.8564, -6.1624, -0.8564, -0.5226, -6.3726, -0.9052, -0.6056, -6.1624, -1.0489, -0.9052, -6.3726, -0.5226, -0.8564, -6.1624, -0.8564, -1.0489, -6.1624, -0.6056, -1.0096, -6.3726, -0.2705, -1.0489, -6.1624, -0.6056, -1.1699, -6.1624, -0.3135, -1.2111, -6.1624, 0, -1.0096, -6.3726, -0.2705, -1.1699, -6.1624, -0.3135, -1.0096, -6.3726, 0.2705, -1, -6.5958, 0, -1.0452, -6.3726, 0, -0.866, -6.5958, 0.5, -1.0096, -6.3726, 0.2705, -0.9052, -6.3726, 0.5226, -0.7391, -6.3726, 0.7391, -0.866, -6.5958, 0.5, -0.9052, -6.3726, 0.5226, -0.5226, -6.3726, 0.9052, -0.7071, -6.5958, 0.7071, -0.7391, -6.3726, 0.7391, -0.2588, -6.5958, 0.9659, -0.5226, -6.3726, 0.9052, -0.2705, -6.3726, 1.0096, 0, -6.5958, 1, -0.2705, -6.3726, 1.0096, 0, -6.3726, 1.0452, 0.2705, -6.3726, 1.0096, 0, -6.5958, 1, 0, -6.3726, 1.0452, 0.5, -6.5958, 0.866, 0.2705, -6.3726, 1.0096, 0.5226, -6.3726, 0.9052, 0.7391, -6.3726, 0.7391, 0.5, -6.5958, 0.866, 0.5226, -6.3726, 0.9052, 0.866, -6.5958, 0.5, 0.7391, -6.3726, 0.7391, 0.9052, -6.3726, 0.5226, 1.0096, -6.3726, 0.2705, 0.866, -6.5958, 0.5, 0.9052, -6.3726, 0.5226, 1.0452, -6.3726, 0, 0.9659, -6.5958, 0.2588, 1.0096, -6.3726, 0.2705, 1.0096, -6.3726, -0.2705, 1, -6.5958, 0, 1.0452, -6.3726, 0, 0.866, -6.5958, -0.5, 1.0096, -6.3726, -0.2705, 0.9052, -6.3726, -0.5226, 0.7071, -6.5958, -0.7071, 0.9052, -6.3726, -0.5226, 0.7391, -6.3726, -0.7391, 0.5226, -6.3726, -0.9052, 0.7071, -6.5958, -0.7071, 0.7391, -6.3726, -0.7391, 0.2705, -6.3726, -1.0096, 0.5, -6.5958, -0.866, 0.5226, -6.3726, -0.9052, 0, -6.5958, -1, 0.2705, -6.3726, -1.0096, 0, -6.3726, -1.0452, -0.2705, -6.3726, -1.0096, 0, -6.5958, -1, 0, -6.3726, -1.0452, -0.5, -6.5958, -0.866, -0.2705, -6.3726, -1.0096, -0.5226, -6.3726, -0.9052, -0.7071, -6.5958, -0.7071, -0.5226, -6.3726, -0.9052, -0.7391, -6.3726, -0.7391, -0.866, -6.5958, -0.5, -0.7391, -6.3726, -0.7391, -0.9052, -6.3726, -0.5226, -0.9659, -6.5958, -0.2588, -0.9052, -6.3726, -0.5226, -1.0096, -6.3726, -0.2705, -1.0452, -6.3726, 0, -0.9659, -6.5958, -0.2588, -1.0096, -6.3726, -0.2705, -4.7453, -4.9259, 0, -4.6364, -4.5958, 1.2423, -4.8, -4.5958, 0, -4.1096, -4.9259, 2.3727, -4.6364, -4.5958, 1.2423, -4.5836, -4.9259, 1.2282, -3.3555, -4.9259, 3.3555, -4.1569, -4.5958, 2.4, -4.1096, -4.9259, 2.3727, -2.3727, -4.9259, 4.1096, -3.3941, -4.5958, 3.3941, -3.3555, -4.9259, 3.3555, -1.2282, -4.9259, 4.5836, -2.4, -4.5958, 4.1569, -2.3727, -4.9259, 4.1096, -1.2282, -4.9259, 4.5836, 0, -4.5958, 4.8, -1.2423, -4.5958, 4.6364, 0, -4.9259, 4.7453, 1.2423, -4.5958, 4.6364, 0, -4.5958, 4.8, 1.2282, -4.9259, 4.5836, 2.4, -4.5958, 4.1569, 1.2423, -4.5958, 4.6364, 3.3555, -4.9259, 3.3555, 2.4, -4.5958, 4.1569, 2.3727, -4.9259, 4.1096, 3.3555, -4.9259, 3.3555, 4.1569, -4.5958, 2.4, 3.3941, -4.5958, 3.3941, 4.1096, -4.9259, 2.3727, 4.6364, -4.5958, 1.2423, 4.1569, -4.5958, 2.4, 4.7453, -4.9259, 0, 4.6364, -4.5958, 1.2423, 4.5836, -4.9259, 1.2282, 4.5836, -4.9259, -1.2282, 4.8, -4.5958, 0, 4.7453, -4.9259, 0, 4.1096, -4.9259, -2.3727, 4.6364, -4.5958, -1.2423, 4.5836, -4.9259, -1.2282, 4.1096, -4.9259, -2.3727, 3.3941, -4.5958, -3.3941, 4.1569, -4.5958, -2.4, 3.3555, -4.9259, -3.3555, 2.4, -4.5958, -4.1569, 3.3941, -4.5958, -3.3941, 1.2282, -4.9259, -4.5836, 2.4, -4.5958, -4.1569, 2.3727, -4.9259, -4.1096, 0, -4.9259, -4.7453, 1.2423, -4.5958, -4.6364, 1.2282, -4.9259, -4.5836, 0, -4.9259, -4.7453, -1.2423, -4.5958, -4.6364, 0, -4.5958, -4.8, -1.2282, -4.9259, -4.5836, -2.4, -4.5958, -4.1569, -1.2423, -4.5958, -4.6364, -3.3555, -4.9259, -3.3555, -2.4, -4.5958, -4.1569, -2.3727, -4.9259, -4.1096, -3.3555, -4.9259, -3.3555, -4.1569, -4.5958, -2.4, -3.3941, -4.5958, -3.3941, -4.5836, -4.9259, -1.2282, -4.1569, -4.5958, -2.4, -4.1096, -4.9259, -2.3727, -4.5836, -4.9259, -1.2282, -4.8, -4.5958, 0, -4.6364, -4.5958, -1.2423, -4.5413, -5.1661, 0, -4.5836, -4.9259, 1.2282, -4.7453, -4.9259, 0, -3.9329, -5.1661, 2.2707, -4.5836, -4.9259, 1.2282, -4.3866, -5.1661, 1.1754, -3.9329, -5.1661, 2.2707, -3.3555, -4.9259, 3.3555, -4.1096, -4.9259, 2.3727, -2.2707, -5.1661, 3.9329, -3.3555, -4.9259, 3.3555, -3.2112, -5.1661, 3.2112, -1.1754, -5.1661, 4.3866, -2.3727, -4.9259, 4.1096, -2.2707, -5.1661, 3.9329, 0, -5.1661, 4.5413, -1.2282, -4.9259, 4.5836, -1.1754, -5.1661, 4.3866, 1.1754, -5.1661, 4.3866, 0, -4.9259, 4.7453, 0, -5.1661, 4.5413, 1.1754, -5.1661, 4.3866, 2.3727, -4.9259, 4.1096, 1.2282, -4.9259, 4.5836, 2.2707, -5.1661, 3.9329, 3.3555, -4.9259, 3.3555, 2.3727, -4.9259, 4.1096, 3.2112, -5.1661, 3.2112, 4.1096, -4.9259, 2.3727, 3.3555, -4.9259, 3.3555, 3.9329, -5.1661, 2.2707, 4.5836, -4.9259, 1.2282, 4.1096, -4.9259, 2.3727, 4.3866, -5.1661, 1.1754, 4.7453, -4.9259, 0, 4.5836, -4.9259, 1.2282, 4.5413, -5.1661, 0, 4.5836, -4.9259, -1.2282, 4.7453, -4.9259, 0, 4.3866, -5.1661, -1.1754, 4.1096, -4.9259, -2.3727, 4.5836, -4.9259, -1.2282, 3.2112, -5.1661, -3.2112, 4.1096, -4.9259, -2.3727, 3.9329, -5.1661, -2.2707, 3.2112, -5.1661, -3.2112, 2.3727, -4.9259, -4.1096, 3.3555, -4.9259, -3.3555, 2.2707, -5.1661, -3.9329, 1.2282, -4.9259, -4.5836, 2.3727, -4.9259, -4.1096, 1.1754, -5.1661, -4.3866, 0, -4.9259, -4.7453, 1.2282, -4.9259, -4.5836, -1.1754, -5.1661, -4.3866, 0, -4.9259, -4.7453, 0, -5.1661, -4.5413, -1.1754, -5.1661, -4.3866, -2.3727, -4.9259, -4.1096, -1.2282, -4.9259, -4.5836, -2.2707, -5.1661, -3.9329, -3.3555, -4.9259, -3.3555, -2.3727, -4.9259, -4.1096, -3.2112, -5.1661, -3.2112, -4.1096, -4.9259, -2.3727, -3.3555, -4.9259, -3.3555, -4.3866, -5.1661, -1.1754, -4.1096, -4.9259, -2.3727, -3.9329, -5.1661, -2.2707, -4.3866, -5.1661, -1.1754, -4.7453, -4.9259, 0, -4.5836, -4.9259, -1.2282, -4.2176, -5.3344, 0, -4.3866, -5.1661, 1.1754, -4.5413, -5.1661, 0, -3.6525, -5.3344, 2.1088, -4.3866, -5.1661, 1.1754, -4.0739, -5.3344, 1.0916, -3.6525, -5.3344, 2.1088, -3.2112, -5.1661, 3.2112, -3.9329, -5.1661, 2.2707, -2.9823, -5.3344, 2.9823, -2.2707, -5.1661, 3.9329, -3.2112, -5.1661, 3.2112, -2.1088, -5.3344, 3.6525, -1.1754, -5.1661, 4.3866, -2.2707, -5.1661, 3.9329, -1.0916, -5.3344, 4.0739, 0, -5.1661, 4.5413, -1.1754, -5.1661, 4.3866, 0, -5.3344, 4.2176, 1.1754, -5.1661, 4.3866, 0, -5.1661, 4.5413, 2.1088, -5.3344, 3.6525, 1.1754, -5.1661, 4.3866, 1.0916, -5.3344, 4.0739, 2.1088, -5.3344, 3.6525, 3.2112, -5.1661, 3.2112, 2.2707, -5.1661, 3.9329, 3.6525, -5.3344, 2.1088, 3.2112, -5.1661, 3.2112, 2.9823, -5.3344, 2.9823, 4.0739, -5.3344, 1.0916, 3.9329, -5.1661, 2.2707, 3.6525, -5.3344, 2.1088, 4.2176, -5.3344, 0, 4.3866, -5.1661, 1.1754, 4.0739, -5.3344, 1.0916, 4.0739, -5.3344, -1.0916, 4.5413, -5.1661, 0, 4.2176, -5.3344, 0, 3.6525, -5.3344, -2.1088, 4.3866, -5.1661, -1.1754, 4.0739, -5.3344, -1.0916, 3.6525, -5.3344, -2.1088, 3.2112, -5.1661, -3.2112, 3.9329, -5.1661, -2.2707, 2.9823, -5.3344, -2.9823, 2.2707, -5.1661, -3.9329, 3.2112, -5.1661, -3.2112, 2.1088, -5.3344, -3.6525, 1.1754, -5.1661, -4.3866, 2.2707, -5.1661, -3.9329, 1.0916, -5.3344, -4.0739, 0, -5.1661, -4.5413, 1.1754, -5.1661, -4.3866, -1.0916, -5.3344, -4.0739, 0, -5.1661, -4.5413, 0, -5.3344, -4.2176, -1.0916, -5.3344, -4.0739, -2.2707, -5.1661, -3.9329, -1.1754, -5.1661, -4.3866, -2.9823, -5.3344, -2.9823, -2.2707, -5.1661, -3.9329, -2.1088, -5.3344, -3.6525, -2.9823, -5.3344, -2.9823, -3.9329, -5.1661, -2.2707, -3.2112, -5.1661, -3.2112, -4.0739, -5.3344, -1.0916, -3.9329, -5.1661, -2.2707, -3.6525, -5.3344, -2.1088, -4.0739, -5.3344, -1.0916, -4.5413, -5.1661, 0, -4.3866, -5.1661, -1.1754, -3.8037, -5.449, 0, -4.0739, -5.3344, 1.0916, -4.2176, -5.3344, 0, -3.6741, -5.449, 0.9845, -3.6525, -5.3344, 2.1088, -4.0739, -5.3344, 1.0916, -3.2941, -5.449, 1.9018, -2.9823, -5.3344, 2.9823, -3.6525, -5.3344, 2.1088, -1.9018, -5.449, 3.2941, -2.9823, -5.3344, 2.9823, -2.6896, -5.449, 2.6896, -0.9845, -5.449, 3.6741, -2.1088, -5.3344, 3.6525, -1.9018, -5.449, 3.2941, -0.9845, -5.449, 3.6741, 0, -5.3344, 4.2176, -1.0916, -5.3344, 4.0739, 0, -5.449, 3.8037, 1.0916, -5.3344, 4.0739, 0, -5.3344, 4.2176, 0.9845, -5.449, 3.6741, 2.1088, -5.3344, 3.6525, 1.0916, -5.3344, 4.0739, 1.9018, -5.449, 3.2941, 2.9823, -5.3344, 2.9823, 2.1088, -5.3344, 3.6525, 3.2941, -5.449, 1.9018, 2.9823, -5.3344, 2.9823, 2.6896, -5.449, 2.6896, 3.2941, -5.449, 1.9018, 4.0739, -5.3344, 1.0916, 3.6525, -5.3344, 2.1088, 3.6741, -5.449, 0.9845, 4.2176, -5.3344, 0, 4.0739, -5.3344, 1.0916, 3.6741, -5.449, -0.9845, 4.2176, -5.3344, 0, 3.8037, -5.449, 0, 3.6741, -5.449, -0.9845, 3.6525, -5.3344, -2.1088, 4.0739, -5.3344, -1.0916, 3.2941, -5.449, -1.9018, 2.9823, -5.3344, -2.9823, 3.6525, -5.3344, -2.1088, 1.9018, -5.449, -3.2941, 2.9823, -5.3344, -2.9823, 2.6896, -5.449, -2.6896, 1.9018, -5.449, -3.2941, 1.0916, -5.3344, -4.0739, 2.1088, -5.3344, -3.6525, 0.9845, -5.449, -3.6741, 0, -5.3344, -4.2176, 1.0916, -5.3344, -4.0739, 0, -5.449, -3.8037, -1.0916, -5.3344, -4.0739, 0, -5.3344, -4.2176, -0.9845, -5.449, -3.6741, -2.1088, -5.3344, -3.6525, -1.0916, -5.3344, -4.0739, -2.6896, -5.449, -2.6896, -2.1088, -5.3344, -3.6525, -1.9018, -5.449, -3.2941, -3.2941, -5.449, -1.9018, -2.9823, -5.3344, -2.9823, -2.6896, -5.449, -2.6896, -3.2941, -5.449, -1.9018, -4.0739, -5.3344, -1.0916, -3.6525, -5.3344, -2.1088, -3.6741, -5.449, -0.9845, -4.2176, -5.3344, 0, -4.0739, -5.3344, -1.0916, -3.3293, -5.5279, 0, -3.6741, -5.449, 0.9845, -3.8037, -5.449, 0, -3.2158, -5.5279, 0.8617, -3.2941, -5.449, 1.9018, -3.6741, -5.449, 0.9845, -2.3542, -5.5279, 2.3542, -3.2941, -5.449, 1.9018, -2.8832, -5.5279, 1.6646, -2.3542, -5.5279, 2.3542, -1.9018, -5.449, 3.2941, -2.6896, -5.449, 2.6896, -0.8617, -5.5279, 3.2158, -1.9018, -5.449, 3.2941, -1.6646, -5.5279, 2.8832, -0.8617, -5.5279, 3.2158, 0, -5.449, 3.8037, -0.9845, -5.449, 3.6741, 0.8617, -5.5279, 3.2158, 0, -5.449, 3.8037, 0, -5.5279, 3.3293, 0.8617, -5.5279, 3.2158, 1.9018, -5.449, 3.2941, 0.9845, -5.449, 3.6741, 1.6646, -5.5279, 2.8832, 2.6896, -5.449, 2.6896, 1.9018, -5.449, 3.2941, 2.8832, -5.5279, 1.6646, 2.6896, -5.449, 2.6896, 2.3542, -5.5279, 2.3542, 3.2158, -5.5279, 0.8617, 3.2941, -5.449, 1.9018, 2.8832, -5.5279, 1.6646, 3.2158, -5.5279, 0.8617, 3.8037, -5.449, 0, 3.6741, -5.449, 0.9845, 3.2158, -5.5279, -0.8617, 3.8037, -5.449, 0, 3.3293, -5.5279, 0, 3.2158, -5.5279, -0.8617, 3.2941, -5.449, -1.9018, 3.6741, -5.449, -0.9845, 2.8832, -5.5279, -1.6646, 2.6896, -5.449, -2.6896, 3.2941, -5.449, -1.9018, 1.6646, -5.5279, -2.8832, 2.6896, -5.449, -2.6896, 2.3542, -5.5279, -2.3542, 0.8617, -5.5279, -3.2158, 1.9018, -5.449, -3.2941, 1.6646, -5.5279, -2.8832, 0, -5.5279, -3.3293, 0.9845, -5.449, -3.6741, 0.8617, -5.5279, -3.2158, 0, -5.5279, -3.3293, -0.9845, -5.449, -3.6741, 0, -5.449, -3.8037, -0.8617, -5.5279, -3.2158, -1.9018, -5.449, -3.2941, -0.9845, -5.449, -3.6741, -2.3542, -5.5279, -2.3542, -1.9018, -5.449, -3.2941, -1.6646, -5.5279, -2.8832, -2.3542, -5.5279, -2.3542, -3.2941, -5.449, -1.9018, -2.6896, -5.449, -2.6896, -2.8832, -5.5279, -1.6646, -3.6741, -5.449, -0.9845, -3.2941, -5.449, -1.9018, -3.2158, -5.5279, -0.8617, -3.8037, -5.449, 0, -3.6741, -5.449, -0.9845, -2.8239, -5.589, 0, -3.2158, -5.5279, 0.8617, -3.3293, -5.5279, 0, -2.7277, -5.589, 0.7309, -2.8832, -5.5279, 1.6646, -3.2158, -5.5279, 0.8617, -2.4456, -5.589, 1.412, -2.3542, -5.5279, 2.3542, -2.8832, -5.5279, 1.6646, -1.9968, -5.589, 1.9968, -1.6646, -5.5279, 2.8832, -2.3542, -5.5279, 2.3542, -0.7309, -5.589, 2.7277, -1.6646, -5.5279, 2.8832, -1.412, -5.589, 2.4456, -0.7309, -5.589, 2.7277, 0, -5.5279, 3.3293, -0.8617, -5.5279, 3.2158, 0, -5.589, 2.8239, 0.8617, -5.5279, 3.2158, 0, -5.5279, 3.3293, 0.7309, -5.589, 2.7277, 1.6646, -5.5279, 2.8832, 0.8617, -5.5279, 3.2158, 1.412, -5.589, 2.4456, 2.3542, -5.5279, 2.3542, 1.6646, -5.5279, 2.8832, 1.9968, -5.589, 1.9968, 2.8832, -5.5279, 1.6646, 2.3542, -5.5279, 2.3542, 2.4456, -5.589, 1.412, 3.2158, -5.5279, 0.8617, 2.8832, -5.5279, 1.6646, 2.8239, -5.589, 0, 3.2158, -5.5279, 0.8617, 2.7277, -5.589, 0.7309, 2.8239, -5.589, 0, 3.2158, -5.5279, -0.8617, 3.3293, -5.5279, 0, 2.7277, -5.589, -0.7309, 2.8832, -5.5279, -1.6646, 3.2158, -5.5279, -0.8617, 2.4456, -5.589, -1.412, 2.3542, -5.5279, -2.3542, 2.8832, -5.5279, -1.6646, 1.9968, -5.589, -1.9968, 1.6646, -5.5279, -2.8832, 2.3542, -5.5279, -2.3542, 0.7309, -5.589, -2.7277, 1.6646, -5.5279, -2.8832, 1.412, -5.589, -2.4456, 0.7309, -5.589, -2.7277, 0, -5.5279, -3.3293, 0.8617, -5.5279, -3.2158, 0, -5.589, -2.8239, -0.8617, -5.5279, -3.2158, 0, -5.5279, -3.3293, -0.7309, -5.589, -2.7277, -1.6646, -5.5279, -2.8832, -0.8617, -5.5279, -3.2158, -1.412, -5.589, -2.4456, -2.3542, -5.5279, -2.3542, -1.6646, -5.5279, -2.8832, -1.9968, -5.589, -1.9968, -2.8832, -5.5279, -1.6646, -2.3542, -5.5279, -2.3542, -2.7277, -5.589, -0.7309, -2.8832, -5.5279, -1.6646, -2.4456, -5.589, -1.412, -2.8239, -5.589, 0, -3.2158, -5.5279, -0.8617, -2.7277, -5.589, -0.7309, -2.2383, -5.6506, 0.5998, -2.8239, -5.589, 0, -2.3173, -5.6506, 0, -2.2383, -5.6506, 0.5998, -2.4456, -5.589, 1.412, -2.7277, -5.589, 0.7309, -2.0068, -5.6506, 1.1586, -1.9968, -5.589, 1.9968, -2.4456, -5.589, 1.412, -1.1586, -5.6506, 2.0068, -1.9968, -5.589, 1.9968, -1.6386, -5.6506, 1.6386, -1.1586, -5.6506, 2.0068, -0.7309, -5.589, 2.7277, -1.412, -5.589, 2.4456, -0.5998, -5.6506, 2.2383, 0, -5.589, 2.8239, -0.7309, -5.589, 2.7277, 0, -5.6506, 2.3173, 0.7309, -5.589, 2.7277, 0, -5.589, 2.8239, 0.5998, -5.6506, 2.2383, 1.412, -5.589, 2.4456, 0.7309, -5.589, 2.7277, 1.1586, -5.6506, 2.0068, 1.9968, -5.589, 1.9968, 1.412, -5.589, 2.4456, 1.6386, -5.6506, 1.6386, 2.4456, -5.589, 1.412, 1.9968, -5.589, 1.9968, 2.0068, -5.6506, 1.1586, 2.7277, -5.589, 0.7309, 2.4456, -5.589, 1.412, 2.2383, -5.6506, 0.5998, 2.8239, -5.589, 0, 2.7277, -5.589, 0.7309, 2.3173, -5.6506, 0, 2.7277, -5.589, -0.7309, 2.8239, -5.589, 0, 2.2383, -5.6506, -0.5998, 2.4456, -5.589, -1.412, 2.7277, -5.589, -0.7309, 2.0068, -5.6506, -1.1586, 1.9968, -5.589, -1.9968, 2.4456, -5.589, -1.412, 1.6386, -5.6506, -1.6386, 1.412, -5.589, -2.4456, 1.9968, -5.589, -1.9968, 0.5998, -5.6506, -2.2383, 1.412, -5.589, -2.4456, 1.1586, -5.6506, -2.0068, 0.5998, -5.6506, -2.2383, 0, -5.589, -2.8239, 0.7309, -5.589, -2.7277, 0, -5.6506, -2.3173, -0.7309, -5.589, -2.7277, 0, -5.589, -2.8239, -1.1586, -5.6506, -2.0068, -0.7309, -5.589, -2.7277, -0.5998, -5.6506, -2.2383, -1.6386, -5.6506, -1.6386, -1.412, -5.589, -2.4456, -1.1586, -5.6506, -2.0068, -2.0068, -5.6506, -1.1586, -1.9968, -5.589, -1.9968, -1.6386, -5.6506, -1.6386, -2.0068, -5.6506, -1.1586, -2.7277, -5.589, -0.7309, -2.4456, -5.589, -1.412, -2.2383, -5.6506, -0.5998, -2.8239, -5.589, 0, -2.7277, -5.589, -0.7309, -1.8389, -5.7305, 0, -2.2383, -5.6506, 0.5998, -2.3173, -5.6506, 0, -1.7762, -5.7305, 0.4759, -2.0068, -5.6506, 1.1586, -2.2383, -5.6506, 0.5998, -1.5925, -5.7305, 0.9194, -1.6386, -5.6506, 1.6386, -2.0068, -5.6506, 1.1586, -0.9194, -5.7305, 1.5925, -1.6386, -5.6506, 1.6386, -1.3003, -5.7305, 1.3003, -0.9194, -5.7305, 1.5925, -0.5998, -5.6506, 2.2383, -1.1586, -5.6506, 2.0068, -0.4759, -5.7305, 1.7762, 0, -5.6506, 2.3173, -0.5998, -5.6506, 2.2383, 0, -5.7305, 1.8389, 0.5998, -5.6506, 2.2383, 0, -5.6506, 2.3173, 0.9194, -5.7305, 1.5925, 0.5998, -5.6506, 2.2383, 0.4759, -5.7305, 1.7762, 0.9194, -5.7305, 1.5925, 1.6386, -5.6506, 1.6386, 1.1586, -5.6506, 2.0068, 1.3003, -5.7305, 1.3003, 2.0068, -5.6506, 1.1586, 1.6386, -5.6506, 1.6386, 1.7762, -5.7305, 0.4759, 2.0068, -5.6506, 1.1586, 1.5925, -5.7305, 0.9194, 1.7762, -5.7305, 0.4759, 2.3173, -5.6506, 0, 2.2383, -5.6506, 0.5998, 1.8389, -5.7305, 0, 2.2383, -5.6506, -0.5998, 2.3173, -5.6506, 0, 1.5925, -5.7305, -0.9194, 2.2383, -5.6506, -0.5998, 1.7762, -5.7305, -0.4759, 1.5925, -5.7305, -0.9194, 1.6386, -5.6506, -1.6386, 2.0068, -5.6506, -1.1586, 0.9194, -5.7305, -1.5925, 1.6386, -5.6506, -1.6386, 1.3003, -5.7305, -1.3003, 0.9194, -5.7305, -1.5925, 0.5998, -5.6506, -2.2383, 1.1586, -5.6506, -2.0068, 0.4759, -5.7305, -1.7762, 0, -5.6506, -2.3173, 0.5998, -5.6506, -2.2383, 0, -5.7305, -1.8389, -0.5998, -5.6506, -2.2383, 0, -5.6506, -2.3173, -0.9194, -5.7305, -1.5925, -0.5998, -5.6506, -2.2383, -0.4759, -5.7305, -1.7762, -0.9194, -5.7305, -1.5925, -1.6386, -5.6506, -1.6386, -1.1586, -5.6506, -2.0068, -1.5925, -5.7305, -0.9194, -1.6386, -5.6506, -1.6386, -1.3003, -5.7305, -1.3003, -1.5925, -5.7305, -0.9194, -2.2383, -5.6506, -0.5998, -2.0068, -5.6506, -1.1586, -1.7762, -5.7305, -0.4759, -2.3173, -5.6506, 0, -2.2383, -5.6506, -0.5998, -1.4183, -5.847, 0, -1.7762, -5.7305, 0.4759, -1.8389, -5.7305, 0, -1.37, -5.847, 0.3671, -1.5925, -5.7305, 0.9194, -1.7762, -5.7305, 0.4759, -1.2283, -5.847, 0.7092, -1.3003, -5.7305, 1.3003, -1.5925, -5.7305, 0.9194, -0.7092, -5.847, 1.2283, -1.3003, -5.7305, 1.3003, -1.0029, -5.847, 1.0029, -0.3671, -5.847, 1.37, -0.9194, -5.7305, 1.5925, -0.7092, -5.847, 1.2283, 0, -5.847, 1.4183, -0.4759, -5.7305, 1.7762, -0.3671, -5.847, 1.37, 0, -5.847, 1.4183, 0.4759, -5.7305, 1.7762, 0, -5.7305, 1.8389, 0.3671, -5.847, 1.37, 0.9194, -5.7305, 1.5925, 0.4759, -5.7305, 1.7762, 0.7092, -5.847, 1.2283, 1.3003, -5.7305, 1.3003, 0.9194, -5.7305, 1.5925, 1.0029, -5.847, 1.0029, 1.5925, -5.7305, 0.9194, 1.3003, -5.7305, 1.3003, 1.2283, -5.847, 0.7092, 1.7762, -5.7305, 0.4759, 1.5925, -5.7305, 0.9194, 1.37, -5.847, 0.3671, 1.8389, -5.7305, 0, 1.7762, -5.7305, 0.4759, 1.37, -5.847, -0.3671, 1.8389, -5.7305, 0, 1.4183, -5.847, 0, 1.37, -5.847, -0.3671, 1.5925, -5.7305, -0.9194, 1.7762, -5.7305, -0.4759, 1.0029, -5.847, -1.0029, 1.5925, -5.7305, -0.9194, 1.2283, -5.847, -0.7092, 0.7092, -5.847, -1.2283, 1.3003, -5.7305, -1.3003, 1.0029, -5.847, -1.0029, 0.3671, -5.847, -1.37, 0.9194, -5.7305, -1.5925, 0.7092, -5.847, -1.2283, 0, -5.847, -1.4183, 0.4759, -5.7305, -1.7762, 0.3671, -5.847, -1.37, 0, -5.847, -1.4183, -0.4759, -5.7305, -1.7762, 0, -5.7305, -1.8389, -0.3671, -5.847, -1.37, -0.9194, -5.7305, -1.5925, -0.4759, -5.7305, -1.7762, -0.7092, -5.847, -1.2283, -1.3003, -5.7305, -1.3003, -0.9194, -5.7305, -1.5925, -1.2283, -5.847, -0.7092, -1.3003, -5.7305, -1.3003, -1.0029, -5.847, -1.0029, -1.2283, -5.847, -0.7092, -1.7762, -5.7305, -0.4759, -1.5925, -5.7305, -0.9194, -1.37, -5.847, -0.3671, -1.8389, -5.7305, 0, -1.7762, -5.7305, -0.4759, -1.0483, -6.018, 0.2809, -1.4183, -5.847, 0, -1.0853, -6.018, 0, -1.0483, -6.018, 0.2809, -1.2283, -5.847, 0.7092, -1.37, -5.847, 0.3671, -0.9399, -6.018, 0.5426, -1.0029, -5.847, 1.0029, -1.2283, -5.847, 0.7092, -0.7674, -6.018, 0.7674, -0.7092, -5.847, 1.2283, -1.0029, -5.847, 1.0029, -0.5426, -6.018, 0.9399, -0.3671, -5.847, 1.37, -0.7092, -5.847, 1.2283, -0.2809, -6.018, 1.0483, 0, -5.847, 1.4183, -0.3671, -5.847, 1.37, 0, -6.018, 1.0853, 0.3671, -5.847, 1.37, 0, -5.847, 1.4183, 0.2809, -6.018, 1.0483, 0.7092, -5.847, 1.2283, 0.3671, -5.847, 1.37, 0.5426, -6.018, 0.9399, 1.0029, -5.847, 1.0029, 0.7092, -5.847, 1.2283, 0.7674, -6.018, 0.7674, 1.2283, -5.847, 0.7092, 1.0029, -5.847, 1.0029, 0.9399, -6.018, 0.5426, 1.37, -5.847, 0.3671, 1.2283, -5.847, 0.7092, 1.0853, -6.018, 0, 1.37, -5.847, 0.3671, 1.0483, -6.018, 0.2809, 1.0853, -6.018, 0, 1.37, -5.847, -0.3671, 1.4183, -5.847, 0, 1.0483, -6.018, -0.2809, 1.2283, -5.847, -0.7092, 1.37, -5.847, -0.3671, 0.9399, -6.018, -0.5426, 1.0029, -5.847, -1.0029, 1.2283, -5.847, -0.7092, 0.7674, -6.018, -0.7674, 0.7092, -5.847, -1.2283, 1.0029, -5.847, -1.0029, 0.2809, -6.018, -1.0483, 0.7092, -5.847, -1.2283, 0.5426, -6.018, -0.9399, 0.2809, -6.018, -1.0483, 0, -5.847, -1.4183, 0.3671, -5.847, -1.37, 0, -6.018, -1.0853, -0.3671, -5.847, -1.37, 0, -5.847, -1.4183, -0.2809, -6.018, -1.0483, -0.7092, -5.847, -1.2283, -0.3671, -5.847, -1.37, -0.5426, -6.018, -0.9399, -1.0029, -5.847, -1.0029, -0.7092, -5.847, -1.2283, -0.7674, -6.018, -0.7674, -1.2283, -5.847, -0.7092, -1.0029, -5.847, -1.0029, -1.0483, -6.018, -0.2809, -1.2283, -5.847, -0.7092, -0.9399, -6.018, -0.5426, -1.0483, -6.018, -0.2809, -1.4183, -5.847, 0, -1.37, -5.847, -0.3671, -0.8693, -6.2616, 0, -1.0483, -6.018, 0.2809, -1.0853, -6.018, 0, -0.7528, -6.2616, 0.4347, -1.0483, -6.018, 0.2809, -0.8397, -6.2616, 0.225, -0.6147, -6.2616, 0.6147, -0.9399, -6.018, 0.5426, -0.7528, -6.2616, 0.4347, -0.4347, -6.2616, 0.7528, -0.7674, -6.018, 0.7674, -0.6147, -6.2616, 0.6147, -0.225, -6.2616, 0.8397, -0.5426, -6.018, 0.9399, -0.4347, -6.2616, 0.7528, 0, -6.2616, 0.8693, -0.2809, -6.018, 1.0483, -0.225, -6.2616, 0.8397, 0, -6.2616, 0.8693, 0.2809, -6.018, 1.0483, 0, -6.018, 1.0853, 0.4347, -6.2616, 0.7528, 0.2809, -6.018, 1.0483, 0.225, -6.2616, 0.8397, 0.4347, -6.2616, 0.7528, 0.7674, -6.018, 0.7674, 0.5426, -6.018, 0.9399, 0.7528, -6.2616, 0.4347, 0.7674, -6.018, 0.7674, 0.6147, -6.2616, 0.6147, 0.7528, -6.2616, 0.4347, 1.0483, -6.018, 0.2809, 0.9399, -6.018, 0.5426, 0.8397, -6.2616, 0.225, 1.0853, -6.018, 0, 1.0483, -6.018, 0.2809, 0.8693, -6.2616, 0, 1.0483, -6.018, -0.2809, 1.0853, -6.018, 0, 0.7528, -6.2616, -0.4347, 1.0483, -6.018, -0.2809, 0.8397, -6.2616, -0.225, 0.6147, -6.2616, -0.6147, 0.9399, -6.018, -0.5426, 0.7528, -6.2616, -0.4347, 0.6147, -6.2616, -0.6147, 0.5426, -6.018, -0.9399, 0.7674, -6.018, -0.7674, 0.225, -6.2616, -0.8397, 0.5426, -6.018, -0.9399, 0.4347, -6.2616, -0.7528, 0, -6.2616, -0.8693, 0.2809, -6.018, -1.0483, 0.225, -6.2616, -0.8397, 0, -6.2616, -0.8693, -0.2809, -6.018, -1.0483, 0, -6.018, -1.0853, -0.225, -6.2616, -0.8397, -0.5426, -6.018, -0.9399, -0.2809, -6.018, -1.0483, -0.4347, -6.2616, -0.7528, -0.7674, -6.018, -0.7674, -0.5426, -6.018, -0.9399, -0.6147, -6.2616, -0.6147, -0.9399, -6.018, -0.5426, -0.7674, -6.018, -0.7674, -0.8397, -6.2616, -0.225, -0.9399, -6.018, -0.5426, -0.7528, -6.2616, -0.4347, -0.8693, -6.2616, 0, -1.0483, -6.018, -0.2809, -0.8397, -6.2616, -0.225, -0.7727, -6.5958, 0.2071, -0.8693, -6.2616, 0, -0.8, -6.5958, 0, -0.7727, -6.5958, 0.2071, -0.7528, -6.2616, 0.4347, -0.8397, -6.2616, 0.225, -0.6928, -6.5958, 0.4, -0.6147, -6.2616, 0.6147, -0.7528, -6.2616, 0.4347, -0.5657, -6.5958, 0.5657, -0.4347, -6.2616, 0.7528, -0.6147, -6.2616, 0.6147, -0.4, -6.5958, 0.6928, -0.225, -6.2616, 0.8397, -0.4347, -6.2616, 0.7528, 0, -6.5958, 0.8, -0.225, -6.2616, 0.8397, -0.2071, -6.5958, 0.7727, 0, -6.5958, 0.8, 0.225, -6.2616, 0.8397, 0, -6.2616, 0.8693, 0.2071, -6.5958, 0.7727, 0.4347, -6.2616, 0.7528, 0.225, -6.2616, 0.8397, 0.4, -6.5958, 0.6928, 0.6147, -6.2616, 0.6147, 0.4347, -6.2616, 0.7528, 0.6928, -6.5958, 0.4, 0.6147, -6.2616, 0.6147, 0.5657, -6.5958, 0.5657, 0.7727, -6.5958, 0.2071, 0.7528, -6.2616, 0.4347, 0.6928, -6.5958, 0.4, 0.7727, -6.5958, 0.2071, 0.8693, -6.2616, 0, 0.8397, -6.2616, 0.225, 0.8, -6.5958, 0, 0.8397, -6.2616, -0.225, 0.8693, -6.2616, 0, 0.7727, -6.5958, -0.2071, 0.7528, -6.2616, -0.4347, 0.8397, -6.2616, -0.225, 0.6928, -6.5958, -0.4, 0.6147, -6.2616, -0.6147, 0.7528, -6.2616, -0.4347, 0.5657, -6.5958, -0.5657, 0.4347, -6.2616, -0.7528, 0.6147, -6.2616, -0.6147, 0.2071, -6.5958, -0.7727, 0.4347, -6.2616, -0.7528, 0.4, -6.5958, -0.6928, 0.2071, -6.5958, -0.7727, 0, -6.2616, -0.8693, 0.225, -6.2616, -0.8397, -0.2071, -6.5958, -0.7727, 0, -6.2616, -0.8693, 0, -6.5958, -0.8, -0.2071, -6.5958, -0.7727, -0.4347, -6.2616, -0.7528, -0.225, -6.2616, -0.8397, -0.4, -6.5958, -0.6928, -0.6147, -6.2616, -0.6147, -0.4347, -6.2616, -0.7528, -0.5657, -6.5958, -0.5657, -0.7528, -6.2616, -0.4347, -0.6147, -6.2616, -0.6147, -0.7727, -6.5958, -0.2071, -0.7528, -6.2616, -0.4347, -0.6928, -6.5958, -0.4, -0.8, -6.5958, 0, -0.8397, -6.2616, -0.225, -0.7727, -6.5958, -0.2071, -4.6364, -4.5958, 1.2423, -5, -4.5958, 0, -4.8, -4.5958, 0, -4.1569, -4.5958, 2.4, -4.8296, -4.5958, 1.2941, -4.6364, -4.5958, 1.2423, -3.3941, -4.5958, 3.3941, -4.3301, -4.5958, 2.5, -4.1569, -4.5958, 2.4, -2.4, -4.5958, 4.1569, -3.5355, -4.5958, 3.5355, -3.3941, -4.5958, 3.3941, -1.2941, -4.5958, 4.8296, -2.4, -4.5958, 4.1569, -1.2423, -4.5958, 4.6364, 0, -4.5958, 4.8, -1.2941, -4.5958, 4.8296, -1.2423, -4.5958, 4.6364, 1.2423, -4.5958, 4.6364, 0, -4.5958, 5, 0, -4.5958, 4.8, 2.4, -4.5958, 4.1569, 1.2941, -4.5958, 4.8296, 1.2423, -4.5958, 4.6364, 3.3941, -4.5958, 3.3941, 2.5, -4.5958, 4.3301, 2.4, -4.5958, 4.1569, 4.1569, -4.5958, 2.4, 3.5355, -4.5958, 3.5355, 3.3941, -4.5958, 3.3941, 4.6364, -4.5958, 1.2423, 4.3301, -4.5958, 2.5, 4.1569, -4.5958, 2.4, 5, -4.5958, 0, 4.6364, -4.5958, 1.2423, 4.8, -4.5958, 0, 4.6364, -4.5958, -1.2423, 5, -4.5958, 0, 4.8, -4.5958, 0, 4.3301, -4.5958, -2.5, 4.6364, -4.5958, -1.2423, 4.1569, -4.5958, -2.4, 3.3941, -4.5958, -3.3941, 4.3301, -4.5958, -2.5, 4.1569, -4.5958, -2.4, 2.5, -4.5958, -4.3301, 3.3941, -4.5958, -3.3941, 2.4, -4.5958, -4.1569, 1.2941, -4.5958, -4.8296, 2.4, -4.5958, -4.1569, 1.2423, -4.5958, -4.6364, 0, -4.5958, -5, 1.2423, -4.5958, -4.6364, 0, -4.5958, -4.8, -1.2423, -4.5958, -4.6364, 0, -4.5958, -5, 0, -4.5958, -4.8, -2.4, -4.5958, -4.1569, -1.2941, -4.5958, -4.8296, -1.2423, -4.5958, -4.6364, -3.5355, -4.5958, -3.5355, -2.4, -4.5958, -4.1569, -3.3941, -4.5958, -3.3941, -4.3301, -4.5958, -2.5, -3.3941, -4.5958, -3.3941, -4.1569, -4.5958, -2.4, -4.8296, -4.5958, -1.2941, -4.1569, -4.5958, -2.4, -4.6364, -4.5958, -1.2423, -4.8, -4.5958, 0, -4.8296, -4.5958, -1.2941, -4.6364, -4.5958, -1.2423, -0.9659, -6.5958, 0.2588, -0.8, -6.5958, 0, -1, -6.5958, 0, -0.866, -6.5958, 0.5, -0.7727, -6.5958, 0.2071, -0.9659, -6.5958, 0.2588, -0.7071, -6.5958, 0.7071, -0.6928, -6.5958, 0.4, -0.866, -6.5958, 0.5, -0.5, -6.5958, 0.866, -0.5657, -6.5958, 0.5657, -0.7071, -6.5958, 0.7071, -0.2071, -6.5958, 0.7727, -0.5, -6.5958, 0.866, -0.2588, -6.5958, 0.9659, 0, -6.5958, 1, -0.2071, -6.5958, 0.7727, -0.2588, -6.5958, 0.9659, 0.2588, -6.5958, 0.9659, 0, -6.5958, 0.8, 0, -6.5958, 1, 0.5, -6.5958, 0.866, 0.2071, -6.5958, 0.7727, 0.2588, -6.5958, 0.9659, 0.7071, -6.5958, 0.7071, 0.4, -6.5958, 0.6928, 0.5, -6.5958, 0.866, 0.866, -6.5958, 0.5, 0.5657, -6.5958, 0.5657, 0.7071, -6.5958, 0.7071, 0.7727, -6.5958, 0.2071, 0.866, -6.5958, 0.5, 0.9659, -6.5958, 0.2588, 1, -6.5958, 0, 0.7727, -6.5958, 0.2071, 0.9659, -6.5958, 0.2588, 0.7727, -6.5958, -0.2071, 1, -6.5958, 0, 0.9659, -6.5958, -0.2588, 0.866, -6.5958, -0.5, 0.7727, -6.5958, -0.2071, 0.9659, -6.5958, -0.2588, 0.7071, -6.5958, -0.7071, 0.6928, -6.5958, -0.4, 0.866, -6.5958, -0.5, 0.5, -6.5958, -0.866, 0.5657, -6.5958, -0.5657, 0.7071, -6.5958, -0.7071, 0.2588, -6.5958, -0.9659, 0.4, -6.5958, -0.6928, 0.5, -6.5958, -0.866, 0, -6.5958, -1, 0.2071, -6.5958, -0.7727, 0.2588, -6.5958, -0.9659, -0.2588, -6.5958, -0.9659, 0, -6.5958, -0.8, 0, -6.5958, -1, -0.5, -6.5958, -0.866, -0.2071, -6.5958, -0.7727, -0.2588, -6.5958, -0.9659, -0.5657, -6.5958, -0.5657, -0.5, -6.5958, -0.866, -0.7071, -6.5958, -0.7071, -0.6928, -6.5958, -0.4, -0.7071, -6.5958, -0.7071, -0.866, -6.5958, -0.5, -0.9659, -6.5958, -0.2588, -0.6928, -6.5958, -0.4, -0.866, -6.5958, -0.5, -1, -6.5958, 0, -0.7727, -6.5958, -0.2071, -0.9659, -6.5958, -0.2588, -4.7052, -5.0703, 1.2608, -4.8712, -5.0703, 0, -4.8296, -4.5958, 1.2941, -4.7052, -5.0703, 1.2608, -4.8296, -4.5958, 1.2941, -4.2186, -5.0703, 2.4356, -3.4444, -5.0703, 3.4444, -4.2186, -5.0703, 2.4356, -3.5355, -4.5958, 3.5355, -2.4356, -5.0703, 4.2186, -3.4444, -5.0703, 3.4444, -2.5, -4.5958, 4.3301, -1.2608, -5.0703, 4.7052, -2.4356, -5.0703, 4.2186, -1.2941, -4.5958, 4.8296, 0, -5.0703, 4.8712, -1.2608, -5.0703, 4.7052, 0, -4.5958, 5, 1.2608, -5.0703, 4.7052, 0, -5.0703, 4.8712, 1.2941, -4.5958, 4.8296, 1.2608, -5.0703, 4.7052, 1.2941, -4.5958, 4.8296, 2.4356, -5.0703, 4.2186, 2.4356, -5.0703, 4.2186, 2.5, -4.5958, 4.3301, 3.4444, -5.0703, 3.4444, 3.4444, -5.0703, 3.4444, 3.5355, -4.5958, 3.5355, 4.2186, -5.0703, 2.4356, 4.7052, -5.0703, 1.2608, 4.2186, -5.0703, 2.4356, 4.8296, -4.5958, 1.2941, 4.8712, -5.0703, 0, 4.7052, -5.0703, 1.2608, 5, -4.5958, 0, 4.7052, -5.0703, -1.2608, 4.8712, -5.0703, 0, 4.8296, -4.5958, -1.2941, 4.2186, -5.0703, -2.4356, 4.7052, -5.0703, -1.2608, 4.3301, -4.5958, -2.5, 3.4444, -5.0703, -3.4444, 4.2186, -5.0703, -2.4356, 3.5355, -4.5958, -3.5355, 2.4356, -5.0703, -4.2186, 3.4444, -5.0703, -3.4444, 2.5, -4.5958, -4.3301, 2.4356, -5.0703, -4.2186, 2.5, -4.5958, -4.3301, 1.2608, -5.0703, -4.7052, 0, -5.0703, -4.8712, 1.2608, -5.0703, -4.7052, 0, -4.5958, -5, -1.2608, -5.0703, -4.7052, 0, -5.0703, -4.8712, -1.2941, -4.5958, -4.8296, -2.4356, -5.0703, -4.2186, -1.2608, -5.0703, -4.7052, -2.5, -4.5958, -4.3301, -3.4444, -5.0703, -3.4444, -2.4356, -5.0703, -4.2186, -3.5355, -4.5958, -3.5355, -4.2186, -5.0703, -2.4356, -3.4444, -5.0703, -3.4444, -4.3301, -4.5958, -2.5, -4.2186, -5.0703, -2.4356, -4.3301, -4.5958, -2.5, -4.7052, -5.0703, -1.2608, -4.8712, -5.0703, 0, -4.7052, -5.0703, -1.2608, -5, -4.5958, 0, -4.5081, -5.3105, 1.208, -4.6672, -5.3105, 0, -4.7052, -5.0703, 1.2608, -4.0419, -5.3105, 2.3336, -4.5081, -5.3105, 1.208, -4.2186, -5.0703, 2.4356, -3.3002, -5.3105, 3.3002, -4.0419, -5.3105, 2.3336, -3.4444, -5.0703, 3.4444, -2.3336, -5.3105, 4.0419, -3.3002, -5.3105, 3.3002, -2.4356, -5.0703, 4.2186, -1.208, -5.3105, 4.5081, -2.3336, -5.3105, 4.0419, -1.2608, -5.0703, 4.7052, 0, -5.3105, 4.6672, -1.208, -5.3105, 4.5081, 0, -5.0703, 4.8712, 0, -5.3105, 4.6672, 0, -5.0703, 4.8712, 1.208, -5.3105, 4.5081, 2.3336, -5.3105, 4.0419, 1.208, -5.3105, 4.5081, 2.4356, -5.0703, 4.2186, 3.3002, -5.3105, 3.3002, 2.3336, -5.3105, 4.0419, 3.4444, -5.0703, 3.4444, 3.3002, -5.3105, 3.3002, 3.4444, -5.0703, 3.4444, 4.0419, -5.3105, 2.3336, 4.0419, -5.3105, 2.3336, 4.2186, -5.0703, 2.4356, 4.5081, -5.3105, 1.208, 4.6672, -5.3105, 0, 4.5081, -5.3105, 1.208, 4.8712, -5.0703, 0, 4.5081, -5.3105, -1.208, 4.6672, -5.3105, 0, 4.7052, -5.0703, -1.2608, 4.0419, -5.3105, -2.3336, 4.5081, -5.3105, -1.208, 4.2186, -5.0703, -2.4356, 3.3002, -5.3105, -3.3002, 4.0419, -5.3105, -2.3336, 3.4444, -5.0703, -3.4444, 2.3336, -5.3105, -4.0419, 3.3002, -5.3105, -3.3002, 2.4356, -5.0703, -4.2186, 1.208, -5.3105, -4.5081, 2.3336, -5.3105, -4.0419, 1.2608, -5.0703, -4.7052, 0, -5.3105, -4.6672, 1.208, -5.3105, -4.5081, 0, -5.0703, -4.8712, 0, -5.3105, -4.6672, 0, -5.0703, -4.8712, -1.208, -5.3105, -4.5081, -2.3336, -5.3105, -4.0419, -1.208, -5.3105, -4.5081, -2.4356, -5.0703, -4.2186, -2.3336, -5.3105, -4.0419, -2.4356, -5.0703, -4.2186, -3.3002, -5.3105, -3.3002, -4.0419, -5.3105, -2.3336, -3.3002, -5.3105, -3.3002, -4.2186, -5.0703, -2.4356, -4.5081, -5.3105, -1.208, -4.0419, -5.3105, -2.3336, -4.7052, -5.0703, -1.2608, -4.6672, -5.3105, 0, -4.5081, -5.3105, -1.208, -4.8712, -5.0703, 0, -4.1954, -5.4788, 1.1242, -4.3434, -5.4788, 0, -4.5081, -5.3105, 1.208, -3.7615, -5.4788, 2.1717, -4.1954, -5.4788, 1.1242, -4.0419, -5.3105, 2.3336, -3.7615, -5.4788, 2.1717, -4.0419, -5.3105, 2.3336, -3.0713, -5.4788, 3.0713, -2.1717, -5.4788, 3.7615, -3.0713, -5.4788, 3.0713, -2.3336, -5.3105, 4.0419, -1.1242, -5.4788, 4.1954, -2.1717, -5.4788, 3.7615, -1.208, -5.3105, 4.5081, 0, -5.4788, 4.3434, -1.1242, -5.4788, 4.1954, 0, -5.3105, 4.6672, 0, -5.4788, 4.3434, 0, -5.3105, 4.6672, 1.1242, -5.4788, 4.1954, 1.1242, -5.4788, 4.1954, 1.208, -5.3105, 4.5081, 2.1717, -5.4788, 3.7615, 2.1717, -5.4788, 3.7615, 2.3336, -5.3105, 4.0419, 3.0713, -5.4788, 3.0713, 3.7615, -5.4788, 2.1717, 3.0713, -5.4788, 3.0713, 4.0419, -5.3105, 2.3336, 4.1954, -5.4788, 1.1242, 3.7615, -5.4788, 2.1717, 4.5081, -5.3105, 1.208, 4.1954, -5.4788, 1.1242, 4.5081, -5.3105, 1.208, 4.3434, -5.4788, 0, 4.1954, -5.4788, -1.1242, 4.3434, -5.4788, 0, 4.5081, -5.3105, -1.208, 3.7615, -5.4788, -2.1717, 4.1954, -5.4788, -1.1242, 4.0419, -5.3105, -2.3336, 3.7615, -5.4788, -2.1717, 4.0419, -5.3105, -2.3336, 3.0713, -5.4788, -3.0713, 2.1717, -5.4788, -3.7615, 3.0713, -5.4788, -3.0713, 2.3336, -5.3105, -4.0419, 2.1717, -5.4788, -3.7615, 2.3336, -5.3105, -4.0419, 1.1242, -5.4788, -4.1954, 1.1242, -5.4788, -4.1954, 1.208, -5.3105, -4.5081, 0, -5.4788, -4.3434, 0, -5.4788, -4.3434, 0, -5.3105, -4.6672, -1.1242, -5.4788, -4.1954, -2.1717, -5.4788, -3.7615, -1.1242, -5.4788, -4.1954, -2.3336, -5.3105, -4.0419, -3.0713, -5.4788, -3.0713, -2.1717, -5.4788, -3.7615, -3.3002, -5.3105, -3.3002, -3.0713, -5.4788, -3.0713, -3.3002, -5.3105, -3.3002, -3.7615, -5.4788, -2.1717, -3.7615, -5.4788, -2.1717, -4.0419, -5.3105, -2.3336, -4.1954, -5.4788, -1.1242, -4.3434, -5.4788, 0, -4.1954, -5.4788, -1.1242, -4.6672, -5.3105, 0, -3.9295, -5.5934, 0, -4.3434, -5.4788, 0, -3.7956, -5.5934, 1.017, -3.4031, -5.5934, 1.9648, -3.7956, -5.5934, 1.017, -3.7615, -5.4788, 2.1717, -2.7786, -5.5934, 2.7786, -3.4031, -5.5934, 1.9648, -3.0713, -5.4788, 3.0713, -2.7786, -5.5934, 2.7786, -3.0713, -5.4788, 3.0713, -1.9648, -5.5934, 3.4031, -1.9648, -5.5934, 3.4031, -2.1717, -5.4788, 3.7615, -1.017, -5.5934, 3.7956, 0, -5.5934, 3.9295, -1.017, -5.5934, 3.7956, 0, -5.4788, 4.3434, 1.017, -5.5934, 3.7956, 0, -5.5934, 3.9295, 1.1242, -5.4788, 4.1954, 1.017, -5.5934, 3.7956, 1.1242, -5.4788, 4.1954, 1.9648, -5.5934, 3.4031, 2.7786, -5.5934, 2.7786, 1.9648, -5.5934, 3.4031, 3.0713, -5.4788, 3.0713, 3.4031, -5.5934, 1.9648, 2.7786, -5.5934, 2.7786, 3.7615, -5.4788, 2.1717, 3.7956, -5.5934, 1.017, 3.4031, -5.5934, 1.9648, 4.1954, -5.4788, 1.1242, 3.7956, -5.5934, 1.017, 4.1954, -5.4788, 1.1242, 3.9295, -5.5934, 0, 3.9295, -5.5934, 0, 4.3434, -5.4788, 0, 3.7956, -5.5934, -1.017, 3.4031, -5.5934, -1.9648, 3.7956, -5.5934, -1.017, 3.7615, -5.4788, -2.1717, 3.4031, -5.5934, -1.9648, 3.7615, -5.4788, -2.1717, 2.7786, -5.5934, -2.7786, 1.9648, -5.5934, -3.4031, 2.7786, -5.5934, -2.7786, 2.1717, -5.4788, -3.7615, 1.017, -5.5934, -3.7956, 1.9648, -5.5934, -3.4031, 1.1242, -5.4788, -4.1954, 0, -5.5934, -3.9295, 1.017, -5.5934, -3.7956, 0, -5.4788, -4.3434, 0, -5.5934, -3.9295, 0, -5.4788, -4.3434, -1.017, -5.5934, -3.7956, -1.9648, -5.5934, -3.4031, -1.017, -5.5934, -3.7956, -2.1717, -5.4788, -3.7615, -2.7786, -5.5934, -2.7786, -1.9648, -5.5934, -3.4031, -3.0713, -5.4788, -3.0713, -3.4031, -5.5934, -1.9648, -2.7786, -5.5934, -2.7786, -3.7615, -5.4788, -2.1717, -3.7956, -5.5934, -1.017, -3.4031, -5.5934, -1.9648, -4.1954, -5.4788, -1.1242, -3.9295, -5.5934, 0, -3.7956, -5.5934, -1.017, -4.3434, -5.4788, 0, -3.3374, -5.6722, 0.8943, -3.4551, -5.6722, 0, -3.7956, -5.5934, 1.017, -2.9922, -5.6722, 1.7276, -3.3374, -5.6722, 0.8943, -3.4031, -5.5934, 1.9648, -2.9922, -5.6722, 1.7276, -3.4031, -5.5934, 1.9648, -2.4431, -5.6722, 2.4431, -2.4431, -5.6722, 2.4431, -2.7786, -5.5934, 2.7786, -1.7276, -5.6722, 2.9922, -0.8943, -5.6722, 3.3374, -1.7276, -5.6722, 2.9922, -1.017, -5.5934, 3.7956, -0.8943, -5.6722, 3.3374, -1.017, -5.5934, 3.7956, 0, -5.6722, 3.4551, 0.8943, -5.6722, 3.3374, 0, -5.6722, 3.4551, 1.017, -5.5934, 3.7956, 1.7276, -5.6722, 2.9922, 0.8943, -5.6722, 3.3374, 1.9648, -5.5934, 3.4031, 2.4431, -5.6722, 2.4431, 1.7276, -5.6722, 2.9922, 2.7786, -5.5934, 2.7786, 2.4431, -5.6722, 2.4431, 2.7786, -5.5934, 2.7786, 2.9922, -5.6722, 1.7276, 3.3374, -5.6722, 0.8943, 2.9922, -5.6722, 1.7276, 3.7956, -5.5934, 1.017, 3.4551, -5.6722, 0, 3.3374, -5.6722, 0.8943, 3.9295, -5.5934, 0, 3.3374, -5.6722, -0.8943, 3.4551, -5.6722, 0, 3.7956, -5.5934, -1.017, 2.9922, -5.6722, -1.7276, 3.3374, -5.6722, -0.8943, 3.4031, -5.5934, -1.9648, 2.9922, -5.6722, -1.7276, 3.4031, -5.5934, -1.9648, 2.4431, -5.6722, -2.4431, 2.4431, -5.6722, -2.4431, 2.7786, -5.5934, -2.7786, 1.7276, -5.6722, -2.9922, 0.8943, -5.6722, -3.3374, 1.7276, -5.6722, -2.9922, 1.017, -5.5934, -3.7956, 0, -5.6722, -3.4551, 0.8943, -5.6722, -3.3374, 0, -5.5934, -3.9295, -0.8943, -5.6722, -3.3374, 0, -5.6722, -3.4551, -1.017, -5.5934, -3.7956, -1.7276, -5.6722, -2.9922, -0.8943, -5.6722, -3.3374, -1.9648, -5.5934, -3.4031, -2.4431, -5.6722, -2.4431, -1.7276, -5.6722, -2.9922, -2.7786, -5.5934, -2.7786, -2.9922, -5.6722, -1.7276, -2.4431, -5.6722, -2.4431, -3.4031, -5.5934, -1.9648, -3.3374, -5.6722, -0.8943, -2.9922, -5.6722, -1.7276, -3.7956, -5.5934, -1.017, -3.4551, -5.6722, 0, -3.3374, -5.6722, -0.8943, -3.9295, -5.5934, 0, -2.9498, -5.7334, 0, -3.4551, -5.6722, 0, -2.8493, -5.7334, 0.7635, -2.5546, -5.7334, 1.4749, -2.8493, -5.7334, 0.7635, -2.9922, -5.6722, 1.7276, -2.0858, -5.7334, 2.0858, -2.5546, -5.7334, 1.4749, -2.4431, -5.6722, 2.4431, -2.0858, -5.7334, 2.0858, -2.4431, -5.6722, 2.4431, -1.4749, -5.7334, 2.5546, -0.7635, -5.7334, 2.8493, -1.4749, -5.7334, 2.5546, -0.8943, -5.6722, 3.3374, 0, -5.7334, 2.9498, -0.7635, -5.7334, 2.8493, 0, -5.6722, 3.4551, 0.7635, -5.7334, 2.8493, 0, -5.7334, 2.9498, 0.8943, -5.6722, 3.3374, 1.4749, -5.7334, 2.5546, 0.7635, -5.7334, 2.8493, 1.7276, -5.6722, 2.9922, 2.0858, -5.7334, 2.0858, 1.4749, -5.7334, 2.5546, 2.4431, -5.6722, 2.4431, 2.0858, -5.7334, 2.0858, 2.4431, -5.6722, 2.4431, 2.5546, -5.7334, 1.4749, 2.5546, -5.7334, 1.4749, 2.9922, -5.6722, 1.7276, 2.8493, -5.7334, 0.7635, 2.9498, -5.7334, 0, 2.8493, -5.7334, 0.7635, 3.4551, -5.6722, 0, 2.9498, -5.7334, 0, 3.4551, -5.6722, 0, 2.8493, -5.7334, -0.7635, 2.5546, -5.7334, -1.4749, 2.8493, -5.7334, -0.7635, 2.9922, -5.6722, -1.7276, 2.0858, -5.7334, -2.0858, 2.5546, -5.7334, -1.4749, 2.4431, -5.6722, -2.4431, 1.4749, -5.7334, -2.5546, 2.0858, -5.7334, -2.0858, 1.7276, -5.6722, -2.9922, 0.7635, -5.7334, -2.8493, 1.4749, -5.7334, -2.5546, 0.8943, -5.6722, -3.3374, 0, -5.7334, -2.9498, 0.7635, -5.7334, -2.8493, 0, -5.6722, -3.4551, -0.7635, -5.7334, -2.8493, 0, -5.7334, -2.9498, -0.8943, -5.6722, -3.3374, -1.4749, -5.7334, -2.5546, -0.7635, -5.7334, -2.8493, -1.7276, -5.6722, -2.9922, -2.0858, -5.7334, -2.0858, -1.4749, -5.7334, -2.5546, -2.4431, -5.6722, -2.4431, -2.5546, -5.7334, -1.4749, -2.0858, -5.7334, -2.0858, -2.9922, -5.6722, -1.7276, -2.5546, -5.7334, -1.4749, -2.9922, -5.6722, -1.7276, -2.8493, -5.7334, -0.7635, -2.9498, -5.7334, 0, -2.8493, -5.7334, -0.7635, -3.4551, -5.6722, 0, -2.3599, -5.795, 0.6323, -2.4431, -5.795, 0, -2.8493, -5.7334, 0.7635, -2.1158, -5.795, 1.2216, -2.3599, -5.795, 0.6323, -2.5546, -5.7334, 1.4749, -1.7275, -5.795, 1.7275, -2.1158, -5.795, 1.2216, -2.0858, -5.7334, 2.0858, -1.7275, -5.795, 1.7275, -2.0858, -5.7334, 2.0858, -1.2216, -5.795, 2.1158, -0.6323, -5.795, 2.3599, -1.2216, -5.795, 2.1158, -0.7635, -5.7334, 2.8493, -0.6323, -5.795, 2.3599, -0.7635, -5.7334, 2.8493, 0, -5.795, 2.4431, 0.6323, -5.795, 2.3599, 0, -5.795, 2.4431, 0.7635, -5.7334, 2.8493, 1.2216, -5.795, 2.1158, 0.6323, -5.795, 2.3599, 1.4749, -5.7334, 2.5546, 1.7275, -5.795, 1.7275, 1.2216, -5.795, 2.1158, 2.0858, -5.7334, 2.0858, 1.7275, -5.795, 1.7275, 2.0858, -5.7334, 2.0858, 2.1158, -5.795, 1.2216, 2.1158, -5.795, 1.2216, 2.5546, -5.7334, 1.4749, 2.3599, -5.795, 0.6323, 2.4431, -5.795, 0, 2.3599, -5.795, 0.6323, 2.9498, -5.7334, 0, 2.3599, -5.795, -0.6323, 2.4431, -5.795, 0, 2.8493, -5.7334, -0.7635, 2.1158, -5.795, -1.2216, 2.3599, -5.795, -0.6323, 2.5546, -5.7334, -1.4749, 1.7275, -5.795, -1.7275, 2.1158, -5.795, -1.2216, 2.0858, -5.7334, -2.0858, 1.2216, -5.795, -2.1158, 1.7275, -5.795, -1.7275, 1.4749, -5.7334, -2.5546, 1.2216, -5.795, -2.1158, 1.4749, -5.7334, -2.5546, 0.6323, -5.795, -2.3599, 0, -5.795, -2.4431, 0.6323, -5.795, -2.3599, 0, -5.7334, -2.9498, -0.6323, -5.795, -2.3599, 0, -5.795, -2.4431, -0.7635, -5.7334, -2.8493, -1.2216, -5.795, -2.1158, -0.6323, -5.795, -2.3599, -1.4749, -5.7334, -2.5546, -1.7275, -5.795, -1.7275, -1.2216, -5.795, -2.1158, -2.0858, -5.7334, -2.0858, -1.7275, -5.795, -1.7275, -2.0858, -5.7334, -2.0858, -2.1158, -5.795, -1.2216, -2.3599, -5.795, -0.6323, -2.1158, -5.795, -1.2216, -2.8493, -5.7334, -0.7635, -2.4431, -5.795, 0, -2.3599, -5.795, -0.6323, -2.9498, -5.7334, 0, -1.8978, -5.8749, 0.5085, -1.9647, -5.8749, 0, -2.3599, -5.795, 0.6323, -1.7015, -5.8749, 0.9824, -1.8978, -5.8749, 0.5085, -2.1158, -5.795, 1.2216, -1.3893, -5.8749, 1.3893, -1.7015, -5.8749, 0.9824, -1.7275, -5.795, 1.7275, -0.9824, -5.8749, 1.7015, -1.3893, -5.8749, 1.3893, -1.2216, -5.795, 2.1158, -0.5085, -5.8749, 1.8978, -0.9824, -5.8749, 1.7015, -0.6323, -5.795, 2.3599, -0.5085, -5.8749, 1.8978, -0.6323, -5.795, 2.3599, 0, -5.8749, 1.9647, 0.5085, -5.8749, 1.8978, 0, -5.8749, 1.9647, 0.6323, -5.795, 2.3599, 0.9824, -5.8749, 1.7015, 0.5085, -5.8749, 1.8978, 1.2216, -5.795, 2.1158, 1.3893, -5.8749, 1.3893, 0.9824, -5.8749, 1.7015, 1.7275, -5.795, 1.7275, 1.7015, -5.8749, 0.9824, 1.3893, -5.8749, 1.3893, 2.1158, -5.795, 1.2216, 1.8978, -5.8749, 0.5085, 1.7015, -5.8749, 0.9824, 2.3599, -5.795, 0.6323, 1.9647, -5.8749, 0, 1.8978, -5.8749, 0.5085, 2.4431, -5.795, 0, 1.8978, -5.8749, -0.5085, 1.9647, -5.8749, 0, 2.3599, -5.795, -0.6323, 1.7015, -5.8749, -0.9824, 1.8978, -5.8749, -0.5085, 2.1158, -5.795, -1.2216, 1.3893, -5.8749, -1.3893, 1.7015, -5.8749, -0.9824, 1.7275, -5.795, -1.7275, 0.9824, -5.8749, -1.7015, 1.3893, -5.8749, -1.3893, 1.2216, -5.795, -2.1158, 0.9824, -5.8749, -1.7015, 1.2216, -5.795, -2.1158, 0.5085, -5.8749, -1.8978, 0.5085, -5.8749, -1.8978, 0.6323, -5.795, -2.3599, 0, -5.8749, -1.9647, -0.5085, -5.8749, -1.8978, 0, -5.8749, -1.9647, -0.6323, -5.795, -2.3599, -0.9824, -5.8749, -1.7015, -0.5085, -5.8749, -1.8978, -1.2216, -5.795, -2.1158, -1.3893, -5.8749, -1.3893, -0.9824, -5.8749, -1.7015, -1.7275, -5.795, -1.7275, -1.7015, -5.8749, -0.9824, -1.3893, -5.8749, -1.3893, -2.1158, -5.795, -1.2216, -1.8978, -5.8749, -0.5085, -1.7015, -5.8749, -0.9824, -2.3599, -5.795, -0.6323, -1.9647, -5.8749, 0, -1.8978, -5.8749, -0.5085, -2.4431, -5.795, 0, -1.5442, -5.9914, 0, -1.9647, -5.8749, 0, -1.4916, -5.9914, 0.3997, -1.3373, -5.9914, 0.7721, -1.4916, -5.9914, 0.3997, -1.7015, -5.8749, 0.9824, -1.0919, -5.9914, 1.0919, -1.3373, -5.9914, 0.7721, -1.3893, -5.8749, 1.3893, -0.7721, -5.9914, 1.3373, -1.0919, -5.9914, 1.0919, -0.9824, -5.8749, 1.7015, -0.3997, -5.9914, 1.4916, -0.7721, -5.9914, 1.3373, -0.5085, -5.8749, 1.8978, 0, -5.9914, 1.5442, -0.3997, -5.9914, 1.4916, 0, -5.8749, 1.9647, 0.3997, -5.9914, 1.4916, 0, -5.9914, 1.5442, 0.5085, -5.8749, 1.8978, 0.3997, -5.9914, 1.4916, 0.5085, -5.8749, 1.8978, 0.7721, -5.9914, 1.3373, 1.0919, -5.9914, 1.0919, 0.7721, -5.9914, 1.3373, 1.3893, -5.8749, 1.3893, 1.0919, -5.9914, 1.0919, 1.3893, -5.8749, 1.3893, 1.3373, -5.9914, 0.7721, 1.4916, -5.9914, 0.3997, 1.3373, -5.9914, 0.7721, 1.8978, -5.8749, 0.5085, 1.5442, -5.9914, 0, 1.4916, -5.9914, 0.3997, 1.9647, -5.8749, 0, 1.4916, -5.9914, -0.3997, 1.5442, -5.9914, 0, 1.8978, -5.8749, -0.5085, 1.4916, -5.9914, -0.3997, 1.8978, -5.8749, -0.5085, 1.3373, -5.9914, -0.7721, 1.0919, -5.9914, -1.0919, 1.3373, -5.9914, -0.7721, 1.3893, -5.8749, -1.3893, 1.0919, -5.9914, -1.0919, 1.3893, -5.8749, -1.3893, 0.7721, -5.9914, -1.3373, 0.3997, -5.9914, -1.4916, 0.7721, -5.9914, -1.3373, 0.5085, -5.8749, -1.8978, 0, -5.9914, -1.5442, 0.3997, -5.9914, -1.4916, 0, -5.8749, -1.9647, -0.3997, -5.9914, -1.4916, 0, -5.9914, -1.5442, -0.5085, -5.8749, -1.8978, -0.3997, -5.9914, -1.4916, -0.5085, -5.8749, -1.8978, -0.7721, -5.9914, -1.3373, -1.0919, -5.9914, -1.0919, -0.7721, -5.9914, -1.3373, -1.3893, -5.8749, -1.3893, -1.0919, -5.9914, -1.0919, -1.3893, -5.8749, -1.3893, -1.3373, -5.9914, -0.7721, -1.4916, -5.9914, -0.3997, -1.3373, -5.9914, -0.7721, -1.8978, -5.8749, -0.5085, -1.5442, -5.9914, 0, -1.4916, -5.9914, -0.3997, -1.9647, -5.8749, 0, -1.1699, -6.1624, 0.3135, -1.2111, -6.1624, 0, -1.4916, -5.9914, 0.3997, -1.0489, -6.1624, 0.6056, -1.1699, -6.1624, 0.3135, -1.3373, -5.9914, 0.7721, -0.8564, -6.1624, 0.8564, -1.0489, -6.1624, 0.6056, -1.0919, -5.9914, 1.0919, -0.6056, -6.1624, 1.0489, -0.8564, -6.1624, 0.8564, -0.7721, -5.9914, 1.3373, -0.3135, -6.1624, 1.1699, -0.6056, -6.1624, 1.0489, -0.3997, -5.9914, 1.4916, 0, -6.1624, 1.2111, -0.3135, -6.1624, 1.1699, 0, -5.9914, 1.5442, 0.3135, -6.1624, 1.1699, 0, -6.1624, 1.2111, 0.3997, -5.9914, 1.4916, 0.6056, -6.1624, 1.0489, 0.3135, -6.1624, 1.1699, 0.7721, -5.9914, 1.3373, 0.8564, -6.1624, 0.8564, 0.6056, -6.1624, 1.0489, 1.0919, -5.9914, 1.0919, 1.0489, -6.1624, 0.6056, 0.8564, -6.1624, 0.8564, 1.3373, -5.9914, 0.7721, 1.1699, -6.1624, 0.3135, 1.0489, -6.1624, 0.6056, 1.4916, -5.9914, 0.3997, 1.2111, -6.1624, 0, 1.1699, -6.1624, 0.3135, 1.5442, -5.9914, 0, 1.1699, -6.1624, -0.3135, 1.2111, -6.1624, 0, 1.4916, -5.9914, -0.3997, 1.0489, -6.1624, -0.6056, 1.1699, -6.1624, -0.3135, 1.3373, -5.9914, -0.7721, 1.0489, -6.1624, -0.6056, 1.3373, -5.9914, -0.7721, 0.8564, -6.1624, -0.8564, 0.6056, -6.1624, -1.0489, 0.8564, -6.1624, -0.8564, 0.7721, -5.9914, -1.3373, 0.3135, -6.1624, -1.1699, 0.6056, -6.1624, -1.0489, 0.3997, -5.9914, -1.4916, 0, -6.1624, -1.2111, 0.3135, -6.1624, -1.1699, 0, -5.9914, -1.5442, -0.3135, -6.1624, -1.1699, 0, -6.1624, -1.2111, -0.3997, -5.9914, -1.4916, -0.6056, -6.1624, -1.0489, -0.3135, -6.1624, -1.1699, -0.7721, -5.9914, -1.3373, -0.8564, -6.1624, -0.8564, -0.6056, -6.1624, -1.0489, -1.0919, -5.9914, -1.0919, -1.0489, -6.1624, -0.6056, -0.8564, -6.1624, -0.8564, -1.3373, -5.9914, -0.7721, -1.1699, -6.1624, -0.3135, -1.0489, -6.1624, -0.6056, -1.4916, -5.9914, -0.3997, -1.2111, -6.1624, 0, -1.1699, -6.1624, -0.3135, -1.5442, -5.9914, 0, -1.0096, -6.3726, 0.2705, -1.0452, -6.3726, 0, -1.1699, -6.1624, 0.3135, -0.9052, -6.3726, 0.5226, -1.0096, -6.3726, 0.2705, -1.0489, -6.1624, 0.6056, -0.7391, -6.3726, 0.7391, -0.9052, -6.3726, 0.5226, -0.8564, -6.1624, 0.8564, -0.5226, -6.3726, 0.9052, -0.7391, -6.3726, 0.7391, -0.6056, -6.1624, 1.0489, -0.5226, -6.3726, 0.9052, -0.6056, -6.1624, 1.0489, -0.2705, -6.3726, 1.0096, -0.2705, -6.3726, 1.0096, -0.3135, -6.1624, 1.1699, 0, -6.3726, 1.0452, 0.2705, -6.3726, 1.0096, 0, -6.3726, 1.0452, 0.3135, -6.1624, 1.1699, 0.5226, -6.3726, 0.9052, 0.2705, -6.3726, 1.0096, 0.6056, -6.1624, 1.0489, 0.7391, -6.3726, 0.7391, 0.5226, -6.3726, 0.9052, 0.8564, -6.1624, 0.8564, 0.9052, -6.3726, 0.5226, 0.7391, -6.3726, 0.7391, 1.0489, -6.1624, 0.6056, 1.0096, -6.3726, 0.2705, 0.9052, -6.3726, 0.5226, 1.1699, -6.1624, 0.3135, 1.0452, -6.3726, 0, 1.0096, -6.3726, 0.2705, 1.2111, -6.1624, 0, 1.0452, -6.3726, 0, 1.2111, -6.1624, 0, 1.0096, -6.3726, -0.2705, 1.0096, -6.3726, -0.2705, 1.1699, -6.1624, -0.3135, 0.9052, -6.3726, -0.5226, 0.7391, -6.3726, -0.7391, 0.9052, -6.3726, -0.5226, 0.8564, -6.1624, -0.8564, 0.5226, -6.3726, -0.9052, 0.7391, -6.3726, -0.7391, 0.6056, -6.1624, -1.0489, 0.5226, -6.3726, -0.9052, 0.6056, -6.1624, -1.0489, 0.2705, -6.3726, -1.0096, 0.2705, -6.3726, -1.0096, 0.3135, -6.1624, -1.1699, 0, -6.3726, -1.0452, -0.2705, -6.3726, -1.0096, 0, -6.3726, -1.0452, -0.3135, -6.1624, -1.1699, -0.5226, -6.3726, -0.9052, -0.2705, -6.3726, -1.0096, -0.6056, -6.1624, -1.0489, -0.7391, -6.3726, -0.7391, -0.5226, -6.3726, -0.9052, -0.8564, -6.1624, -0.8564, -0.7391, -6.3726, -0.7391, -0.8564, -6.1624, -0.8564, -0.9052, -6.3726, -0.5226, -0.9052, -6.3726, -0.5226, -1.0489, -6.1624, -0.6056, -1.0096, -6.3726, -0.2705, -1.0452, -6.3726, 0, -1.0096, -6.3726, -0.2705, -1.2111, -6.1624, 0, -0.9659, -6.5958, 0.2588, -1, -6.5958, 0, -1.0096, -6.3726, 0.2705, -0.9659, -6.5958, 0.2588, -1.0096, -6.3726, 0.2705, -0.866, -6.5958, 0.5, -0.7071, -6.5958, 0.7071, -0.866, -6.5958, 0.5, -0.7391, -6.3726, 0.7391, -0.5, -6.5958, 0.866, -0.7071, -6.5958, 0.7071, -0.5226, -6.3726, 0.9052, -0.5, -6.5958, 0.866, -0.5226, -6.3726, 0.9052, -0.2588, -6.5958, 0.9659, -0.2588, -6.5958, 0.9659, -0.2705, -6.3726, 1.0096, 0, -6.5958, 1, 0.2588, -6.5958, 0.9659, 0, -6.5958, 1, 0.2705, -6.3726, 1.0096, 0.2588, -6.5958, 0.9659, 0.2705, -6.3726, 1.0096, 0.5, -6.5958, 0.866, 0.7071, -6.5958, 0.7071, 0.5, -6.5958, 0.866, 0.7391, -6.3726, 0.7391, 0.7071, -6.5958, 0.7071, 0.7391, -6.3726, 0.7391, 0.866, -6.5958, 0.5, 0.9659, -6.5958, 0.2588, 0.866, -6.5958, 0.5, 1.0096, -6.3726, 0.2705, 1, -6.5958, 0, 0.9659, -6.5958, 0.2588, 1.0452, -6.3726, 0, 0.9659, -6.5958, -0.2588, 1, -6.5958, 0, 1.0096, -6.3726, -0.2705, 0.9659, -6.5958, -0.2588, 1.0096, -6.3726, -0.2705, 0.866, -6.5958, -0.5, 0.866, -6.5958, -0.5, 0.9052, -6.3726, -0.5226, 0.7071, -6.5958, -0.7071, 0.5, -6.5958, -0.866, 0.7071, -6.5958, -0.7071, 0.5226, -6.3726, -0.9052, 0.2588, -6.5958, -0.9659, 0.5, -6.5958, -0.866, 0.2705, -6.3726, -1.0096, 0.2588, -6.5958, -0.9659, 0.2705, -6.3726, -1.0096, 0, -6.5958, -1, -0.2588, -6.5958, -0.9659, 0, -6.5958, -1, -0.2705, -6.3726, -1.0096, -0.2588, -6.5958, -0.9659, -0.2705, -6.3726, -1.0096, -0.5, -6.5958, -0.866, -0.5, -6.5958, -0.866, -0.5226, -6.3726, -0.9052, -0.7071, -6.5958, -0.7071, -0.7071, -6.5958, -0.7071, -0.7391, -6.3726, -0.7391, -0.866, -6.5958, -0.5, -0.866, -6.5958, -0.5, -0.9052, -6.3726, -0.5226, -0.9659, -6.5958, -0.2588, -1, -6.5958, 0, -0.9659, -6.5958, -0.2588, -1.0452, -6.3726, 0, -4.5836, -4.9259, 1.2282, -4.6364, -4.5958, 1.2423, -4.7453, -4.9259, 0, -4.1569, -4.5958, 2.4, -4.6364, -4.5958, 1.2423, -4.1096, -4.9259, 2.3727, -3.3941, -4.5958, 3.3941, -4.1569, -4.5958, 2.4, -3.3555, -4.9259, 3.3555, -2.4, -4.5958, 4.1569, -3.3941, -4.5958, 3.3941, -2.3727, -4.9259, 4.1096, -1.2423, -4.5958, 4.6364, -2.4, -4.5958, 4.1569, -1.2282, -4.9259, 4.5836, 0, -4.9259, 4.7453, 0, -4.5958, 4.8, -1.2282, -4.9259, 4.5836, 1.2282, -4.9259, 4.5836, 1.2423, -4.5958, 4.6364, 0, -4.9259, 4.7453, 2.3727, -4.9259, 4.1096, 2.4, -4.5958, 4.1569, 1.2282, -4.9259, 4.5836, 3.3941, -4.5958, 3.3941, 2.4, -4.5958, 4.1569, 3.3555, -4.9259, 3.3555, 4.1096, -4.9259, 2.3727, 4.1569, -4.5958, 2.4, 3.3555, -4.9259, 3.3555, 4.5836, -4.9259, 1.2282, 4.6364, -4.5958, 1.2423, 4.1096, -4.9259, 2.3727, 4.8, -4.5958, 0, 4.6364, -4.5958, 1.2423, 4.7453, -4.9259, 0, 4.6364, -4.5958, -1.2423, 4.8, -4.5958, 0, 4.5836, -4.9259, -1.2282, 4.1569, -4.5958, -2.4, 4.6364, -4.5958, -1.2423, 4.1096, -4.9259, -2.3727, 3.3555, -4.9259, -3.3555, 3.3941, -4.5958, -3.3941, 4.1096, -4.9259, -2.3727, 2.3727, -4.9259, -4.1096, 2.4, -4.5958, -4.1569, 3.3555, -4.9259, -3.3555, 1.2423, -4.5958, -4.6364, 2.4, -4.5958, -4.1569, 1.2282, -4.9259, -4.5836, 0, -4.5958, -4.8, 1.2423, -4.5958, -4.6364, 0, -4.9259, -4.7453, -1.2282, -4.9259, -4.5836, -1.2423, -4.5958, -4.6364, 0, -4.9259, -4.7453, -2.3727, -4.9259, -4.1096, -2.4, -4.5958, -4.1569, -1.2282, -4.9259, -4.5836, -3.3941, -4.5958, -3.3941, -2.4, -4.5958, -4.1569, -3.3555, -4.9259, -3.3555, -4.1096, -4.9259, -2.3727, -4.1569, -4.5958, -2.4, -3.3555, -4.9259, -3.3555, -4.6364, -4.5958, -1.2423, -4.1569, -4.5958, -2.4, -4.5836, -4.9259, -1.2282, -4.7453, -4.9259, 0, -4.8, -4.5958, 0, -4.5836, -4.9259, -1.2282, -4.3866, -5.1661, 1.1754, -4.5836, -4.9259, 1.2282, -4.5413, -5.1661, 0, -4.1096, -4.9259, 2.3727, -4.5836, -4.9259, 1.2282, -3.9329, -5.1661, 2.2707, -3.2112, -5.1661, 3.2112, -3.3555, -4.9259, 3.3555, -3.9329, -5.1661, 2.2707, -2.3727, -4.9259, 4.1096, -3.3555, -4.9259, 3.3555, -2.2707, -5.1661, 3.9329, -1.2282, -4.9259, 4.5836, -2.3727, -4.9259, 4.1096, -1.1754, -5.1661, 4.3866, 0, -4.9259, 4.7453, -1.2282, -4.9259, 4.5836, 0, -5.1661, 4.5413, 1.2282, -4.9259, 4.5836, 0, -4.9259, 4.7453, 1.1754, -5.1661, 4.3866, 2.2707, -5.1661, 3.9329, 2.3727, -4.9259, 4.1096, 1.1754, -5.1661, 4.3866, 3.2112, -5.1661, 3.2112, 3.3555, -4.9259, 3.3555, 2.2707, -5.1661, 3.9329, 3.9329, -5.1661, 2.2707, 4.1096, -4.9259, 2.3727, 3.2112, -5.1661, 3.2112, 4.3866, -5.1661, 1.1754, 4.5836, -4.9259, 1.2282, 3.9329, -5.1661, 2.2707, 4.5413, -5.1661, 0, 4.7453, -4.9259, 0, 4.3866, -5.1661, 1.1754, 4.3866, -5.1661, -1.1754, 4.5836, -4.9259, -1.2282, 4.5413, -5.1661, 0, 3.9329, -5.1661, -2.2707, 4.1096, -4.9259, -2.3727, 4.3866, -5.1661, -1.1754, 3.3555, -4.9259, -3.3555, 4.1096, -4.9259, -2.3727, 3.2112, -5.1661, -3.2112, 2.2707, -5.1661, -3.9329, 2.3727, -4.9259, -4.1096, 3.2112, -5.1661, -3.2112, 1.1754, -5.1661, -4.3866, 1.2282, -4.9259, -4.5836, 2.2707, -5.1661, -3.9329, 0, -5.1661, -4.5413, 0, -4.9259, -4.7453, 1.1754, -5.1661, -4.3866, -1.2282, -4.9259, -4.5836, 0, -4.9259, -4.7453, -1.1754, -5.1661, -4.3866, -2.2707, -5.1661, -3.9329, -2.3727, -4.9259, -4.1096, -1.1754, -5.1661, -4.3866, -3.2112, -5.1661, -3.2112, -3.3555, -4.9259, -3.3555, -2.2707, -5.1661, -3.9329, -3.9329, -5.1661, -2.2707, -4.1096, -4.9259, -2.3727, -3.2112, -5.1661, -3.2112, -4.5836, -4.9259, -1.2282, -4.1096, -4.9259, -2.3727, -4.3866, -5.1661, -1.1754, -4.5413, -5.1661, 0, -4.7453, -4.9259, 0, -4.3866, -5.1661, -1.1754, -4.0739, -5.3344, 1.0916, -4.3866, -5.1661, 1.1754, -4.2176, -5.3344, 0, -3.9329, -5.1661, 2.2707, -4.3866, -5.1661, 1.1754, -3.6525, -5.3344, 2.1088, -2.9823, -5.3344, 2.9823, -3.2112, -5.1661, 3.2112, -3.6525, -5.3344, 2.1088, -2.1088, -5.3344, 3.6525, -2.2707, -5.1661, 3.9329, -2.9823, -5.3344, 2.9823, -1.0916, -5.3344, 4.0739, -1.1754, -5.1661, 4.3866, -2.1088, -5.3344, 3.6525, 0, -5.3344, 4.2176, 0, -5.1661, 4.5413, -1.0916, -5.3344, 4.0739, 1.0916, -5.3344, 4.0739, 1.1754, -5.1661, 4.3866, 0, -5.3344, 4.2176, 2.2707, -5.1661, 3.9329, 1.1754, -5.1661, 4.3866, 2.1088, -5.3344, 3.6525, 2.9823, -5.3344, 2.9823, 3.2112, -5.1661, 3.2112, 2.1088, -5.3344, 3.6525, 3.9329, -5.1661, 2.2707, 3.2112, -5.1661, 3.2112, 3.6525, -5.3344, 2.1088, 4.3866, -5.1661, 1.1754, 3.9329, -5.1661, 2.2707, 4.0739, -5.3344, 1.0916, 4.5413, -5.1661, 0, 4.3866, -5.1661, 1.1754, 4.2176, -5.3344, 0, 4.3866, -5.1661, -1.1754, 4.5413, -5.1661, 0, 4.0739, -5.3344, -1.0916, 3.9329, -5.1661, -2.2707, 4.3866, -5.1661, -1.1754, 3.6525, -5.3344, -2.1088, 2.9823, -5.3344, -2.9823, 3.2112, -5.1661, -3.2112, 3.6525, -5.3344, -2.1088, 2.1088, -5.3344, -3.6525, 2.2707, -5.1661, -3.9329, 2.9823, -5.3344, -2.9823, 1.0916, -5.3344, -4.0739, 1.1754, -5.1661, -4.3866, 2.1088, -5.3344, -3.6525, 0, -5.3344, -4.2176, 0, -5.1661, -4.5413, 1.0916, -5.3344, -4.0739, -1.1754, -5.1661, -4.3866, 0, -5.1661, -4.5413, -1.0916, -5.3344, -4.0739, -2.1088, -5.3344, -3.6525, -2.2707, -5.1661, -3.9329, -1.0916, -5.3344, -4.0739, -3.2112, -5.1661, -3.2112, -2.2707, -5.1661, -3.9329, -2.9823, -5.3344, -2.9823, -3.6525, -5.3344, -2.1088, -3.9329, -5.1661, -2.2707, -2.9823, -5.3344, -2.9823, -4.3866, -5.1661, -1.1754, -3.9329, -5.1661, -2.2707, -4.0739, -5.3344, -1.0916, -4.2176, -5.3344, 0, -4.5413, -5.1661, 0, -4.0739, -5.3344, -1.0916, -3.6741, -5.449, 0.9845, -4.0739, -5.3344, 1.0916, -3.8037, -5.449, 0, -3.2941, -5.449, 1.9018, -3.6525, -5.3344, 2.1088, -3.6741, -5.449, 0.9845, -2.6896, -5.449, 2.6896, -2.9823, -5.3344, 2.9823, -3.2941, -5.449, 1.9018, -2.1088, -5.3344, 3.6525, -2.9823, -5.3344, 2.9823, -1.9018, -5.449, 3.2941, -1.0916, -5.3344, 4.0739, -2.1088, -5.3344, 3.6525, -0.9845, -5.449, 3.6741, 0, -5.449, 3.8037, 0, -5.3344, 4.2176, -0.9845, -5.449, 3.6741, 0.9845, -5.449, 3.6741, 1.0916, -5.3344, 4.0739, 0, -5.449, 3.8037, 1.9018, -5.449, 3.2941, 2.1088, -5.3344, 3.6525, 0.9845, -5.449, 3.6741, 2.6896, -5.449, 2.6896, 2.9823, -5.3344, 2.9823, 1.9018, -5.449, 3.2941, 3.6525, -5.3344, 2.1088, 2.9823, -5.3344, 2.9823, 3.2941, -5.449, 1.9018, 3.6741, -5.449, 0.9845, 4.0739, -5.3344, 1.0916, 3.2941, -5.449, 1.9018, 3.8037, -5.449, 0, 4.2176, -5.3344, 0, 3.6741, -5.449, 0.9845, 4.0739, -5.3344, -1.0916, 4.2176, -5.3344, 0, 3.6741, -5.449, -0.9845, 3.2941, -5.449, -1.9018, 3.6525, -5.3344, -2.1088, 3.6741, -5.449, -0.9845, 2.6896, -5.449, -2.6896, 2.9823, -5.3344, -2.9823, 3.2941, -5.449, -1.9018, 2.1088, -5.3344, -3.6525, 2.9823, -5.3344, -2.9823, 1.9018, -5.449, -3.2941, 0.9845, -5.449, -3.6741, 1.0916, -5.3344, -4.0739, 1.9018, -5.449, -3.2941, 0, -5.449, -3.8037, 0, -5.3344, -4.2176, 0.9845, -5.449, -3.6741, -0.9845, -5.449, -3.6741, -1.0916, -5.3344, -4.0739, 0, -5.449, -3.8037, -1.9018, -5.449, -3.2941, -2.1088, -5.3344, -3.6525, -0.9845, -5.449, -3.6741, -2.9823, -5.3344, -2.9823, -2.1088, -5.3344, -3.6525, -2.6896, -5.449, -2.6896, -3.6525, -5.3344, -2.1088, -2.9823, -5.3344, -2.9823, -3.2941, -5.449, -1.9018, -3.6741, -5.449, -0.9845, -4.0739, -5.3344, -1.0916, -3.2941, -5.449, -1.9018, -3.8037, -5.449, 0, -4.2176, -5.3344, 0, -3.6741, -5.449, -0.9845, -3.2158, -5.5279, 0.8617, -3.6741, -5.449, 0.9845, -3.3293, -5.5279, 0, -2.8832, -5.5279, 1.6646, -3.2941, -5.449, 1.9018, -3.2158, -5.5279, 0.8617, -2.6896, -5.449, 2.6896, -3.2941, -5.449, 1.9018, -2.3542, -5.5279, 2.3542, -1.6646, -5.5279, 2.8832, -1.9018, -5.449, 3.2941, -2.3542, -5.5279, 2.3542, -0.9845, -5.449, 3.6741, -1.9018, -5.449, 3.2941, -0.8617, -5.5279, 3.2158, 0, -5.5279, 3.3293, 0, -5.449, 3.8037, -0.8617, -5.5279, 3.2158, 0.9845, -5.449, 3.6741, 0, -5.449, 3.8037, 0.8617, -5.5279, 3.2158, 1.6646, -5.5279, 2.8832, 1.9018, -5.449, 3.2941, 0.8617, -5.5279, 3.2158, 2.3542, -5.5279, 2.3542, 2.6896, -5.449, 2.6896, 1.6646, -5.5279, 2.8832, 3.2941, -5.449, 1.9018, 2.6896, -5.449, 2.6896, 2.8832, -5.5279, 1.6646, 3.6741, -5.449, 0.9845, 3.2941, -5.449, 1.9018, 3.2158, -5.5279, 0.8617, 3.3293, -5.5279, 0, 3.8037, -5.449, 0, 3.2158, -5.5279, 0.8617, 3.6741, -5.449, -0.9845, 3.8037, -5.449, 0, 3.2158, -5.5279, -0.8617, 2.8832, -5.5279, -1.6646, 3.2941, -5.449, -1.9018, 3.2158, -5.5279, -0.8617, 2.3542, -5.5279, -2.3542, 2.6896, -5.449, -2.6896, 2.8832, -5.5279, -1.6646, 1.9018, -5.449, -3.2941, 2.6896, -5.449, -2.6896, 1.6646, -5.5279, -2.8832, 0.9845, -5.449, -3.6741, 1.9018, -5.449, -3.2941, 0.8617, -5.5279, -3.2158, 0, -5.449, -3.8037, 0.9845, -5.449, -3.6741, 0, -5.5279, -3.3293, -0.8617, -5.5279, -3.2158, -0.9845, -5.449, -3.6741, 0, -5.5279, -3.3293, -1.6646, -5.5279, -2.8832, -1.9018, -5.449, -3.2941, -0.8617, -5.5279, -3.2158, -2.6896, -5.449, -2.6896, -1.9018, -5.449, -3.2941, -2.3542, -5.5279, -2.3542, -2.8832, -5.5279, -1.6646, -3.2941, -5.449, -1.9018, -2.3542, -5.5279, -2.3542, -3.2158, -5.5279, -0.8617, -3.6741, -5.449, -0.9845, -2.8832, -5.5279, -1.6646, -3.3293, -5.5279, 0, -3.8037, -5.449, 0, -3.2158, -5.5279, -0.8617, -2.7277, -5.589, 0.7309, -3.2158, -5.5279, 0.8617, -2.8239, -5.589, 0, -2.4456, -5.589, 1.412, -2.8832, -5.5279, 1.6646, -2.7277, -5.589, 0.7309, -1.9968, -5.589, 1.9968, -2.3542, -5.5279, 2.3542, -2.4456, -5.589, 1.412, -1.412, -5.589, 2.4456, -1.6646, -5.5279, 2.8832, -1.9968, -5.589, 1.9968, -0.8617, -5.5279, 3.2158, -1.6646, -5.5279, 2.8832, -0.7309, -5.589, 2.7277, 0, -5.589, 2.8239, 0, -5.5279, 3.3293, -0.7309, -5.589, 2.7277, 0.7309, -5.589, 2.7277, 0.8617, -5.5279, 3.2158, 0, -5.589, 2.8239, 1.412, -5.589, 2.4456, 1.6646, -5.5279, 2.8832, 0.7309, -5.589, 2.7277, 1.9968, -5.589, 1.9968, 2.3542, -5.5279, 2.3542, 1.412, -5.589, 2.4456, 2.4456, -5.589, 1.412, 2.8832, -5.5279, 1.6646, 1.9968, -5.589, 1.9968, 2.7277, -5.589, 0.7309, 3.2158, -5.5279, 0.8617, 2.4456, -5.589, 1.412, 3.3293, -5.5279, 0, 3.2158, -5.5279, 0.8617, 2.8239, -5.589, 0, 2.7277, -5.589, -0.7309, 3.2158, -5.5279, -0.8617, 2.8239, -5.589, 0, 2.4456, -5.589, -1.412, 2.8832, -5.5279, -1.6646, 2.7277, -5.589, -0.7309, 1.9968, -5.589, -1.9968, 2.3542, -5.5279, -2.3542, 2.4456, -5.589, -1.412, 1.412, -5.589, -2.4456, 1.6646, -5.5279, -2.8832, 1.9968, -5.589, -1.9968, 0.8617, -5.5279, -3.2158, 1.6646, -5.5279, -2.8832, 0.7309, -5.589, -2.7277, 0, -5.589, -2.8239, 0, -5.5279, -3.3293, 0.7309, -5.589, -2.7277, -0.7309, -5.589, -2.7277, -0.8617, -5.5279, -3.2158, 0, -5.589, -2.8239, -1.412, -5.589, -2.4456, -1.6646, -5.5279, -2.8832, -0.7309, -5.589, -2.7277, -1.9968, -5.589, -1.9968, -2.3542, -5.5279, -2.3542, -1.412, -5.589, -2.4456, -2.4456, -5.589, -1.412, -2.8832, -5.5279, -1.6646, -1.9968, -5.589, -1.9968, -3.2158, -5.5279, -0.8617, -2.8832, -5.5279, -1.6646, -2.7277, -5.589, -0.7309, -3.3293, -5.5279, 0, -3.2158, -5.5279, -0.8617, -2.8239, -5.589, 0, -2.7277, -5.589, 0.7309, -2.8239, -5.589, 0, -2.2383, -5.6506, 0.5998, -2.0068, -5.6506, 1.1586, -2.4456, -5.589, 1.412, -2.2383, -5.6506, 0.5998, -1.6386, -5.6506, 1.6386, -1.9968, -5.589, 1.9968, -2.0068, -5.6506, 1.1586, -1.412, -5.589, 2.4456, -1.9968, -5.589, 1.9968, -1.1586, -5.6506, 2.0068, -0.5998, -5.6506, 2.2383, -0.7309, -5.589, 2.7277, -1.1586, -5.6506, 2.0068, 0, -5.6506, 2.3173, 0, -5.589, 2.8239, -0.5998, -5.6506, 2.2383, 0.5998, -5.6506, 2.2383, 0.7309, -5.589, 2.7277, 0, -5.6506, 2.3173, 1.1586, -5.6506, 2.0068, 1.412, -5.589, 2.4456, 0.5998, -5.6506, 2.2383, 1.6386, -5.6506, 1.6386, 1.9968, -5.589, 1.9968, 1.1586, -5.6506, 2.0068, 2.0068, -5.6506, 1.1586, 2.4456, -5.589, 1.412, 1.6386, -5.6506, 1.6386, 2.2383, -5.6506, 0.5998, 2.7277, -5.589, 0.7309, 2.0068, -5.6506, 1.1586, 2.3173, -5.6506, 0, 2.8239, -5.589, 0, 2.2383, -5.6506, 0.5998, 2.2383, -5.6506, -0.5998, 2.7277, -5.589, -0.7309, 2.3173, -5.6506, 0, 2.0068, -5.6506, -1.1586, 2.4456, -5.589, -1.412, 2.2383, -5.6506, -0.5998, 1.6386, -5.6506, -1.6386, 1.9968, -5.589, -1.9968, 2.0068, -5.6506, -1.1586, 1.1586, -5.6506, -2.0068, 1.412, -5.589, -2.4456, 1.6386, -5.6506, -1.6386, 0.7309, -5.589, -2.7277, 1.412, -5.589, -2.4456, 0.5998, -5.6506, -2.2383, 0, -5.6506, -2.3173, 0, -5.589, -2.8239, 0.5998, -5.6506, -2.2383, -0.5998, -5.6506, -2.2383, -0.7309, -5.589, -2.7277, 0, -5.6506, -2.3173, -1.412, -5.589, -2.4456, -0.7309, -5.589, -2.7277, -1.1586, -5.6506, -2.0068, -1.9968, -5.589, -1.9968, -1.412, -5.589, -2.4456, -1.6386, -5.6506, -1.6386, -2.4456, -5.589, -1.412, -1.9968, -5.589, -1.9968, -2.0068, -5.6506, -1.1586, -2.2383, -5.6506, -0.5998, -2.7277, -5.589, -0.7309, -2.0068, -5.6506, -1.1586, -2.3173, -5.6506, 0, -2.8239, -5.589, 0, -2.2383, -5.6506, -0.5998, -1.7762, -5.7305, 0.4759, -2.2383, -5.6506, 0.5998, -1.8389, -5.7305, 0, -1.5925, -5.7305, 0.9194, -2.0068, -5.6506, 1.1586, -1.7762, -5.7305, 0.4759, -1.3003, -5.7305, 1.3003, -1.6386, -5.6506, 1.6386, -1.5925, -5.7305, 0.9194, -1.1586, -5.6506, 2.0068, -1.6386, -5.6506, 1.6386, -0.9194, -5.7305, 1.5925, -0.4759, -5.7305, 1.7762, -0.5998, -5.6506, 2.2383, -0.9194, -5.7305, 1.5925, 0, -5.7305, 1.8389, 0, -5.6506, 2.3173, -0.4759, -5.7305, 1.7762, 0.4759, -5.7305, 1.7762, 0.5998, -5.6506, 2.2383, 0, -5.7305, 1.8389, 1.1586, -5.6506, 2.0068, 0.5998, -5.6506, 2.2383, 0.9194, -5.7305, 1.5925, 1.3003, -5.7305, 1.3003, 1.6386, -5.6506, 1.6386, 0.9194, -5.7305, 1.5925, 1.5925, -5.7305, 0.9194, 2.0068, -5.6506, 1.1586, 1.3003, -5.7305, 1.3003, 2.2383, -5.6506, 0.5998, 2.0068, -5.6506, 1.1586, 1.7762, -5.7305, 0.4759, 1.8389, -5.7305, 0, 2.3173, -5.6506, 0, 1.7762, -5.7305, 0.4759, 1.7762, -5.7305, -0.4759, 2.2383, -5.6506, -0.5998, 1.8389, -5.7305, 0, 2.0068, -5.6506, -1.1586, 2.2383, -5.6506, -0.5998, 1.5925, -5.7305, -0.9194, 1.3003, -5.7305, -1.3003, 1.6386, -5.6506, -1.6386, 1.5925, -5.7305, -0.9194, 1.1586, -5.6506, -2.0068, 1.6386, -5.6506, -1.6386, 0.9194, -5.7305, -1.5925, 0.4759, -5.7305, -1.7762, 0.5998, -5.6506, -2.2383, 0.9194, -5.7305, -1.5925, 0, -5.7305, -1.8389, 0, -5.6506, -2.3173, 0.4759, -5.7305, -1.7762, -0.4759, -5.7305, -1.7762, -0.5998, -5.6506, -2.2383, 0, -5.7305, -1.8389, -1.1586, -5.6506, -2.0068, -0.5998, -5.6506, -2.2383, -0.9194, -5.7305, -1.5925, -1.3003, -5.7305, -1.3003, -1.6386, -5.6506, -1.6386, -0.9194, -5.7305, -1.5925, -2.0068, -5.6506, -1.1586, -1.6386, -5.6506, -1.6386, -1.5925, -5.7305, -0.9194, -1.7762, -5.7305, -0.4759, -2.2383, -5.6506, -0.5998, -1.5925, -5.7305, -0.9194, -1.8389, -5.7305, 0, -2.3173, -5.6506, 0, -1.7762, -5.7305, -0.4759, -1.37, -5.847, 0.3671, -1.7762, -5.7305, 0.4759, -1.4183, -5.847, 0, -1.2283, -5.847, 0.7092, -1.5925, -5.7305, 0.9194, -1.37, -5.847, 0.3671, -1.0029, -5.847, 1.0029, -1.3003, -5.7305, 1.3003, -1.2283, -5.847, 0.7092, -0.9194, -5.7305, 1.5925, -1.3003, -5.7305, 1.3003, -0.7092, -5.847, 1.2283, -0.4759, -5.7305, 1.7762, -0.9194, -5.7305, 1.5925, -0.3671, -5.847, 1.37, 0, -5.7305, 1.8389, -0.4759, -5.7305, 1.7762, 0, -5.847, 1.4183, 0.3671, -5.847, 1.37, 0.4759, -5.7305, 1.7762, 0, -5.847, 1.4183, 0.7092, -5.847, 1.2283, 0.9194, -5.7305, 1.5925, 0.3671, -5.847, 1.37, 1.0029, -5.847, 1.0029, 1.3003, -5.7305, 1.3003, 0.7092, -5.847, 1.2283, 1.2283, -5.847, 0.7092, 1.5925, -5.7305, 0.9194, 1.0029, -5.847, 1.0029, 1.37, -5.847, 0.3671, 1.7762, -5.7305, 0.4759, 1.2283, -5.847, 0.7092, 1.4183, -5.847, 0, 1.8389, -5.7305, 0, 1.37, -5.847, 0.3671, 1.7762, -5.7305, -0.4759, 1.8389, -5.7305, 0, 1.37, -5.847, -0.3671, 1.2283, -5.847, -0.7092, 1.5925, -5.7305, -0.9194, 1.37, -5.847, -0.3671, 1.3003, -5.7305, -1.3003, 1.5925, -5.7305, -0.9194, 1.0029, -5.847, -1.0029, 0.9194, -5.7305, -1.5925, 1.3003, -5.7305, -1.3003, 0.7092, -5.847, -1.2283, 0.4759, -5.7305, -1.7762, 0.9194, -5.7305, -1.5925, 0.3671, -5.847, -1.37, 0, -5.7305, -1.8389, 0.4759, -5.7305, -1.7762, 0, -5.847, -1.4183, -0.3671, -5.847, -1.37, -0.4759, -5.7305, -1.7762, 0, -5.847, -1.4183, -0.7092, -5.847, -1.2283, -0.9194, -5.7305, -1.5925, -0.3671, -5.847, -1.37, -1.0029, -5.847, -1.0029, -1.3003, -5.7305, -1.3003, -0.7092, -5.847, -1.2283, -1.5925, -5.7305, -0.9194, -1.3003, -5.7305, -1.3003, -1.2283, -5.847, -0.7092, -1.37, -5.847, -0.3671, -1.7762, -5.7305, -0.4759, -1.2283, -5.847, -0.7092, -1.4183, -5.847, 0, -1.8389, -5.7305, 0, -1.37, -5.847, -0.3671, -1.37, -5.847, 0.3671, -1.4183, -5.847, 0, -1.0483, -6.018, 0.2809, -0.9399, -6.018, 0.5426, -1.2283, -5.847, 0.7092, -1.0483, -6.018, 0.2809, -0.7674, -6.018, 0.7674, -1.0029, -5.847, 1.0029, -0.9399, -6.018, 0.5426, -0.5426, -6.018, 0.9399, -0.7092, -5.847, 1.2283, -0.7674, -6.018, 0.7674, -0.2809, -6.018, 1.0483, -0.3671, -5.847, 1.37, -0.5426, -6.018, 0.9399, 0, -6.018, 1.0853, 0, -5.847, 1.4183, -0.2809, -6.018, 1.0483, 0.2809, -6.018, 1.0483, 0.3671, -5.847, 1.37, 0, -6.018, 1.0853, 0.5426, -6.018, 0.9399, 0.7092, -5.847, 1.2283, 0.2809, -6.018, 1.0483, 0.7674, -6.018, 0.7674, 1.0029, -5.847, 1.0029, 0.5426, -6.018, 0.9399, 0.9399, -6.018, 0.5426, 1.2283, -5.847, 0.7092, 0.7674, -6.018, 0.7674, 1.0483, -6.018, 0.2809, 1.37, -5.847, 0.3671, 0.9399, -6.018, 0.5426, 1.4183, -5.847, 0, 1.37, -5.847, 0.3671, 1.0853, -6.018, 0, 1.0483, -6.018, -0.2809, 1.37, -5.847, -0.3671, 1.0853, -6.018, 0, 0.9399, -6.018, -0.5426, 1.2283, -5.847, -0.7092, 1.0483, -6.018, -0.2809, 0.7674, -6.018, -0.7674, 1.0029, -5.847, -1.0029, 0.9399, -6.018, -0.5426, 0.5426, -6.018, -0.9399, 0.7092, -5.847, -1.2283, 0.7674, -6.018, -0.7674, 0.3671, -5.847, -1.37, 0.7092, -5.847, -1.2283, 0.2809, -6.018, -1.0483, 0, -6.018, -1.0853, 0, -5.847, -1.4183, 0.2809, -6.018, -1.0483, -0.2809, -6.018, -1.0483, -0.3671, -5.847, -1.37, 0, -6.018, -1.0853, -0.5426, -6.018, -0.9399, -0.7092, -5.847, -1.2283, -0.2809, -6.018, -1.0483, -0.7674, -6.018, -0.7674, -1.0029, -5.847, -1.0029, -0.5426, -6.018, -0.9399, -0.9399, -6.018, -0.5426, -1.2283, -5.847, -0.7092, -0.7674, -6.018, -0.7674, -1.37, -5.847, -0.3671, -1.2283, -5.847, -0.7092, -1.0483, -6.018, -0.2809, -1.0853, -6.018, 0, -1.4183, -5.847, 0, -1.0483, -6.018, -0.2809, -0.8397, -6.2616, 0.225, -1.0483, -6.018, 0.2809, -0.8693, -6.2616, 0, -0.9399, -6.018, 0.5426, -1.0483, -6.018, 0.2809, -0.7528, -6.2616, 0.4347, -0.7674, -6.018, 0.7674, -0.9399, -6.018, 0.5426, -0.6147, -6.2616, 0.6147, -0.5426, -6.018, 0.9399, -0.7674, -6.018, 0.7674, -0.4347, -6.2616, 0.7528, -0.2809, -6.018, 1.0483, -0.5426, -6.018, 0.9399, -0.225, -6.2616, 0.8397, 0, -6.018, 1.0853, -0.2809, -6.018, 1.0483, 0, -6.2616, 0.8693, 0.225, -6.2616, 0.8397, 0.2809, -6.018, 1.0483, 0, -6.2616, 0.8693, 0.5426, -6.018, 0.9399, 0.2809, -6.018, 1.0483, 0.4347, -6.2616, 0.7528, 0.6147, -6.2616, 0.6147, 0.7674, -6.018, 0.7674, 0.4347, -6.2616, 0.7528, 0.9399, -6.018, 0.5426, 0.7674, -6.018, 0.7674, 0.7528, -6.2616, 0.4347, 0.8397, -6.2616, 0.225, 1.0483, -6.018, 0.2809, 0.7528, -6.2616, 0.4347, 0.8693, -6.2616, 0, 1.0853, -6.018, 0, 0.8397, -6.2616, 0.225, 0.8397, -6.2616, -0.225, 1.0483, -6.018, -0.2809, 0.8693, -6.2616, 0, 0.9399, -6.018, -0.5426, 1.0483, -6.018, -0.2809, 0.7528, -6.2616, -0.4347, 0.7674, -6.018, -0.7674, 0.9399, -6.018, -0.5426, 0.6147, -6.2616, -0.6147, 0.4347, -6.2616, -0.7528, 0.5426, -6.018, -0.9399, 0.6147, -6.2616, -0.6147, 0.2809, -6.018, -1.0483, 0.5426, -6.018, -0.9399, 0.225, -6.2616, -0.8397, 0, -6.018, -1.0853, 0.2809, -6.018, -1.0483, 0, -6.2616, -0.8693, -0.225, -6.2616, -0.8397, -0.2809, -6.018, -1.0483, 0, -6.2616, -0.8693, -0.4347, -6.2616, -0.7528, -0.5426, -6.018, -0.9399, -0.225, -6.2616, -0.8397, -0.6147, -6.2616, -0.6147, -0.7674, -6.018, -0.7674, -0.4347, -6.2616, -0.7528, -0.7528, -6.2616, -0.4347, -0.9399, -6.018, -0.5426, -0.6147, -6.2616, -0.6147, -1.0483, -6.018, -0.2809, -0.9399, -6.018, -0.5426, -0.8397, -6.2616, -0.225, -1.0853, -6.018, 0, -1.0483, -6.018, -0.2809, -0.8693, -6.2616, 0, -0.8397, -6.2616, 0.225, -0.8693, -6.2616, 0, -0.7727, -6.5958, 0.2071, -0.6928, -6.5958, 0.4, -0.7528, -6.2616, 0.4347, -0.7727, -6.5958, 0.2071, -0.5657, -6.5958, 0.5657, -0.6147, -6.2616, 0.6147, -0.6928, -6.5958, 0.4, -0.4, -6.5958, 0.6928, -0.4347, -6.2616, 0.7528, -0.5657, -6.5958, 0.5657, -0.2071, -6.5958, 0.7727, -0.225, -6.2616, 0.8397, -0.4, -6.5958, 0.6928, 0, -6.2616, 0.8693, -0.225, -6.2616, 0.8397, 0, -6.5958, 0.8, 0.2071, -6.5958, 0.7727, 0.225, -6.2616, 0.8397, 0, -6.5958, 0.8, 0.4, -6.5958, 0.6928, 0.4347, -6.2616, 0.7528, 0.2071, -6.5958, 0.7727, 0.5657, -6.5958, 0.5657, 0.6147, -6.2616, 0.6147, 0.4, -6.5958, 0.6928, 0.7528, -6.2616, 0.4347, 0.6147, -6.2616, 0.6147, 0.6928, -6.5958, 0.4, 0.8397, -6.2616, 0.225, 0.7528, -6.2616, 0.4347, 0.7727, -6.5958, 0.2071, 0.8, -6.5958, 0, 0.8693, -6.2616, 0, 0.7727, -6.5958, 0.2071, 0.7727, -6.5958, -0.2071, 0.8397, -6.2616, -0.225, 0.8, -6.5958, 0, 0.6928, -6.5958, -0.4, 0.7528, -6.2616, -0.4347, 0.7727, -6.5958, -0.2071, 0.5657, -6.5958, -0.5657, 0.6147, -6.2616, -0.6147, 0.6928, -6.5958, -0.4, 0.4, -6.5958, -0.6928, 0.4347, -6.2616, -0.7528, 0.5657, -6.5958, -0.5657, 0.225, -6.2616, -0.8397, 0.4347, -6.2616, -0.7528, 0.2071, -6.5958, -0.7727, 0, -6.5958, -0.8, 0, -6.2616, -0.8693, 0.2071, -6.5958, -0.7727, -0.225, -6.2616, -0.8397, 0, -6.2616, -0.8693, -0.2071, -6.5958, -0.7727, -0.4, -6.5958, -0.6928, -0.4347, -6.2616, -0.7528, -0.2071, -6.5958, -0.7727, -0.5657, -6.5958, -0.5657, -0.6147, -6.2616, -0.6147, -0.4, -6.5958, -0.6928, -0.6928, -6.5958, -0.4, -0.7528, -6.2616, -0.4347, -0.5657, -6.5958, -0.5657, -0.8397, -6.2616, -0.225, -0.7528, -6.2616, -0.4347, -0.7727, -6.5958, -0.2071, -0.8693, -6.2616, 0, -0.8397, -6.2616, -0.225, -0.8, -6.5958, 0, -4.8296, -4.5958, 1.2941, -5, -4.5958, 0, -4.6364, -4.5958, 1.2423, -4.3301, -4.5958, 2.5, -4.8296, -4.5958, 1.2941, -4.1569, -4.5958, 2.4, -3.5355, -4.5958, 3.5355, -4.3301, -4.5958, 2.5, -3.3941, -4.5958, 3.3941, -2.5, -4.5958, 4.3301, -3.5355, -4.5958, 3.5355, -2.4, -4.5958, 4.1569, -2.5, -4.5958, 4.3301, -2.4, -4.5958, 4.1569, -1.2941, -4.5958, 4.8296, 0, -4.5958, 5, -1.2941, -4.5958, 4.8296, 0, -4.5958, 4.8, 1.2941, -4.5958, 4.8296, 0, -4.5958, 5, 1.2423, -4.5958, 4.6364, 2.5, -4.5958, 4.3301, 1.2941, -4.5958, 4.8296, 2.4, -4.5958, 4.1569, 3.5355, -4.5958, 3.5355, 2.5, -4.5958, 4.3301, 3.3941, -4.5958, 3.3941, 4.3301, -4.5958, 2.5, 3.5355, -4.5958, 3.5355, 4.1569, -4.5958, 2.4, 4.8296, -4.5958, 1.2941, 4.3301, -4.5958, 2.5, 4.6364, -4.5958, 1.2423, 4.8296, -4.5958, 1.2941, 4.6364, -4.5958, 1.2423, 5, -4.5958, 0, 4.8296, -4.5958, -1.2941, 5, -4.5958, 0, 4.6364, -4.5958, -1.2423, 4.8296, -4.5958, -1.2941, 4.6364, -4.5958, -1.2423, 4.3301, -4.5958, -2.5, 3.5355, -4.5958, -3.5355, 4.3301, -4.5958, -2.5, 3.3941, -4.5958, -3.3941, 3.5355, -4.5958, -3.5355, 3.3941, -4.5958, -3.3941, 2.5, -4.5958, -4.3301, 2.5, -4.5958, -4.3301, 2.4, -4.5958, -4.1569, 1.2941, -4.5958, -4.8296, 1.2941, -4.5958, -4.8296, 1.2423, -4.5958, -4.6364, 0, -4.5958, -5, -1.2941, -4.5958, -4.8296, 0, -4.5958, -5, -1.2423, -4.5958, -4.6364, -2.5, -4.5958, -4.3301, -1.2941, -4.5958, -4.8296, -2.4, -4.5958, -4.1569, -2.5, -4.5958, -4.3301, -2.4, -4.5958, -4.1569, -3.5355, -4.5958, -3.5355, -3.5355, -4.5958, -3.5355, -3.3941, -4.5958, -3.3941, -4.3301, -4.5958, -2.5, -4.3301, -4.5958, -2.5, -4.1569, -4.5958, -2.4, -4.8296, -4.5958, -1.2941, -5, -4.5958, 0, -4.8296, -4.5958, -1.2941, -4.8, -4.5958, 0, -0.7727, -6.5958, 0.2071, -0.8, -6.5958, 0, -0.9659, -6.5958, 0.2588, -0.6928, -6.5958, 0.4, -0.7727, -6.5958, 0.2071, -0.866, -6.5958, 0.5, -0.5657, -6.5958, 0.5657, -0.6928, -6.5958, 0.4, -0.7071, -6.5958, 0.7071, -0.4, -6.5958, 0.6928, -0.5657, -6.5958, 0.5657, -0.5, -6.5958, 0.866, -0.4, -6.5958, 0.6928, -0.5, -6.5958, 0.866, -0.2071, -6.5958, 0.7727, 0, -6.5958, 0.8, -0.2071, -6.5958, 0.7727, 0, -6.5958, 1, 0.2071, -6.5958, 0.7727, 0, -6.5958, 0.8, 0.2588, -6.5958, 0.9659, 0.4, -6.5958, 0.6928, 0.2071, -6.5958, 0.7727, 0.5, -6.5958, 0.866, 0.5657, -6.5958, 0.5657, 0.4, -6.5958, 0.6928, 0.7071, -6.5958, 0.7071, 0.6928, -6.5958, 0.4, 0.5657, -6.5958, 0.5657, 0.866, -6.5958, 0.5, 0.6928, -6.5958, 0.4, 0.866, -6.5958, 0.5, 0.7727, -6.5958, 0.2071, 0.8, -6.5958, 0, 0.7727, -6.5958, 0.2071, 1, -6.5958, 0, 0.8, -6.5958, 0, 1, -6.5958, 0, 0.7727, -6.5958, -0.2071, 0.6928, -6.5958, -0.4, 0.7727, -6.5958, -0.2071, 0.866, -6.5958, -0.5, 0.5657, -6.5958, -0.5657, 0.6928, -6.5958, -0.4, 0.7071, -6.5958, -0.7071, 0.4, -6.5958, -0.6928, 0.5657, -6.5958, -0.5657, 0.5, -6.5958, -0.866, 0.2071, -6.5958, -0.7727, 0.4, -6.5958, -0.6928, 0.2588, -6.5958, -0.9659, 0, -6.5958, -0.8, 0.2071, -6.5958, -0.7727, 0, -6.5958, -1, -0.2071, -6.5958, -0.7727, 0, -6.5958, -0.8, -0.2588, -6.5958, -0.9659, -0.4, -6.5958, -0.6928, -0.2071, -6.5958, -0.7727, -0.5, -6.5958, -0.866, -0.4, -6.5958, -0.6928, -0.5, -6.5958, -0.866, -0.5657, -6.5958, -0.5657, -0.5657, -6.5958, -0.5657, -0.7071, -6.5958, -0.7071, -0.6928, -6.5958, -0.4, -0.7727, -6.5958, -0.2071, -0.6928, -6.5958, -0.4, -0.9659, -6.5958, -0.2588, -0.8, -6.5958, 0, -0.7727, -6.5958, -0.2071, -1, -6.5958, 0 ) +[sub_resource type="BoxShape3D" id="2"] -[sub_resource type="BoxShape" id=2] +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_x8g7v"] +data = PackedVector3Array(-2.5712, 4.3, -3.5, -2.0712, 4.3, -3.5, -2.5712, 4.3, 3.5, -2.5712, 4.3, 3.5, -2.0712, 4.3, -3.5, -2.0712, 4.3, 3.5, -2.0712, -4.3, 3.5, -2.5712, -4.3, 3.5, -2.0712, -4.3, 3.75, -2.0712, -4.3, 3.75, -2.5712, -4.3, 3.5, -2.5712, -4.3, 3.75, -2.5712, 4.3, 3.5, -2.5712, -4.3, 3.5, -2.5712, 4.3, -3.5, -2.5712, 4.3, -3.5, -2.5712, -4.3, 3.5, -2.5712, -4.3, -3.5, -2.0712, -4.3, -3.5, -2.5712, -4.3, -3.5, -2.0712, -4.3, 3.5, -2.0712, -4.3, 3.5, -2.5712, -4.3, -3.5, -2.5712, -4.3, 3.5, -2.0712, 4.3, -3.5, -2.0712, -4.3, -3.5, -2.0712, 4.3, 3.5, -2.0712, 4.3, 3.5, -2.0712, -4.3, -3.5, -2.0712, -4.3, 3.5, -2.0712, 4.3, -3.5, -2.5712, 4.3, -3.5, -2.0712, 4.3, -3.75, -2.0712, 4.3, -3.75, -2.5712, 4.3, -3.5, -2.5712, 4.3, -3.75, -2.0712, 4.3, 3.75, -2.0712, -4.3, 3.75, -2.5712, 4.3, 3.75, -2.5712, 4.3, 3.75, -2.0712, -4.3, 3.75, -2.5712, -4.3, 3.75, -2.5712, 4.3, 3.5, -2.0712, 4.3, 3.5, -2.5712, 4.3, 3.75, -2.5712, 4.3, 3.75, -2.0712, 4.3, 3.5, -2.0712, 4.3, 3.75, -2.0712, 4.3, 3.75, -2.0712, 4.3, 3.5, 1.9288, 4.3, 3.75, 1.9288, 4.3, 3.75, -2.0712, 4.3, 3.5, 1.9288, 4.3, 3.5, -2.5712, -4.3, 3.5, -2.5712, 4.3, 3.5, -2.5712, -4.3, 3.75, -2.5712, -4.3, 3.75, -2.5712, 4.3, 3.5, -2.5712, 4.3, 3.75, 1.9288, 4.3, 3.5, 1.9288, -4.3, 3.5, 1.9288, 4.3, 3.75, 1.9288, 4.3, 3.75, 1.9288, -4.3, 3.5, 1.9288, -4.3, 3.75, -2.0712, 4.3, 3.5, -2.0712, -4.3, 3.5, 1.9288, 4.3, 3.5, 1.9288, 4.3, 3.5, -2.0712, -4.3, 3.5, 1.9288, -4.3, 3.5, -2.0712, -4.3, 3.75, -2.0712, 4.3, 3.75, 1.9288, -4.3, 3.75, 1.9288, -4.3, 3.75, -2.0712, 4.3, 3.75, 1.9288, 4.3, 3.75, -2.0712, -4.3, 3.5, -2.0712, -4.3, 3.75, 1.9288, -4.3, 3.5, 1.9288, -4.3, 3.5, -2.0712, -4.3, 3.75, 1.9288, -4.3, 3.75, -2.5712, 4.3, -3.75, -2.5712, -4.3, -3.75, -2.0712, 4.3, -3.75, -2.0712, 4.3, -3.75, -2.5712, -4.3, -3.75, -2.0712, -4.3, -3.75, -2.0712, 4.3, -3.5, -2.0712, 4.3, -3.75, 1.9288, 4.3, -3.5, 1.9288, 4.3, -3.5, -2.0712, 4.3, -3.75, 1.9288, 4.3, -3.75, -2.5712, 4.3, -3.5, -2.5712, -4.3, -3.5, -2.5712, 4.3, -3.75, -2.5712, 4.3, -3.75, -2.5712, -4.3, -3.5, -2.5712, -4.3, -3.75, -2.5712, -4.3, -3.5, -2.0712, -4.3, -3.5, -2.5712, -4.3, -3.75, -2.5712, -4.3, -3.75, -2.0712, -4.3, -3.5, -2.0712, -4.3, -3.75, 1.9288, -4.3, -3.5, 1.9288, 4.3, -3.5, 1.9288, -4.3, -3.75, 1.9288, -4.3, -3.75, 1.9288, 4.3, -3.5, 1.9288, 4.3, -3.75, -2.0712, -4.3, -3.5, -2.0712, 4.3, -3.5, 1.9288, -4.3, -3.5, 1.9288, -4.3, -3.5, -2.0712, 4.3, -3.5, 1.9288, 4.3, -3.5, -2.0712, 4.3, -3.75, -2.0712, -4.3, -3.75, 1.9288, 4.3, -3.75, 1.9288, 4.3, -3.75, -2.0712, -4.3, -3.75, 1.9288, -4.3, -3.75, -2.0712, -4.3, -3.75, -2.0712, -4.3, -3.5, 1.9288, -4.3, -3.75, 1.9288, -4.3, -3.75, -2.0712, -4.3, -3.5, 1.9288, -4.3, -3.5, 1.7287, 0.1455, -0.1693, -1.8711, 0.1455, -0.1693, 1.7287, 0.0981, -0.1646, 1.7287, 0.0981, -0.1646, -1.8711, 0.1455, -0.1693, -1.8711, 0.0981, -0.1646, 1.7287, 0.0981, -0.1646, -1.8711, 0.0981, -0.1646, 1.7287, 0.0525, -0.1508, 1.7287, 0.0525, -0.1508, -1.8711, 0.0981, -0.1646, -1.8711, 0.0525, -0.1508, 1.7287, 0.0525, -0.1508, -1.8711, 0.0525, -0.1508, 1.7287, 0.0105, -0.1283, 1.7287, 0.0105, -0.1283, -1.8711, 0.0525, -0.1508, -1.8711, 0.0105, -0.1283, 1.7287, 0.0105, -0.1283, -1.8711, 0.0105, -0.1283, 1.7287, -0.0264, -0.0981, 1.7287, -0.0264, -0.0981, -1.8711, 0.0105, -0.1283, -1.8711, -0.0264, -0.0981, 1.7287, -0.0264, -0.0981, -1.8711, -0.0264, -0.0981, 1.7287, -0.0566, -0.0612, 1.7287, -0.0566, -0.0612, -1.8711, -0.0264, -0.0981, -1.8711, -0.0566, -0.0612, 1.7287, -0.0566, -0.0612, -1.8711, -0.0566, -0.0612, 1.7287, -0.0791, -0.0192, 1.7287, -0.0791, -0.0192, -1.8711, -0.0566, -0.0612, -1.8711, -0.0791, -0.0192, 1.7287, -0.0791, -0.0192, -1.8711, -0.0791, -0.0192, 1.7287, -0.0929, 0.0264, 1.7287, -0.0929, 0.0264, -1.8711, -0.0791, -0.0192, -1.8711, -0.0929, 0.0264, 1.7287, -0.0929, 0.0264, -1.8711, -0.0929, 0.0264, 1.7287, -0.0976, 0.0738, 1.7287, -0.0976, 0.0738, -1.8711, -0.0929, 0.0264, -1.8711, -0.0976, 0.0738, 1.7287, -0.0976, 0.0738, -1.8711, -0.0976, 0.0738, 1.7287, -0.0929, 0.1212, 1.7287, -0.0929, 0.1212, -1.8711, -0.0976, 0.0738, -1.8711, -0.0929, 0.1212, 1.7287, -0.0929, 0.1212, -1.8711, -0.0929, 0.1212, 1.7287, -0.0791, 0.1669, 1.7287, -0.0791, 0.1669, -1.8711, -0.0929, 0.1212, -1.8711, -0.0791, 0.1669, 1.7287, -0.0791, 0.1669, -1.8711, -0.0791, 0.1669, 1.7287, -0.0566, 0.2089, 1.7287, -0.0566, 0.2089, -1.8711, -0.0791, 0.1669, -1.8711, -0.0566, 0.2089, 1.7287, -0.0566, 0.2089, -1.8711, -0.0566, 0.2089, 1.7287, -0.0264, 0.2457, 1.7287, -0.0264, 0.2457, -1.8711, -0.0566, 0.2089, -1.8711, -0.0264, 0.2457, 1.7287, -0.0264, 0.2457, -1.8711, -0.0264, 0.2457, 1.7287, 0.0105, 0.276, 1.7287, 0.0105, 0.276, -1.8711, -0.0264, 0.2457, -1.8711, 0.0105, 0.276, 1.7287, 0.0105, 0.276, -1.8711, 0.0105, 0.276, 1.7287, 0.0525, 0.2984, 1.7287, 0.0525, 0.2984, -1.8711, 0.0105, 0.276, -1.8711, 0.0525, 0.2984, 1.7287, 0.0525, 0.2984, -1.8711, 0.0525, 0.2984, 1.7287, 0.0981, 0.3123, 1.7287, 0.0981, 0.3123, -1.8711, 0.0525, 0.2984, -1.8711, 0.0981, 0.3123, 1.7287, 0.0981, 0.3123, -1.8711, 0.0981, 0.3123, 1.7287, 0.1455, 0.3169, 1.7287, 0.1455, 0.3169, -1.8711, 0.0981, 0.3123, -1.8711, 0.1455, 0.3169, 1.7287, 0.1455, 0.3169, -1.8711, 0.1455, 0.3169, 1.7287, 0.193, 0.3123, 1.7287, 0.193, 0.3123, -1.8711, 0.1455, 0.3169, -1.8711, 0.193, 0.3123, 1.7287, 0.193, 0.3123, -1.8711, 0.193, 0.3123, 1.7287, 0.2386, 0.2984, 1.7287, 0.2386, 0.2984, -1.8711, 0.193, 0.3123, -1.8711, 0.2386, 0.2984, 1.7287, 0.2386, 0.2984, -1.8711, 0.2386, 0.2984, 1.7287, 0.2806, 0.276, 1.7287, 0.2806, 0.276, -1.8711, 0.2386, 0.2984, -1.8711, 0.2806, 0.276, 1.7287, 0.2806, 0.276, -1.8711, 0.2806, 0.276, 1.7287, 0.3174, 0.2457, 1.7287, 0.3174, 0.2457, -1.8711, 0.2806, 0.276, -1.8711, 0.3174, 0.2457, 1.7287, 0.3174, 0.2457, -1.8711, 0.3174, 0.2457, 1.7287, 0.3477, 0.2089, 1.7287, 0.3477, 0.2089, -1.8711, 0.3174, 0.2457, -1.8711, 0.3477, 0.2089, 1.7287, 0.3477, 0.2089, -1.8711, 0.3477, 0.2089, 1.7287, 0.3701, 0.1669, 1.7287, 0.3701, 0.1669, -1.8711, 0.3477, 0.2089, -1.8711, 0.3701, 0.1669, 1.7287, 0.3701, 0.1669, -1.8711, 0.3701, 0.1669, 1.7287, 0.384, 0.1212, 1.7287, 0.384, 0.1212, -1.8711, 0.3701, 0.1669, -1.8711, 0.384, 0.1212, 1.7287, 0.384, 0.1212, -1.8711, 0.384, 0.1212, 1.7287, 0.3886, 0.0738, 1.7287, 0.3886, 0.0738, -1.8711, 0.384, 0.1212, -1.8711, 0.3886, 0.0738, 1.7287, 0.3886, 0.0738, -1.8711, 0.3886, 0.0738, 1.7287, 0.384, 0.0264, 1.7287, 0.384, 0.0264, -1.8711, 0.3886, 0.0738, -1.8711, 0.384, 0.0264, 1.7287, 0.384, 0.0264, -1.8711, 0.384, 0.0264, 1.7287, 0.3701, -0.0192, 1.7287, 0.3701, -0.0192, -1.8711, 0.384, 0.0264, -1.8711, 0.3701, -0.0192, 1.7287, 0.3701, -0.0192, -1.8711, 0.3701, -0.0192, 1.7287, 0.3477, -0.0612, 1.7287, 0.3477, -0.0612, -1.8711, 0.3701, -0.0192, -1.8711, 0.3477, -0.0612, 1.7287, 0.3477, -0.0612, -1.8711, 0.3477, -0.0612, 1.7287, 0.3174, -0.0981, 1.7287, 0.3174, -0.0981, -1.8711, 0.3477, -0.0612, -1.8711, 0.3174, -0.0981, 1.7287, 0.3174, -0.0981, -1.8711, 0.3174, -0.0981, 1.7287, 0.2806, -0.1283, 1.7287, 0.2806, -0.1283, -1.8711, 0.3174, -0.0981, -1.8711, 0.2806, -0.1283, 1.7287, 0.2806, -0.1283, -1.8711, 0.2806, -0.1283, 1.7287, 0.2386, -0.1508, 1.7287, 0.2386, -0.1508, -1.8711, 0.2806, -0.1283, -1.8711, 0.2386, -0.1508, 1.7287, 0.1455, -0.1693, 1.7287, 0.0981, -0.1646, 1.7287, 0.193, -0.1646, 1.7287, 0.193, -0.1646, 1.7287, 0.0981, -0.1646, 1.7287, 0.2386, -0.1508, 1.7287, 0.2386, -0.1508, 1.7287, 0.0981, -0.1646, 1.7287, 0.2806, -0.1283, 1.7287, 0.2806, -0.1283, 1.7287, 0.0981, -0.1646, 1.7287, 0.3174, -0.0981, 1.7287, 0.3174, -0.0981, 1.7287, 0.0981, -0.1646, 1.7287, 0.3477, -0.0612, 1.7287, 0.3477, -0.0612, 1.7287, 0.0981, -0.1646, 1.7287, 0.3701, -0.0192, 1.7287, 0.3701, -0.0192, 1.7287, 0.0981, -0.1646, 1.7287, 0.384, 0.0264, 1.7287, 0.384, 0.0264, 1.7287, 0.0981, -0.1646, 1.7287, 0.3886, 0.0738, 1.7287, 0.3886, 0.0738, 1.7287, 0.0981, -0.1646, 1.7287, 0.384, 0.1212, 1.7287, 0.384, 0.1212, 1.7287, 0.0981, -0.1646, 1.7287, 0.3701, 0.1669, 1.7287, 0.3701, 0.1669, 1.7287, 0.0981, -0.1646, 1.7287, 0.3477, 0.2089, 1.7287, 0.3477, 0.2089, 1.7287, 0.0981, -0.1646, 1.7287, 0.3174, 0.2457, 1.7287, 0.3174, 0.2457, 1.7287, 0.0981, -0.1646, 1.7287, 0.2806, 0.276, 1.7287, 0.2806, 0.276, 1.7287, 0.0981, -0.1646, 1.7287, 0.2386, 0.2984, 1.7287, 0.2386, 0.2984, 1.7287, 0.0981, -0.1646, 1.7287, 0.193, 0.3123, 1.7287, 0.193, 0.3123, 1.7287, 0.0981, -0.1646, 1.7287, 0.1455, 0.3169, 1.7287, 0.1455, 0.3169, 1.7287, 0.0981, -0.1646, 1.7287, 0.0981, 0.3123, 1.7287, 0.0981, 0.3123, 1.7287, 0.0981, -0.1646, 1.7287, 0.0525, 0.2984, 1.7287, 0.0525, 0.2984, 1.7287, 0.0981, -0.1646, 1.7287, 0.0105, 0.276, 1.7287, 0.0105, 0.276, 1.7287, 0.0981, -0.1646, 1.7287, -0.0264, 0.2457, 1.7287, -0.0264, 0.2457, 1.7287, 0.0981, -0.1646, 1.7287, -0.0566, 0.2089, 1.7287, -0.0566, 0.2089, 1.7287, 0.0981, -0.1646, 1.7287, -0.0791, 0.1669, 1.7287, -0.0791, 0.1669, 1.7287, 0.0981, -0.1646, 1.7287, -0.0929, 0.1212, 1.7287, -0.0929, 0.1212, 1.7287, 0.0981, -0.1646, 1.7287, -0.0976, 0.0738, 1.7287, -0.0976, 0.0738, 1.7287, 0.0981, -0.1646, 1.7287, -0.0929, 0.0264, 1.7287, -0.0929, 0.0264, 1.7287, 0.0981, -0.1646, 1.7287, -0.0791, -0.0192, 1.7287, -0.0791, -0.0192, 1.7287, 0.0981, -0.1646, 1.7287, -0.0566, -0.0612, 1.7287, -0.0566, -0.0612, 1.7287, 0.0981, -0.1646, 1.7287, -0.0264, -0.0981, 1.7287, -0.0264, -0.0981, 1.7287, 0.0981, -0.1646, 1.7287, 0.0105, -0.1283, 1.7287, 0.0105, -0.1283, 1.7287, 0.0981, -0.1646, 1.7287, 0.0525, -0.1508, 1.7287, 0.2386, -0.1508, -1.8711, 0.2386, -0.1508, 1.7287, 0.193, -0.1646, 1.7287, 0.193, -0.1646, -1.8711, 0.2386, -0.1508, -1.8711, 0.193, -0.1646, 1.7287, 0.193, -0.1646, -1.8711, 0.193, -0.1646, 1.7287, 0.1455, -0.1693, 1.7287, 0.1455, -0.1693, -1.8711, 0.193, -0.1646, -1.8711, 0.1455, -0.1693, -1.8711, 0.0981, -0.1646, -1.8711, 0.1455, -0.1693, -1.8711, 0.0525, -0.1508, -1.8711, 0.0525, -0.1508, -1.8711, 0.1455, -0.1693, -1.8711, 0.0105, -0.1283, -1.8711, 0.0105, -0.1283, -1.8711, 0.1455, -0.1693, -1.8711, -0.0264, -0.0981, -1.8711, -0.0264, -0.0981, -1.8711, 0.1455, -0.1693, -1.8711, -0.0566, -0.0612, -1.8711, -0.0566, -0.0612, -1.8711, 0.1455, -0.1693, -1.8711, -0.0791, -0.0192, -1.8711, -0.0791, -0.0192, -1.8711, 0.1455, -0.1693, -1.8711, -0.0929, 0.0264, -1.8711, -0.0929, 0.0264, -1.8711, 0.1455, -0.1693, -1.8711, -0.0976, 0.0738, -1.8711, -0.0976, 0.0738, -1.8711, 0.1455, -0.1693, -1.8711, -0.0929, 0.1212, -1.8711, -0.0929, 0.1212, -1.8711, 0.1455, -0.1693, -1.8711, -0.0791, 0.1669, -1.8711, -0.0791, 0.1669, -1.8711, 0.1455, -0.1693, -1.8711, -0.0566, 0.2089, -1.8711, -0.0566, 0.2089, -1.8711, 0.1455, -0.1693, -1.8711, -0.0264, 0.2457, -1.8711, -0.0264, 0.2457, -1.8711, 0.1455, -0.1693, -1.8711, 0.0105, 0.276, -1.8711, 0.0105, 0.276, -1.8711, 0.1455, -0.1693, -1.8711, 0.0525, 0.2984, -1.8711, 0.0525, 0.2984, -1.8711, 0.1455, -0.1693, -1.8711, 0.0981, 0.3123, -1.8711, 0.0981, 0.3123, -1.8711, 0.1455, -0.1693, -1.8711, 0.1455, 0.3169, -1.8711, 0.1455, 0.3169, -1.8711, 0.1455, -0.1693, -1.8711, 0.193, 0.3123, -1.8711, 0.193, 0.3123, -1.8711, 0.1455, -0.1693, -1.8711, 0.2386, 0.2984, -1.8711, 0.2386, 0.2984, -1.8711, 0.1455, -0.1693, -1.8711, 0.2806, 0.276, -1.8711, 0.2806, 0.276, -1.8711, 0.1455, -0.1693, -1.8711, 0.3174, 0.2457, -1.8711, 0.3174, 0.2457, -1.8711, 0.1455, -0.1693, -1.8711, 0.3477, 0.2089, -1.8711, 0.3477, 0.2089, -1.8711, 0.1455, -0.1693, -1.8711, 0.3701, 0.1669, -1.8711, 0.3701, 0.1669, -1.8711, 0.1455, -0.1693, -1.8711, 0.384, 0.1212, -1.8711, 0.384, 0.1212, -1.8711, 0.1455, -0.1693, -1.8711, 0.3886, 0.0738, -1.8711, 0.3886, 0.0738, -1.8711, 0.1455, -0.1693, -1.8711, 0.384, 0.0264, -1.8711, 0.384, 0.0264, -1.8711, 0.1455, -0.1693, -1.8711, 0.3701, -0.0192, -1.8711, 0.3701, -0.0192, -1.8711, 0.1455, -0.1693, -1.8711, 0.3477, -0.0612, -1.8711, 0.3477, -0.0612, -1.8711, 0.1455, -0.1693, -1.8711, 0.3174, -0.0981, -1.8711, 0.3174, -0.0981, -1.8711, 0.1455, -0.1693, -1.8711, 0.2806, -0.1283, -1.8711, 0.2806, -0.1283, -1.8711, 0.1455, -0.1693, -1.8711, 0.2386, -0.1508, -1.8711, 0.2386, -0.1508, -1.8711, 0.1455, -0.1693, -1.8711, 0.193, -0.1646, 1.7287, 0.1455, -1.3311, -1.8711, 0.1455, -1.3311, 1.7287, 0.0981, -1.3265, 1.7287, 0.0981, -1.3265, -1.8711, 0.1455, -1.3311, -1.8711, 0.0981, -1.3265, 1.7287, 0.0981, -1.3265, -1.8711, 0.0981, -1.3265, 1.7287, 0.0525, -1.3126, 1.7287, 0.0525, -1.3126, -1.8711, 0.0981, -1.3265, -1.8711, 0.0525, -1.3126, 1.7287, 0.0525, -1.3126, -1.8711, 0.0525, -1.3126, 1.7287, 0.0105, -1.2902, 1.7287, 0.0105, -1.2902, -1.8711, 0.0525, -1.3126, -1.8711, 0.0105, -1.2902, 1.7287, 0.0105, -1.2902, -1.8711, 0.0105, -1.2902, 1.7287, -0.0264, -1.2599, 1.7287, -0.0264, -1.2599, -1.8711, 0.0105, -1.2902, -1.8711, -0.0264, -1.2599, 1.7287, -0.0264, -1.2599, -1.8711, -0.0264, -1.2599, 1.7287, -0.0566, -1.2231, 1.7287, -0.0566, -1.2231, -1.8711, -0.0264, -1.2599, -1.8711, -0.0566, -1.2231, 1.7287, -0.0566, -1.2231, -1.8711, -0.0566, -1.2231, 1.7287, -0.0791, -1.1811, 1.7287, -0.0791, -1.1811, -1.8711, -0.0566, -1.2231, -1.8711, -0.0791, -1.1811, 1.7287, -0.0791, -1.1811, -1.8711, -0.0791, -1.1811, 1.7287, -0.0929, -1.1355, 1.7287, -0.0929, -1.1355, -1.8711, -0.0791, -1.1811, -1.8711, -0.0929, -1.1355, 1.7287, -0.0929, -1.1355, -1.8711, -0.0929, -1.1355, 1.7287, -0.0976, -1.088, 1.7287, -0.0976, -1.088, -1.8711, -0.0929, -1.1355, -1.8711, -0.0976, -1.088, 1.7287, -0.0976, -1.088, -1.8711, -0.0976, -1.088, 1.7287, -0.0929, -1.0406, 1.7287, -0.0929, -1.0406, -1.8711, -0.0976, -1.088, -1.8711, -0.0929, -1.0406, 1.7287, -0.0929, -1.0406, -1.8711, -0.0929, -1.0406, 1.7287, -0.0791, -0.995, 1.7287, -0.0791, -0.995, -1.8711, -0.0929, -1.0406, -1.8711, -0.0791, -0.995, 1.7287, -0.0791, -0.995, -1.8711, -0.0791, -0.995, 1.7287, -0.0566, -0.953, 1.7287, -0.0566, -0.953, -1.8711, -0.0791, -0.995, -1.8711, -0.0566, -0.953, 1.7287, -0.0566, -0.953, -1.8711, -0.0566, -0.953, 1.7287, -0.0264, -0.9161, 1.7287, -0.0264, -0.9161, -1.8711, -0.0566, -0.953, -1.8711, -0.0264, -0.9161, 1.7287, -0.0264, -0.9161, -1.8711, -0.0264, -0.9161, 1.7287, 0.0105, -0.8859, 1.7287, 0.0105, -0.8859, -1.8711, -0.0264, -0.9161, -1.8711, 0.0105, -0.8859, 1.7287, 0.0105, -0.8859, -1.8711, 0.0105, -0.8859, 1.7287, 0.0525, -0.8634, 1.7287, 0.0525, -0.8634, -1.8711, 0.0105, -0.8859, -1.8711, 0.0525, -0.8634, 1.7287, 0.0525, -0.8634, -1.8711, 0.0525, -0.8634, 1.7287, 0.0981, -0.8496, 1.7287, 0.0981, -0.8496, -1.8711, 0.0525, -0.8634, -1.8711, 0.0981, -0.8496, 1.7287, 0.0981, -0.8496, -1.8711, 0.0981, -0.8496, 1.7287, 0.1455, -0.8449, 1.7287, 0.1455, -0.8449, -1.8711, 0.0981, -0.8496, -1.8711, 0.1455, -0.8449, 1.7287, 0.1455, -0.8449, -1.8711, 0.1455, -0.8449, 1.7287, 0.193, -0.8496, 1.7287, 0.193, -0.8496, -1.8711, 0.1455, -0.8449, -1.8711, 0.193, -0.8496, 1.7287, 0.193, -0.8496, -1.8711, 0.193, -0.8496, 1.7287, 0.2386, -0.8634, 1.7287, 0.2386, -0.8634, -1.8711, 0.193, -0.8496, -1.8711, 0.2386, -0.8634, 1.7287, 0.2386, -0.8634, -1.8711, 0.2386, -0.8634, 1.7287, 0.2806, -0.8859, 1.7287, 0.2806, -0.8859, -1.8711, 0.2386, -0.8634, -1.8711, 0.2806, -0.8859, 1.7287, 0.2806, -0.8859, -1.8711, 0.2806, -0.8859, 1.7287, 0.3174, -0.9161, 1.7287, 0.3174, -0.9161, -1.8711, 0.2806, -0.8859, -1.8711, 0.3174, -0.9161, 1.7287, 0.3174, -0.9161, -1.8711, 0.3174, -0.9161, 1.7287, 0.3477, -0.953, 1.7287, 0.3477, -0.953, -1.8711, 0.3174, -0.9161, -1.8711, 0.3477, -0.953, 1.7287, 0.3477, -0.953, -1.8711, 0.3477, -0.953, 1.7287, 0.3701, -0.995, 1.7287, 0.3701, -0.995, -1.8711, 0.3477, -0.953, -1.8711, 0.3701, -0.995, 1.7287, 0.3701, -0.995, -1.8711, 0.3701, -0.995, 1.7287, 0.384, -1.0406, 1.7287, 0.384, -1.0406, -1.8711, 0.3701, -0.995, -1.8711, 0.384, -1.0406, 1.7287, 0.384, -1.0406, -1.8711, 0.384, -1.0406, 1.7287, 0.3886, -1.088, 1.7287, 0.3886, -1.088, -1.8711, 0.384, -1.0406, -1.8711, 0.3886, -1.088, 1.7287, 0.3886, -1.088, -1.8711, 0.3886, -1.088, 1.7287, 0.384, -1.1355, 1.7287, 0.384, -1.1355, -1.8711, 0.3886, -1.088, -1.8711, 0.384, -1.1355, 1.7287, 0.384, -1.1355, -1.8711, 0.384, -1.1355, 1.7287, 0.3701, -1.1811, 1.7287, 0.3701, -1.1811, -1.8711, 0.384, -1.1355, -1.8711, 0.3701, -1.1811, 1.7287, 0.3701, -1.1811, -1.8711, 0.3701, -1.1811, 1.7287, 0.3477, -1.2231, 1.7287, 0.3477, -1.2231, -1.8711, 0.3701, -1.1811, -1.8711, 0.3477, -1.2231, 1.7287, 0.3477, -1.2231, -1.8711, 0.3477, -1.2231, 1.7287, 0.3174, -1.2599, 1.7287, 0.3174, -1.2599, -1.8711, 0.3477, -1.2231, -1.8711, 0.3174, -1.2599, 1.7287, 0.3174, -1.2599, -1.8711, 0.3174, -1.2599, 1.7287, 0.2806, -1.2902, 1.7287, 0.2806, -1.2902, -1.8711, 0.3174, -1.2599, -1.8711, 0.2806, -1.2902, 1.7287, 0.2806, -1.2902, -1.8711, 0.2806, -1.2902, 1.7287, 0.2386, -1.3126, 1.7287, 0.2386, -1.3126, -1.8711, 0.2806, -1.2902, -1.8711, 0.2386, -1.3126, 1.7287, 0.1455, -1.3311, 1.7287, 0.0981, -1.3265, 1.7287, 0.193, -1.3265, 1.7287, 0.193, -1.3265, 1.7287, 0.0981, -1.3265, 1.7287, 0.2386, -1.3126, 1.7287, 0.2386, -1.3126, 1.7287, 0.0981, -1.3265, 1.7287, 0.2806, -1.2902, 1.7287, 0.2806, -1.2902, 1.7287, 0.0981, -1.3265, 1.7287, 0.3174, -1.2599, 1.7287, 0.3174, -1.2599, 1.7287, 0.0981, -1.3265, 1.7287, 0.3477, -1.2231, 1.7287, 0.3477, -1.2231, 1.7287, 0.0981, -1.3265, 1.7287, 0.3701, -1.1811, 1.7287, 0.3701, -1.1811, 1.7287, 0.0981, -1.3265, 1.7287, 0.384, -1.1355, 1.7287, 0.384, -1.1355, 1.7287, 0.0981, -1.3265, 1.7287, 0.3886, -1.088, 1.7287, 0.3886, -1.088, 1.7287, 0.0981, -1.3265, 1.7287, 0.384, -1.0406, 1.7287, 0.384, -1.0406, 1.7287, 0.0981, -1.3265, 1.7287, 0.3701, -0.995, 1.7287, 0.3701, -0.995, 1.7287, 0.0981, -1.3265, 1.7287, 0.3477, -0.953, 1.7287, 0.3477, -0.953, 1.7287, 0.0981, -1.3265, 1.7287, 0.3174, -0.9161, 1.7287, 0.3174, -0.9161, 1.7287, 0.0981, -1.3265, 1.7287, 0.2806, -0.8859, 1.7287, 0.2806, -0.8859, 1.7287, 0.0981, -1.3265, 1.7287, 0.2386, -0.8634, 1.7287, 0.2386, -0.8634, 1.7287, 0.0981, -1.3265, 1.7287, 0.193, -0.8496, 1.7287, 0.193, -0.8496, 1.7287, 0.0981, -1.3265, 1.7287, 0.1455, -0.8449, 1.7287, 0.1455, -0.8449, 1.7287, 0.0981, -1.3265, 1.7287, 0.0981, -0.8496, 1.7287, 0.0981, -0.8496, 1.7287, 0.0981, -1.3265, 1.7287, 0.0525, -0.8634, 1.7287, 0.0525, -0.8634, 1.7287, 0.0981, -1.3265, 1.7287, 0.0105, -0.8859, 1.7287, 0.0105, -0.8859, 1.7287, 0.0981, -1.3265, 1.7287, -0.0264, -0.9161, 1.7287, -0.0264, -0.9161, 1.7287, 0.0981, -1.3265, 1.7287, -0.0566, -0.953, 1.7287, -0.0566, -0.953, 1.7287, 0.0981, -1.3265, 1.7287, -0.0791, -0.995, 1.7287, -0.0791, -0.995, 1.7287, 0.0981, -1.3265, 1.7287, -0.0929, -1.0406, 1.7287, -0.0929, -1.0406, 1.7287, 0.0981, -1.3265, 1.7287, -0.0976, -1.088, 1.7287, -0.0976, -1.088, 1.7287, 0.0981, -1.3265, 1.7287, -0.0929, -1.1355, 1.7287, -0.0929, -1.1355, 1.7287, 0.0981, -1.3265, 1.7287, -0.0791, -1.1811, 1.7287, -0.0791, -1.1811, 1.7287, 0.0981, -1.3265, 1.7287, -0.0566, -1.2231, 1.7287, -0.0566, -1.2231, 1.7287, 0.0981, -1.3265, 1.7287, -0.0264, -1.2599, 1.7287, -0.0264, -1.2599, 1.7287, 0.0981, -1.3265, 1.7287, 0.0105, -1.2902, 1.7287, 0.0105, -1.2902, 1.7287, 0.0981, -1.3265, 1.7287, 0.0525, -1.3126, 1.7287, 0.2386, -1.3126, -1.8711, 0.2386, -1.3126, 1.7287, 0.193, -1.3265, 1.7287, 0.193, -1.3265, -1.8711, 0.2386, -1.3126, -1.8711, 0.193, -1.3265, 1.7287, 0.193, -1.3265, -1.8711, 0.193, -1.3265, 1.7287, 0.1455, -1.3311, 1.7287, 0.1455, -1.3311, -1.8711, 0.193, -1.3265, -1.8711, 0.1455, -1.3311, -1.8711, 0.0981, -1.3265, -1.8711, 0.1455, -1.3311, -1.8711, 0.0525, -1.3126, -1.8711, 0.0525, -1.3126, -1.8711, 0.1455, -1.3311, -1.8711, 0.0105, -1.2902, -1.8711, 0.0105, -1.2902, -1.8711, 0.1455, -1.3311, -1.8711, -0.0264, -1.2599, -1.8711, -0.0264, -1.2599, -1.8711, 0.1455, -1.3311, -1.8711, -0.0566, -1.2231, -1.8711, -0.0566, -1.2231, -1.8711, 0.1455, -1.3311, -1.8711, -0.0791, -1.1811, -1.8711, -0.0791, -1.1811, -1.8711, 0.1455, -1.3311, -1.8711, -0.0929, -1.1355, -1.8711, -0.0929, -1.1355, -1.8711, 0.1455, -1.3311, -1.8711, -0.0976, -1.088, -1.8711, -0.0976, -1.088, -1.8711, 0.1455, -1.3311, -1.8711, -0.0929, -1.0406, -1.8711, -0.0929, -1.0406, -1.8711, 0.1455, -1.3311, -1.8711, -0.0791, -0.995, -1.8711, -0.0791, -0.995, -1.8711, 0.1455, -1.3311, -1.8711, -0.0566, -0.953, -1.8711, -0.0566, -0.953, -1.8711, 0.1455, -1.3311, -1.8711, -0.0264, -0.9161, -1.8711, -0.0264, -0.9161, -1.8711, 0.1455, -1.3311, -1.8711, 0.0105, -0.8859, -1.8711, 0.0105, -0.8859, -1.8711, 0.1455, -1.3311, -1.8711, 0.0525, -0.8634, -1.8711, 0.0525, -0.8634, -1.8711, 0.1455, -1.3311, -1.8711, 0.0981, -0.8496, -1.8711, 0.0981, -0.8496, -1.8711, 0.1455, -1.3311, -1.8711, 0.1455, -0.8449, -1.8711, 0.1455, -0.8449, -1.8711, 0.1455, -1.3311, -1.8711, 0.193, -0.8496, -1.8711, 0.193, -0.8496, -1.8711, 0.1455, -1.3311, -1.8711, 0.2386, -0.8634, -1.8711, 0.2386, -0.8634, -1.8711, 0.1455, -1.3311, -1.8711, 0.2806, -0.8859, -1.8711, 0.2806, -0.8859, -1.8711, 0.1455, -1.3311, -1.8711, 0.3174, -0.9161, -1.8711, 0.3174, -0.9161, -1.8711, 0.1455, -1.3311, -1.8711, 0.3477, -0.953, -1.8711, 0.3477, -0.953, -1.8711, 0.1455, -1.3311, -1.8711, 0.3701, -0.995, -1.8711, 0.3701, -0.995, -1.8711, 0.1455, -1.3311, -1.8711, 0.384, -1.0406, -1.8711, 0.384, -1.0406, -1.8711, 0.1455, -1.3311, -1.8711, 0.3886, -1.088, -1.8711, 0.3886, -1.088, -1.8711, 0.1455, -1.3311, -1.8711, 0.384, -1.1355, -1.8711, 0.384, -1.1355, -1.8711, 0.1455, -1.3311, -1.8711, 0.3701, -1.1811, -1.8711, 0.3701, -1.1811, -1.8711, 0.1455, -1.3311, -1.8711, 0.3477, -1.2231, -1.8711, 0.3477, -1.2231, -1.8711, 0.1455, -1.3311, -1.8711, 0.3174, -1.2599, -1.8711, 0.3174, -1.2599, -1.8711, 0.1455, -1.3311, -1.8711, 0.2806, -1.2902, -1.8711, 0.2806, -1.2902, -1.8711, 0.1455, -1.3311, -1.8711, 0.2386, -1.3126, -1.8711, 0.2386, -1.3126, -1.8711, 0.1455, -1.3311, -1.8711, 0.193, -1.3265, 1.7287, 0.1455, -2.493, -1.8711, 0.1455, -2.493, 1.7287, 0.0981, -2.4883, 1.7287, 0.0981, -2.4883, -1.8711, 0.1455, -2.493, -1.8711, 0.0981, -2.4883, 1.7287, 0.0981, -2.4883, -1.8711, 0.0981, -2.4883, 1.7287, 0.0525, -2.4745, 1.7287, 0.0525, -2.4745, -1.8711, 0.0981, -2.4883, -1.8711, 0.0525, -2.4745, 1.7287, 0.0525, -2.4745, -1.8711, 0.0525, -2.4745, 1.7287, 0.0105, -2.452, 1.7287, 0.0105, -2.452, -1.8711, 0.0525, -2.4745, -1.8711, 0.0105, -2.452, 1.7287, 0.0105, -2.452, -1.8711, 0.0105, -2.452, 1.7287, -0.0264, -2.4218, 1.7287, -0.0264, -2.4218, -1.8711, 0.0105, -2.452, -1.8711, -0.0264, -2.4218, 1.7287, -0.0264, -2.4218, -1.8711, -0.0264, -2.4218, 1.7287, -0.0566, -2.3849, 1.7287, -0.0566, -2.3849, -1.8711, -0.0264, -2.4218, -1.8711, -0.0566, -2.3849, 1.7287, -0.0566, -2.3849, -1.8711, -0.0566, -2.3849, 1.7287, -0.0791, -2.3429, 1.7287, -0.0791, -2.3429, -1.8711, -0.0566, -2.3849, -1.8711, -0.0791, -2.3429, 1.7287, -0.0791, -2.3429, -1.8711, -0.0791, -2.3429, 1.7287, -0.0929, -2.2973, 1.7287, -0.0929, -2.2973, -1.8711, -0.0791, -2.3429, -1.8711, -0.0929, -2.2973, 1.7287, -0.0929, -2.2973, -1.8711, -0.0929, -2.2973, 1.7287, -0.0976, -2.2499, 1.7287, -0.0976, -2.2499, -1.8711, -0.0929, -2.2973, -1.8711, -0.0976, -2.2499, 1.7287, -0.0976, -2.2499, -1.8711, -0.0976, -2.2499, 1.7287, -0.0929, -2.2025, 1.7287, -0.0929, -2.2025, -1.8711, -0.0976, -2.2499, -1.8711, -0.0929, -2.2025, 1.7287, -0.0929, -2.2025, -1.8711, -0.0929, -2.2025, 1.7287, -0.0791, -2.1569, 1.7287, -0.0791, -2.1569, -1.8711, -0.0929, -2.2025, -1.8711, -0.0791, -2.1569, 1.7287, -0.0791, -2.1569, -1.8711, -0.0791, -2.1569, 1.7287, -0.0566, -2.1148, 1.7287, -0.0566, -2.1148, -1.8711, -0.0791, -2.1569, -1.8711, -0.0566, -2.1148, 1.7287, -0.0566, -2.1148, -1.8711, -0.0566, -2.1148, 1.7287, -0.0264, -2.078, 1.7287, -0.0264, -2.078, -1.8711, -0.0566, -2.1148, -1.8711, -0.0264, -2.078, 1.7287, -0.0264, -2.078, -1.8711, -0.0264, -2.078, 1.7287, 0.0105, -2.0477, 1.7287, 0.0105, -2.0477, -1.8711, -0.0264, -2.078, -1.8711, 0.0105, -2.0477, 1.7287, 0.0105, -2.0477, -1.8711, 0.0105, -2.0477, 1.7287, 0.0525, -2.0253, 1.7287, 0.0525, -2.0253, -1.8711, 0.0105, -2.0477, -1.8711, 0.0525, -2.0253, 1.7287, 0.0525, -2.0253, -1.8711, 0.0525, -2.0253, 1.7287, 0.0981, -2.0114, 1.7287, 0.0981, -2.0114, -1.8711, 0.0525, -2.0253, -1.8711, 0.0981, -2.0114, 1.7287, 0.0981, -2.0114, -1.8711, 0.0981, -2.0114, 1.7287, 0.1455, -2.0068, 1.7287, 0.1455, -2.0068, -1.8711, 0.0981, -2.0114, -1.8711, 0.1455, -2.0068, 1.7287, 0.1455, -2.0068, -1.8711, 0.1455, -2.0068, 1.7287, 0.193, -2.0114, 1.7287, 0.193, -2.0114, -1.8711, 0.1455, -2.0068, -1.8711, 0.193, -2.0114, 1.7287, 0.193, -2.0114, -1.8711, 0.193, -2.0114, 1.7287, 0.2386, -2.0253, 1.7287, 0.2386, -2.0253, -1.8711, 0.193, -2.0114, -1.8711, 0.2386, -2.0253, 1.7287, 0.2386, -2.0253, -1.8711, 0.2386, -2.0253, 1.7287, 0.2806, -2.0477, 1.7287, 0.2806, -2.0477, -1.8711, 0.2386, -2.0253, -1.8711, 0.2806, -2.0477, 1.7287, 0.2806, -2.0477, -1.8711, 0.2806, -2.0477, 1.7287, 0.3174, -2.078, 1.7287, 0.3174, -2.078, -1.8711, 0.2806, -2.0477, -1.8711, 0.3174, -2.078, 1.7287, 0.3174, -2.078, -1.8711, 0.3174, -2.078, 1.7287, 0.3477, -2.1148, 1.7287, 0.3477, -2.1148, -1.8711, 0.3174, -2.078, -1.8711, 0.3477, -2.1148, 1.7287, 0.3477, -2.1148, -1.8711, 0.3477, -2.1148, 1.7287, 0.3701, -2.1569, 1.7287, 0.3701, -2.1569, -1.8711, 0.3477, -2.1148, -1.8711, 0.3701, -2.1569, 1.7287, 0.3701, -2.1569, -1.8711, 0.3701, -2.1569, 1.7287, 0.384, -2.2025, 1.7287, 0.384, -2.2025, -1.8711, 0.3701, -2.1569, -1.8711, 0.384, -2.2025, 1.7287, 0.384, -2.2025, -1.8711, 0.384, -2.2025, 1.7287, 0.3886, -2.2499, 1.7287, 0.3886, -2.2499, -1.8711, 0.384, -2.2025, -1.8711, 0.3886, -2.2499, 1.7287, 0.3886, -2.2499, -1.8711, 0.3886, -2.2499, 1.7287, 0.384, -2.2973, 1.7287, 0.384, -2.2973, -1.8711, 0.3886, -2.2499, -1.8711, 0.384, -2.2973, 1.7287, 0.384, -2.2973, -1.8711, 0.384, -2.2973, 1.7287, 0.3701, -2.3429, 1.7287, 0.3701, -2.3429, -1.8711, 0.384, -2.2973, -1.8711, 0.3701, -2.3429, 1.7287, 0.3701, -2.3429, -1.8711, 0.3701, -2.3429, 1.7287, 0.3477, -2.3849, 1.7287, 0.3477, -2.3849, -1.8711, 0.3701, -2.3429, -1.8711, 0.3477, -2.3849, 1.7287, 0.3477, -2.3849, -1.8711, 0.3477, -2.3849, 1.7287, 0.3174, -2.4218, 1.7287, 0.3174, -2.4218, -1.8711, 0.3477, -2.3849, -1.8711, 0.3174, -2.4218, 1.7287, 0.3174, -2.4218, -1.8711, 0.3174, -2.4218, 1.7287, 0.2806, -2.452, 1.7287, 0.2806, -2.452, -1.8711, 0.3174, -2.4218, -1.8711, 0.2806, -2.452, 1.7287, 0.2806, -2.452, -1.8711, 0.2806, -2.452, 1.7287, 0.2386, -2.4745, 1.7287, 0.2386, -2.4745, -1.8711, 0.2806, -2.452, -1.8711, 0.2386, -2.4745, 1.7287, 0.1455, -2.493, 1.7287, 0.0981, -2.4883, 1.7287, 0.193, -2.4883, 1.7287, 0.193, -2.4883, 1.7287, 0.0981, -2.4883, 1.7287, 0.2386, -2.4745, 1.7287, 0.2386, -2.4745, 1.7287, 0.0981, -2.4883, 1.7287, 0.2806, -2.452, 1.7287, 0.2806, -2.452, 1.7287, 0.0981, -2.4883, 1.7287, 0.3174, -2.4218, 1.7287, 0.3174, -2.4218, 1.7287, 0.0981, -2.4883, 1.7287, 0.3477, -2.3849, 1.7287, 0.3477, -2.3849, 1.7287, 0.0981, -2.4883, 1.7287, 0.3701, -2.3429, 1.7287, 0.3701, -2.3429, 1.7287, 0.0981, -2.4883, 1.7287, 0.384, -2.2973, 1.7287, 0.384, -2.2973, 1.7287, 0.0981, -2.4883, 1.7287, 0.3886, -2.2499, 1.7287, 0.3886, -2.2499, 1.7287, 0.0981, -2.4883, 1.7287, 0.384, -2.2025, 1.7287, 0.384, -2.2025, 1.7287, 0.0981, -2.4883, 1.7287, 0.3701, -2.1569, 1.7287, 0.3701, -2.1569, 1.7287, 0.0981, -2.4883, 1.7287, 0.3477, -2.1148, 1.7287, 0.3477, -2.1148, 1.7287, 0.0981, -2.4883, 1.7287, 0.3174, -2.078, 1.7287, 0.3174, -2.078, 1.7287, 0.0981, -2.4883, 1.7287, 0.2806, -2.0477, 1.7287, 0.2806, -2.0477, 1.7287, 0.0981, -2.4883, 1.7287, 0.2386, -2.0253, 1.7287, 0.2386, -2.0253, 1.7287, 0.0981, -2.4883, 1.7287, 0.193, -2.0114, 1.7287, 0.193, -2.0114, 1.7287, 0.0981, -2.4883, 1.7287, 0.1455, -2.0068, 1.7287, 0.1455, -2.0068, 1.7287, 0.0981, -2.4883, 1.7287, 0.0981, -2.0114, 1.7287, 0.0981, -2.0114, 1.7287, 0.0981, -2.4883, 1.7287, 0.0525, -2.0253, 1.7287, 0.0525, -2.0253, 1.7287, 0.0981, -2.4883, 1.7287, 0.0105, -2.0477, 1.7287, 0.0105, -2.0477, 1.7287, 0.0981, -2.4883, 1.7287, -0.0264, -2.078, 1.7287, -0.0264, -2.078, 1.7287, 0.0981, -2.4883, 1.7287, -0.0566, -2.1148, 1.7287, -0.0566, -2.1148, 1.7287, 0.0981, -2.4883, 1.7287, -0.0791, -2.1569, 1.7287, -0.0791, -2.1569, 1.7287, 0.0981, -2.4883, 1.7287, -0.0929, -2.2025, 1.7287, -0.0929, -2.2025, 1.7287, 0.0981, -2.4883, 1.7287, -0.0976, -2.2499, 1.7287, -0.0976, -2.2499, 1.7287, 0.0981, -2.4883, 1.7287, -0.0929, -2.2973, 1.7287, -0.0929, -2.2973, 1.7287, 0.0981, -2.4883, 1.7287, -0.0791, -2.3429, 1.7287, -0.0791, -2.3429, 1.7287, 0.0981, -2.4883, 1.7287, -0.0566, -2.3849, 1.7287, -0.0566, -2.3849, 1.7287, 0.0981, -2.4883, 1.7287, -0.0264, -2.4218, 1.7287, -0.0264, -2.4218, 1.7287, 0.0981, -2.4883, 1.7287, 0.0105, -2.452, 1.7287, 0.0105, -2.452, 1.7287, 0.0981, -2.4883, 1.7287, 0.0525, -2.4745, 1.7287, 0.2386, -2.4745, -1.8711, 0.2386, -2.4745, 1.7287, 0.193, -2.4883, 1.7287, 0.193, -2.4883, -1.8711, 0.2386, -2.4745, -1.8711, 0.193, -2.4883, 1.7287, 0.193, -2.4883, -1.8711, 0.193, -2.4883, 1.7287, 0.1455, -2.493, 1.7287, 0.1455, -2.493, -1.8711, 0.193, -2.4883, -1.8711, 0.1455, -2.493, -1.8711, 0.0981, -2.4883, -1.8711, 0.1455, -2.493, -1.8711, 0.0525, -2.4745, -1.8711, 0.0525, -2.4745, -1.8711, 0.1455, -2.493, -1.8711, 0.0105, -2.452, -1.8711, 0.0105, -2.452, -1.8711, 0.1455, -2.493, -1.8711, -0.0264, -2.4218, -1.8711, -0.0264, -2.4218, -1.8711, 0.1455, -2.493, -1.8711, -0.0566, -2.3849, -1.8711, -0.0566, -2.3849, -1.8711, 0.1455, -2.493, -1.8711, -0.0791, -2.3429, -1.8711, -0.0791, -2.3429, -1.8711, 0.1455, -2.493, -1.8711, -0.0929, -2.2973, -1.8711, -0.0929, -2.2973, -1.8711, 0.1455, -2.493, -1.8711, -0.0976, -2.2499, -1.8711, -0.0976, -2.2499, -1.8711, 0.1455, -2.493, -1.8711, -0.0929, -2.2025, -1.8711, -0.0929, -2.2025, -1.8711, 0.1455, -2.493, -1.8711, -0.0791, -2.1569, -1.8711, -0.0791, -2.1569, -1.8711, 0.1455, -2.493, -1.8711, -0.0566, -2.1148, -1.8711, -0.0566, -2.1148, -1.8711, 0.1455, -2.493, -1.8711, -0.0264, -2.078, -1.8711, -0.0264, -2.078, -1.8711, 0.1455, -2.493, -1.8711, 0.0105, -2.0477, -1.8711, 0.0105, -2.0477, -1.8711, 0.1455, -2.493, -1.8711, 0.0525, -2.0253, -1.8711, 0.0525, -2.0253, -1.8711, 0.1455, -2.493, -1.8711, 0.0981, -2.0114, -1.8711, 0.0981, -2.0114, -1.8711, 0.1455, -2.493, -1.8711, 0.1455, -2.0068, -1.8711, 0.1455, -2.0068, -1.8711, 0.1455, -2.493, -1.8711, 0.193, -2.0114, -1.8711, 0.193, -2.0114, -1.8711, 0.1455, -2.493, -1.8711, 0.2386, -2.0253, -1.8711, 0.2386, -2.0253, -1.8711, 0.1455, -2.493, -1.8711, 0.2806, -2.0477, -1.8711, 0.2806, -2.0477, -1.8711, 0.1455, -2.493, -1.8711, 0.3174, -2.078, -1.8711, 0.3174, -2.078, -1.8711, 0.1455, -2.493, -1.8711, 0.3477, -2.1148, -1.8711, 0.3477, -2.1148, -1.8711, 0.1455, -2.493, -1.8711, 0.3701, -2.1569, -1.8711, 0.3701, -2.1569, -1.8711, 0.1455, -2.493, -1.8711, 0.384, -2.2025, -1.8711, 0.384, -2.2025, -1.8711, 0.1455, -2.493, -1.8711, 0.3886, -2.2499, -1.8711, 0.3886, -2.2499, -1.8711, 0.1455, -2.493, -1.8711, 0.384, -2.2973, -1.8711, 0.384, -2.2973, -1.8711, 0.1455, -2.493, -1.8711, 0.3701, -2.3429, -1.8711, 0.3701, -2.3429, -1.8711, 0.1455, -2.493, -1.8711, 0.3477, -2.3849, -1.8711, 0.3477, -2.3849, -1.8711, 0.1455, -2.493, -1.8711, 0.3174, -2.4218, -1.8711, 0.3174, -2.4218, -1.8711, 0.1455, -2.493, -1.8711, 0.2806, -2.452, -1.8711, 0.2806, -2.452, -1.8711, 0.1455, -2.493, -1.8711, 0.2386, -2.4745, -1.8711, 0.2386, -2.4745, -1.8711, 0.1455, -2.493, -1.8711, 0.193, -2.4883, 1.7287, 1.3074, -1.9121, -1.8711, 1.3074, -1.9121, 1.7287, 1.26, -1.9074, 1.7287, 1.26, -1.9074, -1.8711, 1.3074, -1.9121, -1.8711, 1.26, -1.9074, 1.7287, 1.26, -1.9074, -1.8711, 1.26, -1.9074, 1.7287, 1.2144, -1.8936, 1.7287, 1.2144, -1.8936, -1.8711, 1.26, -1.9074, -1.8711, 1.2144, -1.8936, 1.7287, 1.2144, -1.8936, -1.8711, 1.2144, -1.8936, 1.7287, 1.1723, -1.8711, 1.7287, 1.1723, -1.8711, -1.8711, 1.2144, -1.8936, -1.8711, 1.1723, -1.8711, 1.7287, 1.1723, -1.8711, -1.8711, 1.1723, -1.8711, 1.7287, 1.1355, -1.8409, 1.7287, 1.1355, -1.8409, -1.8711, 1.1723, -1.8711, -1.8711, 1.1355, -1.8409, 1.7287, 1.1355, -1.8409, -1.8711, 1.1355, -1.8409, 1.7287, 1.1053, -1.804, 1.7287, 1.1053, -1.804, -1.8711, 1.1355, -1.8409, -1.8711, 1.1053, -1.804, 1.7287, 1.1053, -1.804, -1.8711, 1.1053, -1.804, 1.7287, 1.0828, -1.762, 1.7287, 1.0828, -1.762, -1.8711, 1.1053, -1.804, -1.8711, 1.0828, -1.762, 1.7287, 1.0828, -1.762, -1.8711, 1.0828, -1.762, 1.7287, 1.069, -1.7164, 1.7287, 1.069, -1.7164, -1.8711, 1.0828, -1.762, -1.8711, 1.069, -1.7164, 1.7287, 1.069, -1.7164, -1.8711, 1.069, -1.7164, 1.7287, 1.0643, -1.669, 1.7287, 1.0643, -1.669, -1.8711, 1.069, -1.7164, -1.8711, 1.0643, -1.669, 1.7287, 1.0643, -1.669, -1.8711, 1.0643, -1.669, 1.7287, 1.069, -1.6215, 1.7287, 1.069, -1.6215, -1.8711, 1.0643, -1.669, -1.8711, 1.069, -1.6215, 1.7287, 1.069, -1.6215, -1.8711, 1.069, -1.6215, 1.7287, 1.0828, -1.5759, 1.7287, 1.0828, -1.5759, -1.8711, 1.069, -1.6215, -1.8711, 1.0828, -1.5759, 1.7287, 1.0828, -1.5759, -1.8711, 1.0828, -1.5759, 1.7287, 1.1053, -1.5339, 1.7287, 1.1053, -1.5339, -1.8711, 1.0828, -1.5759, -1.8711, 1.1053, -1.5339, 1.7287, 1.1053, -1.5339, -1.8711, 1.1053, -1.5339, 1.7287, 1.1355, -1.4971, 1.7287, 1.1355, -1.4971, -1.8711, 1.1053, -1.5339, -1.8711, 1.1355, -1.4971, 1.7287, 1.1355, -1.4971, -1.8711, 1.1355, -1.4971, 1.7287, 1.1723, -1.4668, 1.7287, 1.1723, -1.4668, -1.8711, 1.1355, -1.4971, -1.8711, 1.1723, -1.4668, 1.7287, 1.1723, -1.4668, -1.8711, 1.1723, -1.4668, 1.7287, 1.2144, -1.4444, 1.7287, 1.2144, -1.4444, -1.8711, 1.1723, -1.4668, -1.8711, 1.2144, -1.4444, 1.7287, 1.2144, -1.4444, -1.8711, 1.2144, -1.4444, 1.7287, 1.26, -1.4305, 1.7287, 1.26, -1.4305, -1.8711, 1.2144, -1.4444, -1.8711, 1.26, -1.4305, 1.7287, 1.26, -1.4305, -1.8711, 1.26, -1.4305, 1.7287, 1.3074, -1.4258, 1.7287, 1.3074, -1.4258, -1.8711, 1.26, -1.4305, -1.8711, 1.3074, -1.4258, 1.7287, 1.3074, -1.4258, -1.8711, 1.3074, -1.4258, 1.7287, 1.3548, -1.4305, 1.7287, 1.3548, -1.4305, -1.8711, 1.3074, -1.4258, -1.8711, 1.3548, -1.4305, 1.7287, 1.3548, -1.4305, -1.8711, 1.3548, -1.4305, 1.7287, 1.4004, -1.4444, 1.7287, 1.4004, -1.4444, -1.8711, 1.3548, -1.4305, -1.8711, 1.4004, -1.4444, 1.7287, 1.4004, -1.4444, -1.8711, 1.4004, -1.4444, 1.7287, 1.4425, -1.4668, 1.7287, 1.4425, -1.4668, -1.8711, 1.4004, -1.4444, -1.8711, 1.4425, -1.4668, 1.7287, 1.4425, -1.4668, -1.8711, 1.4425, -1.4668, 1.7287, 1.4793, -1.4971, 1.7287, 1.4793, -1.4971, -1.8711, 1.4425, -1.4668, -1.8711, 1.4793, -1.4971, 1.7287, 1.4793, -1.4971, -1.8711, 1.4793, -1.4971, 1.7287, 1.5095, -1.5339, 1.7287, 1.5095, -1.5339, -1.8711, 1.4793, -1.4971, -1.8711, 1.5095, -1.5339, 1.7287, 1.5095, -1.5339, -1.8711, 1.5095, -1.5339, 1.7287, 1.532, -1.5759, 1.7287, 1.532, -1.5759, -1.8711, 1.5095, -1.5339, -1.8711, 1.532, -1.5759, 1.7287, 1.532, -1.5759, -1.8711, 1.532, -1.5759, 1.7287, 1.5458, -1.6215, 1.7287, 1.5458, -1.6215, -1.8711, 1.532, -1.5759, -1.8711, 1.5458, -1.6215, 1.7287, 1.5458, -1.6215, -1.8711, 1.5458, -1.6215, 1.7287, 1.5505, -1.669, 1.7287, 1.5505, -1.669, -1.8711, 1.5458, -1.6215, -1.8711, 1.5505, -1.669, 1.7287, 1.5505, -1.669, -1.8711, 1.5505, -1.669, 1.7287, 1.5458, -1.7164, 1.7287, 1.5458, -1.7164, -1.8711, 1.5505, -1.669, -1.8711, 1.5458, -1.7164, 1.7287, 1.5458, -1.7164, -1.8711, 1.5458, -1.7164, 1.7287, 1.532, -1.762, 1.7287, 1.532, -1.762, -1.8711, 1.5458, -1.7164, -1.8711, 1.532, -1.762, 1.7287, 1.532, -1.762, -1.8711, 1.532, -1.762, 1.7287, 1.5095, -1.804, 1.7287, 1.5095, -1.804, -1.8711, 1.532, -1.762, -1.8711, 1.5095, -1.804, 1.7287, 1.5095, -1.804, -1.8711, 1.5095, -1.804, 1.7287, 1.4793, -1.8409, 1.7287, 1.4793, -1.8409, -1.8711, 1.5095, -1.804, -1.8711, 1.4793, -1.8409, 1.7287, 1.4793, -1.8409, -1.8711, 1.4793, -1.8409, 1.7287, 1.4425, -1.8711, 1.7287, 1.4425, -1.8711, -1.8711, 1.4793, -1.8409, -1.8711, 1.4425, -1.8711, 1.7287, 1.4425, -1.8711, -1.8711, 1.4425, -1.8711, 1.7287, 1.4004, -1.8936, 1.7287, 1.4004, -1.8936, -1.8711, 1.4425, -1.8711, -1.8711, 1.4004, -1.8936, 1.7287, 1.3074, -1.9121, 1.7287, 1.26, -1.9074, 1.7287, 1.3548, -1.9074, 1.7287, 1.3548, -1.9074, 1.7287, 1.26, -1.9074, 1.7287, 1.4004, -1.8936, 1.7287, 1.4004, -1.8936, 1.7287, 1.26, -1.9074, 1.7287, 1.4425, -1.8711, 1.7287, 1.4425, -1.8711, 1.7287, 1.26, -1.9074, 1.7287, 1.4793, -1.8409, 1.7287, 1.4793, -1.8409, 1.7287, 1.26, -1.9074, 1.7287, 1.5095, -1.804, 1.7287, 1.5095, -1.804, 1.7287, 1.26, -1.9074, 1.7287, 1.532, -1.762, 1.7287, 1.532, -1.762, 1.7287, 1.26, -1.9074, 1.7287, 1.5458, -1.7164, 1.7287, 1.5458, -1.7164, 1.7287, 1.26, -1.9074, 1.7287, 1.5505, -1.669, 1.7287, 1.5505, -1.669, 1.7287, 1.26, -1.9074, 1.7287, 1.5458, -1.6215, 1.7287, 1.5458, -1.6215, 1.7287, 1.26, -1.9074, 1.7287, 1.532, -1.5759, 1.7287, 1.532, -1.5759, 1.7287, 1.26, -1.9074, 1.7287, 1.5095, -1.5339, 1.7287, 1.5095, -1.5339, 1.7287, 1.26, -1.9074, 1.7287, 1.4793, -1.4971, 1.7287, 1.4793, -1.4971, 1.7287, 1.26, -1.9074, 1.7287, 1.4425, -1.4668, 1.7287, 1.4425, -1.4668, 1.7287, 1.26, -1.9074, 1.7287, 1.4004, -1.4444, 1.7287, 1.4004, -1.4444, 1.7287, 1.26, -1.9074, 1.7287, 1.3548, -1.4305, 1.7287, 1.3548, -1.4305, 1.7287, 1.26, -1.9074, 1.7287, 1.3074, -1.4258, 1.7287, 1.3074, -1.4258, 1.7287, 1.26, -1.9074, 1.7287, 1.26, -1.4305, 1.7287, 1.26, -1.4305, 1.7287, 1.26, -1.9074, 1.7287, 1.2144, -1.4444, 1.7287, 1.2144, -1.4444, 1.7287, 1.26, -1.9074, 1.7287, 1.1723, -1.4668, 1.7287, 1.1723, -1.4668, 1.7287, 1.26, -1.9074, 1.7287, 1.1355, -1.4971, 1.7287, 1.1355, -1.4971, 1.7287, 1.26, -1.9074, 1.7287, 1.1053, -1.5339, 1.7287, 1.1053, -1.5339, 1.7287, 1.26, -1.9074, 1.7287, 1.0828, -1.5759, 1.7287, 1.0828, -1.5759, 1.7287, 1.26, -1.9074, 1.7287, 1.069, -1.6215, 1.7287, 1.069, -1.6215, 1.7287, 1.26, -1.9074, 1.7287, 1.0643, -1.669, 1.7287, 1.0643, -1.669, 1.7287, 1.26, -1.9074, 1.7287, 1.069, -1.7164, 1.7287, 1.069, -1.7164, 1.7287, 1.26, -1.9074, 1.7287, 1.0828, -1.762, 1.7287, 1.0828, -1.762, 1.7287, 1.26, -1.9074, 1.7287, 1.1053, -1.804, 1.7287, 1.1053, -1.804, 1.7287, 1.26, -1.9074, 1.7287, 1.1355, -1.8409, 1.7287, 1.1355, -1.8409, 1.7287, 1.26, -1.9074, 1.7287, 1.1723, -1.8711, 1.7287, 1.1723, -1.8711, 1.7287, 1.26, -1.9074, 1.7287, 1.2144, -1.8936, 1.7287, 1.4004, -1.8936, -1.8711, 1.4004, -1.8936, 1.7287, 1.3548, -1.9074, 1.7287, 1.3548, -1.9074, -1.8711, 1.4004, -1.8936, -1.8711, 1.3548, -1.9074, 1.7287, 1.3548, -1.9074, -1.8711, 1.3548, -1.9074, 1.7287, 1.3074, -1.9121, 1.7287, 1.3074, -1.9121, -1.8711, 1.3548, -1.9074, -1.8711, 1.3074, -1.9121, -1.8711, 1.26, -1.9074, -1.8711, 1.3074, -1.9121, -1.8711, 1.2144, -1.8936, -1.8711, 1.2144, -1.8936, -1.8711, 1.3074, -1.9121, -1.8711, 1.1723, -1.8711, -1.8711, 1.1723, -1.8711, -1.8711, 1.3074, -1.9121, -1.8711, 1.1355, -1.8409, -1.8711, 1.1355, -1.8409, -1.8711, 1.3074, -1.9121, -1.8711, 1.1053, -1.804, -1.8711, 1.1053, -1.804, -1.8711, 1.3074, -1.9121, -1.8711, 1.0828, -1.762, -1.8711, 1.0828, -1.762, -1.8711, 1.3074, -1.9121, -1.8711, 1.069, -1.7164, -1.8711, 1.069, -1.7164, -1.8711, 1.3074, -1.9121, -1.8711, 1.0643, -1.669, -1.8711, 1.0643, -1.669, -1.8711, 1.3074, -1.9121, -1.8711, 1.069, -1.6215, -1.8711, 1.069, -1.6215, -1.8711, 1.3074, -1.9121, -1.8711, 1.0828, -1.5759, -1.8711, 1.0828, -1.5759, -1.8711, 1.3074, -1.9121, -1.8711, 1.1053, -1.5339, -1.8711, 1.1053, -1.5339, -1.8711, 1.3074, -1.9121, -1.8711, 1.1355, -1.4971, -1.8711, 1.1355, -1.4971, -1.8711, 1.3074, -1.9121, -1.8711, 1.1723, -1.4668, -1.8711, 1.1723, -1.4668, -1.8711, 1.3074, -1.9121, -1.8711, 1.2144, -1.4444, -1.8711, 1.2144, -1.4444, -1.8711, 1.3074, -1.9121, -1.8711, 1.26, -1.4305, -1.8711, 1.26, -1.4305, -1.8711, 1.3074, -1.9121, -1.8711, 1.3074, -1.4258, -1.8711, 1.3074, -1.4258, -1.8711, 1.3074, -1.9121, -1.8711, 1.3548, -1.4305, -1.8711, 1.3548, -1.4305, -1.8711, 1.3074, -1.9121, -1.8711, 1.4004, -1.4444, -1.8711, 1.4004, -1.4444, -1.8711, 1.3074, -1.9121, -1.8711, 1.4425, -1.4668, -1.8711, 1.4425, -1.4668, -1.8711, 1.3074, -1.9121, -1.8711, 1.4793, -1.4971, -1.8711, 1.4793, -1.4971, -1.8711, 1.3074, -1.9121, -1.8711, 1.5095, -1.5339, -1.8711, 1.5095, -1.5339, -1.8711, 1.3074, -1.9121, -1.8711, 1.532, -1.5759, -1.8711, 1.532, -1.5759, -1.8711, 1.3074, -1.9121, -1.8711, 1.5458, -1.6215, -1.8711, 1.5458, -1.6215, -1.8711, 1.3074, -1.9121, -1.8711, 1.5505, -1.669, -1.8711, 1.5505, -1.669, -1.8711, 1.3074, -1.9121, -1.8711, 1.5458, -1.7164, -1.8711, 1.5458, -1.7164, -1.8711, 1.3074, -1.9121, -1.8711, 1.532, -1.762, -1.8711, 1.532, -1.762, -1.8711, 1.3074, -1.9121, -1.8711, 1.5095, -1.804, -1.8711, 1.5095, -1.804, -1.8711, 1.3074, -1.9121, -1.8711, 1.4793, -1.8409, -1.8711, 1.4793, -1.8409, -1.8711, 1.3074, -1.9121, -1.8711, 1.4425, -1.8711, -1.8711, 1.4425, -1.8711, -1.8711, 1.3074, -1.9121, -1.8711, 1.4004, -1.8936, -1.8711, 1.4004, -1.8936, -1.8711, 1.3074, -1.9121, -1.8711, 1.3548, -1.9074, 1.7287, 1.3074, -0.7502, -1.8711, 1.3074, -0.7502, 1.7287, 1.26, -0.7455, 1.7287, 1.26, -0.7455, -1.8711, 1.3074, -0.7502, -1.8711, 1.26, -0.7455, 1.7287, 1.26, -0.7455, -1.8711, 1.26, -0.7455, 1.7287, 1.2144, -0.7317, 1.7287, 1.2144, -0.7317, -1.8711, 1.26, -0.7455, -1.8711, 1.2144, -0.7317, 1.7287, 1.2144, -0.7317, -1.8711, 1.2144, -0.7317, 1.7287, 1.1723, -0.7092, 1.7287, 1.1723, -0.7092, -1.8711, 1.2144, -0.7317, -1.8711, 1.1723, -0.7092, 1.7287, 1.1723, -0.7092, -1.8711, 1.1723, -0.7092, 1.7287, 1.1355, -0.679, 1.7287, 1.1355, -0.679, -1.8711, 1.1723, -0.7092, -1.8711, 1.1355, -0.679, 1.7287, 1.1355, -0.679, -1.8711, 1.1355, -0.679, 1.7287, 1.1053, -0.6422, 1.7287, 1.1053, -0.6422, -1.8711, 1.1355, -0.679, -1.8711, 1.1053, -0.6422, 1.7287, 1.1053, -0.6422, -1.8711, 1.1053, -0.6422, 1.7287, 1.0828, -0.6001, 1.7287, 1.0828, -0.6001, -1.8711, 1.1053, -0.6422, -1.8711, 1.0828, -0.6001, 1.7287, 1.0828, -0.6001, -1.8711, 1.0828, -0.6001, 1.7287, 1.069, -0.5545, 1.7287, 1.069, -0.5545, -1.8711, 1.0828, -0.6001, -1.8711, 1.069, -0.5545, 1.7287, 1.069, -0.5545, -1.8711, 1.069, -0.5545, 1.7287, 1.0643, -0.5071, 1.7287, 1.0643, -0.5071, -1.8711, 1.069, -0.5545, -1.8711, 1.0643, -0.5071, 1.7287, 1.0643, -0.5071, -1.8711, 1.0643, -0.5071, 1.7287, 1.069, -0.4597, 1.7287, 1.069, -0.4597, -1.8711, 1.0643, -0.5071, -1.8711, 1.069, -0.4597, 1.7287, 1.069, -0.4597, -1.8711, 1.069, -0.4597, 1.7287, 1.0828, -0.4141, 1.7287, 1.0828, -0.4141, -1.8711, 1.069, -0.4597, -1.8711, 1.0828, -0.4141, 1.7287, 1.0828, -0.4141, -1.8711, 1.0828, -0.4141, 1.7287, 1.1053, -0.372, 1.7287, 1.1053, -0.372, -1.8711, 1.0828, -0.4141, -1.8711, 1.1053, -0.372, 1.7287, 1.1053, -0.372, -1.8711, 1.1053, -0.372, 1.7287, 1.1355, -0.3352, 1.7287, 1.1355, -0.3352, -1.8711, 1.1053, -0.372, -1.8711, 1.1355, -0.3352, 1.7287, 1.1355, -0.3352, -1.8711, 1.1355, -0.3352, 1.7287, 1.1723, -0.305, 1.7287, 1.1723, -0.305, -1.8711, 1.1355, -0.3352, -1.8711, 1.1723, -0.305, 1.7287, 1.1723, -0.305, -1.8711, 1.1723, -0.305, 1.7287, 1.2144, -0.2825, 1.7287, 1.2144, -0.2825, -1.8711, 1.1723, -0.305, -1.8711, 1.2144, -0.2825, 1.7287, 1.2144, -0.2825, -1.8711, 1.2144, -0.2825, 1.7287, 1.26, -0.2687, 1.7287, 1.26, -0.2687, -1.8711, 1.2144, -0.2825, -1.8711, 1.26, -0.2687, 1.7287, 1.26, -0.2687, -1.8711, 1.26, -0.2687, 1.7287, 1.3074, -0.264, 1.7287, 1.3074, -0.264, -1.8711, 1.26, -0.2687, -1.8711, 1.3074, -0.264, 1.7287, 1.3074, -0.264, -1.8711, 1.3074, -0.264, 1.7287, 1.3548, -0.2687, 1.7287, 1.3548, -0.2687, -1.8711, 1.3074, -0.264, -1.8711, 1.3548, -0.2687, 1.7287, 1.3548, -0.2687, -1.8711, 1.3548, -0.2687, 1.7287, 1.4004, -0.2825, 1.7287, 1.4004, -0.2825, -1.8711, 1.3548, -0.2687, -1.8711, 1.4004, -0.2825, 1.7287, 1.4004, -0.2825, -1.8711, 1.4004, -0.2825, 1.7287, 1.4425, -0.305, 1.7287, 1.4425, -0.305, -1.8711, 1.4004, -0.2825, -1.8711, 1.4425, -0.305, 1.7287, 1.4425, -0.305, -1.8711, 1.4425, -0.305, 1.7287, 1.4793, -0.3352, 1.7287, 1.4793, -0.3352, -1.8711, 1.4425, -0.305, -1.8711, 1.4793, -0.3352, 1.7287, 1.4793, -0.3352, -1.8711, 1.4793, -0.3352, 1.7287, 1.5095, -0.372, 1.7287, 1.5095, -0.372, -1.8711, 1.4793, -0.3352, -1.8711, 1.5095, -0.372, 1.7287, 1.5095, -0.372, -1.8711, 1.5095, -0.372, 1.7287, 1.532, -0.4141, 1.7287, 1.532, -0.4141, -1.8711, 1.5095, -0.372, -1.8711, 1.532, -0.4141, 1.7287, 1.532, -0.4141, -1.8711, 1.532, -0.4141, 1.7287, 1.5458, -0.4597, 1.7287, 1.5458, -0.4597, -1.8711, 1.532, -0.4141, -1.8711, 1.5458, -0.4597, 1.7287, 1.5458, -0.4597, -1.8711, 1.5458, -0.4597, 1.7287, 1.5505, -0.5071, 1.7287, 1.5505, -0.5071, -1.8711, 1.5458, -0.4597, -1.8711, 1.5505, -0.5071, 1.7287, 1.5505, -0.5071, -1.8711, 1.5505, -0.5071, 1.7287, 1.5458, -0.5545, 1.7287, 1.5458, -0.5545, -1.8711, 1.5505, -0.5071, -1.8711, 1.5458, -0.5545, 1.7287, 1.5458, -0.5545, -1.8711, 1.5458, -0.5545, 1.7287, 1.532, -0.6001, 1.7287, 1.532, -0.6001, -1.8711, 1.5458, -0.5545, -1.8711, 1.532, -0.6001, 1.7287, 1.532, -0.6001, -1.8711, 1.532, -0.6001, 1.7287, 1.5095, -0.6422, 1.7287, 1.5095, -0.6422, -1.8711, 1.532, -0.6001, -1.8711, 1.5095, -0.6422, 1.7287, 1.5095, -0.6422, -1.8711, 1.5095, -0.6422, 1.7287, 1.4793, -0.679, 1.7287, 1.4793, -0.679, -1.8711, 1.5095, -0.6422, -1.8711, 1.4793, -0.679, 1.7287, 1.4793, -0.679, -1.8711, 1.4793, -0.679, 1.7287, 1.4425, -0.7092, 1.7287, 1.4425, -0.7092, -1.8711, 1.4793, -0.679, -1.8711, 1.4425, -0.7092, 1.7287, 1.4425, -0.7092, -1.8711, 1.4425, -0.7092, 1.7287, 1.4004, -0.7317, 1.7287, 1.4004, -0.7317, -1.8711, 1.4425, -0.7092, -1.8711, 1.4004, -0.7317, 1.7287, 1.3074, -0.7502, 1.7287, 1.26, -0.7455, 1.7287, 1.3548, -0.7455, 1.7287, 1.3548, -0.7455, 1.7287, 1.26, -0.7455, 1.7287, 1.4004, -0.7317, 1.7287, 1.4004, -0.7317, 1.7287, 1.26, -0.7455, 1.7287, 1.4425, -0.7092, 1.7287, 1.4425, -0.7092, 1.7287, 1.26, -0.7455, 1.7287, 1.4793, -0.679, 1.7287, 1.4793, -0.679, 1.7287, 1.26, -0.7455, 1.7287, 1.5095, -0.6422, 1.7287, 1.5095, -0.6422, 1.7287, 1.26, -0.7455, 1.7287, 1.532, -0.6001, 1.7287, 1.532, -0.6001, 1.7287, 1.26, -0.7455, 1.7287, 1.5458, -0.5545, 1.7287, 1.5458, -0.5545, 1.7287, 1.26, -0.7455, 1.7287, 1.5505, -0.5071, 1.7287, 1.5505, -0.5071, 1.7287, 1.26, -0.7455, 1.7287, 1.5458, -0.4597, 1.7287, 1.5458, -0.4597, 1.7287, 1.26, -0.7455, 1.7287, 1.532, -0.4141, 1.7287, 1.532, -0.4141, 1.7287, 1.26, -0.7455, 1.7287, 1.5095, -0.372, 1.7287, 1.5095, -0.372, 1.7287, 1.26, -0.7455, 1.7287, 1.4793, -0.3352, 1.7287, 1.4793, -0.3352, 1.7287, 1.26, -0.7455, 1.7287, 1.4425, -0.305, 1.7287, 1.4425, -0.305, 1.7287, 1.26, -0.7455, 1.7287, 1.4004, -0.2825, 1.7287, 1.4004, -0.2825, 1.7287, 1.26, -0.7455, 1.7287, 1.3548, -0.2687, 1.7287, 1.3548, -0.2687, 1.7287, 1.26, -0.7455, 1.7287, 1.3074, -0.264, 1.7287, 1.3074, -0.264, 1.7287, 1.26, -0.7455, 1.7287, 1.26, -0.2687, 1.7287, 1.26, -0.2687, 1.7287, 1.26, -0.7455, 1.7287, 1.2144, -0.2825, 1.7287, 1.2144, -0.2825, 1.7287, 1.26, -0.7455, 1.7287, 1.1723, -0.305, 1.7287, 1.1723, -0.305, 1.7287, 1.26, -0.7455, 1.7287, 1.1355, -0.3352, 1.7287, 1.1355, -0.3352, 1.7287, 1.26, -0.7455, 1.7287, 1.1053, -0.372, 1.7287, 1.1053, -0.372, 1.7287, 1.26, -0.7455, 1.7287, 1.0828, -0.4141, 1.7287, 1.0828, -0.4141, 1.7287, 1.26, -0.7455, 1.7287, 1.069, -0.4597, 1.7287, 1.069, -0.4597, 1.7287, 1.26, -0.7455, 1.7287, 1.0643, -0.5071, 1.7287, 1.0643, -0.5071, 1.7287, 1.26, -0.7455, 1.7287, 1.069, -0.5545, 1.7287, 1.069, -0.5545, 1.7287, 1.26, -0.7455, 1.7287, 1.0828, -0.6001, 1.7287, 1.0828, -0.6001, 1.7287, 1.26, -0.7455, 1.7287, 1.1053, -0.6422, 1.7287, 1.1053, -0.6422, 1.7287, 1.26, -0.7455, 1.7287, 1.1355, -0.679, 1.7287, 1.1355, -0.679, 1.7287, 1.26, -0.7455, 1.7287, 1.1723, -0.7092, 1.7287, 1.1723, -0.7092, 1.7287, 1.26, -0.7455, 1.7287, 1.2144, -0.7317, 1.7287, 1.4004, -0.7317, -1.8711, 1.4004, -0.7317, 1.7287, 1.3548, -0.7455, 1.7287, 1.3548, -0.7455, -1.8711, 1.4004, -0.7317, -1.8711, 1.3548, -0.7455, 1.7287, 1.3548, -0.7455, -1.8711, 1.3548, -0.7455, 1.7287, 1.3074, -0.7502, 1.7287, 1.3074, -0.7502, -1.8711, 1.3548, -0.7455, -1.8711, 1.3074, -0.7502, -1.8711, 1.26, -0.7455, -1.8711, 1.3074, -0.7502, -1.8711, 1.2144, -0.7317, -1.8711, 1.2144, -0.7317, -1.8711, 1.3074, -0.7502, -1.8711, 1.1723, -0.7092, -1.8711, 1.1723, -0.7092, -1.8711, 1.3074, -0.7502, -1.8711, 1.1355, -0.679, -1.8711, 1.1355, -0.679, -1.8711, 1.3074, -0.7502, -1.8711, 1.1053, -0.6422, -1.8711, 1.1053, -0.6422, -1.8711, 1.3074, -0.7502, -1.8711, 1.0828, -0.6001, -1.8711, 1.0828, -0.6001, -1.8711, 1.3074, -0.7502, -1.8711, 1.069, -0.5545, -1.8711, 1.069, -0.5545, -1.8711, 1.3074, -0.7502, -1.8711, 1.0643, -0.5071, -1.8711, 1.0643, -0.5071, -1.8711, 1.3074, -0.7502, -1.8711, 1.069, -0.4597, -1.8711, 1.069, -0.4597, -1.8711, 1.3074, -0.7502, -1.8711, 1.0828, -0.4141, -1.8711, 1.0828, -0.4141, -1.8711, 1.3074, -0.7502, -1.8711, 1.1053, -0.372, -1.8711, 1.1053, -0.372, -1.8711, 1.3074, -0.7502, -1.8711, 1.1355, -0.3352, -1.8711, 1.1355, -0.3352, -1.8711, 1.3074, -0.7502, -1.8711, 1.1723, -0.305, -1.8711, 1.1723, -0.305, -1.8711, 1.3074, -0.7502, -1.8711, 1.2144, -0.2825, -1.8711, 1.2144, -0.2825, -1.8711, 1.3074, -0.7502, -1.8711, 1.26, -0.2687, -1.8711, 1.26, -0.2687, -1.8711, 1.3074, -0.7502, -1.8711, 1.3074, -0.264, -1.8711, 1.3074, -0.264, -1.8711, 1.3074, -0.7502, -1.8711, 1.3548, -0.2687, -1.8711, 1.3548, -0.2687, -1.8711, 1.3074, -0.7502, -1.8711, 1.4004, -0.2825, -1.8711, 1.4004, -0.2825, -1.8711, 1.3074, -0.7502, -1.8711, 1.4425, -0.305, -1.8711, 1.4425, -0.305, -1.8711, 1.3074, -0.7502, -1.8711, 1.4793, -0.3352, -1.8711, 1.4793, -0.3352, -1.8711, 1.3074, -0.7502, -1.8711, 1.5095, -0.372, -1.8711, 1.5095, -0.372, -1.8711, 1.3074, -0.7502, -1.8711, 1.532, -0.4141, -1.8711, 1.532, -0.4141, -1.8711, 1.3074, -0.7502, -1.8711, 1.5458, -0.4597, -1.8711, 1.5458, -0.4597, -1.8711, 1.3074, -0.7502, -1.8711, 1.5505, -0.5071, -1.8711, 1.5505, -0.5071, -1.8711, 1.3074, -0.7502, -1.8711, 1.5458, -0.5545, -1.8711, 1.5458, -0.5545, -1.8711, 1.3074, -0.7502, -1.8711, 1.532, -0.6001, -1.8711, 1.532, -0.6001, -1.8711, 1.3074, -0.7502, -1.8711, 1.5095, -0.6422, -1.8711, 1.5095, -0.6422, -1.8711, 1.3074, -0.7502, -1.8711, 1.4793, -0.679, -1.8711, 1.4793, -0.679, -1.8711, 1.3074, -0.7502, -1.8711, 1.4425, -0.7092, -1.8711, 1.4425, -0.7092, -1.8711, 1.3074, -0.7502, -1.8711, 1.4004, -0.7317, -1.8711, 1.4004, -0.7317, -1.8711, 1.3074, -0.7502, -1.8711, 1.3548, -0.7455, 1.7287, 1.3074, 0.4116, -1.8711, 1.3074, 0.4116, 1.7287, 1.26, 0.4163, 1.7287, 1.26, 0.4163, -1.8711, 1.3074, 0.4116, -1.8711, 1.26, 0.4163, 1.7287, 1.26, 0.4163, -1.8711, 1.26, 0.4163, 1.7287, 1.2144, 0.4301, 1.7287, 1.2144, 0.4301, -1.8711, 1.26, 0.4163, -1.8711, 1.2144, 0.4301, 1.7287, 1.2144, 0.4301, -1.8711, 1.2144, 0.4301, 1.7287, 1.1723, 0.4526, 1.7287, 1.1723, 0.4526, -1.8711, 1.2144, 0.4301, -1.8711, 1.1723, 0.4526, 1.7287, 1.1723, 0.4526, -1.8711, 1.1723, 0.4526, 1.7287, 1.1355, 0.4828, 1.7287, 1.1355, 0.4828, -1.8711, 1.1723, 0.4526, -1.8711, 1.1355, 0.4828, 1.7287, 1.1355, 0.4828, -1.8711, 1.1355, 0.4828, 1.7287, 1.1053, 0.5197, 1.7287, 1.1053, 0.5197, -1.8711, 1.1355, 0.4828, -1.8711, 1.1053, 0.5197, 1.7287, 1.1053, 0.5197, -1.8711, 1.1053, 0.5197, 1.7287, 1.0828, 0.5617, 1.7287, 1.0828, 0.5617, -1.8711, 1.1053, 0.5197, -1.8711, 1.0828, 0.5617, 1.7287, 1.0828, 0.5617, -1.8711, 1.0828, 0.5617, 1.7287, 1.069, 0.6073, 1.7287, 1.069, 0.6073, -1.8711, 1.0828, 0.5617, -1.8711, 1.069, 0.6073, 1.7287, 1.069, 0.6073, -1.8711, 1.069, 0.6073, 1.7287, 1.0643, 0.6547, 1.7287, 1.0643, 0.6547, -1.8711, 1.069, 0.6073, -1.8711, 1.0643, 0.6547, 1.7287, 1.0643, 0.6547, -1.8711, 1.0643, 0.6547, 1.7287, 1.069, 0.7022, 1.7287, 1.069, 0.7022, -1.8711, 1.0643, 0.6547, -1.8711, 1.069, 0.7022, 1.7287, 1.069, 0.7022, -1.8711, 1.069, 0.7022, 1.7287, 1.0828, 0.7478, 1.7287, 1.0828, 0.7478, -1.8711, 1.069, 0.7022, -1.8711, 1.0828, 0.7478, 1.7287, 1.0828, 0.7478, -1.8711, 1.0828, 0.7478, 1.7287, 1.1053, 0.7898, 1.7287, 1.1053, 0.7898, -1.8711, 1.0828, 0.7478, -1.8711, 1.1053, 0.7898, 1.7287, 1.1053, 0.7898, -1.8711, 1.1053, 0.7898, 1.7287, 1.1355, 0.8267, 1.7287, 1.1355, 0.8267, -1.8711, 1.1053, 0.7898, -1.8711, 1.1355, 0.8267, 1.7287, 1.1355, 0.8267, -1.8711, 1.1355, 0.8267, 1.7287, 1.1723, 0.8569, 1.7287, 1.1723, 0.8569, -1.8711, 1.1355, 0.8267, -1.8711, 1.1723, 0.8569, 1.7287, 1.1723, 0.8569, -1.8711, 1.1723, 0.8569, 1.7287, 1.2144, 0.8793, 1.7287, 1.2144, 0.8793, -1.8711, 1.1723, 0.8569, -1.8711, 1.2144, 0.8793, 1.7287, 1.2144, 0.8793, -1.8711, 1.2144, 0.8793, 1.7287, 1.26, 0.8932, 1.7287, 1.26, 0.8932, -1.8711, 1.2144, 0.8793, -1.8711, 1.26, 0.8932, 1.7287, 1.26, 0.8932, -1.8711, 1.26, 0.8932, 1.7287, 1.3074, 0.8979, 1.7287, 1.3074, 0.8979, -1.8711, 1.26, 0.8932, -1.8711, 1.3074, 0.8979, 1.7287, 1.3074, 0.8979, -1.8711, 1.3074, 0.8979, 1.7287, 1.3548, 0.8932, 1.7287, 1.3548, 0.8932, -1.8711, 1.3074, 0.8979, -1.8711, 1.3548, 0.8932, 1.7287, 1.3548, 0.8932, -1.8711, 1.3548, 0.8932, 1.7287, 1.4004, 0.8793, 1.7287, 1.4004, 0.8793, -1.8711, 1.3548, 0.8932, -1.8711, 1.4004, 0.8793, 1.7287, 1.4004, 0.8793, -1.8711, 1.4004, 0.8793, 1.7287, 1.4425, 0.8569, 1.7287, 1.4425, 0.8569, -1.8711, 1.4004, 0.8793, -1.8711, 1.4425, 0.8569, 1.7287, 1.4425, 0.8569, -1.8711, 1.4425, 0.8569, 1.7287, 1.4793, 0.8267, 1.7287, 1.4793, 0.8267, -1.8711, 1.4425, 0.8569, -1.8711, 1.4793, 0.8267, 1.7287, 1.4793, 0.8267, -1.8711, 1.4793, 0.8267, 1.7287, 1.5095, 0.7898, 1.7287, 1.5095, 0.7898, -1.8711, 1.4793, 0.8267, -1.8711, 1.5095, 0.7898, 1.7287, 1.5095, 0.7898, -1.8711, 1.5095, 0.7898, 1.7287, 1.532, 0.7478, 1.7287, 1.532, 0.7478, -1.8711, 1.5095, 0.7898, -1.8711, 1.532, 0.7478, 1.7287, 1.532, 0.7478, -1.8711, 1.532, 0.7478, 1.7287, 1.5458, 0.7022, 1.7287, 1.5458, 0.7022, -1.8711, 1.532, 0.7478, -1.8711, 1.5458, 0.7022, 1.7287, 1.5458, 0.7022, -1.8711, 1.5458, 0.7022, 1.7287, 1.5505, 0.6547, 1.7287, 1.5505, 0.6547, -1.8711, 1.5458, 0.7022, -1.8711, 1.5505, 0.6547, 1.7287, 1.5505, 0.6547, -1.8711, 1.5505, 0.6547, 1.7287, 1.5458, 0.6073, 1.7287, 1.5458, 0.6073, -1.8711, 1.5505, 0.6547, -1.8711, 1.5458, 0.6073, 1.7287, 1.5458, 0.6073, -1.8711, 1.5458, 0.6073, 1.7287, 1.532, 0.5617, 1.7287, 1.532, 0.5617, -1.8711, 1.5458, 0.6073, -1.8711, 1.532, 0.5617, 1.7287, 1.532, 0.5617, -1.8711, 1.532, 0.5617, 1.7287, 1.5095, 0.5197, 1.7287, 1.5095, 0.5197, -1.8711, 1.532, 0.5617, -1.8711, 1.5095, 0.5197, 1.7287, 1.5095, 0.5197, -1.8711, 1.5095, 0.5197, 1.7287, 1.4793, 0.4828, 1.7287, 1.4793, 0.4828, -1.8711, 1.5095, 0.5197, -1.8711, 1.4793, 0.4828, 1.7287, 1.4793, 0.4828, -1.8711, 1.4793, 0.4828, 1.7287, 1.4425, 0.4526, 1.7287, 1.4425, 0.4526, -1.8711, 1.4793, 0.4828, -1.8711, 1.4425, 0.4526, 1.7287, 1.4425, 0.4526, -1.8711, 1.4425, 0.4526, 1.7287, 1.4004, 0.4301, 1.7287, 1.4004, 0.4301, -1.8711, 1.4425, 0.4526, -1.8711, 1.4004, 0.4301, 1.7287, 1.3074, 0.4116, 1.7287, 1.26, 0.4163, 1.7287, 1.3548, 0.4163, 1.7287, 1.3548, 0.4163, 1.7287, 1.26, 0.4163, 1.7287, 1.4004, 0.4301, 1.7287, 1.4004, 0.4301, 1.7287, 1.26, 0.4163, 1.7287, 1.4425, 0.4526, 1.7287, 1.4425, 0.4526, 1.7287, 1.26, 0.4163, 1.7287, 1.4793, 0.4828, 1.7287, 1.4793, 0.4828, 1.7287, 1.26, 0.4163, 1.7287, 1.5095, 0.5197, 1.7287, 1.5095, 0.5197, 1.7287, 1.26, 0.4163, 1.7287, 1.532, 0.5617, 1.7287, 1.532, 0.5617, 1.7287, 1.26, 0.4163, 1.7287, 1.5458, 0.6073, 1.7287, 1.5458, 0.6073, 1.7287, 1.26, 0.4163, 1.7287, 1.5505, 0.6547, 1.7287, 1.5505, 0.6547, 1.7287, 1.26, 0.4163, 1.7287, 1.5458, 0.7022, 1.7287, 1.5458, 0.7022, 1.7287, 1.26, 0.4163, 1.7287, 1.532, 0.7478, 1.7287, 1.532, 0.7478, 1.7287, 1.26, 0.4163, 1.7287, 1.5095, 0.7898, 1.7287, 1.5095, 0.7898, 1.7287, 1.26, 0.4163, 1.7287, 1.4793, 0.8267, 1.7287, 1.4793, 0.8267, 1.7287, 1.26, 0.4163, 1.7287, 1.4425, 0.8569, 1.7287, 1.4425, 0.8569, 1.7287, 1.26, 0.4163, 1.7287, 1.4004, 0.8793, 1.7287, 1.4004, 0.8793, 1.7287, 1.26, 0.4163, 1.7287, 1.3548, 0.8932, 1.7287, 1.3548, 0.8932, 1.7287, 1.26, 0.4163, 1.7287, 1.3074, 0.8979, 1.7287, 1.3074, 0.8979, 1.7287, 1.26, 0.4163, 1.7287, 1.26, 0.8932, 1.7287, 1.26, 0.8932, 1.7287, 1.26, 0.4163, 1.7287, 1.2144, 0.8793, 1.7287, 1.2144, 0.8793, 1.7287, 1.26, 0.4163, 1.7287, 1.1723, 0.8569, 1.7287, 1.1723, 0.8569, 1.7287, 1.26, 0.4163, 1.7287, 1.1355, 0.8267, 1.7287, 1.1355, 0.8267, 1.7287, 1.26, 0.4163, 1.7287, 1.1053, 0.7898, 1.7287, 1.1053, 0.7898, 1.7287, 1.26, 0.4163, 1.7287, 1.0828, 0.7478, 1.7287, 1.0828, 0.7478, 1.7287, 1.26, 0.4163, 1.7287, 1.069, 0.7022, 1.7287, 1.069, 0.7022, 1.7287, 1.26, 0.4163, 1.7287, 1.0643, 0.6547, 1.7287, 1.0643, 0.6547, 1.7287, 1.26, 0.4163, 1.7287, 1.069, 0.6073, 1.7287, 1.069, 0.6073, 1.7287, 1.26, 0.4163, 1.7287, 1.0828, 0.5617, 1.7287, 1.0828, 0.5617, 1.7287, 1.26, 0.4163, 1.7287, 1.1053, 0.5197, 1.7287, 1.1053, 0.5197, 1.7287, 1.26, 0.4163, 1.7287, 1.1355, 0.4828, 1.7287, 1.1355, 0.4828, 1.7287, 1.26, 0.4163, 1.7287, 1.1723, 0.4526, 1.7287, 1.1723, 0.4526, 1.7287, 1.26, 0.4163, 1.7287, 1.2144, 0.4301, 1.7287, 1.4004, 0.4301, -1.8711, 1.4004, 0.4301, 1.7287, 1.3548, 0.4163, 1.7287, 1.3548, 0.4163, -1.8711, 1.4004, 0.4301, -1.8711, 1.3548, 0.4163, 1.7287, 1.3548, 0.4163, -1.8711, 1.3548, 0.4163, 1.7287, 1.3074, 0.4116, 1.7287, 1.3074, 0.4116, -1.8711, 1.3548, 0.4163, -1.8711, 1.3074, 0.4116, -1.8711, 1.26, 0.4163, -1.8711, 1.3074, 0.4116, -1.8711, 1.2144, 0.4301, -1.8711, 1.2144, 0.4301, -1.8711, 1.3074, 0.4116, -1.8711, 1.1723, 0.4526, -1.8711, 1.1723, 0.4526, -1.8711, 1.3074, 0.4116, -1.8711, 1.1355, 0.4828, -1.8711, 1.1355, 0.4828, -1.8711, 1.3074, 0.4116, -1.8711, 1.1053, 0.5197, -1.8711, 1.1053, 0.5197, -1.8711, 1.3074, 0.4116, -1.8711, 1.0828, 0.5617, -1.8711, 1.0828, 0.5617, -1.8711, 1.3074, 0.4116, -1.8711, 1.069, 0.6073, -1.8711, 1.069, 0.6073, -1.8711, 1.3074, 0.4116, -1.8711, 1.0643, 0.6547, -1.8711, 1.0643, 0.6547, -1.8711, 1.3074, 0.4116, -1.8711, 1.069, 0.7022, -1.8711, 1.069, 0.7022, -1.8711, 1.3074, 0.4116, -1.8711, 1.0828, 0.7478, -1.8711, 1.0828, 0.7478, -1.8711, 1.3074, 0.4116, -1.8711, 1.1053, 0.7898, -1.8711, 1.1053, 0.7898, -1.8711, 1.3074, 0.4116, -1.8711, 1.1355, 0.8267, -1.8711, 1.1355, 0.8267, -1.8711, 1.3074, 0.4116, -1.8711, 1.1723, 0.8569, -1.8711, 1.1723, 0.8569, -1.8711, 1.3074, 0.4116, -1.8711, 1.2144, 0.8793, -1.8711, 1.2144, 0.8793, -1.8711, 1.3074, 0.4116, -1.8711, 1.26, 0.8932, -1.8711, 1.26, 0.8932, -1.8711, 1.3074, 0.4116, -1.8711, 1.3074, 0.8979, -1.8711, 1.3074, 0.8979, -1.8711, 1.3074, 0.4116, -1.8711, 1.3548, 0.8932, -1.8711, 1.3548, 0.8932, -1.8711, 1.3074, 0.4116, -1.8711, 1.4004, 0.8793, -1.8711, 1.4004, 0.8793, -1.8711, 1.3074, 0.4116, -1.8711, 1.4425, 0.8569, -1.8711, 1.4425, 0.8569, -1.8711, 1.3074, 0.4116, -1.8711, 1.4793, 0.8267, -1.8711, 1.4793, 0.8267, -1.8711, 1.3074, 0.4116, -1.8711, 1.5095, 0.7898, -1.8711, 1.5095, 0.7898, -1.8711, 1.3074, 0.4116, -1.8711, 1.532, 0.7478, -1.8711, 1.532, 0.7478, -1.8711, 1.3074, 0.4116, -1.8711, 1.5458, 0.7022, -1.8711, 1.5458, 0.7022, -1.8711, 1.3074, 0.4116, -1.8711, 1.5505, 0.6547, -1.8711, 1.5505, 0.6547, -1.8711, 1.3074, 0.4116, -1.8711, 1.5458, 0.6073, -1.8711, 1.5458, 0.6073, -1.8711, 1.3074, 0.4116, -1.8711, 1.532, 0.5617, -1.8711, 1.532, 0.5617, -1.8711, 1.3074, 0.4116, -1.8711, 1.5095, 0.5197, -1.8711, 1.5095, 0.5197, -1.8711, 1.3074, 0.4116, -1.8711, 1.4793, 0.4828, -1.8711, 1.4793, 0.4828, -1.8711, 1.3074, 0.4116, -1.8711, 1.4425, 0.4526, -1.8711, 1.4425, 0.4526, -1.8711, 1.3074, 0.4116, -1.8711, 1.4004, 0.4301, -1.8711, 1.4004, 0.4301, -1.8711, 1.3074, 0.4116, -1.8711, 1.3548, 0.4163, 1.7287, 0.1455, 0.9926, -1.8711, 0.1455, 0.9926, 1.7287, 0.0981, 0.9972, 1.7287, 0.0981, 0.9972, -1.8711, 0.1455, 0.9926, -1.8711, 0.0981, 0.9972, 1.7287, 0.0981, 0.9972, -1.8711, 0.0981, 0.9972, 1.7287, 0.0525, 1.0111, 1.7287, 0.0525, 1.0111, -1.8711, 0.0981, 0.9972, -1.8711, 0.0525, 1.0111, 1.7287, 0.0525, 1.0111, -1.8711, 0.0525, 1.0111, 1.7287, 0.0105, 1.0335, 1.7287, 0.0105, 1.0335, -1.8711, 0.0525, 1.0111, -1.8711, 0.0105, 1.0335, 1.7287, 0.0105, 1.0335, -1.8711, 0.0105, 1.0335, 1.7287, -0.0264, 1.0638, 1.7287, -0.0264, 1.0638, -1.8711, 0.0105, 1.0335, -1.8711, -0.0264, 1.0638, 1.7287, -0.0264, 1.0638, -1.8711, -0.0264, 1.0638, 1.7287, -0.0566, 1.1006, 1.7287, -0.0566, 1.1006, -1.8711, -0.0264, 1.0638, -1.8711, -0.0566, 1.1006, 1.7287, -0.0566, 1.1006, -1.8711, -0.0566, 1.1006, 1.7287, -0.0791, 1.1426, 1.7287, -0.0791, 1.1426, -1.8711, -0.0566, 1.1006, -1.8711, -0.0791, 1.1426, 1.7287, -0.0791, 1.1426, -1.8711, -0.0791, 1.1426, 1.7287, -0.0929, 1.1882, 1.7287, -0.0929, 1.1882, -1.8711, -0.0791, 1.1426, -1.8711, -0.0929, 1.1882, 1.7287, -0.0929, 1.1882, -1.8711, -0.0929, 1.1882, 1.7287, -0.0976, 1.2357, 1.7287, -0.0976, 1.2357, -1.8711, -0.0929, 1.1882, -1.8711, -0.0976, 1.2357, 1.7287, -0.0976, 1.2357, -1.8711, -0.0976, 1.2357, 1.7287, -0.0929, 1.2831, 1.7287, -0.0929, 1.2831, -1.8711, -0.0976, 1.2357, -1.8711, -0.0929, 1.2831, 1.7287, -0.0929, 1.2831, -1.8711, -0.0929, 1.2831, 1.7287, -0.0791, 1.3287, 1.7287, -0.0791, 1.3287, -1.8711, -0.0929, 1.2831, -1.8711, -0.0791, 1.3287, 1.7287, -0.0791, 1.3287, -1.8711, -0.0791, 1.3287, 1.7287, -0.0566, 1.3707, 1.7287, -0.0566, 1.3707, -1.8711, -0.0791, 1.3287, -1.8711, -0.0566, 1.3707, 1.7287, -0.0566, 1.3707, -1.8711, -0.0566, 1.3707, 1.7287, -0.0264, 1.4076, 1.7287, -0.0264, 1.4076, -1.8711, -0.0566, 1.3707, -1.8711, -0.0264, 1.4076, 1.7287, -0.0264, 1.4076, -1.8711, -0.0264, 1.4076, 1.7287, 0.0105, 1.4378, 1.7287, 0.0105, 1.4378, -1.8711, -0.0264, 1.4076, -1.8711, 0.0105, 1.4378, 1.7287, 0.0105, 1.4378, -1.8711, 0.0105, 1.4378, 1.7287, 0.0525, 1.4603, 1.7287, 0.0525, 1.4603, -1.8711, 0.0105, 1.4378, -1.8711, 0.0525, 1.4603, 1.7287, 0.0525, 1.4603, -1.8711, 0.0525, 1.4603, 1.7287, 0.0981, 1.4741, 1.7287, 0.0981, 1.4741, -1.8711, 0.0525, 1.4603, -1.8711, 0.0981, 1.4741, 1.7287, 0.0981, 1.4741, -1.8711, 0.0981, 1.4741, 1.7287, 0.1455, 1.4788, 1.7287, 0.1455, 1.4788, -1.8711, 0.0981, 1.4741, -1.8711, 0.1455, 1.4788, 1.7287, 0.1455, 1.4788, -1.8711, 0.1455, 1.4788, 1.7287, 0.193, 1.4741, 1.7287, 0.193, 1.4741, -1.8711, 0.1455, 1.4788, -1.8711, 0.193, 1.4741, 1.7287, 0.193, 1.4741, -1.8711, 0.193, 1.4741, 1.7287, 0.2386, 1.4603, 1.7287, 0.2386, 1.4603, -1.8711, 0.193, 1.4741, -1.8711, 0.2386, 1.4603, 1.7287, 0.2386, 1.4603, -1.8711, 0.2386, 1.4603, 1.7287, 0.2806, 1.4378, 1.7287, 0.2806, 1.4378, -1.8711, 0.2386, 1.4603, -1.8711, 0.2806, 1.4378, 1.7287, 0.2806, 1.4378, -1.8711, 0.2806, 1.4378, 1.7287, 0.3174, 1.4076, 1.7287, 0.3174, 1.4076, -1.8711, 0.2806, 1.4378, -1.8711, 0.3174, 1.4076, 1.7287, 0.3174, 1.4076, -1.8711, 0.3174, 1.4076, 1.7287, 0.3477, 1.3707, 1.7287, 0.3477, 1.3707, -1.8711, 0.3174, 1.4076, -1.8711, 0.3477, 1.3707, 1.7287, 0.3477, 1.3707, -1.8711, 0.3477, 1.3707, 1.7287, 0.3701, 1.3287, 1.7287, 0.3701, 1.3287, -1.8711, 0.3477, 1.3707, -1.8711, 0.3701, 1.3287, 1.7287, 0.3701, 1.3287, -1.8711, 0.3701, 1.3287, 1.7287, 0.384, 1.2831, 1.7287, 0.384, 1.2831, -1.8711, 0.3701, 1.3287, -1.8711, 0.384, 1.2831, 1.7287, 0.384, 1.2831, -1.8711, 0.384, 1.2831, 1.7287, 0.3886, 1.2357, 1.7287, 0.3886, 1.2357, -1.8711, 0.384, 1.2831, -1.8711, 0.3886, 1.2357, 1.7287, 0.3886, 1.2357, -1.8711, 0.3886, 1.2357, 1.7287, 0.384, 1.1882, 1.7287, 0.384, 1.1882, -1.8711, 0.3886, 1.2357, -1.8711, 0.384, 1.1882, 1.7287, 0.384, 1.1882, -1.8711, 0.384, 1.1882, 1.7287, 0.3701, 1.1426, 1.7287, 0.3701, 1.1426, -1.8711, 0.384, 1.1882, -1.8711, 0.3701, 1.1426, 1.7287, 0.3701, 1.1426, -1.8711, 0.3701, 1.1426, 1.7287, 0.3477, 1.1006, 1.7287, 0.3477, 1.1006, -1.8711, 0.3701, 1.1426, -1.8711, 0.3477, 1.1006, 1.7287, 0.3477, 1.1006, -1.8711, 0.3477, 1.1006, 1.7287, 0.3174, 1.0638, 1.7287, 0.3174, 1.0638, -1.8711, 0.3477, 1.1006, -1.8711, 0.3174, 1.0638, 1.7287, 0.3174, 1.0638, -1.8711, 0.3174, 1.0638, 1.7287, 0.2806, 1.0335, 1.7287, 0.2806, 1.0335, -1.8711, 0.3174, 1.0638, -1.8711, 0.2806, 1.0335, 1.7287, 0.2806, 1.0335, -1.8711, 0.2806, 1.0335, 1.7287, 0.2386, 1.0111, 1.7287, 0.2386, 1.0111, -1.8711, 0.2806, 1.0335, -1.8711, 0.2386, 1.0111, 1.7287, 0.1455, 0.9926, 1.7287, 0.0981, 0.9972, 1.7287, 0.193, 0.9972, 1.7287, 0.193, 0.9972, 1.7287, 0.0981, 0.9972, 1.7287, 0.2386, 1.0111, 1.7287, 0.2386, 1.0111, 1.7287, 0.0981, 0.9972, 1.7287, 0.2806, 1.0335, 1.7287, 0.2806, 1.0335, 1.7287, 0.0981, 0.9972, 1.7287, 0.3174, 1.0638, 1.7287, 0.3174, 1.0638, 1.7287, 0.0981, 0.9972, 1.7287, 0.3477, 1.1006, 1.7287, 0.3477, 1.1006, 1.7287, 0.0981, 0.9972, 1.7287, 0.3701, 1.1426, 1.7287, 0.3701, 1.1426, 1.7287, 0.0981, 0.9972, 1.7287, 0.384, 1.1882, 1.7287, 0.384, 1.1882, 1.7287, 0.0981, 0.9972, 1.7287, 0.3886, 1.2357, 1.7287, 0.3886, 1.2357, 1.7287, 0.0981, 0.9972, 1.7287, 0.384, 1.2831, 1.7287, 0.384, 1.2831, 1.7287, 0.0981, 0.9972, 1.7287, 0.3701, 1.3287, 1.7287, 0.3701, 1.3287, 1.7287, 0.0981, 0.9972, 1.7287, 0.3477, 1.3707, 1.7287, 0.3477, 1.3707, 1.7287, 0.0981, 0.9972, 1.7287, 0.3174, 1.4076, 1.7287, 0.3174, 1.4076, 1.7287, 0.0981, 0.9972, 1.7287, 0.2806, 1.4378, 1.7287, 0.2806, 1.4378, 1.7287, 0.0981, 0.9972, 1.7287, 0.2386, 1.4603, 1.7287, 0.2386, 1.4603, 1.7287, 0.0981, 0.9972, 1.7287, 0.193, 1.4741, 1.7287, 0.193, 1.4741, 1.7287, 0.0981, 0.9972, 1.7287, 0.1455, 1.4788, 1.7287, 0.1455, 1.4788, 1.7287, 0.0981, 0.9972, 1.7287, 0.0981, 1.4741, 1.7287, 0.0981, 1.4741, 1.7287, 0.0981, 0.9972, 1.7287, 0.0525, 1.4603, 1.7287, 0.0525, 1.4603, 1.7287, 0.0981, 0.9972, 1.7287, 0.0105, 1.4378, 1.7287, 0.0105, 1.4378, 1.7287, 0.0981, 0.9972, 1.7287, -0.0264, 1.4076, 1.7287, -0.0264, 1.4076, 1.7287, 0.0981, 0.9972, 1.7287, -0.0566, 1.3707, 1.7287, -0.0566, 1.3707, 1.7287, 0.0981, 0.9972, 1.7287, -0.0791, 1.3287, 1.7287, -0.0791, 1.3287, 1.7287, 0.0981, 0.9972, 1.7287, -0.0929, 1.2831, 1.7287, -0.0929, 1.2831, 1.7287, 0.0981, 0.9972, 1.7287, -0.0976, 1.2357, 1.7287, -0.0976, 1.2357, 1.7287, 0.0981, 0.9972, 1.7287, -0.0929, 1.1882, 1.7287, -0.0929, 1.1882, 1.7287, 0.0981, 0.9972, 1.7287, -0.0791, 1.1426, 1.7287, -0.0791, 1.1426, 1.7287, 0.0981, 0.9972, 1.7287, -0.0566, 1.1006, 1.7287, -0.0566, 1.1006, 1.7287, 0.0981, 0.9972, 1.7287, -0.0264, 1.0638, 1.7287, -0.0264, 1.0638, 1.7287, 0.0981, 0.9972, 1.7287, 0.0105, 1.0335, 1.7287, 0.0105, 1.0335, 1.7287, 0.0981, 0.9972, 1.7287, 0.0525, 1.0111, 1.7287, 0.2386, 1.0111, -1.8711, 0.2386, 1.0111, 1.7287, 0.193, 0.9972, 1.7287, 0.193, 0.9972, -1.8711, 0.2386, 1.0111, -1.8711, 0.193, 0.9972, 1.7287, 0.193, 0.9972, -1.8711, 0.193, 0.9972, 1.7287, 0.1455, 0.9926, 1.7287, 0.1455, 0.9926, -1.8711, 0.193, 0.9972, -1.8711, 0.1455, 0.9926, -1.8711, 0.0981, 0.9972, -1.8711, 0.1455, 0.9926, -1.8711, 0.0525, 1.0111, -1.8711, 0.0525, 1.0111, -1.8711, 0.1455, 0.9926, -1.8711, 0.0105, 1.0335, -1.8711, 0.0105, 1.0335, -1.8711, 0.1455, 0.9926, -1.8711, -0.0264, 1.0638, -1.8711, -0.0264, 1.0638, -1.8711, 0.1455, 0.9926, -1.8711, -0.0566, 1.1006, -1.8711, -0.0566, 1.1006, -1.8711, 0.1455, 0.9926, -1.8711, -0.0791, 1.1426, -1.8711, -0.0791, 1.1426, -1.8711, 0.1455, 0.9926, -1.8711, -0.0929, 1.1882, -1.8711, -0.0929, 1.1882, -1.8711, 0.1455, 0.9926, -1.8711, -0.0976, 1.2357, -1.8711, -0.0976, 1.2357, -1.8711, 0.1455, 0.9926, -1.8711, -0.0929, 1.2831, -1.8711, -0.0929, 1.2831, -1.8711, 0.1455, 0.9926, -1.8711, -0.0791, 1.3287, -1.8711, -0.0791, 1.3287, -1.8711, 0.1455, 0.9926, -1.8711, -0.0566, 1.3707, -1.8711, -0.0566, 1.3707, -1.8711, 0.1455, 0.9926, -1.8711, -0.0264, 1.4076, -1.8711, -0.0264, 1.4076, -1.8711, 0.1455, 0.9926, -1.8711, 0.0105, 1.4378, -1.8711, 0.0105, 1.4378, -1.8711, 0.1455, 0.9926, -1.8711, 0.0525, 1.4603, -1.8711, 0.0525, 1.4603, -1.8711, 0.1455, 0.9926, -1.8711, 0.0981, 1.4741, -1.8711, 0.0981, 1.4741, -1.8711, 0.1455, 0.9926, -1.8711, 0.1455, 1.4788, -1.8711, 0.1455, 1.4788, -1.8711, 0.1455, 0.9926, -1.8711, 0.193, 1.4741, -1.8711, 0.193, 1.4741, -1.8711, 0.1455, 0.9926, -1.8711, 0.2386, 1.4603, -1.8711, 0.2386, 1.4603, -1.8711, 0.1455, 0.9926, -1.8711, 0.2806, 1.4378, -1.8711, 0.2806, 1.4378, -1.8711, 0.1455, 0.9926, -1.8711, 0.3174, 1.4076, -1.8711, 0.3174, 1.4076, -1.8711, 0.1455, 0.9926, -1.8711, 0.3477, 1.3707, -1.8711, 0.3477, 1.3707, -1.8711, 0.1455, 0.9926, -1.8711, 0.3701, 1.3287, -1.8711, 0.3701, 1.3287, -1.8711, 0.1455, 0.9926, -1.8711, 0.384, 1.2831, -1.8711, 0.384, 1.2831, -1.8711, 0.1455, 0.9926, -1.8711, 0.3886, 1.2357, -1.8711, 0.3886, 1.2357, -1.8711, 0.1455, 0.9926, -1.8711, 0.384, 1.1882, -1.8711, 0.384, 1.1882, -1.8711, 0.1455, 0.9926, -1.8711, 0.3701, 1.1426, -1.8711, 0.3701, 1.1426, -1.8711, 0.1455, 0.9926, -1.8711, 0.3477, 1.1006, -1.8711, 0.3477, 1.1006, -1.8711, 0.1455, 0.9926, -1.8711, 0.3174, 1.0638, -1.8711, 0.3174, 1.0638, -1.8711, 0.1455, 0.9926, -1.8711, 0.2806, 1.0335, -1.8711, 0.2806, 1.0335, -1.8711, 0.1455, 0.9926, -1.8711, 0.2386, 1.0111, -1.8711, 0.2386, 1.0111, -1.8711, 0.1455, 0.9926, -1.8711, 0.193, 0.9972, 1.7287, 1.3074, 1.5735, -1.8711, 1.3074, 1.5735, 1.7287, 1.26, 1.5782, 1.7287, 1.26, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 1.5782, 1.7287, 1.26, 1.5782, -1.8711, 1.26, 1.5782, 1.7287, 1.2144, 1.592, 1.7287, 1.2144, 1.592, -1.8711, 1.26, 1.5782, -1.8711, 1.2144, 1.592, 1.7287, 1.2144, 1.592, -1.8711, 1.2144, 1.592, 1.7287, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, -1.8711, 1.2144, 1.592, -1.8711, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, -1.8711, 1.1723, 1.6145, 1.7287, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, -1.8711, 1.1723, 1.6145, -1.8711, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, -1.8711, 1.1355, 1.6447, 1.7287, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, -1.8711, 1.1355, 1.6447, -1.8711, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, -1.8711, 1.1053, 1.6815, 1.7287, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, -1.8711, 1.1053, 1.6815, -1.8711, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, -1.8711, 1.0828, 1.7236, 1.7287, 1.069, 1.7692, 1.7287, 1.069, 1.7692, -1.8711, 1.0828, 1.7236, -1.8711, 1.069, 1.7692, 1.7287, 1.069, 1.7692, -1.8711, 1.069, 1.7692, 1.7287, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, -1.8711, 1.069, 1.7692, -1.8711, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, -1.8711, 1.0643, 1.8166, 1.7287, 1.069, 1.864, 1.7287, 1.069, 1.864, -1.8711, 1.0643, 1.8166, -1.8711, 1.069, 1.864, 1.7287, 1.069, 1.864, -1.8711, 1.069, 1.864, 1.7287, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, -1.8711, 1.069, 1.864, -1.8711, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, -1.8711, 1.0828, 1.9096, 1.7287, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, -1.8711, 1.0828, 1.9096, -1.8711, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, -1.8711, 1.1053, 1.9517, 1.7287, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, -1.8711, 1.1053, 1.9517, -1.8711, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, -1.8711, 1.1355, 1.9885, 1.7287, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, -1.8711, 1.1355, 1.9885, -1.8711, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, -1.8711, 1.1723, 2.0187, 1.7287, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, -1.8711, 1.1723, 2.0187, -1.8711, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, -1.8711, 1.2144, 2.0412, 1.7287, 1.26, 2.055, 1.7287, 1.26, 2.055, -1.8711, 1.2144, 2.0412, -1.8711, 1.26, 2.055, 1.7287, 1.26, 2.055, -1.8711, 1.26, 2.055, 1.7287, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, -1.8711, 1.26, 2.055, -1.8711, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, -1.8711, 1.3074, 2.0597, 1.7287, 1.3548, 2.055, 1.7287, 1.3548, 2.055, -1.8711, 1.3074, 2.0597, -1.8711, 1.3548, 2.055, 1.7287, 1.3548, 2.055, -1.8711, 1.3548, 2.055, 1.7287, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, -1.8711, 1.3548, 2.055, -1.8711, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, -1.8711, 1.4004, 2.0412, 1.7287, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, -1.8711, 1.4004, 2.0412, -1.8711, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, -1.8711, 1.4425, 2.0187, 1.7287, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, -1.8711, 1.4425, 2.0187, -1.8711, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, -1.8711, 1.4793, 1.9885, 1.7287, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, -1.8711, 1.4793, 1.9885, -1.8711, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, -1.8711, 1.5095, 1.9517, 1.7287, 1.532, 1.9096, 1.7287, 1.532, 1.9096, -1.8711, 1.5095, 1.9517, -1.8711, 1.532, 1.9096, 1.7287, 1.532, 1.9096, -1.8711, 1.532, 1.9096, 1.7287, 1.5458, 1.864, 1.7287, 1.5458, 1.864, -1.8711, 1.532, 1.9096, -1.8711, 1.5458, 1.864, 1.7287, 1.5458, 1.864, -1.8711, 1.5458, 1.864, 1.7287, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, -1.8711, 1.5458, 1.864, -1.8711, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, -1.8711, 1.5505, 1.8166, 1.7287, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, -1.8711, 1.5505, 1.8166, -1.8711, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, -1.8711, 1.5458, 1.7692, 1.7287, 1.532, 1.7236, 1.7287, 1.532, 1.7236, -1.8711, 1.5458, 1.7692, -1.8711, 1.532, 1.7236, 1.7287, 1.532, 1.7236, -1.8711, 1.532, 1.7236, 1.7287, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, -1.8711, 1.532, 1.7236, -1.8711, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, -1.8711, 1.5095, 1.6815, 1.7287, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, -1.8711, 1.5095, 1.6815, -1.8711, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, -1.8711, 1.4793, 1.6447, 1.7287, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, -1.8711, 1.4793, 1.6447, -1.8711, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, -1.8711, 1.4425, 1.6145, 1.7287, 1.4004, 1.592, 1.7287, 1.4004, 1.592, -1.8711, 1.4425, 1.6145, -1.8711, 1.4004, 1.592, 1.7287, 1.3074, 1.5735, 1.7287, 1.26, 1.5782, 1.7287, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, 1.7287, 1.26, 1.5782, 1.7287, 1.4004, 1.592, 1.7287, 1.4004, 1.592, 1.7287, 1.26, 1.5782, 1.7287, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, 1.7287, 1.26, 1.5782, 1.7287, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, 1.7287, 1.26, 1.5782, 1.7287, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, 1.7287, 1.26, 1.5782, 1.7287, 1.532, 1.7236, 1.7287, 1.532, 1.7236, 1.7287, 1.26, 1.5782, 1.7287, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, 1.7287, 1.26, 1.5782, 1.7287, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, 1.7287, 1.26, 1.5782, 1.7287, 1.5458, 1.864, 1.7287, 1.5458, 1.864, 1.7287, 1.26, 1.5782, 1.7287, 1.532, 1.9096, 1.7287, 1.532, 1.9096, 1.7287, 1.26, 1.5782, 1.7287, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, 1.7287, 1.26, 1.5782, 1.7287, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, 1.7287, 1.26, 1.5782, 1.7287, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, 1.7287, 1.26, 1.5782, 1.7287, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, 1.7287, 1.26, 1.5782, 1.7287, 1.3548, 2.055, 1.7287, 1.3548, 2.055, 1.7287, 1.26, 1.5782, 1.7287, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, 1.7287, 1.26, 1.5782, 1.7287, 1.26, 2.055, 1.7287, 1.26, 2.055, 1.7287, 1.26, 1.5782, 1.7287, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, 1.7287, 1.26, 1.5782, 1.7287, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, 1.7287, 1.26, 1.5782, 1.7287, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, 1.7287, 1.26, 1.5782, 1.7287, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, 1.7287, 1.26, 1.5782, 1.7287, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, 1.7287, 1.26, 1.5782, 1.7287, 1.069, 1.864, 1.7287, 1.069, 1.864, 1.7287, 1.26, 1.5782, 1.7287, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, 1.7287, 1.26, 1.5782, 1.7287, 1.069, 1.7692, 1.7287, 1.069, 1.7692, 1.7287, 1.26, 1.5782, 1.7287, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, 1.7287, 1.26, 1.5782, 1.7287, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, 1.7287, 1.26, 1.5782, 1.7287, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, 1.7287, 1.26, 1.5782, 1.7287, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, 1.7287, 1.26, 1.5782, 1.7287, 1.2144, 1.592, 1.7287, 1.4004, 1.592, -1.8711, 1.4004, 1.592, 1.7287, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, -1.8711, 1.4004, 1.592, -1.8711, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, -1.8711, 1.3548, 1.5782, 1.7287, 1.3074, 1.5735, 1.7287, 1.3074, 1.5735, -1.8711, 1.3548, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.2144, 1.592, -1.8711, 1.2144, 1.592, -1.8711, 1.3074, 1.5735, -1.8711, 1.1723, 1.6145, -1.8711, 1.1723, 1.6145, -1.8711, 1.3074, 1.5735, -1.8711, 1.1355, 1.6447, -1.8711, 1.1355, 1.6447, -1.8711, 1.3074, 1.5735, -1.8711, 1.1053, 1.6815, -1.8711, 1.1053, 1.6815, -1.8711, 1.3074, 1.5735, -1.8711, 1.0828, 1.7236, -1.8711, 1.0828, 1.7236, -1.8711, 1.3074, 1.5735, -1.8711, 1.069, 1.7692, -1.8711, 1.069, 1.7692, -1.8711, 1.3074, 1.5735, -1.8711, 1.0643, 1.8166, -1.8711, 1.0643, 1.8166, -1.8711, 1.3074, 1.5735, -1.8711, 1.069, 1.864, -1.8711, 1.069, 1.864, -1.8711, 1.3074, 1.5735, -1.8711, 1.0828, 1.9096, -1.8711, 1.0828, 1.9096, -1.8711, 1.3074, 1.5735, -1.8711, 1.1053, 1.9517, -1.8711, 1.1053, 1.9517, -1.8711, 1.3074, 1.5735, -1.8711, 1.1355, 1.9885, -1.8711, 1.1355, 1.9885, -1.8711, 1.3074, 1.5735, -1.8711, 1.1723, 2.0187, -1.8711, 1.1723, 2.0187, -1.8711, 1.3074, 1.5735, -1.8711, 1.2144, 2.0412, -1.8711, 1.2144, 2.0412, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 2.055, -1.8711, 1.26, 2.055, -1.8711, 1.3074, 1.5735, -1.8711, 1.3074, 2.0597, -1.8711, 1.3074, 2.0597, -1.8711, 1.3074, 1.5735, -1.8711, 1.3548, 2.055, -1.8711, 1.3548, 2.055, -1.8711, 1.3074, 1.5735, -1.8711, 1.4004, 2.0412, -1.8711, 1.4004, 2.0412, -1.8711, 1.3074, 1.5735, -1.8711, 1.4425, 2.0187, -1.8711, 1.4425, 2.0187, -1.8711, 1.3074, 1.5735, -1.8711, 1.4793, 1.9885, -1.8711, 1.4793, 1.9885, -1.8711, 1.3074, 1.5735, -1.8711, 1.5095, 1.9517, -1.8711, 1.5095, 1.9517, -1.8711, 1.3074, 1.5735, -1.8711, 1.532, 1.9096, -1.8711, 1.532, 1.9096, -1.8711, 1.3074, 1.5735, -1.8711, 1.5458, 1.864, -1.8711, 1.5458, 1.864, -1.8711, 1.3074, 1.5735, -1.8711, 1.5505, 1.8166, -1.8711, 1.5505, 1.8166, -1.8711, 1.3074, 1.5735, -1.8711, 1.5458, 1.7692, -1.8711, 1.5458, 1.7692, -1.8711, 1.3074, 1.5735, -1.8711, 1.532, 1.7236, -1.8711, 1.532, 1.7236, -1.8711, 1.3074, 1.5735, -1.8711, 1.5095, 1.6815, -1.8711, 1.5095, 1.6815, -1.8711, 1.3074, 1.5735, -1.8711, 1.4793, 1.6447, -1.8711, 1.4793, 1.6447, -1.8711, 1.3074, 1.5735, -1.8711, 1.4425, 1.6145, -1.8711, 1.4425, 1.6145, -1.8711, 1.3074, 1.5735, -1.8711, 1.4004, 1.592, -1.8711, 1.4004, 1.592, -1.8711, 1.3074, 1.5735, -1.8711, 1.3548, 1.5782, 1.7287, 1.3074, 1.5735, -1.8711, 1.3074, 1.5735, 1.7287, 1.26, 1.5782, 1.7287, 1.26, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 1.5782, 1.7287, 1.26, 1.5782, -1.8711, 1.26, 1.5782, 1.7287, 1.2144, 1.592, 1.7287, 1.2144, 1.592, -1.8711, 1.26, 1.5782, -1.8711, 1.2144, 1.592, 1.7287, 1.2144, 1.592, -1.8711, 1.2144, 1.592, 1.7287, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, -1.8711, 1.2144, 1.592, -1.8711, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, -1.8711, 1.1723, 1.6145, 1.7287, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, -1.8711, 1.1723, 1.6145, -1.8711, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, -1.8711, 1.1355, 1.6447, 1.7287, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, -1.8711, 1.1355, 1.6447, -1.8711, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, -1.8711, 1.1053, 1.6815, 1.7287, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, -1.8711, 1.1053, 1.6815, -1.8711, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, -1.8711, 1.0828, 1.7236, 1.7287, 1.069, 1.7692, 1.7287, 1.069, 1.7692, -1.8711, 1.0828, 1.7236, -1.8711, 1.069, 1.7692, 1.7287, 1.069, 1.7692, -1.8711, 1.069, 1.7692, 1.7287, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, -1.8711, 1.069, 1.7692, -1.8711, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, -1.8711, 1.0643, 1.8166, 1.7287, 1.069, 1.864, 1.7287, 1.069, 1.864, -1.8711, 1.0643, 1.8166, -1.8711, 1.069, 1.864, 1.7287, 1.069, 1.864, -1.8711, 1.069, 1.864, 1.7287, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, -1.8711, 1.069, 1.864, -1.8711, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, -1.8711, 1.0828, 1.9096, 1.7287, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, -1.8711, 1.0828, 1.9096, -1.8711, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, -1.8711, 1.1053, 1.9517, 1.7287, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, -1.8711, 1.1053, 1.9517, -1.8711, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, -1.8711, 1.1355, 1.9885, 1.7287, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, -1.8711, 1.1355, 1.9885, -1.8711, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, -1.8711, 1.1723, 2.0187, 1.7287, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, -1.8711, 1.1723, 2.0187, -1.8711, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, -1.8711, 1.2144, 2.0412, 1.7287, 1.26, 2.055, 1.7287, 1.26, 2.055, -1.8711, 1.2144, 2.0412, -1.8711, 1.26, 2.055, 1.7287, 1.26, 2.055, -1.8711, 1.26, 2.055, 1.7287, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, -1.8711, 1.26, 2.055, -1.8711, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, -1.8711, 1.3074, 2.0597, 1.7287, 1.3548, 2.055, 1.7287, 1.3548, 2.055, -1.8711, 1.3074, 2.0597, -1.8711, 1.3548, 2.055, 1.7287, 1.3548, 2.055, -1.8711, 1.3548, 2.055, 1.7287, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, -1.8711, 1.3548, 2.055, -1.8711, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, -1.8711, 1.4004, 2.0412, 1.7287, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, -1.8711, 1.4004, 2.0412, -1.8711, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, -1.8711, 1.4425, 2.0187, 1.7287, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, -1.8711, 1.4425, 2.0187, -1.8711, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, -1.8711, 1.4793, 1.9885, 1.7287, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, -1.8711, 1.4793, 1.9885, -1.8711, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, -1.8711, 1.5095, 1.9517, 1.7287, 1.532, 1.9096, 1.7287, 1.532, 1.9096, -1.8711, 1.5095, 1.9517, -1.8711, 1.532, 1.9096, 1.7287, 1.532, 1.9096, -1.8711, 1.532, 1.9096, 1.7287, 1.5458, 1.864, 1.7287, 1.5458, 1.864, -1.8711, 1.532, 1.9096, -1.8711, 1.5458, 1.864, 1.7287, 1.5458, 1.864, -1.8711, 1.5458, 1.864, 1.7287, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, -1.8711, 1.5458, 1.864, -1.8711, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, -1.8711, 1.5505, 1.8166, 1.7287, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, -1.8711, 1.5505, 1.8166, -1.8711, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, -1.8711, 1.5458, 1.7692, 1.7287, 1.532, 1.7236, 1.7287, 1.532, 1.7236, -1.8711, 1.5458, 1.7692, -1.8711, 1.532, 1.7236, 1.7287, 1.532, 1.7236, -1.8711, 1.532, 1.7236, 1.7287, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, -1.8711, 1.532, 1.7236, -1.8711, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, -1.8711, 1.5095, 1.6815, 1.7287, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, -1.8711, 1.5095, 1.6815, -1.8711, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, -1.8711, 1.4793, 1.6447, 1.7287, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, -1.8711, 1.4793, 1.6447, -1.8711, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, -1.8711, 1.4425, 1.6145, 1.7287, 1.4004, 1.592, 1.7287, 1.4004, 1.592, -1.8711, 1.4425, 1.6145, -1.8711, 1.4004, 1.592, 1.7287, 1.3074, 1.5735, 1.7287, 1.26, 1.5782, 1.7287, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, 1.7287, 1.26, 1.5782, 1.7287, 1.4004, 1.592, 1.7287, 1.4004, 1.592, 1.7287, 1.26, 1.5782, 1.7287, 1.4425, 1.6145, 1.7287, 1.4425, 1.6145, 1.7287, 1.26, 1.5782, 1.7287, 1.4793, 1.6447, 1.7287, 1.4793, 1.6447, 1.7287, 1.26, 1.5782, 1.7287, 1.5095, 1.6815, 1.7287, 1.5095, 1.6815, 1.7287, 1.26, 1.5782, 1.7287, 1.532, 1.7236, 1.7287, 1.532, 1.7236, 1.7287, 1.26, 1.5782, 1.7287, 1.5458, 1.7692, 1.7287, 1.5458, 1.7692, 1.7287, 1.26, 1.5782, 1.7287, 1.5505, 1.8166, 1.7287, 1.5505, 1.8166, 1.7287, 1.26, 1.5782, 1.7287, 1.5458, 1.864, 1.7287, 1.5458, 1.864, 1.7287, 1.26, 1.5782, 1.7287, 1.532, 1.9096, 1.7287, 1.532, 1.9096, 1.7287, 1.26, 1.5782, 1.7287, 1.5095, 1.9517, 1.7287, 1.5095, 1.9517, 1.7287, 1.26, 1.5782, 1.7287, 1.4793, 1.9885, 1.7287, 1.4793, 1.9885, 1.7287, 1.26, 1.5782, 1.7287, 1.4425, 2.0187, 1.7287, 1.4425, 2.0187, 1.7287, 1.26, 1.5782, 1.7287, 1.4004, 2.0412, 1.7287, 1.4004, 2.0412, 1.7287, 1.26, 1.5782, 1.7287, 1.3548, 2.055, 1.7287, 1.3548, 2.055, 1.7287, 1.26, 1.5782, 1.7287, 1.3074, 2.0597, 1.7287, 1.3074, 2.0597, 1.7287, 1.26, 1.5782, 1.7287, 1.26, 2.055, 1.7287, 1.26, 2.055, 1.7287, 1.26, 1.5782, 1.7287, 1.2144, 2.0412, 1.7287, 1.2144, 2.0412, 1.7287, 1.26, 1.5782, 1.7287, 1.1723, 2.0187, 1.7287, 1.1723, 2.0187, 1.7287, 1.26, 1.5782, 1.7287, 1.1355, 1.9885, 1.7287, 1.1355, 1.9885, 1.7287, 1.26, 1.5782, 1.7287, 1.1053, 1.9517, 1.7287, 1.1053, 1.9517, 1.7287, 1.26, 1.5782, 1.7287, 1.0828, 1.9096, 1.7287, 1.0828, 1.9096, 1.7287, 1.26, 1.5782, 1.7287, 1.069, 1.864, 1.7287, 1.069, 1.864, 1.7287, 1.26, 1.5782, 1.7287, 1.0643, 1.8166, 1.7287, 1.0643, 1.8166, 1.7287, 1.26, 1.5782, 1.7287, 1.069, 1.7692, 1.7287, 1.069, 1.7692, 1.7287, 1.26, 1.5782, 1.7287, 1.0828, 1.7236, 1.7287, 1.0828, 1.7236, 1.7287, 1.26, 1.5782, 1.7287, 1.1053, 1.6815, 1.7287, 1.1053, 1.6815, 1.7287, 1.26, 1.5782, 1.7287, 1.1355, 1.6447, 1.7287, 1.1355, 1.6447, 1.7287, 1.26, 1.5782, 1.7287, 1.1723, 1.6145, 1.7287, 1.1723, 1.6145, 1.7287, 1.26, 1.5782, 1.7287, 1.2144, 1.592, 1.7287, 1.4004, 1.592, -1.8711, 1.4004, 1.592, 1.7287, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, -1.8711, 1.4004, 1.592, -1.8711, 1.3548, 1.5782, 1.7287, 1.3548, 1.5782, -1.8711, 1.3548, 1.5782, 1.7287, 1.3074, 1.5735, 1.7287, 1.3074, 1.5735, -1.8711, 1.3548, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 1.5782, -1.8711, 1.3074, 1.5735, -1.8711, 1.2144, 1.592, -1.8711, 1.2144, 1.592, -1.8711, 1.3074, 1.5735, -1.8711, 1.1723, 1.6145, -1.8711, 1.1723, 1.6145, -1.8711, 1.3074, 1.5735, -1.8711, 1.1355, 1.6447, -1.8711, 1.1355, 1.6447, -1.8711, 1.3074, 1.5735, -1.8711, 1.1053, 1.6815, -1.8711, 1.1053, 1.6815, -1.8711, 1.3074, 1.5735, -1.8711, 1.0828, 1.7236, -1.8711, 1.0828, 1.7236, -1.8711, 1.3074, 1.5735, -1.8711, 1.069, 1.7692, -1.8711, 1.069, 1.7692, -1.8711, 1.3074, 1.5735, -1.8711, 1.0643, 1.8166, -1.8711, 1.0643, 1.8166, -1.8711, 1.3074, 1.5735, -1.8711, 1.069, 1.864, -1.8711, 1.069, 1.864, -1.8711, 1.3074, 1.5735, -1.8711, 1.0828, 1.9096, -1.8711, 1.0828, 1.9096, -1.8711, 1.3074, 1.5735, -1.8711, 1.1053, 1.9517, -1.8711, 1.1053, 1.9517, -1.8711, 1.3074, 1.5735, -1.8711, 1.1355, 1.9885, -1.8711, 1.1355, 1.9885, -1.8711, 1.3074, 1.5735, -1.8711, 1.1723, 2.0187, -1.8711, 1.1723, 2.0187, -1.8711, 1.3074, 1.5735, -1.8711, 1.2144, 2.0412, -1.8711, 1.2144, 2.0412, -1.8711, 1.3074, 1.5735, -1.8711, 1.26, 2.055, -1.8711, 1.26, 2.055, -1.8711, 1.3074, 1.5735, -1.8711, 1.3074, 2.0597, -1.8711, 1.3074, 2.0597, -1.8711, 1.3074, 1.5735, -1.8711, 1.3548, 2.055, -1.8711, 1.3548, 2.055, -1.8711, 1.3074, 1.5735, -1.8711, 1.4004, 2.0412, -1.8711, 1.4004, 2.0412, -1.8711, 1.3074, 1.5735, -1.8711, 1.4425, 2.0187, -1.8711, 1.4425, 2.0187, -1.8711, 1.3074, 1.5735, -1.8711, 1.4793, 1.9885, -1.8711, 1.4793, 1.9885, -1.8711, 1.3074, 1.5735, -1.8711, 1.5095, 1.9517, -1.8711, 1.5095, 1.9517, -1.8711, 1.3074, 1.5735, -1.8711, 1.532, 1.9096, -1.8711, 1.532, 1.9096, -1.8711, 1.3074, 1.5735, -1.8711, 1.5458, 1.864, -1.8711, 1.5458, 1.864, -1.8711, 1.3074, 1.5735, -1.8711, 1.5505, 1.8166, -1.8711, 1.5505, 1.8166, -1.8711, 1.3074, 1.5735, -1.8711, 1.5458, 1.7692, -1.8711, 1.5458, 1.7692, -1.8711, 1.3074, 1.5735, -1.8711, 1.532, 1.7236, -1.8711, 1.532, 1.7236, -1.8711, 1.3074, 1.5735, -1.8711, 1.5095, 1.6815, -1.8711, 1.5095, 1.6815, -1.8711, 1.3074, 1.5735, -1.8711, 1.4793, 1.6447, -1.8711, 1.4793, 1.6447, -1.8711, 1.3074, 1.5735, -1.8711, 1.4425, 1.6145, -1.8711, 1.4425, 1.6145, -1.8711, 1.3074, 1.5735, -1.8711, 1.4004, 1.592, -1.8711, 1.4004, 1.592, -1.8711, 1.3074, 1.5735, -1.8711, 1.3548, 1.5782, 1.7287, -1.0163, 1.5735, -1.8711, -1.0163, 1.5735, 1.7287, -1.0637, 1.5782, 1.7287, -1.0637, 1.5782, -1.8711, -1.0163, 1.5735, -1.8711, -1.0637, 1.5782, 1.7287, -1.0637, 1.5782, -1.8711, -1.0637, 1.5782, 1.7287, -1.1093, 1.592, 1.7287, -1.1093, 1.592, -1.8711, -1.0637, 1.5782, -1.8711, -1.1093, 1.592, 1.7287, -1.1093, 1.592, -1.8711, -1.1093, 1.592, 1.7287, -1.1514, 1.6145, 1.7287, -1.1514, 1.6145, -1.8711, -1.1093, 1.592, -1.8711, -1.1514, 1.6145, 1.7287, -1.1514, 1.6145, -1.8711, -1.1514, 1.6145, 1.7287, -1.1882, 1.6447, 1.7287, -1.1882, 1.6447, -1.8711, -1.1514, 1.6145, -1.8711, -1.1882, 1.6447, 1.7287, -1.1882, 1.6447, -1.8711, -1.1882, 1.6447, 1.7287, -1.2185, 1.6815, 1.7287, -1.2185, 1.6815, -1.8711, -1.1882, 1.6447, -1.8711, -1.2185, 1.6815, 1.7287, -1.2185, 1.6815, -1.8711, -1.2185, 1.6815, 1.7287, -1.2409, 1.7236, 1.7287, -1.2409, 1.7236, -1.8711, -1.2185, 1.6815, -1.8711, -1.2409, 1.7236, 1.7287, -1.2409, 1.7236, -1.8711, -1.2409, 1.7236, 1.7287, -1.2548, 1.7692, 1.7287, -1.2548, 1.7692, -1.8711, -1.2409, 1.7236, -1.8711, -1.2548, 1.7692, 1.7287, -1.2548, 1.7692, -1.8711, -1.2548, 1.7692, 1.7287, -1.2594, 1.8166, 1.7287, -1.2594, 1.8166, -1.8711, -1.2548, 1.7692, -1.8711, -1.2594, 1.8166, 1.7287, -1.2594, 1.8166, -1.8711, -1.2594, 1.8166, 1.7287, -1.2548, 1.864, 1.7287, -1.2548, 1.864, -1.8711, -1.2594, 1.8166, -1.8711, -1.2548, 1.864, 1.7287, -1.2548, 1.864, -1.8711, -1.2548, 1.864, 1.7287, -1.2409, 1.9096, 1.7287, -1.2409, 1.9096, -1.8711, -1.2548, 1.864, -1.8711, -1.2409, 1.9096, 1.7287, -1.2409, 1.9096, -1.8711, -1.2409, 1.9096, 1.7287, -1.2185, 1.9517, 1.7287, -1.2185, 1.9517, -1.8711, -1.2409, 1.9096, -1.8711, -1.2185, 1.9517, 1.7287, -1.2185, 1.9517, -1.8711, -1.2185, 1.9517, 1.7287, -1.1882, 1.9885, 1.7287, -1.1882, 1.9885, -1.8711, -1.2185, 1.9517, -1.8711, -1.1882, 1.9885, 1.7287, -1.1882, 1.9885, -1.8711, -1.1882, 1.9885, 1.7287, -1.1514, 2.0187, 1.7287, -1.1514, 2.0187, -1.8711, -1.1882, 1.9885, -1.8711, -1.1514, 2.0187, 1.7287, -1.1514, 2.0187, -1.8711, -1.1514, 2.0187, 1.7287, -1.1093, 2.0412, 1.7287, -1.1093, 2.0412, -1.8711, -1.1514, 2.0187, -1.8711, -1.1093, 2.0412, 1.7287, -1.1093, 2.0412, -1.8711, -1.1093, 2.0412, 1.7287, -1.0637, 2.055, 1.7287, -1.0637, 2.055, -1.8711, -1.1093, 2.0412, -1.8711, -1.0637, 2.055, 1.7287, -1.0637, 2.055, -1.8711, -1.0637, 2.055, 1.7287, -1.0163, 2.0597, 1.7287, -1.0163, 2.0597, -1.8711, -1.0637, 2.055, -1.8711, -1.0163, 2.0597, 1.7287, -1.0163, 2.0597, -1.8711, -1.0163, 2.0597, 1.7287, -0.9689, 2.055, 1.7287, -0.9689, 2.055, -1.8711, -1.0163, 2.0597, -1.8711, -0.9689, 2.055, 1.7287, -0.9689, 2.055, -1.8711, -0.9689, 2.055, 1.7287, -0.9233, 2.0412, 1.7287, -0.9233, 2.0412, -1.8711, -0.9689, 2.055, -1.8711, -0.9233, 2.0412, 1.7287, -0.9233, 2.0412, -1.8711, -0.9233, 2.0412, 1.7287, -0.8812, 2.0187, 1.7287, -0.8812, 2.0187, -1.8711, -0.9233, 2.0412, -1.8711, -0.8812, 2.0187, 1.7287, -0.8812, 2.0187, -1.8711, -0.8812, 2.0187, 1.7287, -0.8444, 1.9885, 1.7287, -0.8444, 1.9885, -1.8711, -0.8812, 2.0187, -1.8711, -0.8444, 1.9885, 1.7287, -0.8444, 1.9885, -1.8711, -0.8444, 1.9885, 1.7287, -0.8142, 1.9517, 1.7287, -0.8142, 1.9517, -1.8711, -0.8444, 1.9885, -1.8711, -0.8142, 1.9517, 1.7287, -0.8142, 1.9517, -1.8711, -0.8142, 1.9517, 1.7287, -0.7917, 1.9096, 1.7287, -0.7917, 1.9096, -1.8711, -0.8142, 1.9517, -1.8711, -0.7917, 1.9096, 1.7287, -0.7917, 1.9096, -1.8711, -0.7917, 1.9096, 1.7287, -0.7779, 1.864, 1.7287, -0.7779, 1.864, -1.8711, -0.7917, 1.9096, -1.8711, -0.7779, 1.864, 1.7287, -0.7779, 1.864, -1.8711, -0.7779, 1.864, 1.7287, -0.7732, 1.8166, 1.7287, -0.7732, 1.8166, -1.8711, -0.7779, 1.864, -1.8711, -0.7732, 1.8166, 1.7287, -0.7732, 1.8166, -1.8711, -0.7732, 1.8166, 1.7287, -0.7779, 1.7692, 1.7287, -0.7779, 1.7692, -1.8711, -0.7732, 1.8166, -1.8711, -0.7779, 1.7692, 1.7287, -0.7779, 1.7692, -1.8711, -0.7779, 1.7692, 1.7287, -0.7917, 1.7236, 1.7287, -0.7917, 1.7236, -1.8711, -0.7779, 1.7692, -1.8711, -0.7917, 1.7236, 1.7287, -0.7917, 1.7236, -1.8711, -0.7917, 1.7236, 1.7287, -0.8142, 1.6815, 1.7287, -0.8142, 1.6815, -1.8711, -0.7917, 1.7236, -1.8711, -0.8142, 1.6815, 1.7287, -0.8142, 1.6815, -1.8711, -0.8142, 1.6815, 1.7287, -0.8444, 1.6447, 1.7287, -0.8444, 1.6447, -1.8711, -0.8142, 1.6815, -1.8711, -0.8444, 1.6447, 1.7287, -0.8444, 1.6447, -1.8711, -0.8444, 1.6447, 1.7287, -0.8813, 1.6145, 1.7287, -0.8813, 1.6145, -1.8711, -0.8444, 1.6447, -1.8711, -0.8812, 1.6145, 1.7287, -0.8813, 1.6145, -1.8711, -0.8812, 1.6145, 1.7287, -0.9233, 1.592, 1.7287, -0.9233, 1.592, -1.8711, -0.8812, 1.6145, -1.8711, -0.9233, 1.592, 1.7287, -1.0163, 1.5735, 1.7287, -1.0637, 1.5782, 1.7287, -0.9689, 1.5782, 1.7287, -0.9689, 1.5782, 1.7287, -1.0637, 1.5782, 1.7287, -0.9233, 1.592, 1.7287, -0.9233, 1.592, 1.7287, -1.0637, 1.5782, 1.7287, -0.8813, 1.6145, 1.7287, -0.8813, 1.6145, 1.7287, -1.0637, 1.5782, 1.7287, -0.8444, 1.6447, 1.7287, -0.8444, 1.6447, 1.7287, -1.0637, 1.5782, 1.7287, -0.8142, 1.6815, 1.7287, -0.8142, 1.6815, 1.7287, -1.0637, 1.5782, 1.7287, -0.7917, 1.7236, 1.7287, -0.7917, 1.7236, 1.7287, -1.0637, 1.5782, 1.7287, -0.7779, 1.7692, 1.7287, -0.7779, 1.7692, 1.7287, -1.0637, 1.5782, 1.7287, -0.7732, 1.8166, 1.7287, -0.7732, 1.8166, 1.7287, -1.0637, 1.5782, 1.7287, -0.7779, 1.864, 1.7287, -0.7779, 1.864, 1.7287, -1.0637, 1.5782, 1.7287, -0.7917, 1.9096, 1.7287, -0.7917, 1.9096, 1.7287, -1.0637, 1.5782, 1.7287, -0.8142, 1.9517, 1.7287, -0.8142, 1.9517, 1.7287, -1.0637, 1.5782, 1.7287, -0.8444, 1.9885, 1.7287, -0.8444, 1.9885, 1.7287, -1.0637, 1.5782, 1.7287, -0.8812, 2.0187, 1.7287, -0.8812, 2.0187, 1.7287, -1.0637, 1.5782, 1.7287, -0.9233, 2.0412, 1.7287, -0.9233, 2.0412, 1.7287, -1.0637, 1.5782, 1.7287, -0.9689, 2.055, 1.7287, -0.9689, 2.055, 1.7287, -1.0637, 1.5782, 1.7287, -1.0163, 2.0597, 1.7287, -1.0163, 2.0597, 1.7287, -1.0637, 1.5782, 1.7287, -1.0637, 2.055, 1.7287, -1.0637, 2.055, 1.7287, -1.0637, 1.5782, 1.7287, -1.1093, 2.0412, 1.7287, -1.1093, 2.0412, 1.7287, -1.0637, 1.5782, 1.7287, -1.1514, 2.0187, 1.7287, -1.1514, 2.0187, 1.7287, -1.0637, 1.5782, 1.7287, -1.1882, 1.9885, 1.7287, -1.1882, 1.9885, 1.7287, -1.0637, 1.5782, 1.7287, -1.2185, 1.9517, 1.7287, -1.2185, 1.9517, 1.7287, -1.0637, 1.5782, 1.7287, -1.2409, 1.9096, 1.7287, -1.2409, 1.9096, 1.7287, -1.0637, 1.5782, 1.7287, -1.2548, 1.864, 1.7287, -1.2548, 1.864, 1.7287, -1.0637, 1.5782, 1.7287, -1.2594, 1.8166, 1.7287, -1.2594, 1.8166, 1.7287, -1.0637, 1.5782, 1.7287, -1.2548, 1.7692, 1.7287, -1.2548, 1.7692, 1.7287, -1.0637, 1.5782, 1.7287, -1.2409, 1.7236, 1.7287, -1.2409, 1.7236, 1.7287, -1.0637, 1.5782, 1.7287, -1.2185, 1.6815, 1.7287, -1.2185, 1.6815, 1.7287, -1.0637, 1.5782, 1.7287, -1.1882, 1.6447, 1.7287, -1.1882, 1.6447, 1.7287, -1.0637, 1.5782, 1.7287, -1.1514, 1.6145, 1.7287, -1.1514, 1.6145, 1.7287, -1.0637, 1.5782, 1.7287, -1.1093, 1.592, 1.7287, -0.9233, 1.592, -1.8711, -0.9233, 1.592, 1.7287, -0.9689, 1.5782, 1.7287, -0.9689, 1.5782, -1.8711, -0.9233, 1.592, -1.8711, -0.9689, 1.5782, 1.7287, -0.9689, 1.5782, -1.8711, -0.9689, 1.5782, 1.7287, -1.0163, 1.5735, 1.7287, -1.0163, 1.5735, -1.8711, -0.9689, 1.5782, -1.8711, -1.0163, 1.5735, -1.8711, -1.0637, 1.5782, -1.8711, -1.0163, 1.5735, -1.8711, -1.1093, 1.592, -1.8711, -1.1093, 1.592, -1.8711, -1.0163, 1.5735, -1.8711, -1.1514, 1.6145, -1.8711, -1.1514, 1.6145, -1.8711, -1.0163, 1.5735, -1.8711, -1.1882, 1.6447, -1.8711, -1.1882, 1.6447, -1.8711, -1.0163, 1.5735, -1.8711, -1.2185, 1.6815, -1.8711, -1.2185, 1.6815, -1.8711, -1.0163, 1.5735, -1.8711, -1.2409, 1.7236, -1.8711, -1.2409, 1.7236, -1.8711, -1.0163, 1.5735, -1.8711, -1.2548, 1.7692, -1.8711, -1.2548, 1.7692, -1.8711, -1.0163, 1.5735, -1.8711, -1.2594, 1.8166, -1.8711, -1.2594, 1.8166, -1.8711, -1.0163, 1.5735, -1.8711, -1.2548, 1.864, -1.8711, -1.2548, 1.864, -1.8711, -1.0163, 1.5735, -1.8711, -1.2409, 1.9096, -1.8711, -1.2409, 1.9096, -1.8711, -1.0163, 1.5735, -1.8711, -1.2185, 1.9517, -1.8711, -1.2185, 1.9517, -1.8711, -1.0163, 1.5735, -1.8711, -1.1882, 1.9885, -1.8711, -1.1882, 1.9885, -1.8711, -1.0163, 1.5735, -1.8711, -1.1514, 2.0187, -1.8711, -1.1514, 2.0187, -1.8711, -1.0163, 1.5735, -1.8711, -1.1093, 2.0412, -1.8711, -1.1093, 2.0412, -1.8711, -1.0163, 1.5735, -1.8711, -1.0637, 2.055, -1.8711, -1.0637, 2.055, -1.8711, -1.0163, 1.5735, -1.8711, -1.0163, 2.0597, -1.8711, -1.0163, 2.0597, -1.8711, -1.0163, 1.5735, -1.8711, -0.9689, 2.055, -1.8711, -0.9689, 2.055, -1.8711, -1.0163, 1.5735, -1.8711, -0.9233, 2.0412, -1.8711, -0.9233, 2.0412, -1.8711, -1.0163, 1.5735, -1.8711, -0.8812, 2.0187, -1.8711, -0.8812, 2.0187, -1.8711, -1.0163, 1.5735, -1.8711, -0.8444, 1.9885, -1.8711, -0.8444, 1.9885, -1.8711, -1.0163, 1.5735, -1.8711, -0.8142, 1.9517, -1.8711, -0.8142, 1.9517, -1.8711, -1.0163, 1.5735, -1.8711, -0.7917, 1.9096, -1.8711, -0.7917, 1.9096, -1.8711, -1.0163, 1.5735, -1.8711, -0.7779, 1.864, -1.8711, -0.7779, 1.864, -1.8711, -1.0163, 1.5735, -1.8711, -0.7732, 1.8166, -1.8711, -0.7732, 1.8166, -1.8711, -1.0163, 1.5735, -1.8711, -0.7779, 1.7692, -1.8711, -0.7779, 1.7692, -1.8711, -1.0163, 1.5735, -1.8711, -0.7917, 1.7236, -1.8711, -0.7917, 1.7236, -1.8711, -1.0163, 1.5735, -1.8711, -0.8142, 1.6815, -1.8711, -0.8142, 1.6815, -1.8711, -1.0163, 1.5735, -1.8711, -0.8444, 1.6447, -1.8711, -0.8444, 1.6447, -1.8711, -1.0163, 1.5735, -1.8711, -0.8812, 1.6145, -1.8711, -0.8812, 1.6145, -1.8711, -1.0163, 1.5735, -1.8711, -0.9233, 1.592, -1.8711, -0.9233, 1.592, -1.8711, -1.0163, 1.5735, -1.8711, -0.9689, 1.5782, 1.7287, 0.1455, 2.1544, -1.8711, 0.1455, 2.1544, 1.7287, 0.0981, 2.1591, 1.7287, 0.0981, 2.1591, -1.8711, 0.1455, 2.1544, -1.8711, 0.0981, 2.1591, 1.7287, 0.0981, 2.1591, -1.8711, 0.0981, 2.1591, 1.7287, 0.0525, 2.1729, 1.7287, 0.0525, 2.1729, -1.8711, 0.0981, 2.1591, -1.8711, 0.0525, 2.1729, 1.7287, 0.0525, 2.1729, -1.8711, 0.0525, 2.1729, 1.7287, 0.0105, 2.1954, 1.7287, 0.0105, 2.1954, -1.8711, 0.0525, 2.1729, -1.8711, 0.0105, 2.1954, 1.7287, 0.0105, 2.1954, -1.8711, 0.0105, 2.1954, 1.7287, -0.0264, 2.2256, 1.7287, -0.0264, 2.2256, -1.8711, 0.0105, 2.1954, -1.8711, -0.0264, 2.2256, 1.7287, -0.0264, 2.2256, -1.8711, -0.0264, 2.2256, 1.7287, -0.0566, 2.2625, 1.7287, -0.0566, 2.2625, -1.8711, -0.0264, 2.2256, -1.8711, -0.0566, 2.2625, 1.7287, -0.0566, 2.2625, -1.8711, -0.0566, 2.2625, 1.7287, -0.0791, 2.3045, 1.7287, -0.0791, 2.3045, -1.8711, -0.0566, 2.2625, -1.8711, -0.0791, 2.3045, 1.7287, -0.0791, 2.3045, -1.8711, -0.0791, 2.3045, 1.7287, -0.0929, 2.3501, 1.7287, -0.0929, 2.3501, -1.8711, -0.0791, 2.3045, -1.8711, -0.0929, 2.3501, 1.7287, -0.0929, 2.3501, -1.8711, -0.0929, 2.3501, 1.7287, -0.0976, 2.3975, 1.7287, -0.0976, 2.3975, -1.8711, -0.0929, 2.3501, -1.8711, -0.0976, 2.3975, 1.7287, -0.0976, 2.3975, -1.8711, -0.0976, 2.3975, 1.7287, -0.0929, 2.445, 1.7287, -0.0929, 2.445, -1.8711, -0.0976, 2.3975, -1.8711, -0.0929, 2.445, 1.7287, -0.0929, 2.445, -1.8711, -0.0929, 2.445, 1.7287, -0.0791, 2.4906, 1.7287, -0.0791, 2.4906, -1.8711, -0.0929, 2.445, -1.8711, -0.0791, 2.4906, 1.7287, -0.0791, 2.4906, -1.8711, -0.0791, 2.4906, 1.7287, -0.0566, 2.5326, 1.7287, -0.0566, 2.5326, -1.8711, -0.0791, 2.4906, -1.8711, -0.0566, 2.5326, 1.7287, -0.0566, 2.5326, -1.8711, -0.0566, 2.5326, 1.7287, -0.0264, 2.5694, 1.7287, -0.0264, 2.5694, -1.8711, -0.0566, 2.5326, -1.8711, -0.0264, 2.5694, 1.7287, -0.0264, 2.5694, -1.8711, -0.0264, 2.5694, 1.7287, 0.0105, 2.5997, 1.7287, 0.0105, 2.5997, -1.8711, -0.0264, 2.5694, -1.8711, 0.0105, 2.5997, 1.7287, 0.0105, 2.5997, -1.8711, 0.0105, 2.5997, 1.7287, 0.0525, 2.6221, 1.7287, 0.0525, 2.6221, -1.8711, 0.0105, 2.5997, -1.8711, 0.0525, 2.6221, 1.7287, 0.0525, 2.6221, -1.8711, 0.0525, 2.6221, 1.7287, 0.0981, 2.636, 1.7287, 0.0981, 2.636, -1.8711, 0.0525, 2.6221, -1.8711, 0.0981, 2.636, 1.7287, 0.0981, 2.636, -1.8711, 0.0981, 2.636, 1.7287, 0.1455, 2.6406, 1.7287, 0.1455, 2.6406, -1.8711, 0.0981, 2.636, -1.8711, 0.1455, 2.6406, 1.7287, 0.1455, 2.6406, -1.8711, 0.1455, 2.6406, 1.7287, 0.193, 2.636, 1.7287, 0.193, 2.636, -1.8711, 0.1455, 2.6406, -1.8711, 0.193, 2.636, 1.7287, 0.193, 2.636, -1.8711, 0.193, 2.636, 1.7287, 0.2386, 2.6221, 1.7287, 0.2386, 2.6221, -1.8711, 0.193, 2.636, -1.8711, 0.2386, 2.6221, 1.7287, 0.2386, 2.6221, -1.8711, 0.2386, 2.6221, 1.7287, 0.2806, 2.5997, 1.7287, 0.2806, 2.5997, -1.8711, 0.2386, 2.6221, -1.8711, 0.2806, 2.5997, 1.7287, 0.2806, 2.5997, -1.8711, 0.2806, 2.5997, 1.7287, 0.3174, 2.5694, 1.7287, 0.3174, 2.5694, -1.8711, 0.2806, 2.5997, -1.8711, 0.3174, 2.5694, 1.7287, 0.3174, 2.5694, -1.8711, 0.3174, 2.5694, 1.7287, 0.3477, 2.5326, 1.7287, 0.3477, 2.5326, -1.8711, 0.3174, 2.5694, -1.8711, 0.3477, 2.5326, 1.7287, 0.3477, 2.5326, -1.8711, 0.3477, 2.5326, 1.7287, 0.3701, 2.4906, 1.7287, 0.3701, 2.4906, -1.8711, 0.3477, 2.5326, -1.8711, 0.3701, 2.4906, 1.7287, 0.3701, 2.4906, -1.8711, 0.3701, 2.4906, 1.7287, 0.384, 2.445, 1.7287, 0.384, 2.445, -1.8711, 0.3701, 2.4906, -1.8711, 0.384, 2.445, 1.7287, 0.384, 2.445, -1.8711, 0.384, 2.445, 1.7287, 0.3886, 2.3975, 1.7287, 0.3886, 2.3975, -1.8711, 0.384, 2.445, -1.8711, 0.3886, 2.3975, 1.7287, 0.3886, 2.3975, -1.8711, 0.3886, 2.3975, 1.7287, 0.384, 2.3501, 1.7287, 0.384, 2.3501, -1.8711, 0.3886, 2.3975, -1.8711, 0.384, 2.3501, 1.7287, 0.384, 2.3501, -1.8711, 0.384, 2.3501, 1.7287, 0.3701, 2.3045, 1.7287, 0.3701, 2.3045, -1.8711, 0.384, 2.3501, -1.8711, 0.3701, 2.3045, 1.7287, 0.3701, 2.3045, -1.8711, 0.3701, 2.3045, 1.7287, 0.3477, 2.2625, 1.7287, 0.3477, 2.2625, -1.8711, 0.3701, 2.3045, -1.8711, 0.3477, 2.2625, 1.7287, 0.3477, 2.2625, -1.8711, 0.3477, 2.2625, 1.7287, 0.3174, 2.2256, 1.7287, 0.3174, 2.2256, -1.8711, 0.3477, 2.2625, -1.8711, 0.3174, 2.2256, 1.7287, 0.3174, 2.2256, -1.8711, 0.3174, 2.2256, 1.7287, 0.2806, 2.1954, 1.7287, 0.2806, 2.1954, -1.8711, 0.3174, 2.2256, -1.8711, 0.2806, 2.1954, 1.7287, 0.2806, 2.1954, -1.8711, 0.2806, 2.1954, 1.7287, 0.2386, 2.1729, 1.7287, 0.2386, 2.1729, -1.8711, 0.2806, 2.1954, -1.8711, 0.2386, 2.1729, 1.7287, 0.1455, 2.1544, 1.7287, 0.0981, 2.1591, 1.7287, 0.193, 2.1591, 1.7287, 0.193, 2.1591, 1.7287, 0.0981, 2.1591, 1.7287, 0.2386, 2.1729, 1.7287, 0.2386, 2.1729, 1.7287, 0.0981, 2.1591, 1.7287, 0.2806, 2.1954, 1.7287, 0.2806, 2.1954, 1.7287, 0.0981, 2.1591, 1.7287, 0.3174, 2.2256, 1.7287, 0.3174, 2.2256, 1.7287, 0.0981, 2.1591, 1.7287, 0.3477, 2.2625, 1.7287, 0.3477, 2.2625, 1.7287, 0.0981, 2.1591, 1.7287, 0.3701, 2.3045, 1.7287, 0.3701, 2.3045, 1.7287, 0.0981, 2.1591, 1.7287, 0.384, 2.3501, 1.7287, 0.384, 2.3501, 1.7287, 0.0981, 2.1591, 1.7287, 0.3886, 2.3975, 1.7287, 0.3886, 2.3975, 1.7287, 0.0981, 2.1591, 1.7287, 0.384, 2.445, 1.7287, 0.384, 2.445, 1.7287, 0.0981, 2.1591, 1.7287, 0.3701, 2.4906, 1.7287, 0.3701, 2.4906, 1.7287, 0.0981, 2.1591, 1.7287, 0.3477, 2.5326, 1.7287, 0.3477, 2.5326, 1.7287, 0.0981, 2.1591, 1.7287, 0.3174, 2.5694, 1.7287, 0.3174, 2.5694, 1.7287, 0.0981, 2.1591, 1.7287, 0.2806, 2.5997, 1.7287, 0.2806, 2.5997, 1.7287, 0.0981, 2.1591, 1.7287, 0.2386, 2.6221, 1.7287, 0.2386, 2.6221, 1.7287, 0.0981, 2.1591, 1.7287, 0.193, 2.636, 1.7287, 0.193, 2.636, 1.7287, 0.0981, 2.1591, 1.7287, 0.1455, 2.6406, 1.7287, 0.1455, 2.6406, 1.7287, 0.0981, 2.1591, 1.7287, 0.0981, 2.636, 1.7287, 0.0981, 2.636, 1.7287, 0.0981, 2.1591, 1.7287, 0.0525, 2.6221, 1.7287, 0.0525, 2.6221, 1.7287, 0.0981, 2.1591, 1.7287, 0.0105, 2.5997, 1.7287, 0.0105, 2.5997, 1.7287, 0.0981, 2.1591, 1.7287, -0.0264, 2.5694, 1.7287, -0.0264, 2.5694, 1.7287, 0.0981, 2.1591, 1.7287, -0.0566, 2.5326, 1.7287, -0.0566, 2.5326, 1.7287, 0.0981, 2.1591, 1.7287, -0.0791, 2.4906, 1.7287, -0.0791, 2.4906, 1.7287, 0.0981, 2.1591, 1.7287, -0.0929, 2.445, 1.7287, -0.0929, 2.445, 1.7287, 0.0981, 2.1591, 1.7287, -0.0976, 2.3975, 1.7287, -0.0976, 2.3975, 1.7287, 0.0981, 2.1591, 1.7287, -0.0929, 2.3501, 1.7287, -0.0929, 2.3501, 1.7287, 0.0981, 2.1591, 1.7287, -0.0791, 2.3045, 1.7287, -0.0791, 2.3045, 1.7287, 0.0981, 2.1591, 1.7287, -0.0566, 2.2625, 1.7287, -0.0566, 2.2625, 1.7287, 0.0981, 2.1591, 1.7287, -0.0264, 2.2256, 1.7287, -0.0264, 2.2256, 1.7287, 0.0981, 2.1591, 1.7287, 0.0105, 2.1954, 1.7287, 0.0105, 2.1954, 1.7287, 0.0981, 2.1591, 1.7287, 0.0525, 2.1729, 1.7287, 0.2386, 2.1729, -1.8711, 0.2386, 2.1729, 1.7287, 0.193, 2.1591, 1.7287, 0.193, 2.1591, -1.8711, 0.2386, 2.1729, -1.8711, 0.193, 2.1591, 1.7287, 0.193, 2.1591, -1.8711, 0.193, 2.1591, 1.7287, 0.1455, 2.1544, 1.7287, 0.1455, 2.1544, -1.8711, 0.193, 2.1591, -1.8711, 0.1455, 2.1544, -1.8711, 0.0981, 2.1591, -1.8711, 0.1455, 2.1544, -1.8711, 0.0525, 2.1729, -1.8711, 0.0525, 2.1729, -1.8711, 0.1455, 2.1544, -1.8711, 0.0105, 2.1954, -1.8711, 0.0105, 2.1954, -1.8711, 0.1455, 2.1544, -1.8711, -0.0264, 2.2256, -1.8711, -0.0264, 2.2256, -1.8711, 0.1455, 2.1544, -1.8711, -0.0566, 2.2625, -1.8711, -0.0566, 2.2625, -1.8711, 0.1455, 2.1544, -1.8711, -0.0791, 2.3045, -1.8711, -0.0791, 2.3045, -1.8711, 0.1455, 2.1544, -1.8711, -0.0929, 2.3501, -1.8711, -0.0929, 2.3501, -1.8711, 0.1455, 2.1544, -1.8711, -0.0976, 2.3975, -1.8711, -0.0976, 2.3975, -1.8711, 0.1455, 2.1544, -1.8711, -0.0929, 2.445, -1.8711, -0.0929, 2.445, -1.8711, 0.1455, 2.1544, -1.8711, -0.0791, 2.4906, -1.8711, -0.0791, 2.4906, -1.8711, 0.1455, 2.1544, -1.8711, -0.0566, 2.5326, -1.8711, -0.0566, 2.5326, -1.8711, 0.1455, 2.1544, -1.8711, -0.0264, 2.5694, -1.8711, -0.0264, 2.5694, -1.8711, 0.1455, 2.1544, -1.8711, 0.0105, 2.5997, -1.8711, 0.0105, 2.5997, -1.8711, 0.1455, 2.1544, -1.8711, 0.0525, 2.6221, -1.8711, 0.0525, 2.6221, -1.8711, 0.1455, 2.1544, -1.8711, 0.0981, 2.636, -1.8711, 0.0981, 2.636, -1.8711, 0.1455, 2.1544, -1.8711, 0.1455, 2.6406, -1.8711, 0.1455, 2.6406, -1.8711, 0.1455, 2.1544, -1.8711, 0.193, 2.636, -1.8711, 0.193, 2.636, -1.8711, 0.1455, 2.1544, -1.8711, 0.2386, 2.6221, -1.8711, 0.2386, 2.6221, -1.8711, 0.1455, 2.1544, -1.8711, 0.2806, 2.5997, -1.8711, 0.2806, 2.5997, -1.8711, 0.1455, 2.1544, -1.8711, 0.3174, 2.5694, -1.8711, 0.3174, 2.5694, -1.8711, 0.1455, 2.1544, -1.8711, 0.3477, 2.5326, -1.8711, 0.3477, 2.5326, -1.8711, 0.1455, 2.1544, -1.8711, 0.3701, 2.4906, -1.8711, 0.3701, 2.4906, -1.8711, 0.1455, 2.1544, -1.8711, 0.384, 2.445, -1.8711, 0.384, 2.445, -1.8711, 0.1455, 2.1544, -1.8711, 0.3886, 2.3975, -1.8711, 0.3886, 2.3975, -1.8711, 0.1455, 2.1544, -1.8711, 0.384, 2.3501, -1.8711, 0.384, 2.3501, -1.8711, 0.1455, 2.1544, -1.8711, 0.3701, 2.3045, -1.8711, 0.3701, 2.3045, -1.8711, 0.1455, 2.1544, -1.8711, 0.3477, 2.2625, -1.8711, 0.3477, 2.2625, -1.8711, 0.1455, 2.1544, -1.8711, 0.3174, 2.2256, -1.8711, 0.3174, 2.2256, -1.8711, 0.1455, 2.1544, -1.8711, 0.2806, 2.1954, -1.8711, 0.2806, 2.1954, -1.8711, 0.1455, 2.1544, -1.8711, 0.2386, 2.1729, -1.8711, 0.2386, 2.1729, -1.8711, 0.1455, 2.1544, -1.8711, 0.193, 2.1591, 1.7287, -1.0163, -1.9121, -1.8711, -1.0163, -1.9121, 1.7287, -1.0637, -1.9074, 1.7287, -1.0637, -1.9074, -1.8711, -1.0163, -1.9121, -1.8711, -1.0637, -1.9074, 1.7287, -1.0637, -1.9074, -1.8711, -1.0637, -1.9074, 1.7287, -1.1093, -1.8936, 1.7287, -1.1093, -1.8936, -1.8711, -1.0637, -1.9074, -1.8711, -1.1093, -1.8936, 1.7287, -1.1093, -1.8936, -1.8711, -1.1093, -1.8936, 1.7287, -1.1514, -1.8711, 1.7287, -1.1514, -1.8711, -1.8711, -1.1093, -1.8936, -1.8711, -1.1514, -1.8711, 1.7287, -1.1514, -1.8711, -1.8711, -1.1514, -1.8711, 1.7287, -1.1882, -1.8409, 1.7287, -1.1882, -1.8409, -1.8711, -1.1514, -1.8711, -1.8711, -1.1882, -1.8409, 1.7287, -1.1882, -1.8409, -1.8711, -1.1882, -1.8409, 1.7287, -1.2185, -1.804, 1.7287, -1.2185, -1.804, -1.8711, -1.1882, -1.8409, -1.8711, -1.2185, -1.804, 1.7287, -1.2185, -1.804, -1.8711, -1.2185, -1.804, 1.7287, -1.2409, -1.762, 1.7287, -1.2409, -1.762, -1.8711, -1.2185, -1.804, -1.8711, -1.2409, -1.762, 1.7287, -1.2409, -1.762, -1.8711, -1.2409, -1.762, 1.7287, -1.2548, -1.7164, 1.7287, -1.2548, -1.7164, -1.8711, -1.2409, -1.762, -1.8711, -1.2548, -1.7164, 1.7287, -1.2548, -1.7164, -1.8711, -1.2548, -1.7164, 1.7287, -1.2594, -1.669, 1.7287, -1.2594, -1.669, -1.8711, -1.2548, -1.7164, -1.8711, -1.2594, -1.669, 1.7287, -1.2594, -1.669, -1.8711, -1.2594, -1.669, 1.7287, -1.2548, -1.6215, 1.7287, -1.2548, -1.6215, -1.8711, -1.2594, -1.669, -1.8711, -1.2548, -1.6215, 1.7287, -1.2548, -1.6215, -1.8711, -1.2548, -1.6215, 1.7287, -1.2409, -1.5759, 1.7287, -1.2409, -1.5759, -1.8711, -1.2548, -1.6215, -1.8711, -1.2409, -1.5759, 1.7287, -1.2409, -1.5759, -1.8711, -1.2409, -1.5759, 1.7287, -1.2185, -1.5339, 1.7287, -1.2185, -1.5339, -1.8711, -1.2409, -1.5759, -1.8711, -1.2185, -1.5339, 1.7287, -1.2185, -1.5339, -1.8711, -1.2185, -1.5339, 1.7287, -1.1882, -1.4971, 1.7287, -1.1882, -1.4971, -1.8711, -1.2185, -1.5339, -1.8711, -1.1882, -1.4971, 1.7287, -1.1882, -1.4971, -1.8711, -1.1882, -1.4971, 1.7287, -1.1514, -1.4668, 1.7287, -1.1514, -1.4668, -1.8711, -1.1882, -1.4971, -1.8711, -1.1514, -1.4668, 1.7287, -1.1514, -1.4668, -1.8711, -1.1514, -1.4668, 1.7287, -1.1093, -1.4444, 1.7287, -1.1093, -1.4444, -1.8711, -1.1514, -1.4668, -1.8711, -1.1093, -1.4444, 1.7287, -1.1093, -1.4444, -1.8711, -1.1093, -1.4444, 1.7287, -1.0637, -1.4305, 1.7287, -1.0637, -1.4305, -1.8711, -1.1093, -1.4444, -1.8711, -1.0637, -1.4305, 1.7287, -1.0637, -1.4305, -1.8711, -1.0637, -1.4305, 1.7287, -1.0163, -1.4258, 1.7287, -1.0163, -1.4258, -1.8711, -1.0637, -1.4305, -1.8711, -1.0163, -1.4258, 1.7287, -1.0163, -1.4258, -1.8711, -1.0163, -1.4258, 1.7287, -0.9689, -1.4305, 1.7287, -0.9689, -1.4305, -1.8711, -1.0163, -1.4258, -1.8711, -0.9689, -1.4305, 1.7287, -0.9689, -1.4305, -1.8711, -0.9689, -1.4305, 1.7287, -0.9233, -1.4444, 1.7287, -0.9233, -1.4444, -1.8711, -0.9689, -1.4305, -1.8711, -0.9233, -1.4444, 1.7287, -0.9233, -1.4444, -1.8711, -0.9233, -1.4444, 1.7287, -0.8812, -1.4668, 1.7287, -0.8812, -1.4668, -1.8711, -0.9233, -1.4444, -1.8711, -0.8812, -1.4668, 1.7287, -0.8812, -1.4668, -1.8711, -0.8812, -1.4668, 1.7287, -0.8444, -1.4971, 1.7287, -0.8444, -1.4971, -1.8711, -0.8812, -1.4668, -1.8711, -0.8444, -1.4971, 1.7287, -0.8444, -1.4971, -1.8711, -0.8444, -1.4971, 1.7287, -0.8142, -1.5339, 1.7287, -0.8142, -1.5339, -1.8711, -0.8444, -1.4971, -1.8711, -0.8142, -1.5339, 1.7287, -0.8142, -1.5339, -1.8711, -0.8142, -1.5339, 1.7287, -0.7917, -1.5759, 1.7287, -0.7917, -1.5759, -1.8711, -0.8142, -1.5339, -1.8711, -0.7917, -1.5759, 1.7287, -0.7917, -1.5759, -1.8711, -0.7917, -1.5759, 1.7287, -0.7779, -1.6215, 1.7287, -0.7779, -1.6215, -1.8711, -0.7917, -1.5759, -1.8711, -0.7779, -1.6215, 1.7287, -0.7779, -1.6215, -1.8711, -0.7779, -1.6215, 1.7287, -0.7732, -1.669, 1.7287, -0.7732, -1.669, -1.8711, -0.7779, -1.6215, -1.8711, -0.7732, -1.669, 1.7287, -0.7732, -1.669, -1.8711, -0.7732, -1.669, 1.7287, -0.7779, -1.7164, 1.7287, -0.7779, -1.7164, -1.8711, -0.7732, -1.669, -1.8711, -0.7779, -1.7164, 1.7287, -0.7779, -1.7164, -1.8711, -0.7779, -1.7164, 1.7287, -0.7917, -1.762, 1.7287, -0.7917, -1.762, -1.8711, -0.7779, -1.7164, -1.8711, -0.7917, -1.762, 1.7287, -0.7917, -1.762, -1.8711, -0.7917, -1.762, 1.7287, -0.8142, -1.804, 1.7287, -0.8142, -1.804, -1.8711, -0.7917, -1.762, -1.8711, -0.8142, -1.804, 1.7287, -0.8142, -1.804, -1.8711, -0.8142, -1.804, 1.7287, -0.8444, -1.8409, 1.7287, -0.8444, -1.8409, -1.8711, -0.8142, -1.804, -1.8711, -0.8444, -1.8409, 1.7287, -0.8444, -1.8409, -1.8711, -0.8444, -1.8409, 1.7287, -0.8813, -1.8711, 1.7287, -0.8813, -1.8711, -1.8711, -0.8444, -1.8409, -1.8711, -0.8812, -1.8711, 1.7287, -0.8813, -1.8711, -1.8711, -0.8812, -1.8711, 1.7287, -0.9233, -1.8936, 1.7287, -0.9233, -1.8936, -1.8711, -0.8812, -1.8711, -1.8711, -0.9233, -1.8936, 1.7287, -1.0163, -1.9121, 1.7287, -1.0637, -1.9074, 1.7287, -0.9689, -1.9074, 1.7287, -0.9689, -1.9074, 1.7287, -1.0637, -1.9074, 1.7287, -0.9233, -1.8936, 1.7287, -0.9233, -1.8936, 1.7287, -1.0637, -1.9074, 1.7287, -0.8813, -1.8711, 1.7287, -0.8813, -1.8711, 1.7287, -1.0637, -1.9074, 1.7287, -0.8444, -1.8409, 1.7287, -0.8444, -1.8409, 1.7287, -1.0637, -1.9074, 1.7287, -0.8142, -1.804, 1.7287, -0.8142, -1.804, 1.7287, -1.0637, -1.9074, 1.7287, -0.7917, -1.762, 1.7287, -0.7917, -1.762, 1.7287, -1.0637, -1.9074, 1.7287, -0.7779, -1.7164, 1.7287, -0.7779, -1.7164, 1.7287, -1.0637, -1.9074, 1.7287, -0.7732, -1.669, 1.7287, -0.7732, -1.669, 1.7287, -1.0637, -1.9074, 1.7287, -0.7779, -1.6215, 1.7287, -0.7779, -1.6215, 1.7287, -1.0637, -1.9074, 1.7287, -0.7917, -1.5759, 1.7287, -0.7917, -1.5759, 1.7287, -1.0637, -1.9074, 1.7287, -0.8142, -1.5339, 1.7287, -0.8142, -1.5339, 1.7287, -1.0637, -1.9074, 1.7287, -0.8444, -1.4971, 1.7287, -0.8444, -1.4971, 1.7287, -1.0637, -1.9074, 1.7287, -0.8812, -1.4668, 1.7287, -0.8812, -1.4668, 1.7287, -1.0637, -1.9074, 1.7287, -0.9233, -1.4444, 1.7287, -0.9233, -1.4444, 1.7287, -1.0637, -1.9074, 1.7287, -0.9689, -1.4305, 1.7287, -0.9689, -1.4305, 1.7287, -1.0637, -1.9074, 1.7287, -1.0163, -1.4258, 1.7287, -1.0163, -1.4258, 1.7287, -1.0637, -1.9074, 1.7287, -1.0637, -1.4305, 1.7287, -1.0637, -1.4305, 1.7287, -1.0637, -1.9074, 1.7287, -1.1093, -1.4444, 1.7287, -1.1093, -1.4444, 1.7287, -1.0637, -1.9074, 1.7287, -1.1514, -1.4668, 1.7287, -1.1514, -1.4668, 1.7287, -1.0637, -1.9074, 1.7287, -1.1882, -1.4971, 1.7287, -1.1882, -1.4971, 1.7287, -1.0637, -1.9074, 1.7287, -1.2185, -1.5339, 1.7287, -1.2185, -1.5339, 1.7287, -1.0637, -1.9074, 1.7287, -1.2409, -1.5759, 1.7287, -1.2409, -1.5759, 1.7287, -1.0637, -1.9074, 1.7287, -1.2548, -1.6215, 1.7287, -1.2548, -1.6215, 1.7287, -1.0637, -1.9074, 1.7287, -1.2594, -1.669, 1.7287, -1.2594, -1.669, 1.7287, -1.0637, -1.9074, 1.7287, -1.2548, -1.7164, 1.7287, -1.2548, -1.7164, 1.7287, -1.0637, -1.9074, 1.7287, -1.2409, -1.762, 1.7287, -1.2409, -1.762, 1.7287, -1.0637, -1.9074, 1.7287, -1.2185, -1.804, 1.7287, -1.2185, -1.804, 1.7287, -1.0637, -1.9074, 1.7287, -1.1882, -1.8409, 1.7287, -1.1882, -1.8409, 1.7287, -1.0637, -1.9074, 1.7287, -1.1514, -1.8711, 1.7287, -1.1514, -1.8711, 1.7287, -1.0637, -1.9074, 1.7287, -1.1093, -1.8936, 1.7287, -0.9233, -1.8936, -1.8711, -0.9233, -1.8936, 1.7287, -0.9689, -1.9074, 1.7287, -0.9689, -1.9074, -1.8711, -0.9233, -1.8936, -1.8711, -0.9689, -1.9074, 1.7287, -0.9689, -1.9074, -1.8711, -0.9689, -1.9074, 1.7287, -1.0163, -1.9121, 1.7287, -1.0163, -1.9121, -1.8711, -0.9689, -1.9074, -1.8711, -1.0163, -1.9121, -1.8711, -1.0637, -1.9074, -1.8711, -1.0163, -1.9121, -1.8711, -1.1093, -1.8936, -1.8711, -1.1093, -1.8936, -1.8711, -1.0163, -1.9121, -1.8711, -1.1514, -1.8711, -1.8711, -1.1514, -1.8711, -1.8711, -1.0163, -1.9121, -1.8711, -1.1882, -1.8409, -1.8711, -1.1882, -1.8409, -1.8711, -1.0163, -1.9121, -1.8711, -1.2185, -1.804, -1.8711, -1.2185, -1.804, -1.8711, -1.0163, -1.9121, -1.8711, -1.2409, -1.762, -1.8711, -1.2409, -1.762, -1.8711, -1.0163, -1.9121, -1.8711, -1.2548, -1.7164, -1.8711, -1.2548, -1.7164, -1.8711, -1.0163, -1.9121, -1.8711, -1.2594, -1.669, -1.8711, -1.2594, -1.669, -1.8711, -1.0163, -1.9121, -1.8711, -1.2548, -1.6215, -1.8711, -1.2548, -1.6215, -1.8711, -1.0163, -1.9121, -1.8711, -1.2409, -1.5759, -1.8711, -1.2409, -1.5759, -1.8711, -1.0163, -1.9121, -1.8711, -1.2185, -1.5339, -1.8711, -1.2185, -1.5339, -1.8711, -1.0163, -1.9121, -1.8711, -1.1882, -1.4971, -1.8711, -1.1882, -1.4971, -1.8711, -1.0163, -1.9121, -1.8711, -1.1514, -1.4668, -1.8711, -1.1514, -1.4668, -1.8711, -1.0163, -1.9121, -1.8711, -1.1093, -1.4444, -1.8711, -1.1093, -1.4444, -1.8711, -1.0163, -1.9121, -1.8711, -1.0637, -1.4305, -1.8711, -1.0637, -1.4305, -1.8711, -1.0163, -1.9121, -1.8711, -1.0163, -1.4258, -1.8711, -1.0163, -1.4258, -1.8711, -1.0163, -1.9121, -1.8711, -0.9689, -1.4305, -1.8711, -0.9689, -1.4305, -1.8711, -1.0163, -1.9121, -1.8711, -0.9233, -1.4444, -1.8711, -0.9233, -1.4444, -1.8711, -1.0163, -1.9121, -1.8711, -0.8812, -1.4668, -1.8711, -0.8812, -1.4668, -1.8711, -1.0163, -1.9121, -1.8711, -0.8444, -1.4971, -1.8711, -0.8444, -1.4971, -1.8711, -1.0163, -1.9121, -1.8711, -0.8142, -1.5339, -1.8711, -0.8142, -1.5339, -1.8711, -1.0163, -1.9121, -1.8711, -0.7917, -1.5759, -1.8711, -0.7917, -1.5759, -1.8711, -1.0163, -1.9121, -1.8711, -0.7779, -1.6215, -1.8711, -0.7779, -1.6215, -1.8711, -1.0163, -1.9121, -1.8711, -0.7732, -1.669, -1.8711, -0.7732, -1.669, -1.8711, -1.0163, -1.9121, -1.8711, -0.7779, -1.7164, -1.8711, -0.7779, -1.7164, -1.8711, -1.0163, -1.9121, -1.8711, -0.7917, -1.762, -1.8711, -0.7917, -1.762, -1.8711, -1.0163, -1.9121, -1.8711, -0.8142, -1.804, -1.8711, -0.8142, -1.804, -1.8711, -1.0163, -1.9121, -1.8711, -0.8444, -1.8409, -1.8711, -0.8444, -1.8409, -1.8711, -1.0163, -1.9121, -1.8711, -0.8812, -1.8711, -1.8711, -0.8812, -1.8711, -1.8711, -1.0163, -1.9121, -1.8711, -0.9233, -1.8936, -1.8711, -0.9233, -1.8936, -1.8711, -1.0163, -1.9121, -1.8711, -0.9689, -1.9074, 1.7287, -1.0163, -0.7502, -1.8711, -1.0163, -0.7502, 1.7287, -1.0637, -0.7455, 1.7287, -1.0637, -0.7455, -1.8711, -1.0163, -0.7502, -1.8711, -1.0637, -0.7455, 1.7287, -1.0637, -0.7455, -1.8711, -1.0637, -0.7455, 1.7287, -1.1093, -0.7317, 1.7287, -1.1093, -0.7317, -1.8711, -1.0637, -0.7455, -1.8711, -1.1093, -0.7317, 1.7287, -1.1093, -0.7317, -1.8711, -1.1093, -0.7317, 1.7287, -1.1514, -0.7092, 1.7287, -1.1514, -0.7092, -1.8711, -1.1093, -0.7317, -1.8711, -1.1514, -0.7092, 1.7287, -1.1514, -0.7092, -1.8711, -1.1514, -0.7092, 1.7287, -1.1882, -0.679, 1.7287, -1.1882, -0.679, -1.8711, -1.1514, -0.7092, -1.8711, -1.1882, -0.679, 1.7287, -1.1882, -0.679, -1.8711, -1.1882, -0.679, 1.7287, -1.2185, -0.6422, 1.7287, -1.2185, -0.6422, -1.8711, -1.1882, -0.679, -1.8711, -1.2185, -0.6422, 1.7287, -1.2185, -0.6422, -1.8711, -1.2185, -0.6422, 1.7287, -1.2409, -0.6001, 1.7287, -1.2409, -0.6001, -1.8711, -1.2185, -0.6422, -1.8711, -1.2409, -0.6001, 1.7287, -1.2409, -0.6001, -1.8711, -1.2409, -0.6001, 1.7287, -1.2548, -0.5545, 1.7287, -1.2548, -0.5545, -1.8711, -1.2409, -0.6001, -1.8711, -1.2548, -0.5545, 1.7287, -1.2548, -0.5545, -1.8711, -1.2548, -0.5545, 1.7287, -1.2594, -0.5071, 1.7287, -1.2594, -0.5071, -1.8711, -1.2548, -0.5545, -1.8711, -1.2594, -0.5071, 1.7287, -1.2594, -0.5071, -1.8711, -1.2594, -0.5071, 1.7287, -1.2548, -0.4597, 1.7287, -1.2548, -0.4597, -1.8711, -1.2594, -0.5071, -1.8711, -1.2548, -0.4597, 1.7287, -1.2548, -0.4597, -1.8711, -1.2548, -0.4597, 1.7287, -1.2409, -0.4141, 1.7287, -1.2409, -0.4141, -1.8711, -1.2548, -0.4597, -1.8711, -1.2409, -0.4141, 1.7287, -1.2409, -0.4141, -1.8711, -1.2409, -0.4141, 1.7287, -1.2185, -0.372, 1.7287, -1.2185, -0.372, -1.8711, -1.2409, -0.4141, -1.8711, -1.2185, -0.372, 1.7287, -1.2185, -0.372, -1.8711, -1.2185, -0.372, 1.7287, -1.1882, -0.3352, 1.7287, -1.1882, -0.3352, -1.8711, -1.2185, -0.372, -1.8711, -1.1882, -0.3352, 1.7287, -1.1882, -0.3352, -1.8711, -1.1882, -0.3352, 1.7287, -1.1514, -0.305, 1.7287, -1.1514, -0.305, -1.8711, -1.1882, -0.3352, -1.8711, -1.1514, -0.305, 1.7287, -1.1514, -0.305, -1.8711, -1.1514, -0.305, 1.7287, -1.1093, -0.2825, 1.7287, -1.1093, -0.2825, -1.8711, -1.1514, -0.305, -1.8711, -1.1093, -0.2825, 1.7287, -1.1093, -0.2825, -1.8711, -1.1093, -0.2825, 1.7287, -1.0637, -0.2687, 1.7287, -1.0637, -0.2687, -1.8711, -1.1093, -0.2825, -1.8711, -1.0637, -0.2687, 1.7287, -1.0637, -0.2687, -1.8711, -1.0637, -0.2687, 1.7287, -1.0163, -0.264, 1.7287, -1.0163, -0.264, -1.8711, -1.0637, -0.2687, -1.8711, -1.0163, -0.264, 1.7287, -1.0163, -0.264, -1.8711, -1.0163, -0.264, 1.7287, -0.9689, -0.2687, 1.7287, -0.9689, -0.2687, -1.8711, -1.0163, -0.264, -1.8711, -0.9689, -0.2687, 1.7287, -0.9689, -0.2687, -1.8711, -0.9689, -0.2687, 1.7287, -0.9233, -0.2825, 1.7287, -0.9233, -0.2825, -1.8711, -0.9689, -0.2687, -1.8711, -0.9233, -0.2825, 1.7287, -0.9233, -0.2825, -1.8711, -0.9233, -0.2825, 1.7287, -0.8812, -0.305, 1.7287, -0.8812, -0.305, -1.8711, -0.9233, -0.2825, -1.8711, -0.8812, -0.305, 1.7287, -0.8812, -0.305, -1.8711, -0.8812, -0.305, 1.7287, -0.8444, -0.3352, 1.7287, -0.8444, -0.3352, -1.8711, -0.8812, -0.305, -1.8711, -0.8444, -0.3352, 1.7287, -0.8444, -0.3352, -1.8711, -0.8444, -0.3352, 1.7287, -0.8142, -0.372, 1.7287, -0.8142, -0.372, -1.8711, -0.8444, -0.3352, -1.8711, -0.8142, -0.372, 1.7287, -0.8142, -0.372, -1.8711, -0.8142, -0.372, 1.7287, -0.7917, -0.4141, 1.7287, -0.7917, -0.4141, -1.8711, -0.8142, -0.372, -1.8711, -0.7917, -0.4141, 1.7287, -0.7917, -0.4141, -1.8711, -0.7917, -0.4141, 1.7287, -0.7779, -0.4597, 1.7287, -0.7779, -0.4597, -1.8711, -0.7917, -0.4141, -1.8711, -0.7779, -0.4597, 1.7287, -0.7779, -0.4597, -1.8711, -0.7779, -0.4597, 1.7287, -0.7732, -0.5071, 1.7287, -0.7732, -0.5071, -1.8711, -0.7779, -0.4597, -1.8711, -0.7732, -0.5071, 1.7287, -0.7732, -0.5071, -1.8711, -0.7732, -0.5071, 1.7287, -0.7779, -0.5545, 1.7287, -0.7779, -0.5545, -1.8711, -0.7732, -0.5071, -1.8711, -0.7779, -0.5545, 1.7287, -0.7779, -0.5545, -1.8711, -0.7779, -0.5545, 1.7287, -0.7917, -0.6001, 1.7287, -0.7917, -0.6001, -1.8711, -0.7779, -0.5545, -1.8711, -0.7917, -0.6001, 1.7287, -0.7917, -0.6001, -1.8711, -0.7917, -0.6001, 1.7287, -0.8142, -0.6422, 1.7287, -0.8142, -0.6422, -1.8711, -0.7917, -0.6001, -1.8711, -0.8142, -0.6422, 1.7287, -0.8142, -0.6422, -1.8711, -0.8142, -0.6422, 1.7287, -0.8444, -0.679, 1.7287, -0.8444, -0.679, -1.8711, -0.8142, -0.6422, -1.8711, -0.8444, -0.679, 1.7287, -0.8444, -0.679, -1.8711, -0.8444, -0.679, 1.7287, -0.8813, -0.7092, 1.7287, -0.8813, -0.7092, -1.8711, -0.8444, -0.679, -1.8711, -0.8812, -0.7092, 1.7287, -0.8813, -0.7092, -1.8711, -0.8812, -0.7092, 1.7287, -0.9233, -0.7317, 1.7287, -0.9233, -0.7317, -1.8711, -0.8812, -0.7092, -1.8711, -0.9233, -0.7317, 1.7287, -1.0163, -0.7502, 1.7287, -1.0637, -0.7455, 1.7287, -0.9689, -0.7455, 1.7287, -0.9689, -0.7455, 1.7287, -1.0637, -0.7455, 1.7287, -0.9233, -0.7317, 1.7287, -0.9233, -0.7317, 1.7287, -1.0637, -0.7455, 1.7287, -0.8813, -0.7092, 1.7287, -0.8813, -0.7092, 1.7287, -1.0637, -0.7455, 1.7287, -0.8444, -0.679, 1.7287, -0.8444, -0.679, 1.7287, -1.0637, -0.7455, 1.7287, -0.8142, -0.6422, 1.7287, -0.8142, -0.6422, 1.7287, -1.0637, -0.7455, 1.7287, -0.7917, -0.6001, 1.7287, -0.7917, -0.6001, 1.7287, -1.0637, -0.7455, 1.7287, -0.7779, -0.5545, 1.7287, -0.7779, -0.5545, 1.7287, -1.0637, -0.7455, 1.7287, -0.7732, -0.5071, 1.7287, -0.7732, -0.5071, 1.7287, -1.0637, -0.7455, 1.7287, -0.7779, -0.4597, 1.7287, -0.7779, -0.4597, 1.7287, -1.0637, -0.7455, 1.7287, -0.7917, -0.4141, 1.7287, -0.7917, -0.4141, 1.7287, -1.0637, -0.7455, 1.7287, -0.8142, -0.372, 1.7287, -0.8142, -0.372, 1.7287, -1.0637, -0.7455, 1.7287, -0.8444, -0.3352, 1.7287, -0.8444, -0.3352, 1.7287, -1.0637, -0.7455, 1.7287, -0.8812, -0.305, 1.7287, -0.8812, -0.305, 1.7287, -1.0637, -0.7455, 1.7287, -0.9233, -0.2825, 1.7287, -0.9233, -0.2825, 1.7287, -1.0637, -0.7455, 1.7287, -0.9689, -0.2687, 1.7287, -0.9689, -0.2687, 1.7287, -1.0637, -0.7455, 1.7287, -1.0163, -0.264, 1.7287, -1.0163, -0.264, 1.7287, -1.0637, -0.7455, 1.7287, -1.0637, -0.2687, 1.7287, -1.0637, -0.2687, 1.7287, -1.0637, -0.7455, 1.7287, -1.1093, -0.2825, 1.7287, -1.1093, -0.2825, 1.7287, -1.0637, -0.7455, 1.7287, -1.1514, -0.305, 1.7287, -1.1514, -0.305, 1.7287, -1.0637, -0.7455, 1.7287, -1.1882, -0.3352, 1.7287, -1.1882, -0.3352, 1.7287, -1.0637, -0.7455, 1.7287, -1.2185, -0.372, 1.7287, -1.2185, -0.372, 1.7287, -1.0637, -0.7455, 1.7287, -1.2409, -0.4141, 1.7287, -1.2409, -0.4141, 1.7287, -1.0637, -0.7455, 1.7287, -1.2548, -0.4597, 1.7287, -1.2548, -0.4597, 1.7287, -1.0637, -0.7455, 1.7287, -1.2594, -0.5071, 1.7287, -1.2594, -0.5071, 1.7287, -1.0637, -0.7455, 1.7287, -1.2548, -0.5545, 1.7287, -1.2548, -0.5545, 1.7287, -1.0637, -0.7455, 1.7287, -1.2409, -0.6001, 1.7287, -1.2409, -0.6001, 1.7287, -1.0637, -0.7455, 1.7287, -1.2185, -0.6422, 1.7287, -1.2185, -0.6422, 1.7287, -1.0637, -0.7455, 1.7287, -1.1882, -0.679, 1.7287, -1.1882, -0.679, 1.7287, -1.0637, -0.7455, 1.7287, -1.1514, -0.7092, 1.7287, -1.1514, -0.7092, 1.7287, -1.0637, -0.7455, 1.7287, -1.1093, -0.7317, 1.7287, -0.9233, -0.7317, -1.8711, -0.9233, -0.7317, 1.7287, -0.9689, -0.7455, 1.7287, -0.9689, -0.7455, -1.8711, -0.9233, -0.7317, -1.8711, -0.9689, -0.7455, 1.7287, -0.9689, -0.7455, -1.8711, -0.9689, -0.7455, 1.7287, -1.0163, -0.7502, 1.7287, -1.0163, -0.7502, -1.8711, -0.9689, -0.7455, -1.8711, -1.0163, -0.7502, -1.8711, -1.0637, -0.7455, -1.8711, -1.0163, -0.7502, -1.8711, -1.1093, -0.7317, -1.8711, -1.1093, -0.7317, -1.8711, -1.0163, -0.7502, -1.8711, -1.1514, -0.7092, -1.8711, -1.1514, -0.7092, -1.8711, -1.0163, -0.7502, -1.8711, -1.1882, -0.679, -1.8711, -1.1882, -0.679, -1.8711, -1.0163, -0.7502, -1.8711, -1.2185, -0.6422, -1.8711, -1.2185, -0.6422, -1.8711, -1.0163, -0.7502, -1.8711, -1.2409, -0.6001, -1.8711, -1.2409, -0.6001, -1.8711, -1.0163, -0.7502, -1.8711, -1.2548, -0.5545, -1.8711, -1.2548, -0.5545, -1.8711, -1.0163, -0.7502, -1.8711, -1.2594, -0.5071, -1.8711, -1.2594, -0.5071, -1.8711, -1.0163, -0.7502, -1.8711, -1.2548, -0.4597, -1.8711, -1.2548, -0.4597, -1.8711, -1.0163, -0.7502, -1.8711, -1.2409, -0.4141, -1.8711, -1.2409, -0.4141, -1.8711, -1.0163, -0.7502, -1.8711, -1.2185, -0.372, -1.8711, -1.2185, -0.372, -1.8711, -1.0163, -0.7502, -1.8711, -1.1882, -0.3352, -1.8711, -1.1882, -0.3352, -1.8711, -1.0163, -0.7502, -1.8711, -1.1514, -0.305, -1.8711, -1.1514, -0.305, -1.8711, -1.0163, -0.7502, -1.8711, -1.1093, -0.2825, -1.8711, -1.1093, -0.2825, -1.8711, -1.0163, -0.7502, -1.8711, -1.0637, -0.2687, -1.8711, -1.0637, -0.2687, -1.8711, -1.0163, -0.7502, -1.8711, -1.0163, -0.264, -1.8711, -1.0163, -0.264, -1.8711, -1.0163, -0.7502, -1.8711, -0.9689, -0.2687, -1.8711, -0.9689, -0.2687, -1.8711, -1.0163, -0.7502, -1.8711, -0.9233, -0.2825, -1.8711, -0.9233, -0.2825, -1.8711, -1.0163, -0.7502, -1.8711, -0.8812, -0.305, -1.8711, -0.8812, -0.305, -1.8711, -1.0163, -0.7502, -1.8711, -0.8444, -0.3352, -1.8711, -0.8444, -0.3352, -1.8711, -1.0163, -0.7502, -1.8711, -0.8142, -0.372, -1.8711, -0.8142, -0.372, -1.8711, -1.0163, -0.7502, -1.8711, -0.7917, -0.4141, -1.8711, -0.7917, -0.4141, -1.8711, -1.0163, -0.7502, -1.8711, -0.7779, -0.4597, -1.8711, -0.7779, -0.4597, -1.8711, -1.0163, -0.7502, -1.8711, -0.7732, -0.5071, -1.8711, -0.7732, -0.5071, -1.8711, -1.0163, -0.7502, -1.8711, -0.7779, -0.5545, -1.8711, -0.7779, -0.5545, -1.8711, -1.0163, -0.7502, -1.8711, -0.7917, -0.6001, -1.8711, -0.7917, -0.6001, -1.8711, -1.0163, -0.7502, -1.8711, -0.8142, -0.6422, -1.8711, -0.8142, -0.6422, -1.8711, -1.0163, -0.7502, -1.8711, -0.8444, -0.679, -1.8711, -0.8444, -0.679, -1.8711, -1.0163, -0.7502, -1.8711, -0.8812, -0.7092, -1.8711, -0.8812, -0.7092, -1.8711, -1.0163, -0.7502, -1.8711, -0.9233, -0.7317, -1.8711, -0.9233, -0.7317, -1.8711, -1.0163, -0.7502, -1.8711, -0.9689, -0.7455, 1.7287, -1.0163, 0.4116, -1.8711, -1.0163, 0.4116, 1.7287, -1.0637, 0.4163, 1.7287, -1.0637, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.4163, 1.7287, -1.0637, 0.4163, -1.8711, -1.0637, 0.4163, 1.7287, -1.1093, 0.4301, 1.7287, -1.1093, 0.4301, -1.8711, -1.0637, 0.4163, -1.8711, -1.1093, 0.4301, 1.7287, -1.1093, 0.4301, -1.8711, -1.1093, 0.4301, 1.7287, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, -1.8711, -1.1093, 0.4301, -1.8711, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, -1.8711, -1.1514, 0.4526, 1.7287, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, -1.8711, -1.1514, 0.4526, -1.8711, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, -1.8711, -1.1882, 0.4828, 1.7287, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, -1.8711, -1.1882, 0.4828, -1.8711, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, -1.8711, -1.2185, 0.5197, 1.7287, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, -1.8711, -1.2185, 0.5197, -1.8711, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, -1.8711, -1.2409, 0.5617, 1.7287, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, -1.8711, -1.2409, 0.5617, -1.8711, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, -1.8711, -1.2548, 0.6073, 1.7287, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, -1.8711, -1.2548, 0.6073, -1.8711, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, -1.8711, -1.2594, 0.6547, 1.7287, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, -1.8711, -1.2594, 0.6547, -1.8711, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, -1.8711, -1.2548, 0.7022, 1.7287, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, -1.8711, -1.2548, 0.7022, -1.8711, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, -1.8711, -1.2409, 0.7478, 1.7287, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, -1.8711, -1.2409, 0.7478, -1.8711, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, -1.8711, -1.2185, 0.7898, 1.7287, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, -1.8711, -1.2185, 0.7898, -1.8711, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, -1.8711, -1.1882, 0.8267, 1.7287, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, -1.8711, -1.1882, 0.8267, -1.8711, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, -1.8711, -1.1514, 0.8569, 1.7287, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, -1.8711, -1.1514, 0.8569, -1.8711, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, -1.8711, -1.1093, 0.8793, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, -1.8711, -1.1093, 0.8793, -1.8711, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, -1.8711, -1.0637, 0.8932, 1.7287, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, -1.8711, -1.0637, 0.8932, -1.8711, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, -1.8711, -1.0163, 0.8979, 1.7287, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, -1.8711, -1.0163, 0.8979, -1.8711, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, -1.8711, -0.9689, 0.8932, 1.7287, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, -1.8711, -0.9689, 0.8932, -1.8711, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, -1.8711, -0.9233, 0.8793, 1.7287, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, -1.8711, -0.9233, 0.8793, -1.8711, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, -1.8711, -0.8812, 0.8569, 1.7287, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, -1.8711, -0.8812, 0.8569, -1.8711, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, -1.8711, -0.8444, 0.8267, 1.7287, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, -1.8711, -0.8444, 0.8267, -1.8711, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, -1.8711, -0.8142, 0.7898, 1.7287, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, -1.8711, -0.8142, 0.7898, -1.8711, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, -1.8711, -0.7917, 0.7478, 1.7287, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, -1.8711, -0.7917, 0.7478, -1.8711, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, -1.8711, -0.7779, 0.7022, 1.7287, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, -1.8711, -0.7779, 0.7022, -1.8711, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, -1.8711, -0.7732, 0.6547, 1.7287, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, -1.8711, -0.7732, 0.6547, -1.8711, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, -1.8711, -0.7779, 0.6073, 1.7287, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, -1.8711, -0.7779, 0.6073, -1.8711, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, -1.8711, -0.7917, 0.5617, 1.7287, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, -1.8711, -0.7917, 0.5617, -1.8711, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, -1.8711, -0.8142, 0.5197, 1.7287, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, -1.8711, -0.8142, 0.5197, -1.8711, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, -1.8711, -0.8444, 0.4828, 1.7287, -0.8813, 0.4526, 1.7287, -0.8813, 0.4526, -1.8711, -0.8444, 0.4828, -1.8711, -0.8812, 0.4526, 1.7287, -0.8813, 0.4526, -1.8711, -0.8812, 0.4526, 1.7287, -0.9233, 0.4301, 1.7287, -0.9233, 0.4301, -1.8711, -0.8812, 0.4526, -1.8711, -0.9233, 0.4301, 1.7287, -1.0163, 0.4116, 1.7287, -1.0637, 0.4163, 1.7287, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, 1.7287, -1.0637, 0.4163, 1.7287, -0.9233, 0.4301, 1.7287, -0.9233, 0.4301, 1.7287, -1.0637, 0.4163, 1.7287, -0.8813, 0.4526, 1.7287, -0.8813, 0.4526, 1.7287, -1.0637, 0.4163, 1.7287, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, 1.7287, -1.0637, 0.4163, 1.7287, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, 1.7287, -1.0637, 0.4163, 1.7287, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, 1.7287, -1.0637, 0.4163, 1.7287, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, 1.7287, -1.0637, 0.4163, 1.7287, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, 1.7287, -1.0637, 0.4163, 1.7287, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, 1.7287, -1.0637, 0.4163, 1.7287, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, 1.7287, -1.0637, 0.4163, 1.7287, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, 1.7287, -1.0637, 0.4163, 1.7287, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, 1.7287, -1.0637, 0.4163, 1.7287, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, 1.7287, -1.0637, 0.4163, 1.7287, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, 1.7287, -1.0637, 0.4163, 1.7287, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, 1.7287, -1.0637, 0.4163, 1.7287, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, 1.7287, -1.0637, 0.4163, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.4163, 1.7287, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, 1.7287, -1.0637, 0.4163, 1.7287, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, 1.7287, -1.0637, 0.4163, 1.7287, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, 1.7287, -1.0637, 0.4163, 1.7287, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, 1.7287, -1.0637, 0.4163, 1.7287, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, 1.7287, -1.0637, 0.4163, 1.7287, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, 1.7287, -1.0637, 0.4163, 1.7287, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, 1.7287, -1.0637, 0.4163, 1.7287, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, 1.7287, -1.0637, 0.4163, 1.7287, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, 1.7287, -1.0637, 0.4163, 1.7287, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, 1.7287, -1.0637, 0.4163, 1.7287, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, 1.7287, -1.0637, 0.4163, 1.7287, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, 1.7287, -1.0637, 0.4163, 1.7287, -1.1093, 0.4301, 1.7287, -0.9233, 0.4301, -1.8711, -0.9233, 0.4301, 1.7287, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, -1.8711, -0.9233, 0.4301, -1.8711, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, -1.8711, -0.9689, 0.4163, 1.7287, -1.0163, 0.4116, 1.7287, -1.0163, 0.4116, -1.8711, -0.9689, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.1093, 0.4301, -1.8711, -1.1093, 0.4301, -1.8711, -1.0163, 0.4116, -1.8711, -1.1514, 0.4526, -1.8711, -1.1514, 0.4526, -1.8711, -1.0163, 0.4116, -1.8711, -1.1882, 0.4828, -1.8711, -1.1882, 0.4828, -1.8711, -1.0163, 0.4116, -1.8711, -1.2185, 0.5197, -1.8711, -1.2185, 0.5197, -1.8711, -1.0163, 0.4116, -1.8711, -1.2409, 0.5617, -1.8711, -1.2409, 0.5617, -1.8711, -1.0163, 0.4116, -1.8711, -1.2548, 0.6073, -1.8711, -1.2548, 0.6073, -1.8711, -1.0163, 0.4116, -1.8711, -1.2594, 0.6547, -1.8711, -1.2594, 0.6547, -1.8711, -1.0163, 0.4116, -1.8711, -1.2548, 0.7022, -1.8711, -1.2548, 0.7022, -1.8711, -1.0163, 0.4116, -1.8711, -1.2409, 0.7478, -1.8711, -1.2409, 0.7478, -1.8711, -1.0163, 0.4116, -1.8711, -1.2185, 0.7898, -1.8711, -1.2185, 0.7898, -1.8711, -1.0163, 0.4116, -1.8711, -1.1882, 0.8267, -1.8711, -1.1882, 0.8267, -1.8711, -1.0163, 0.4116, -1.8711, -1.1514, 0.8569, -1.8711, -1.1514, 0.8569, -1.8711, -1.0163, 0.4116, -1.8711, -1.1093, 0.8793, -1.8711, -1.1093, 0.8793, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.8932, -1.8711, -1.0637, 0.8932, -1.8711, -1.0163, 0.4116, -1.8711, -1.0163, 0.8979, -1.8711, -1.0163, 0.8979, -1.8711, -1.0163, 0.4116, -1.8711, -0.9689, 0.8932, -1.8711, -0.9689, 0.8932, -1.8711, -1.0163, 0.4116, -1.8711, -0.9233, 0.8793, -1.8711, -0.9233, 0.8793, -1.8711, -1.0163, 0.4116, -1.8711, -0.8812, 0.8569, -1.8711, -0.8812, 0.8569, -1.8711, -1.0163, 0.4116, -1.8711, -0.8444, 0.8267, -1.8711, -0.8444, 0.8267, -1.8711, -1.0163, 0.4116, -1.8711, -0.8142, 0.7898, -1.8711, -0.8142, 0.7898, -1.8711, -1.0163, 0.4116, -1.8711, -0.7917, 0.7478, -1.8711, -0.7917, 0.7478, -1.8711, -1.0163, 0.4116, -1.8711, -0.7779, 0.7022, -1.8711, -0.7779, 0.7022, -1.8711, -1.0163, 0.4116, -1.8711, -0.7732, 0.6547, -1.8711, -0.7732, 0.6547, -1.8711, -1.0163, 0.4116, -1.8711, -0.7779, 0.6073, -1.8711, -0.7779, 0.6073, -1.8711, -1.0163, 0.4116, -1.8711, -0.7917, 0.5617, -1.8711, -0.7917, 0.5617, -1.8711, -1.0163, 0.4116, -1.8711, -0.8142, 0.5197, -1.8711, -0.8142, 0.5197, -1.8711, -1.0163, 0.4116, -1.8711, -0.8444, 0.4828, -1.8711, -0.8444, 0.4828, -1.8711, -1.0163, 0.4116, -1.8711, -0.8812, 0.4526, -1.8711, -0.8812, 0.4526, -1.8711, -1.0163, 0.4116, -1.8711, -0.9233, 0.4301, -1.8711, -0.9233, 0.4301, -1.8711, -1.0163, 0.4116, -1.8711, -0.9689, 0.4163, 1.7287, -1.0163, 0.4116, -1.8711, -1.0163, 0.4116, 1.7287, -1.0637, 0.4163, 1.7287, -1.0637, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.4163, 1.7287, -1.0637, 0.4163, -1.8711, -1.0637, 0.4163, 1.7287, -1.1093, 0.4301, 1.7287, -1.1093, 0.4301, -1.8711, -1.0637, 0.4163, -1.8711, -1.1093, 0.4301, 1.7287, -1.1093, 0.4301, -1.8711, -1.1093, 0.4301, 1.7287, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, -1.8711, -1.1093, 0.4301, -1.8711, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, -1.8711, -1.1514, 0.4526, 1.7287, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, -1.8711, -1.1514, 0.4526, -1.8711, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, -1.8711, -1.1882, 0.4828, 1.7287, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, -1.8711, -1.1882, 0.4828, -1.8711, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, -1.8711, -1.2185, 0.5197, 1.7287, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, -1.8711, -1.2185, 0.5197, -1.8711, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, -1.8711, -1.2409, 0.5617, 1.7287, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, -1.8711, -1.2409, 0.5617, -1.8711, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, -1.8711, -1.2548, 0.6073, 1.7287, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, -1.8711, -1.2548, 0.6073, -1.8711, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, -1.8711, -1.2594, 0.6547, 1.7287, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, -1.8711, -1.2594, 0.6547, -1.8711, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, -1.8711, -1.2548, 0.7022, 1.7287, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, -1.8711, -1.2548, 0.7022, -1.8711, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, -1.8711, -1.2409, 0.7478, 1.7287, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, -1.8711, -1.2409, 0.7478, -1.8711, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, -1.8711, -1.2185, 0.7898, 1.7287, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, -1.8711, -1.2185, 0.7898, -1.8711, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, -1.8711, -1.1882, 0.8267, 1.7287, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, -1.8711, -1.1882, 0.8267, -1.8711, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, -1.8711, -1.1514, 0.8569, 1.7287, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, -1.8711, -1.1514, 0.8569, -1.8711, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, -1.8711, -1.1093, 0.8793, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, -1.8711, -1.1093, 0.8793, -1.8711, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, -1.8711, -1.0637, 0.8932, 1.7287, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, -1.8711, -1.0637, 0.8932, -1.8711, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, -1.8711, -1.0163, 0.8979, 1.7287, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, -1.8711, -1.0163, 0.8979, -1.8711, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, -1.8711, -0.9689, 0.8932, 1.7287, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, -1.8711, -0.9689, 0.8932, -1.8711, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, -1.8711, -0.9233, 0.8793, 1.7287, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, -1.8711, -0.9233, 0.8793, -1.8711, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, -1.8711, -0.8812, 0.8569, 1.7287, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, -1.8711, -0.8812, 0.8569, -1.8711, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, -1.8711, -0.8444, 0.8267, 1.7287, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, -1.8711, -0.8444, 0.8267, -1.8711, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, -1.8711, -0.8142, 0.7898, 1.7287, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, -1.8711, -0.8142, 0.7898, -1.8711, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, -1.8711, -0.7917, 0.7478, 1.7287, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, -1.8711, -0.7917, 0.7478, -1.8711, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, -1.8711, -0.7779, 0.7022, 1.7287, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, -1.8711, -0.7779, 0.7022, -1.8711, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, -1.8711, -0.7732, 0.6547, 1.7287, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, -1.8711, -0.7732, 0.6547, -1.8711, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, -1.8711, -0.7779, 0.6073, 1.7287, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, -1.8711, -0.7779, 0.6073, -1.8711, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, -1.8711, -0.7917, 0.5617, 1.7287, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, -1.8711, -0.7917, 0.5617, -1.8711, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, -1.8711, -0.8142, 0.5197, 1.7287, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, -1.8711, -0.8142, 0.5197, -1.8711, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, -1.8711, -0.8444, 0.4828, 1.7287, -0.8813, 0.4526, 1.7287, -0.8813, 0.4526, -1.8711, -0.8444, 0.4828, -1.8711, -0.8812, 0.4526, 1.7287, -0.8813, 0.4526, -1.8711, -0.8812, 0.4526, 1.7287, -0.9233, 0.4301, 1.7287, -0.9233, 0.4301, -1.8711, -0.8812, 0.4526, -1.8711, -0.9233, 0.4301, 1.7287, -1.0163, 0.4116, 1.7287, -1.0637, 0.4163, 1.7287, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, 1.7287, -1.0637, 0.4163, 1.7287, -0.9233, 0.4301, 1.7287, -0.9233, 0.4301, 1.7287, -1.0637, 0.4163, 1.7287, -0.8813, 0.4526, 1.7287, -0.8813, 0.4526, 1.7287, -1.0637, 0.4163, 1.7287, -0.8444, 0.4828, 1.7287, -0.8444, 0.4828, 1.7287, -1.0637, 0.4163, 1.7287, -0.8142, 0.5197, 1.7287, -0.8142, 0.5197, 1.7287, -1.0637, 0.4163, 1.7287, -0.7917, 0.5617, 1.7287, -0.7917, 0.5617, 1.7287, -1.0637, 0.4163, 1.7287, -0.7779, 0.6073, 1.7287, -0.7779, 0.6073, 1.7287, -1.0637, 0.4163, 1.7287, -0.7732, 0.6547, 1.7287, -0.7732, 0.6547, 1.7287, -1.0637, 0.4163, 1.7287, -0.7779, 0.7022, 1.7287, -0.7779, 0.7022, 1.7287, -1.0637, 0.4163, 1.7287, -0.7917, 0.7478, 1.7287, -0.7917, 0.7478, 1.7287, -1.0637, 0.4163, 1.7287, -0.8142, 0.7898, 1.7287, -0.8142, 0.7898, 1.7287, -1.0637, 0.4163, 1.7287, -0.8444, 0.8267, 1.7287, -0.8444, 0.8267, 1.7287, -1.0637, 0.4163, 1.7287, -0.8812, 0.8569, 1.7287, -0.8812, 0.8569, 1.7287, -1.0637, 0.4163, 1.7287, -0.9233, 0.8793, 1.7287, -0.9233, 0.8793, 1.7287, -1.0637, 0.4163, 1.7287, -0.9689, 0.8932, 1.7287, -0.9689, 0.8932, 1.7287, -1.0637, 0.4163, 1.7287, -1.0163, 0.8979, 1.7287, -1.0163, 0.8979, 1.7287, -1.0637, 0.4163, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.8932, 1.7287, -1.0637, 0.4163, 1.7287, -1.1093, 0.8793, 1.7287, -1.1093, 0.8793, 1.7287, -1.0637, 0.4163, 1.7287, -1.1514, 0.8569, 1.7287, -1.1514, 0.8569, 1.7287, -1.0637, 0.4163, 1.7287, -1.1882, 0.8267, 1.7287, -1.1882, 0.8267, 1.7287, -1.0637, 0.4163, 1.7287, -1.2185, 0.7898, 1.7287, -1.2185, 0.7898, 1.7287, -1.0637, 0.4163, 1.7287, -1.2409, 0.7478, 1.7287, -1.2409, 0.7478, 1.7287, -1.0637, 0.4163, 1.7287, -1.2548, 0.7022, 1.7287, -1.2548, 0.7022, 1.7287, -1.0637, 0.4163, 1.7287, -1.2594, 0.6547, 1.7287, -1.2594, 0.6547, 1.7287, -1.0637, 0.4163, 1.7287, -1.2548, 0.6073, 1.7287, -1.2548, 0.6073, 1.7287, -1.0637, 0.4163, 1.7287, -1.2409, 0.5617, 1.7287, -1.2409, 0.5617, 1.7287, -1.0637, 0.4163, 1.7287, -1.2185, 0.5197, 1.7287, -1.2185, 0.5197, 1.7287, -1.0637, 0.4163, 1.7287, -1.1882, 0.4828, 1.7287, -1.1882, 0.4828, 1.7287, -1.0637, 0.4163, 1.7287, -1.1514, 0.4526, 1.7287, -1.1514, 0.4526, 1.7287, -1.0637, 0.4163, 1.7287, -1.1093, 0.4301, 1.7287, -0.9233, 0.4301, -1.8711, -0.9233, 0.4301, 1.7287, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, -1.8711, -0.9233, 0.4301, -1.8711, -0.9689, 0.4163, 1.7287, -0.9689, 0.4163, -1.8711, -0.9689, 0.4163, 1.7287, -1.0163, 0.4116, 1.7287, -1.0163, 0.4116, -1.8711, -0.9689, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.4163, -1.8711, -1.0163, 0.4116, -1.8711, -1.1093, 0.4301, -1.8711, -1.1093, 0.4301, -1.8711, -1.0163, 0.4116, -1.8711, -1.1514, 0.4526, -1.8711, -1.1514, 0.4526, -1.8711, -1.0163, 0.4116, -1.8711, -1.1882, 0.4828, -1.8711, -1.1882, 0.4828, -1.8711, -1.0163, 0.4116, -1.8711, -1.2185, 0.5197, -1.8711, -1.2185, 0.5197, -1.8711, -1.0163, 0.4116, -1.8711, -1.2409, 0.5617, -1.8711, -1.2409, 0.5617, -1.8711, -1.0163, 0.4116, -1.8711, -1.2548, 0.6073, -1.8711, -1.2548, 0.6073, -1.8711, -1.0163, 0.4116, -1.8711, -1.2594, 0.6547, -1.8711, -1.2594, 0.6547, -1.8711, -1.0163, 0.4116, -1.8711, -1.2548, 0.7022, -1.8711, -1.2548, 0.7022, -1.8711, -1.0163, 0.4116, -1.8711, -1.2409, 0.7478, -1.8711, -1.2409, 0.7478, -1.8711, -1.0163, 0.4116, -1.8711, -1.2185, 0.7898, -1.8711, -1.2185, 0.7898, -1.8711, -1.0163, 0.4116, -1.8711, -1.1882, 0.8267, -1.8711, -1.1882, 0.8267, -1.8711, -1.0163, 0.4116, -1.8711, -1.1514, 0.8569, -1.8711, -1.1514, 0.8569, -1.8711, -1.0163, 0.4116, -1.8711, -1.1093, 0.8793, -1.8711, -1.1093, 0.8793, -1.8711, -1.0163, 0.4116, -1.8711, -1.0637, 0.8932, -1.8711, -1.0637, 0.8932, -1.8711, -1.0163, 0.4116, -1.8711, -1.0163, 0.8979, -1.8711, -1.0163, 0.8979, -1.8711, -1.0163, 0.4116, -1.8711, -0.9689, 0.8932, -1.8711, -0.9689, 0.8932, -1.8711, -1.0163, 0.4116, -1.8711, -0.9233, 0.8793, -1.8711, -0.9233, 0.8793, -1.8711, -1.0163, 0.4116, -1.8711, -0.8812, 0.8569, -1.8711, -0.8812, 0.8569, -1.8711, -1.0163, 0.4116, -1.8711, -0.8444, 0.8267, -1.8711, -0.8444, 0.8267, -1.8711, -1.0163, 0.4116, -1.8711, -0.8142, 0.7898, -1.8711, -0.8142, 0.7898, -1.8711, -1.0163, 0.4116, -1.8711, -0.7917, 0.7478, -1.8711, -0.7917, 0.7478, -1.8711, -1.0163, 0.4116, -1.8711, -0.7779, 0.7022, -1.8711, -0.7779, 0.7022, -1.8711, -1.0163, 0.4116, -1.8711, -0.7732, 0.6547, -1.8711, -0.7732, 0.6547, -1.8711, -1.0163, 0.4116, -1.8711, -0.7779, 0.6073, -1.8711, -0.7779, 0.6073, -1.8711, -1.0163, 0.4116, -1.8711, -0.7917, 0.5617, -1.8711, -0.7917, 0.5617, -1.8711, -1.0163, 0.4116, -1.8711, -0.8142, 0.5197, -1.8711, -0.8142, 0.5197, -1.8711, -1.0163, 0.4116, -1.8711, -0.8444, 0.4828, -1.8711, -0.8444, 0.4828, -1.8711, -1.0163, 0.4116, -1.8711, -0.8812, 0.4526, -1.8711, -0.8812, 0.4526, -1.8711, -1.0163, 0.4116, -1.8711, -0.9233, 0.4301, -1.8711, -0.9233, 0.4301, -1.8711, -1.0163, 0.4116, -1.8711, -0.9689, 0.4163, -4.8296, -4.5958, 1.2941, -4.8712, -5.0703, 0, -5, -4.5958, 0, -4.2186, -5.0703, 2.4356, -4.8296, -4.5958, 1.2941, -4.3301, -4.5958, 2.5, -3.5355, -4.5958, 3.5355, -4.2186, -5.0703, 2.4356, -4.3301, -4.5958, 2.5, -2.5, -4.5958, 4.3301, -3.4444, -5.0703, 3.4444, -3.5355, -4.5958, 3.5355, -1.2941, -4.5958, 4.8296, -2.4356, -5.0703, 4.2186, -2.5, -4.5958, 4.3301, 0, -4.5958, 5, -1.2608, -5.0703, 4.7052, -1.2941, -4.5958, 4.8296, 1.2941, -4.5958, 4.8296, 0, -5.0703, 4.8712, 0, -4.5958, 5, 2.4356, -5.0703, 4.2186, 1.2941, -4.5958, 4.8296, 2.5, -4.5958, 4.3301, 3.4444, -5.0703, 3.4444, 2.5, -4.5958, 4.3301, 3.5355, -4.5958, 3.5355, 4.2186, -5.0703, 2.4356, 3.5355, -4.5958, 3.5355, 4.3301, -4.5958, 2.5, 4.8296, -4.5958, 1.2941, 4.2186, -5.0703, 2.4356, 4.3301, -4.5958, 2.5, 5, -4.5958, 0, 4.7052, -5.0703, 1.2608, 4.8296, -4.5958, 1.2941, 4.8296, -4.5958, -1.2941, 4.8712, -5.0703, 0, 5, -4.5958, 0, 4.3301, -4.5958, -2.5, 4.7052, -5.0703, -1.2608, 4.8296, -4.5958, -1.2941, 3.5355, -4.5958, -3.5355, 4.2186, -5.0703, -2.4356, 4.3301, -4.5958, -2.5, 2.5, -4.5958, -4.3301, 3.4444, -5.0703, -3.4444, 3.5355, -4.5958, -3.5355, 1.2608, -5.0703, -4.7052, 2.5, -4.5958, -4.3301, 1.2941, -4.5958, -4.8296, 0, -4.5958, -5, 1.2608, -5.0703, -4.7052, 1.2941, -4.5958, -4.8296, -1.2941, -4.5958, -4.8296, 0, -5.0703, -4.8712, 0, -4.5958, -5, -2.5, -4.5958, -4.3301, -1.2608, -5.0703, -4.7052, -1.2941, -4.5958, -4.8296, -3.5355, -4.5958, -3.5355, -2.4356, -5.0703, -4.2186, -2.5, -4.5958, -4.3301, -4.3301, -4.5958, -2.5, -3.4444, -5.0703, -3.4444, -3.5355, -4.5958, -3.5355, -4.7052, -5.0703, -1.2608, -4.3301, -4.5958, -2.5, -4.8296, -4.5958, -1.2941, -5, -4.5958, 0, -4.7052, -5.0703, -1.2608, -4.8296, -4.5958, -1.2941, -4.7052, -5.0703, 1.2608, -4.6672, -5.3105, 0, -4.8712, -5.0703, 0, -4.2186, -5.0703, 2.4356, -4.5081, -5.3105, 1.208, -4.7052, -5.0703, 1.2608, -3.4444, -5.0703, 3.4444, -4.0419, -5.3105, 2.3336, -4.2186, -5.0703, 2.4356, -2.4356, -5.0703, 4.2186, -3.3002, -5.3105, 3.3002, -3.4444, -5.0703, 3.4444, -1.2608, -5.0703, 4.7052, -2.3336, -5.3105, 4.0419, -2.4356, -5.0703, 4.2186, 0, -5.0703, 4.8712, -1.208, -5.3105, 4.5081, -1.2608, -5.0703, 4.7052, 1.208, -5.3105, 4.5081, 0, -5.0703, 4.8712, 1.2608, -5.0703, 4.7052, 2.4356, -5.0703, 4.2186, 1.208, -5.3105, 4.5081, 1.2608, -5.0703, 4.7052, 3.4444, -5.0703, 3.4444, 2.3336, -5.3105, 4.0419, 2.4356, -5.0703, 4.2186, 4.0419, -5.3105, 2.3336, 3.4444, -5.0703, 3.4444, 4.2186, -5.0703, 2.4356, 4.5081, -5.3105, 1.208, 4.2186, -5.0703, 2.4356, 4.7052, -5.0703, 1.2608, 4.8712, -5.0703, 0, 4.5081, -5.3105, 1.208, 4.7052, -5.0703, 1.2608, 4.7052, -5.0703, -1.2608, 4.6672, -5.3105, 0, 4.8712, -5.0703, 0, 4.2186, -5.0703, -2.4356, 4.5081, -5.3105, -1.208, 4.7052, -5.0703, -1.2608, 3.4444, -5.0703, -3.4444, 4.0419, -5.3105, -2.3336, 4.2186, -5.0703, -2.4356, 2.4356, -5.0703, -4.2186, 3.3002, -5.3105, -3.3002, 3.4444, -5.0703, -3.4444, 1.2608, -5.0703, -4.7052, 2.3336, -5.3105, -4.0419, 2.4356, -5.0703, -4.2186, 0, -5.0703, -4.8712, 1.208, -5.3105, -4.5081, 1.2608, -5.0703, -4.7052, -1.208, -5.3105, -4.5081, 0, -5.0703, -4.8712, -1.2608, -5.0703, -4.7052, -2.4356, -5.0703, -4.2186, -1.208, -5.3105, -4.5081, -1.2608, -5.0703, -4.7052, -3.3002, -5.3105, -3.3002, -2.4356, -5.0703, -4.2186, -3.4444, -5.0703, -3.4444, -4.2186, -5.0703, -2.4356, -3.3002, -5.3105, -3.3002, -3.4444, -5.0703, -3.4444, -4.7052, -5.0703, -1.2608, -4.0419, -5.3105, -2.3336, -4.2186, -5.0703, -2.4356, -4.8712, -5.0703, 0, -4.5081, -5.3105, -1.208, -4.7052, -5.0703, -1.2608, -4.5081, -5.3105, 1.208, -4.3434, -5.4788, 0, -4.6672, -5.3105, 0, -4.0419, -5.3105, 2.3336, -4.1954, -5.4788, 1.1242, -4.5081, -5.3105, 1.208, -3.0713, -5.4788, 3.0713, -4.0419, -5.3105, 2.3336, -3.3002, -5.3105, 3.3002, -2.3336, -5.3105, 4.0419, -3.0713, -5.4788, 3.0713, -3.3002, -5.3105, 3.3002, -1.208, -5.3105, 4.5081, -2.1717, -5.4788, 3.7615, -2.3336, -5.3105, 4.0419, 0, -5.3105, 4.6672, -1.1242, -5.4788, 4.1954, -1.208, -5.3105, 4.5081, 1.1242, -5.4788, 4.1954, 0, -5.3105, 4.6672, 1.208, -5.3105, 4.5081, 2.1717, -5.4788, 3.7615, 1.208, -5.3105, 4.5081, 2.3336, -5.3105, 4.0419, 3.0713, -5.4788, 3.0713, 2.3336, -5.3105, 4.0419, 3.3002, -5.3105, 3.3002, 4.0419, -5.3105, 2.3336, 3.0713, -5.4788, 3.0713, 3.3002, -5.3105, 3.3002, 4.5081, -5.3105, 1.208, 3.7615, -5.4788, 2.1717, 4.0419, -5.3105, 2.3336, 4.3434, -5.4788, 0, 4.5081, -5.3105, 1.208, 4.6672, -5.3105, 0, 4.5081, -5.3105, -1.208, 4.3434, -5.4788, 0, 4.6672, -5.3105, 0, 4.0419, -5.3105, -2.3336, 4.1954, -5.4788, -1.1242, 4.5081, -5.3105, -1.208, 3.0713, -5.4788, -3.0713, 4.0419, -5.3105, -2.3336, 3.3002, -5.3105, -3.3002, 2.3336, -5.3105, -4.0419, 3.0713, -5.4788, -3.0713, 3.3002, -5.3105, -3.3002, 1.1242, -5.4788, -4.1954, 2.3336, -5.3105, -4.0419, 1.208, -5.3105, -4.5081, 0, -5.4788, -4.3434, 1.208, -5.3105, -4.5081, 0, -5.3105, -4.6672, -1.1242, -5.4788, -4.1954, 0, -5.3105, -4.6672, -1.208, -5.3105, -4.5081, -2.3336, -5.3105, -4.0419, -1.1242, -5.4788, -4.1954, -1.208, -5.3105, -4.5081, -3.3002, -5.3105, -3.3002, -2.1717, -5.4788, -3.7615, -2.3336, -5.3105, -4.0419, -3.7615, -5.4788, -2.1717, -3.3002, -5.3105, -3.3002, -4.0419, -5.3105, -2.3336, -4.1954, -5.4788, -1.1242, -4.0419, -5.3105, -2.3336, -4.5081, -5.3105, -1.208, -4.6672, -5.3105, 0, -4.1954, -5.4788, -1.1242, -4.5081, -5.3105, -1.208, -3.7956, -5.5934, 1.017, -4.3434, -5.4788, 0, -4.1954, -5.4788, 1.1242, -3.7615, -5.4788, 2.1717, -3.7956, -5.5934, 1.017, -4.1954, -5.4788, 1.1242, -3.0713, -5.4788, 3.0713, -3.4031, -5.5934, 1.9648, -3.7615, -5.4788, 2.1717, -1.9648, -5.5934, 3.4031, -3.0713, -5.4788, 3.0713, -2.1717, -5.4788, 3.7615, -1.017, -5.5934, 3.7956, -2.1717, -5.4788, 3.7615, -1.1242, -5.4788, 4.1954, 0, -5.4788, 4.3434, -1.017, -5.5934, 3.7956, -1.1242, -5.4788, 4.1954, 1.1242, -5.4788, 4.1954, 0, -5.5934, 3.9295, 0, -5.4788, 4.3434, 1.9648, -5.5934, 3.4031, 1.1242, -5.4788, 4.1954, 2.1717, -5.4788, 3.7615, 3.0713, -5.4788, 3.0713, 1.9648, -5.5934, 3.4031, 2.1717, -5.4788, 3.7615, 3.7615, -5.4788, 2.1717, 2.7786, -5.5934, 2.7786, 3.0713, -5.4788, 3.0713, 4.1954, -5.4788, 1.1242, 3.4031, -5.5934, 1.9648, 3.7615, -5.4788, 2.1717, 3.9295, -5.5934, 0, 4.1954, -5.4788, 1.1242, 4.3434, -5.4788, 0, 3.7956, -5.5934, -1.017, 4.3434, -5.4788, 0, 4.1954, -5.4788, -1.1242, 3.7615, -5.4788, -2.1717, 3.7956, -5.5934, -1.017, 4.1954, -5.4788, -1.1242, 2.7786, -5.5934, -2.7786, 3.7615, -5.4788, -2.1717, 3.0713, -5.4788, -3.0713, 2.1717, -5.4788, -3.7615, 2.7786, -5.5934, -2.7786, 3.0713, -5.4788, -3.0713, 1.1242, -5.4788, -4.1954, 1.9648, -5.5934, -3.4031, 2.1717, -5.4788, -3.7615, 0, -5.4788, -4.3434, 1.017, -5.5934, -3.7956, 1.1242, -5.4788, -4.1954, -1.017, -5.5934, -3.7956, 0, -5.4788, -4.3434, -1.1242, -5.4788, -4.1954, -2.1717, -5.4788, -3.7615, -1.017, -5.5934, -3.7956, -1.1242, -5.4788, -4.1954, -3.0713, -5.4788, -3.0713, -1.9648, -5.5934, -3.4031, -2.1717, -5.4788, -3.7615, -3.7615, -5.4788, -2.1717, -2.7786, -5.5934, -2.7786, -3.0713, -5.4788, -3.0713, -4.1954, -5.4788, -1.1242, -3.4031, -5.5934, -1.9648, -3.7615, -5.4788, -2.1717, -4.3434, -5.4788, 0, -3.7956, -5.5934, -1.017, -4.1954, -5.4788, -1.1242, -3.7956, -5.5934, 1.017, -3.4551, -5.6722, 0, -3.9295, -5.5934, 0, -3.4031, -5.5934, 1.9648, -3.3374, -5.6722, 0.8943, -3.7956, -5.5934, 1.017, -2.4431, -5.6722, 2.4431, -3.4031, -5.5934, 1.9648, -2.7786, -5.5934, 2.7786, -1.7276, -5.6722, 2.9922, -2.7786, -5.5934, 2.7786, -1.9648, -5.5934, 3.4031, -1.017, -5.5934, 3.7956, -1.7276, -5.6722, 2.9922, -1.9648, -5.5934, 3.4031, 0, -5.6722, 3.4551, -1.017, -5.5934, 3.7956, 0, -5.5934, 3.9295, 1.017, -5.5934, 3.7956, 0, -5.6722, 3.4551, 0, -5.5934, 3.9295, 1.9648, -5.5934, 3.4031, 0.8943, -5.6722, 3.3374, 1.017, -5.5934, 3.7956, 2.7786, -5.5934, 2.7786, 1.7276, -5.6722, 2.9922, 1.9648, -5.5934, 3.4031, 2.9922, -5.6722, 1.7276, 2.7786, -5.5934, 2.7786, 3.4031, -5.5934, 1.9648, 3.7956, -5.5934, 1.017, 2.9922, -5.6722, 1.7276, 3.4031, -5.5934, 1.9648, 3.9295, -5.5934, 0, 3.3374, -5.6722, 0.8943, 3.7956, -5.5934, 1.017, 3.7956, -5.5934, -1.017, 3.4551, -5.6722, 0, 3.9295, -5.5934, 0, 3.4031, -5.5934, -1.9648, 3.3374, -5.6722, -0.8943, 3.7956, -5.5934, -1.017, 2.4431, -5.6722, -2.4431, 3.4031, -5.5934, -1.9648, 2.7786, -5.5934, -2.7786, 1.7276, -5.6722, -2.9922, 2.7786, -5.5934, -2.7786, 1.9648, -5.5934, -3.4031, 1.017, -5.5934, -3.7956, 1.7276, -5.6722, -2.9922, 1.9648, -5.5934, -3.4031, 0, -5.5934, -3.9295, 0.8943, -5.6722, -3.3374, 1.017, -5.5934, -3.7956, -1.017, -5.5934, -3.7956, 0, -5.6722, -3.4551, 0, -5.5934, -3.9295, -1.9648, -5.5934, -3.4031, -0.8943, -5.6722, -3.3374, -1.017, -5.5934, -3.7956, -2.7786, -5.5934, -2.7786, -1.7276, -5.6722, -2.9922, -1.9648, -5.5934, -3.4031, -3.4031, -5.5934, -1.9648, -2.4431, -5.6722, -2.4431, -2.7786, -5.5934, -2.7786, -3.7956, -5.5934, -1.017, -2.9922, -5.6722, -1.7276, -3.4031, -5.5934, -1.9648, -3.9295, -5.5934, 0, -3.3374, -5.6722, -0.8943, -3.7956, -5.5934, -1.017, -2.8493, -5.7334, 0.7635, -3.4551, -5.6722, 0, -3.3374, -5.6722, 0.8943, -2.9922, -5.6722, 1.7276, -2.8493, -5.7334, 0.7635, -3.3374, -5.6722, 0.8943, -2.4431, -5.6722, 2.4431, -2.5546, -5.7334, 1.4749, -2.9922, -5.6722, 1.7276, -1.4749, -5.7334, 2.5546, -2.4431, -5.6722, 2.4431, -1.7276, -5.6722, 2.9922, -0.8943, -5.6722, 3.3374, -1.4749, -5.7334, 2.5546, -1.7276, -5.6722, 2.9922, 0, -5.6722, 3.4551, -0.7635, -5.7334, 2.8493, -0.8943, -5.6722, 3.3374, 0.8943, -5.6722, 3.3374, 0, -5.7334, 2.9498, 0, -5.6722, 3.4551, 1.7276, -5.6722, 2.9922, 0.7635, -5.7334, 2.8493, 0.8943, -5.6722, 3.3374, 2.4431, -5.6722, 2.4431, 1.4749, -5.7334, 2.5546, 1.7276, -5.6722, 2.9922, 2.5546, -5.7334, 1.4749, 2.4431, -5.6722, 2.4431, 2.9922, -5.6722, 1.7276, 2.8493, -5.7334, 0.7635, 2.9922, -5.6722, 1.7276, 3.3374, -5.6722, 0.8943, 3.4551, -5.6722, 0, 2.8493, -5.7334, 0.7635, 3.3374, -5.6722, 0.8943, 2.8493, -5.7334, -0.7635, 3.4551, -5.6722, 0, 3.3374, -5.6722, -0.8943, 2.9922, -5.6722, -1.7276, 2.8493, -5.7334, -0.7635, 3.3374, -5.6722, -0.8943, 2.4431, -5.6722, -2.4431, 2.5546, -5.7334, -1.4749, 2.9922, -5.6722, -1.7276, 1.7276, -5.6722, -2.9922, 2.0858, -5.7334, -2.0858, 2.4431, -5.6722, -2.4431, 0.8943, -5.6722, -3.3374, 1.4749, -5.7334, -2.5546, 1.7276, -5.6722, -2.9922, 0, -5.6722, -3.4551, 0.7635, -5.7334, -2.8493, 0.8943, -5.6722, -3.3374, -0.8943, -5.6722, -3.3374, 0, -5.7334, -2.9498, 0, -5.6722, -3.4551, -1.7276, -5.6722, -2.9922, -0.7635, -5.7334, -2.8493, -0.8943, -5.6722, -3.3374, -2.4431, -5.6722, -2.4431, -1.4749, -5.7334, -2.5546, -1.7276, -5.6722, -2.9922, -2.9922, -5.6722, -1.7276, -2.0858, -5.7334, -2.0858, -2.4431, -5.6722, -2.4431, -2.8493, -5.7334, -0.7635, -2.9922, -5.6722, -1.7276, -3.3374, -5.6722, -0.8943, -3.4551, -5.6722, 0, -2.8493, -5.7334, -0.7635, -3.3374, -5.6722, -0.8943, -2.8493, -5.7334, 0.7635, -2.4431, -5.795, 0, -2.9498, -5.7334, 0, -2.5546, -5.7334, 1.4749, -2.3599, -5.795, 0.6323, -2.8493, -5.7334, 0.7635, -2.0858, -5.7334, 2.0858, -2.1158, -5.795, 1.2216, -2.5546, -5.7334, 1.4749, -1.2216, -5.795, 2.1158, -2.0858, -5.7334, 2.0858, -1.4749, -5.7334, 2.5546, -0.7635, -5.7334, 2.8493, -1.2216, -5.795, 2.1158, -1.4749, -5.7334, 2.5546, 0, -5.795, 2.4431, -0.7635, -5.7334, 2.8493, 0, -5.7334, 2.9498, 0.7635, -5.7334, 2.8493, 0, -5.795, 2.4431, 0, -5.7334, 2.9498, 1.4749, -5.7334, 2.5546, 0.6323, -5.795, 2.3599, 0.7635, -5.7334, 2.8493, 2.0858, -5.7334, 2.0858, 1.2216, -5.795, 2.1158, 1.4749, -5.7334, 2.5546, 2.1158, -5.795, 1.2216, 2.0858, -5.7334, 2.0858, 2.5546, -5.7334, 1.4749, 2.3599, -5.795, 0.6323, 2.5546, -5.7334, 1.4749, 2.8493, -5.7334, 0.7635, 2.9498, -5.7334, 0, 2.3599, -5.795, 0.6323, 2.8493, -5.7334, 0.7635, 2.8493, -5.7334, -0.7635, 2.4431, -5.795, 0, 2.9498, -5.7334, 0, 2.5546, -5.7334, -1.4749, 2.3599, -5.795, -0.6323, 2.8493, -5.7334, -0.7635, 2.0858, -5.7334, -2.0858, 2.1158, -5.795, -1.2216, 2.5546, -5.7334, -1.4749, 1.4749, -5.7334, -2.5546, 1.7275, -5.795, -1.7275, 2.0858, -5.7334, -2.0858, 0.6323, -5.795, -2.3599, 1.4749, -5.7334, -2.5546, 0.7635, -5.7334, -2.8493, 0, -5.7334, -2.9498, 0.6323, -5.795, -2.3599, 0.7635, -5.7334, -2.8493, -0.7635, -5.7334, -2.8493, 0, -5.795, -2.4431, 0, -5.7334, -2.9498, -1.4749, -5.7334, -2.5546, -0.6323, -5.795, -2.3599, -0.7635, -5.7334, -2.8493, -2.0858, -5.7334, -2.0858, -1.2216, -5.795, -2.1158, -1.4749, -5.7334, -2.5546, -2.1158, -5.795, -1.2216, -2.0858, -5.7334, -2.0858, -2.5546, -5.7334, -1.4749, -2.8493, -5.7334, -0.7635, -2.1158, -5.795, -1.2216, -2.5546, -5.7334, -1.4749, -2.9498, -5.7334, 0, -2.3599, -5.795, -0.6323, -2.8493, -5.7334, -0.7635, -2.3599, -5.795, 0.6323, -1.9647, -5.8749, 0, -2.4431, -5.795, 0, -2.1158, -5.795, 1.2216, -1.8978, -5.8749, 0.5085, -2.3599, -5.795, 0.6323, -1.7275, -5.795, 1.7275, -1.7015, -5.8749, 0.9824, -2.1158, -5.795, 1.2216, -1.2216, -5.795, 2.1158, -1.3893, -5.8749, 1.3893, -1.7275, -5.795, 1.7275, -0.6323, -5.795, 2.3599, -0.9824, -5.8749, 1.7015, -1.2216, -5.795, 2.1158, 0, -5.8749, 1.9647, -0.6323, -5.795, 2.3599, 0, -5.795, 2.4431, 0.6323, -5.795, 2.3599, 0, -5.8749, 1.9647, 0, -5.795, 2.4431, 1.2216, -5.795, 2.1158, 0.5085, -5.8749, 1.8978, 0.6323, -5.795, 2.3599, 1.7275, -5.795, 1.7275, 0.9824, -5.8749, 1.7015, 1.2216, -5.795, 2.1158, 2.1158, -5.795, 1.2216, 1.3893, -5.8749, 1.3893, 1.7275, -5.795, 1.7275, 2.3599, -5.795, 0.6323, 1.7015, -5.8749, 0.9824, 2.1158, -5.795, 1.2216, 2.4431, -5.795, 0, 1.8978, -5.8749, 0.5085, 2.3599, -5.795, 0.6323, 2.3599, -5.795, -0.6323, 1.9647, -5.8749, 0, 2.4431, -5.795, 0, 2.1158, -5.795, -1.2216, 1.8978, -5.8749, -0.5085, 2.3599, -5.795, -0.6323, 1.7275, -5.795, -1.7275, 1.7015, -5.8749, -0.9824, 2.1158, -5.795, -1.2216, 1.2216, -5.795, -2.1158, 1.3893, -5.8749, -1.3893, 1.7275, -5.795, -1.7275, 0.5085, -5.8749, -1.8978, 1.2216, -5.795, -2.1158, 0.6323, -5.795, -2.3599, 0, -5.8749, -1.9647, 0.6323, -5.795, -2.3599, 0, -5.795, -2.4431, -0.6323, -5.795, -2.3599, 0, -5.8749, -1.9647, 0, -5.795, -2.4431, -1.2216, -5.795, -2.1158, -0.5085, -5.8749, -1.8978, -0.6323, -5.795, -2.3599, -1.7275, -5.795, -1.7275, -0.9824, -5.8749, -1.7015, -1.2216, -5.795, -2.1158, -2.1158, -5.795, -1.2216, -1.3893, -5.8749, -1.3893, -1.7275, -5.795, -1.7275, -2.3599, -5.795, -0.6323, -1.7015, -5.8749, -0.9824, -2.1158, -5.795, -1.2216, -2.4431, -5.795, 0, -1.8978, -5.8749, -0.5085, -2.3599, -5.795, -0.6323, -1.4916, -5.9914, 0.3997, -1.9647, -5.8749, 0, -1.8978, -5.8749, 0.5085, -1.7015, -5.8749, 0.9824, -1.4916, -5.9914, 0.3997, -1.8978, -5.8749, 0.5085, -1.3893, -5.8749, 1.3893, -1.3373, -5.9914, 0.7721, -1.7015, -5.8749, 0.9824, -0.9824, -5.8749, 1.7015, -1.0919, -5.9914, 1.0919, -1.3893, -5.8749, 1.3893, -0.5085, -5.8749, 1.8978, -0.7721, -5.9914, 1.3373, -0.9824, -5.8749, 1.7015, 0, -5.8749, 1.9647, -0.3997, -5.9914, 1.4916, -0.5085, -5.8749, 1.8978, 0.5085, -5.8749, 1.8978, 0, -5.9914, 1.5442, 0, -5.8749, 1.9647, 0.7721, -5.9914, 1.3373, 0.5085, -5.8749, 1.8978, 0.9824, -5.8749, 1.7015, 1.3893, -5.8749, 1.3893, 0.7721, -5.9914, 1.3373, 0.9824, -5.8749, 1.7015, 1.3373, -5.9914, 0.7721, 1.3893, -5.8749, 1.3893, 1.7015, -5.8749, 0.9824, 1.8978, -5.8749, 0.5085, 1.3373, -5.9914, 0.7721, 1.7015, -5.8749, 0.9824, 1.9647, -5.8749, 0, 1.4916, -5.9914, 0.3997, 1.8978, -5.8749, 0.5085, 1.8978, -5.8749, -0.5085, 1.5442, -5.9914, 0, 1.9647, -5.8749, 0, 1.3373, -5.9914, -0.7721, 1.8978, -5.8749, -0.5085, 1.7015, -5.8749, -0.9824, 1.3893, -5.8749, -1.3893, 1.3373, -5.9914, -0.7721, 1.7015, -5.8749, -0.9824, 0.7721, -5.9914, -1.3373, 1.3893, -5.8749, -1.3893, 0.9824, -5.8749, -1.7015, 0.5085, -5.8749, -1.8978, 0.7721, -5.9914, -1.3373, 0.9824, -5.8749, -1.7015, 0, -5.8749, -1.9647, 0.3997, -5.9914, -1.4916, 0.5085, -5.8749, -1.8978, -0.5085, -5.8749, -1.8978, 0, -5.9914, -1.5442, 0, -5.8749, -1.9647, -0.7721, -5.9914, -1.3373, -0.5085, -5.8749, -1.8978, -0.9824, -5.8749, -1.7015, -1.3893, -5.8749, -1.3893, -0.7721, -5.9914, -1.3373, -0.9824, -5.8749, -1.7015, -1.3373, -5.9914, -0.7721, -1.3893, -5.8749, -1.3893, -1.7015, -5.8749, -0.9824, -1.8978, -5.8749, -0.5085, -1.3373, -5.9914, -0.7721, -1.7015, -5.8749, -0.9824, -1.9647, -5.8749, 0, -1.4916, -5.9914, -0.3997, -1.8978, -5.8749, -0.5085, -1.4916, -5.9914, 0.3997, -1.2111, -6.1624, 0, -1.5442, -5.9914, 0, -1.3373, -5.9914, 0.7721, -1.1699, -6.1624, 0.3135, -1.4916, -5.9914, 0.3997, -1.0919, -5.9914, 1.0919, -1.0489, -6.1624, 0.6056, -1.3373, -5.9914, 0.7721, -0.7721, -5.9914, 1.3373, -0.8564, -6.1624, 0.8564, -1.0919, -5.9914, 1.0919, -0.3997, -5.9914, 1.4916, -0.6056, -6.1624, 1.0489, -0.7721, -5.9914, 1.3373, 0, -5.9914, 1.5442, -0.3135, -6.1624, 1.1699, -0.3997, -5.9914, 1.4916, 0.3997, -5.9914, 1.4916, 0, -6.1624, 1.2111, 0, -5.9914, 1.5442, 0.7721, -5.9914, 1.3373, 0.3135, -6.1624, 1.1699, 0.3997, -5.9914, 1.4916, 1.0919, -5.9914, 1.0919, 0.6056, -6.1624, 1.0489, 0.7721, -5.9914, 1.3373, 1.3373, -5.9914, 0.7721, 0.8564, -6.1624, 0.8564, 1.0919, -5.9914, 1.0919, 1.4916, -5.9914, 0.3997, 1.0489, -6.1624, 0.6056, 1.3373, -5.9914, 0.7721, 1.5442, -5.9914, 0, 1.1699, -6.1624, 0.3135, 1.4916, -5.9914, 0.3997, 1.4916, -5.9914, -0.3997, 1.2111, -6.1624, 0, 1.5442, -5.9914, 0, 1.3373, -5.9914, -0.7721, 1.1699, -6.1624, -0.3135, 1.4916, -5.9914, -0.3997, 0.8564, -6.1624, -0.8564, 1.3373, -5.9914, -0.7721, 1.0919, -5.9914, -1.0919, 0.7721, -5.9914, -1.3373, 0.8564, -6.1624, -0.8564, 1.0919, -5.9914, -1.0919, 0.3997, -5.9914, -1.4916, 0.6056, -6.1624, -1.0489, 0.7721, -5.9914, -1.3373, 0, -5.9914, -1.5442, 0.3135, -6.1624, -1.1699, 0.3997, -5.9914, -1.4916, -0.3997, -5.9914, -1.4916, 0, -6.1624, -1.2111, 0, -5.9914, -1.5442, -0.7721, -5.9914, -1.3373, -0.3135, -6.1624, -1.1699, -0.3997, -5.9914, -1.4916, -1.0919, -5.9914, -1.0919, -0.6056, -6.1624, -1.0489, -0.7721, -5.9914, -1.3373, -1.3373, -5.9914, -0.7721, -0.8564, -6.1624, -0.8564, -1.0919, -5.9914, -1.0919, -1.4916, -5.9914, -0.3997, -1.0489, -6.1624, -0.6056, -1.3373, -5.9914, -0.7721, -1.5442, -5.9914, 0, -1.1699, -6.1624, -0.3135, -1.4916, -5.9914, -0.3997, -1.1699, -6.1624, 0.3135, -1.0452, -6.3726, 0, -1.2111, -6.1624, 0, -1.0489, -6.1624, 0.6056, -1.0096, -6.3726, 0.2705, -1.1699, -6.1624, 0.3135, -0.8564, -6.1624, 0.8564, -0.9052, -6.3726, 0.5226, -1.0489, -6.1624, 0.6056, -0.6056, -6.1624, 1.0489, -0.7391, -6.3726, 0.7391, -0.8564, -6.1624, 0.8564, -0.2705, -6.3726, 1.0096, -0.6056, -6.1624, 1.0489, -0.3135, -6.1624, 1.1699, 0, -6.3726, 1.0452, -0.3135, -6.1624, 1.1699, 0, -6.1624, 1.2111, 0.3135, -6.1624, 1.1699, 0, -6.3726, 1.0452, 0, -6.1624, 1.2111, 0.6056, -6.1624, 1.0489, 0.2705, -6.3726, 1.0096, 0.3135, -6.1624, 1.1699, 0.8564, -6.1624, 0.8564, 0.5226, -6.3726, 0.9052, 0.6056, -6.1624, 1.0489, 1.0489, -6.1624, 0.6056, 0.7391, -6.3726, 0.7391, 0.8564, -6.1624, 0.8564, 1.1699, -6.1624, 0.3135, 0.9052, -6.3726, 0.5226, 1.0489, -6.1624, 0.6056, 1.2111, -6.1624, 0, 1.0096, -6.3726, 0.2705, 1.1699, -6.1624, 0.3135, 1.0096, -6.3726, -0.2705, 1.2111, -6.1624, 0, 1.1699, -6.1624, -0.3135, 0.9052, -6.3726, -0.5226, 1.1699, -6.1624, -0.3135, 1.0489, -6.1624, -0.6056, 0.8564, -6.1624, -0.8564, 0.9052, -6.3726, -0.5226, 1.0489, -6.1624, -0.6056, 0.6056, -6.1624, -1.0489, 0.7391, -6.3726, -0.7391, 0.8564, -6.1624, -0.8564, 0.2705, -6.3726, -1.0096, 0.6056, -6.1624, -1.0489, 0.3135, -6.1624, -1.1699, 0, -6.3726, -1.0452, 0.3135, -6.1624, -1.1699, 0, -6.1624, -1.2111, -0.3135, -6.1624, -1.1699, 0, -6.3726, -1.0452, 0, -6.1624, -1.2111, -0.6056, -6.1624, -1.0489, -0.2705, -6.3726, -1.0096, -0.3135, -6.1624, -1.1699, -0.8564, -6.1624, -0.8564, -0.5226, -6.3726, -0.9052, -0.6056, -6.1624, -1.0489, -0.9052, -6.3726, -0.5226, -0.8564, -6.1624, -0.8564, -1.0489, -6.1624, -0.6056, -1.0096, -6.3726, -0.2705, -1.0489, -6.1624, -0.6056, -1.1699, -6.1624, -0.3135, -1.2111, -6.1624, 0, -1.0096, -6.3726, -0.2705, -1.1699, -6.1624, -0.3135, -1.0096, -6.3726, 0.2705, -1, -6.5958, 0, -1.0452, -6.3726, 0, -0.866, -6.5958, 0.5, -1.0096, -6.3726, 0.2705, -0.9052, -6.3726, 0.5226, -0.7391, -6.3726, 0.7391, -0.866, -6.5958, 0.5, -0.9052, -6.3726, 0.5226, -0.5226, -6.3726, 0.9052, -0.7071, -6.5958, 0.7071, -0.7391, -6.3726, 0.7391, -0.2588, -6.5958, 0.9659, -0.5226, -6.3726, 0.9052, -0.2705, -6.3726, 1.0096, 0, -6.5958, 1, -0.2705, -6.3726, 1.0096, 0, -6.3726, 1.0452, 0.2705, -6.3726, 1.0096, 0, -6.5958, 1, 0, -6.3726, 1.0452, 0.5, -6.5958, 0.866, 0.2705, -6.3726, 1.0096, 0.5226, -6.3726, 0.9052, 0.7391, -6.3726, 0.7391, 0.5, -6.5958, 0.866, 0.5226, -6.3726, 0.9052, 0.866, -6.5958, 0.5, 0.7391, -6.3726, 0.7391, 0.9052, -6.3726, 0.5226, 1.0096, -6.3726, 0.2705, 0.866, -6.5958, 0.5, 0.9052, -6.3726, 0.5226, 1.0452, -6.3726, 0, 0.9659, -6.5958, 0.2588, 1.0096, -6.3726, 0.2705, 1.0096, -6.3726, -0.2705, 1, -6.5958, 0, 1.0452, -6.3726, 0, 0.866, -6.5958, -0.5, 1.0096, -6.3726, -0.2705, 0.9052, -6.3726, -0.5226, 0.7071, -6.5958, -0.7071, 0.9052, -6.3726, -0.5226, 0.7391, -6.3726, -0.7391, 0.5226, -6.3726, -0.9052, 0.7071, -6.5958, -0.7071, 0.7391, -6.3726, -0.7391, 0.2705, -6.3726, -1.0096, 0.5, -6.5958, -0.866, 0.5226, -6.3726, -0.9052, 0, -6.5958, -1, 0.2705, -6.3726, -1.0096, 0, -6.3726, -1.0452, -0.2705, -6.3726, -1.0096, 0, -6.5958, -1, 0, -6.3726, -1.0452, -0.5, -6.5958, -0.866, -0.2705, -6.3726, -1.0096, -0.5226, -6.3726, -0.9052, -0.7071, -6.5958, -0.7071, -0.5226, -6.3726, -0.9052, -0.7391, -6.3726, -0.7391, -0.866, -6.5958, -0.5, -0.7391, -6.3726, -0.7391, -0.9052, -6.3726, -0.5226, -0.9659, -6.5958, -0.2588, -0.9052, -6.3726, -0.5226, -1.0096, -6.3726, -0.2705, -1.0452, -6.3726, 0, -0.9659, -6.5958, -0.2588, -1.0096, -6.3726, -0.2705, -4.7453, -4.9259, 0, -4.6364, -4.5958, 1.2423, -4.8, -4.5958, 0, -4.1096, -4.9259, 2.3727, -4.6364, -4.5958, 1.2423, -4.5836, -4.9259, 1.2282, -3.3555, -4.9259, 3.3555, -4.1569, -4.5958, 2.4, -4.1096, -4.9259, 2.3727, -2.3727, -4.9259, 4.1096, -3.3941, -4.5958, 3.3941, -3.3555, -4.9259, 3.3555, -1.2282, -4.9259, 4.5836, -2.4, -4.5958, 4.1569, -2.3727, -4.9259, 4.1096, -1.2282, -4.9259, 4.5836, 0, -4.5958, 4.8, -1.2423, -4.5958, 4.6364, 0, -4.9259, 4.7453, 1.2423, -4.5958, 4.6364, 0, -4.5958, 4.8, 1.2282, -4.9259, 4.5836, 2.4, -4.5958, 4.1569, 1.2423, -4.5958, 4.6364, 3.3555, -4.9259, 3.3555, 2.4, -4.5958, 4.1569, 2.3727, -4.9259, 4.1096, 3.3555, -4.9259, 3.3555, 4.1569, -4.5958, 2.4, 3.3941, -4.5958, 3.3941, 4.1096, -4.9259, 2.3727, 4.6364, -4.5958, 1.2423, 4.1569, -4.5958, 2.4, 4.7453, -4.9259, 0, 4.6364, -4.5958, 1.2423, 4.5836, -4.9259, 1.2282, 4.5836, -4.9259, -1.2282, 4.8, -4.5958, 0, 4.7453, -4.9259, 0, 4.1096, -4.9259, -2.3727, 4.6364, -4.5958, -1.2423, 4.5836, -4.9259, -1.2282, 4.1096, -4.9259, -2.3727, 3.3941, -4.5958, -3.3941, 4.1569, -4.5958, -2.4, 3.3555, -4.9259, -3.3555, 2.4, -4.5958, -4.1569, 3.3941, -4.5958, -3.3941, 1.2282, -4.9259, -4.5836, 2.4, -4.5958, -4.1569, 2.3727, -4.9259, -4.1096, 0, -4.9259, -4.7453, 1.2423, -4.5958, -4.6364, 1.2282, -4.9259, -4.5836, 0, -4.9259, -4.7453, -1.2423, -4.5958, -4.6364, 0, -4.5958, -4.8, -1.2282, -4.9259, -4.5836, -2.4, -4.5958, -4.1569, -1.2423, -4.5958, -4.6364, -3.3555, -4.9259, -3.3555, -2.4, -4.5958, -4.1569, -2.3727, -4.9259, -4.1096, -3.3555, -4.9259, -3.3555, -4.1569, -4.5958, -2.4, -3.3941, -4.5958, -3.3941, -4.5836, -4.9259, -1.2282, -4.1569, -4.5958, -2.4, -4.1096, -4.9259, -2.3727, -4.5836, -4.9259, -1.2282, -4.8, -4.5958, 0, -4.6364, -4.5958, -1.2423, -4.5413, -5.1661, 0, -4.5836, -4.9259, 1.2282, -4.7453, -4.9259, 0, -3.9329, -5.1661, 2.2707, -4.5836, -4.9259, 1.2282, -4.3866, -5.1661, 1.1754, -3.9329, -5.1661, 2.2707, -3.3555, -4.9259, 3.3555, -4.1096, -4.9259, 2.3727, -2.2707, -5.1661, 3.9329, -3.3555, -4.9259, 3.3555, -3.2112, -5.1661, 3.2112, -1.1754, -5.1661, 4.3866, -2.3727, -4.9259, 4.1096, -2.2707, -5.1661, 3.9329, 0, -5.1661, 4.5413, -1.2282, -4.9259, 4.5836, -1.1754, -5.1661, 4.3866, 1.1754, -5.1661, 4.3866, 0, -4.9259, 4.7453, 0, -5.1661, 4.5413, 1.1754, -5.1661, 4.3866, 2.3727, -4.9259, 4.1096, 1.2282, -4.9259, 4.5836, 2.2707, -5.1661, 3.9329, 3.3555, -4.9259, 3.3555, 2.3727, -4.9259, 4.1096, 3.2112, -5.1661, 3.2112, 4.1096, -4.9259, 2.3727, 3.3555, -4.9259, 3.3555, 3.9329, -5.1661, 2.2707, 4.5836, -4.9259, 1.2282, 4.1096, -4.9259, 2.3727, 4.3866, -5.1661, 1.1754, 4.7453, -4.9259, 0, 4.5836, -4.9259, 1.2282, 4.5413, -5.1661, 0, 4.5836, -4.9259, -1.2282, 4.7453, -4.9259, 0, 4.3866, -5.1661, -1.1754, 4.1096, -4.9259, -2.3727, 4.5836, -4.9259, -1.2282, 3.2112, -5.1661, -3.2112, 4.1096, -4.9259, -2.3727, 3.9329, -5.1661, -2.2707, 3.2112, -5.1661, -3.2112, 2.3727, -4.9259, -4.1096, 3.3555, -4.9259, -3.3555, 2.2707, -5.1661, -3.9329, 1.2282, -4.9259, -4.5836, 2.3727, -4.9259, -4.1096, 1.1754, -5.1661, -4.3866, 0, -4.9259, -4.7453, 1.2282, -4.9259, -4.5836, -1.1754, -5.1661, -4.3866, 0, -4.9259, -4.7453, 0, -5.1661, -4.5413, -1.1754, -5.1661, -4.3866, -2.3727, -4.9259, -4.1096, -1.2282, -4.9259, -4.5836, -2.2707, -5.1661, -3.9329, -3.3555, -4.9259, -3.3555, -2.3727, -4.9259, -4.1096, -3.2112, -5.1661, -3.2112, -4.1096, -4.9259, -2.3727, -3.3555, -4.9259, -3.3555, -4.3866, -5.1661, -1.1754, -4.1096, -4.9259, -2.3727, -3.9329, -5.1661, -2.2707, -4.3866, -5.1661, -1.1754, -4.7453, -4.9259, 0, -4.5836, -4.9259, -1.2282, -4.2176, -5.3344, 0, -4.3866, -5.1661, 1.1754, -4.5413, -5.1661, 0, -3.6525, -5.3344, 2.1088, -4.3866, -5.1661, 1.1754, -4.0739, -5.3344, 1.0916, -3.6525, -5.3344, 2.1088, -3.2112, -5.1661, 3.2112, -3.9329, -5.1661, 2.2707, -2.9823, -5.3344, 2.9823, -2.2707, -5.1661, 3.9329, -3.2112, -5.1661, 3.2112, -2.1088, -5.3344, 3.6525, -1.1754, -5.1661, 4.3866, -2.2707, -5.1661, 3.9329, -1.0916, -5.3344, 4.0739, 0, -5.1661, 4.5413, -1.1754, -5.1661, 4.3866, 0, -5.3344, 4.2176, 1.1754, -5.1661, 4.3866, 0, -5.1661, 4.5413, 2.1088, -5.3344, 3.6525, 1.1754, -5.1661, 4.3866, 1.0916, -5.3344, 4.0739, 2.1088, -5.3344, 3.6525, 3.2112, -5.1661, 3.2112, 2.2707, -5.1661, 3.9329, 3.6525, -5.3344, 2.1088, 3.2112, -5.1661, 3.2112, 2.9823, -5.3344, 2.9823, 4.0739, -5.3344, 1.0916, 3.9329, -5.1661, 2.2707, 3.6525, -5.3344, 2.1088, 4.2176, -5.3344, 0, 4.3866, -5.1661, 1.1754, 4.0739, -5.3344, 1.0916, 4.0739, -5.3344, -1.0916, 4.5413, -5.1661, 0, 4.2176, -5.3344, 0, 3.6525, -5.3344, -2.1088, 4.3866, -5.1661, -1.1754, 4.0739, -5.3344, -1.0916, 3.6525, -5.3344, -2.1088, 3.2112, -5.1661, -3.2112, 3.9329, -5.1661, -2.2707, 2.9823, -5.3344, -2.9823, 2.2707, -5.1661, -3.9329, 3.2112, -5.1661, -3.2112, 2.1088, -5.3344, -3.6525, 1.1754, -5.1661, -4.3866, 2.2707, -5.1661, -3.9329, 1.0916, -5.3344, -4.0739, 0, -5.1661, -4.5413, 1.1754, -5.1661, -4.3866, -1.0916, -5.3344, -4.0739, 0, -5.1661, -4.5413, 0, -5.3344, -4.2176, -1.0916, -5.3344, -4.0739, -2.2707, -5.1661, -3.9329, -1.1754, -5.1661, -4.3866, -2.9823, -5.3344, -2.9823, -2.2707, -5.1661, -3.9329, -2.1088, -5.3344, -3.6525, -2.9823, -5.3344, -2.9823, -3.9329, -5.1661, -2.2707, -3.2112, -5.1661, -3.2112, -4.0739, -5.3344, -1.0916, -3.9329, -5.1661, -2.2707, -3.6525, -5.3344, -2.1088, -4.0739, -5.3344, -1.0916, -4.5413, -5.1661, 0, -4.3866, -5.1661, -1.1754, -3.8037, -5.449, 0, -4.0739, -5.3344, 1.0916, -4.2176, -5.3344, 0, -3.6741, -5.449, 0.9845, -3.6525, -5.3344, 2.1088, -4.0739, -5.3344, 1.0916, -3.2941, -5.449, 1.9018, -2.9823, -5.3344, 2.9823, -3.6525, -5.3344, 2.1088, -1.9018, -5.449, 3.2941, -2.9823, -5.3344, 2.9823, -2.6896, -5.449, 2.6896, -0.9845, -5.449, 3.6741, -2.1088, -5.3344, 3.6525, -1.9018, -5.449, 3.2941, -0.9845, -5.449, 3.6741, 0, -5.3344, 4.2176, -1.0916, -5.3344, 4.0739, 0, -5.449, 3.8037, 1.0916, -5.3344, 4.0739, 0, -5.3344, 4.2176, 0.9845, -5.449, 3.6741, 2.1088, -5.3344, 3.6525, 1.0916, -5.3344, 4.0739, 1.9018, -5.449, 3.2941, 2.9823, -5.3344, 2.9823, 2.1088, -5.3344, 3.6525, 3.2941, -5.449, 1.9018, 2.9823, -5.3344, 2.9823, 2.6896, -5.449, 2.6896, 3.2941, -5.449, 1.9018, 4.0739, -5.3344, 1.0916, 3.6525, -5.3344, 2.1088, 3.6741, -5.449, 0.9845, 4.2176, -5.3344, 0, 4.0739, -5.3344, 1.0916, 3.6741, -5.449, -0.9845, 4.2176, -5.3344, 0, 3.8037, -5.449, 0, 3.6741, -5.449, -0.9845, 3.6525, -5.3344, -2.1088, 4.0739, -5.3344, -1.0916, 3.2941, -5.449, -1.9018, 2.9823, -5.3344, -2.9823, 3.6525, -5.3344, -2.1088, 1.9018, -5.449, -3.2941, 2.9823, -5.3344, -2.9823, 2.6896, -5.449, -2.6896, 1.9018, -5.449, -3.2941, 1.0916, -5.3344, -4.0739, 2.1088, -5.3344, -3.6525, 0.9845, -5.449, -3.6741, 0, -5.3344, -4.2176, 1.0916, -5.3344, -4.0739, 0, -5.449, -3.8037, -1.0916, -5.3344, -4.0739, 0, -5.3344, -4.2176, -0.9845, -5.449, -3.6741, -2.1088, -5.3344, -3.6525, -1.0916, -5.3344, -4.0739, -2.6896, -5.449, -2.6896, -2.1088, -5.3344, -3.6525, -1.9018, -5.449, -3.2941, -3.2941, -5.449, -1.9018, -2.9823, -5.3344, -2.9823, -2.6896, -5.449, -2.6896, -3.2941, -5.449, -1.9018, -4.0739, -5.3344, -1.0916, -3.6525, -5.3344, -2.1088, -3.6741, -5.449, -0.9845, -4.2176, -5.3344, 0, -4.0739, -5.3344, -1.0916, -3.3293, -5.5279, 0, -3.6741, -5.449, 0.9845, -3.8037, -5.449, 0, -3.2158, -5.5279, 0.8617, -3.2941, -5.449, 1.9018, -3.6741, -5.449, 0.9845, -2.3542, -5.5279, 2.3542, -3.2941, -5.449, 1.9018, -2.8832, -5.5279, 1.6646, -2.3542, -5.5279, 2.3542, -1.9018, -5.449, 3.2941, -2.6896, -5.449, 2.6896, -0.8617, -5.5279, 3.2158, -1.9018, -5.449, 3.2941, -1.6646, -5.5279, 2.8832, -0.8617, -5.5279, 3.2158, 0, -5.449, 3.8037, -0.9845, -5.449, 3.6741, 0.8617, -5.5279, 3.2158, 0, -5.449, 3.8037, 0, -5.5279, 3.3293, 0.8617, -5.5279, 3.2158, 1.9018, -5.449, 3.2941, 0.9845, -5.449, 3.6741, 1.6646, -5.5279, 2.8832, 2.6896, -5.449, 2.6896, 1.9018, -5.449, 3.2941, 2.8832, -5.5279, 1.6646, 2.6896, -5.449, 2.6896, 2.3542, -5.5279, 2.3542, 3.2158, -5.5279, 0.8617, 3.2941, -5.449, 1.9018, 2.8832, -5.5279, 1.6646, 3.2158, -5.5279, 0.8617, 3.8037, -5.449, 0, 3.6741, -5.449, 0.9845, 3.2158, -5.5279, -0.8617, 3.8037, -5.449, 0, 3.3293, -5.5279, 0, 3.2158, -5.5279, -0.8617, 3.2941, -5.449, -1.9018, 3.6741, -5.449, -0.9845, 2.8832, -5.5279, -1.6646, 2.6896, -5.449, -2.6896, 3.2941, -5.449, -1.9018, 1.6646, -5.5279, -2.8832, 2.6896, -5.449, -2.6896, 2.3542, -5.5279, -2.3542, 0.8617, -5.5279, -3.2158, 1.9018, -5.449, -3.2941, 1.6646, -5.5279, -2.8832, 0, -5.5279, -3.3293, 0.9845, -5.449, -3.6741, 0.8617, -5.5279, -3.2158, 0, -5.5279, -3.3293, -0.9845, -5.449, -3.6741, 0, -5.449, -3.8037, -0.8617, -5.5279, -3.2158, -1.9018, -5.449, -3.2941, -0.9845, -5.449, -3.6741, -2.3542, -5.5279, -2.3542, -1.9018, -5.449, -3.2941, -1.6646, -5.5279, -2.8832, -2.3542, -5.5279, -2.3542, -3.2941, -5.449, -1.9018, -2.6896, -5.449, -2.6896, -2.8832, -5.5279, -1.6646, -3.6741, -5.449, -0.9845, -3.2941, -5.449, -1.9018, -3.2158, -5.5279, -0.8617, -3.8037, -5.449, 0, -3.6741, -5.449, -0.9845, -2.8239, -5.589, 0, -3.2158, -5.5279, 0.8617, -3.3293, -5.5279, 0, -2.7277, -5.589, 0.7309, -2.8832, -5.5279, 1.6646, -3.2158, -5.5279, 0.8617, -2.4456, -5.589, 1.412, -2.3542, -5.5279, 2.3542, -2.8832, -5.5279, 1.6646, -1.9968, -5.589, 1.9968, -1.6646, -5.5279, 2.8832, -2.3542, -5.5279, 2.3542, -0.7309, -5.589, 2.7277, -1.6646, -5.5279, 2.8832, -1.412, -5.589, 2.4456, -0.7309, -5.589, 2.7277, 0, -5.5279, 3.3293, -0.8617, -5.5279, 3.2158, 0, -5.589, 2.8239, 0.8617, -5.5279, 3.2158, 0, -5.5279, 3.3293, 0.7309, -5.589, 2.7277, 1.6646, -5.5279, 2.8832, 0.8617, -5.5279, 3.2158, 1.412, -5.589, 2.4456, 2.3542, -5.5279, 2.3542, 1.6646, -5.5279, 2.8832, 1.9968, -5.589, 1.9968, 2.8832, -5.5279, 1.6646, 2.3542, -5.5279, 2.3542, 2.4456, -5.589, 1.412, 3.2158, -5.5279, 0.8617, 2.8832, -5.5279, 1.6646, 2.8239, -5.589, 0, 3.2158, -5.5279, 0.8617, 2.7277, -5.589, 0.7309, 2.8239, -5.589, 0, 3.2158, -5.5279, -0.8617, 3.3293, -5.5279, 0, 2.7277, -5.589, -0.7309, 2.8832, -5.5279, -1.6646, 3.2158, -5.5279, -0.8617, 2.4456, -5.589, -1.412, 2.3542, -5.5279, -2.3542, 2.8832, -5.5279, -1.6646, 1.9968, -5.589, -1.9968, 1.6646, -5.5279, -2.8832, 2.3542, -5.5279, -2.3542, 0.7309, -5.589, -2.7277, 1.6646, -5.5279, -2.8832, 1.412, -5.589, -2.4456, 0.7309, -5.589, -2.7277, 0, -5.5279, -3.3293, 0.8617, -5.5279, -3.2158, 0, -5.589, -2.8239, -0.8617, -5.5279, -3.2158, 0, -5.5279, -3.3293, -0.7309, -5.589, -2.7277, -1.6646, -5.5279, -2.8832, -0.8617, -5.5279, -3.2158, -1.412, -5.589, -2.4456, -2.3542, -5.5279, -2.3542, -1.6646, -5.5279, -2.8832, -1.9968, -5.589, -1.9968, -2.8832, -5.5279, -1.6646, -2.3542, -5.5279, -2.3542, -2.7277, -5.589, -0.7309, -2.8832, -5.5279, -1.6646, -2.4456, -5.589, -1.412, -2.8239, -5.589, 0, -3.2158, -5.5279, -0.8617, -2.7277, -5.589, -0.7309, -2.2383, -5.6506, 0.5998, -2.8239, -5.589, 0, -2.3173, -5.6506, 0, -2.2383, -5.6506, 0.5998, -2.4456, -5.589, 1.412, -2.7277, -5.589, 0.7309, -2.0068, -5.6506, 1.1586, -1.9968, -5.589, 1.9968, -2.4456, -5.589, 1.412, -1.1586, -5.6506, 2.0068, -1.9968, -5.589, 1.9968, -1.6386, -5.6506, 1.6386, -1.1586, -5.6506, 2.0068, -0.7309, -5.589, 2.7277, -1.412, -5.589, 2.4456, -0.5998, -5.6506, 2.2383, 0, -5.589, 2.8239, -0.7309, -5.589, 2.7277, 0, -5.6506, 2.3173, 0.7309, -5.589, 2.7277, 0, -5.589, 2.8239, 0.5998, -5.6506, 2.2383, 1.412, -5.589, 2.4456, 0.7309, -5.589, 2.7277, 1.1586, -5.6506, 2.0068, 1.9968, -5.589, 1.9968, 1.412, -5.589, 2.4456, 1.6386, -5.6506, 1.6386, 2.4456, -5.589, 1.412, 1.9968, -5.589, 1.9968, 2.0068, -5.6506, 1.1586, 2.7277, -5.589, 0.7309, 2.4456, -5.589, 1.412, 2.2383, -5.6506, 0.5998, 2.8239, -5.589, 0, 2.7277, -5.589, 0.7309, 2.3173, -5.6506, 0, 2.7277, -5.589, -0.7309, 2.8239, -5.589, 0, 2.2383, -5.6506, -0.5998, 2.4456, -5.589, -1.412, 2.7277, -5.589, -0.7309, 2.0068, -5.6506, -1.1586, 1.9968, -5.589, -1.9968, 2.4456, -5.589, -1.412, 1.6386, -5.6506, -1.6386, 1.412, -5.589, -2.4456, 1.9968, -5.589, -1.9968, 0.5998, -5.6506, -2.2383, 1.412, -5.589, -2.4456, 1.1586, -5.6506, -2.0068, 0.5998, -5.6506, -2.2383, 0, -5.589, -2.8239, 0.7309, -5.589, -2.7277, 0, -5.6506, -2.3173, -0.7309, -5.589, -2.7277, 0, -5.589, -2.8239, -1.1586, -5.6506, -2.0068, -0.7309, -5.589, -2.7277, -0.5998, -5.6506, -2.2383, -1.6386, -5.6506, -1.6386, -1.412, -5.589, -2.4456, -1.1586, -5.6506, -2.0068, -2.0068, -5.6506, -1.1586, -1.9968, -5.589, -1.9968, -1.6386, -5.6506, -1.6386, -2.0068, -5.6506, -1.1586, -2.7277, -5.589, -0.7309, -2.4456, -5.589, -1.412, -2.2383, -5.6506, -0.5998, -2.8239, -5.589, 0, -2.7277, -5.589, -0.7309, -1.8389, -5.7305, 0, -2.2383, -5.6506, 0.5998, -2.3173, -5.6506, 0, -1.7762, -5.7305, 0.4759, -2.0068, -5.6506, 1.1586, -2.2383, -5.6506, 0.5998, -1.5925, -5.7305, 0.9194, -1.6386, -5.6506, 1.6386, -2.0068, -5.6506, 1.1586, -0.9194, -5.7305, 1.5925, -1.6386, -5.6506, 1.6386, -1.3003, -5.7305, 1.3003, -0.9194, -5.7305, 1.5925, -0.5998, -5.6506, 2.2383, -1.1586, -5.6506, 2.0068, -0.4759, -5.7305, 1.7762, 0, -5.6506, 2.3173, -0.5998, -5.6506, 2.2383, 0, -5.7305, 1.8389, 0.5998, -5.6506, 2.2383, 0, -5.6506, 2.3173, 0.9194, -5.7305, 1.5925, 0.5998, -5.6506, 2.2383, 0.4759, -5.7305, 1.7762, 0.9194, -5.7305, 1.5925, 1.6386, -5.6506, 1.6386, 1.1586, -5.6506, 2.0068, 1.3003, -5.7305, 1.3003, 2.0068, -5.6506, 1.1586, 1.6386, -5.6506, 1.6386, 1.7762, -5.7305, 0.4759, 2.0068, -5.6506, 1.1586, 1.5925, -5.7305, 0.9194, 1.7762, -5.7305, 0.4759, 2.3173, -5.6506, 0, 2.2383, -5.6506, 0.5998, 1.8389, -5.7305, 0, 2.2383, -5.6506, -0.5998, 2.3173, -5.6506, 0, 1.5925, -5.7305, -0.9194, 2.2383, -5.6506, -0.5998, 1.7762, -5.7305, -0.4759, 1.5925, -5.7305, -0.9194, 1.6386, -5.6506, -1.6386, 2.0068, -5.6506, -1.1586, 0.9194, -5.7305, -1.5925, 1.6386, -5.6506, -1.6386, 1.3003, -5.7305, -1.3003, 0.9194, -5.7305, -1.5925, 0.5998, -5.6506, -2.2383, 1.1586, -5.6506, -2.0068, 0.4759, -5.7305, -1.7762, 0, -5.6506, -2.3173, 0.5998, -5.6506, -2.2383, 0, -5.7305, -1.8389, -0.5998, -5.6506, -2.2383, 0, -5.6506, -2.3173, -0.9194, -5.7305, -1.5925, -0.5998, -5.6506, -2.2383, -0.4759, -5.7305, -1.7762, -0.9194, -5.7305, -1.5925, -1.6386, -5.6506, -1.6386, -1.1586, -5.6506, -2.0068, -1.5925, -5.7305, -0.9194, -1.6386, -5.6506, -1.6386, -1.3003, -5.7305, -1.3003, -1.5925, -5.7305, -0.9194, -2.2383, -5.6506, -0.5998, -2.0068, -5.6506, -1.1586, -1.7762, -5.7305, -0.4759, -2.3173, -5.6506, 0, -2.2383, -5.6506, -0.5998, -1.4183, -5.847, 0, -1.7762, -5.7305, 0.4759, -1.8389, -5.7305, 0, -1.37, -5.847, 0.3671, -1.5925, -5.7305, 0.9194, -1.7762, -5.7305, 0.4759, -1.2283, -5.847, 0.7092, -1.3003, -5.7305, 1.3003, -1.5925, -5.7305, 0.9194, -0.7092, -5.847, 1.2283, -1.3003, -5.7305, 1.3003, -1.0029, -5.847, 1.0029, -0.3671, -5.847, 1.37, -0.9194, -5.7305, 1.5925, -0.7092, -5.847, 1.2283, 0, -5.847, 1.4183, -0.4759, -5.7305, 1.7762, -0.3671, -5.847, 1.37, 0, -5.847, 1.4183, 0.4759, -5.7305, 1.7762, 0, -5.7305, 1.8389, 0.3671, -5.847, 1.37, 0.9194, -5.7305, 1.5925, 0.4759, -5.7305, 1.7762, 0.7092, -5.847, 1.2283, 1.3003, -5.7305, 1.3003, 0.9194, -5.7305, 1.5925, 1.0029, -5.847, 1.0029, 1.5925, -5.7305, 0.9194, 1.3003, -5.7305, 1.3003, 1.2283, -5.847, 0.7092, 1.7762, -5.7305, 0.4759, 1.5925, -5.7305, 0.9194, 1.37, -5.847, 0.3671, 1.8389, -5.7305, 0, 1.7762, -5.7305, 0.4759, 1.37, -5.847, -0.3671, 1.8389, -5.7305, 0, 1.4183, -5.847, 0, 1.37, -5.847, -0.3671, 1.5925, -5.7305, -0.9194, 1.7762, -5.7305, -0.4759, 1.0029, -5.847, -1.0029, 1.5925, -5.7305, -0.9194, 1.2283, -5.847, -0.7092, 0.7092, -5.847, -1.2283, 1.3003, -5.7305, -1.3003, 1.0029, -5.847, -1.0029, 0.3671, -5.847, -1.37, 0.9194, -5.7305, -1.5925, 0.7092, -5.847, -1.2283, 0, -5.847, -1.4183, 0.4759, -5.7305, -1.7762, 0.3671, -5.847, -1.37, 0, -5.847, -1.4183, -0.4759, -5.7305, -1.7762, 0, -5.7305, -1.8389, -0.3671, -5.847, -1.37, -0.9194, -5.7305, -1.5925, -0.4759, -5.7305, -1.7762, -0.7092, -5.847, -1.2283, -1.3003, -5.7305, -1.3003, -0.9194, -5.7305, -1.5925, -1.2283, -5.847, -0.7092, -1.3003, -5.7305, -1.3003, -1.0029, -5.847, -1.0029, -1.2283, -5.847, -0.7092, -1.7762, -5.7305, -0.4759, -1.5925, -5.7305, -0.9194, -1.37, -5.847, -0.3671, -1.8389, -5.7305, 0, -1.7762, -5.7305, -0.4759, -1.0483, -6.018, 0.2809, -1.4183, -5.847, 0, -1.0853, -6.018, 0, -1.0483, -6.018, 0.2809, -1.2283, -5.847, 0.7092, -1.37, -5.847, 0.3671, -0.9399, -6.018, 0.5426, -1.0029, -5.847, 1.0029, -1.2283, -5.847, 0.7092, -0.7674, -6.018, 0.7674, -0.7092, -5.847, 1.2283, -1.0029, -5.847, 1.0029, -0.5426, -6.018, 0.9399, -0.3671, -5.847, 1.37, -0.7092, -5.847, 1.2283, -0.2809, -6.018, 1.0483, 0, -5.847, 1.4183, -0.3671, -5.847, 1.37, 0, -6.018, 1.0853, 0.3671, -5.847, 1.37, 0, -5.847, 1.4183, 0.2809, -6.018, 1.0483, 0.7092, -5.847, 1.2283, 0.3671, -5.847, 1.37, 0.5426, -6.018, 0.9399, 1.0029, -5.847, 1.0029, 0.7092, -5.847, 1.2283, 0.7674, -6.018, 0.7674, 1.2283, -5.847, 0.7092, 1.0029, -5.847, 1.0029, 0.9399, -6.018, 0.5426, 1.37, -5.847, 0.3671, 1.2283, -5.847, 0.7092, 1.0853, -6.018, 0, 1.37, -5.847, 0.3671, 1.0483, -6.018, 0.2809, 1.0853, -6.018, 0, 1.37, -5.847, -0.3671, 1.4183, -5.847, 0, 1.0483, -6.018, -0.2809, 1.2283, -5.847, -0.7092, 1.37, -5.847, -0.3671, 0.9399, -6.018, -0.5426, 1.0029, -5.847, -1.0029, 1.2283, -5.847, -0.7092, 0.7674, -6.018, -0.7674, 0.7092, -5.847, -1.2283, 1.0029, -5.847, -1.0029, 0.2809, -6.018, -1.0483, 0.7092, -5.847, -1.2283, 0.5426, -6.018, -0.9399, 0.2809, -6.018, -1.0483, 0, -5.847, -1.4183, 0.3671, -5.847, -1.37, 0, -6.018, -1.0853, -0.3671, -5.847, -1.37, 0, -5.847, -1.4183, -0.2809, -6.018, -1.0483, -0.7092, -5.847, -1.2283, -0.3671, -5.847, -1.37, -0.5426, -6.018, -0.9399, -1.0029, -5.847, -1.0029, -0.7092, -5.847, -1.2283, -0.7674, -6.018, -0.7674, -1.2283, -5.847, -0.7092, -1.0029, -5.847, -1.0029, -1.0483, -6.018, -0.2809, -1.2283, -5.847, -0.7092, -0.9399, -6.018, -0.5426, -1.0483, -6.018, -0.2809, -1.4183, -5.847, 0, -1.37, -5.847, -0.3671, -0.8693, -6.2616, 0, -1.0483, -6.018, 0.2809, -1.0853, -6.018, 0, -0.7528, -6.2616, 0.4347, -1.0483, -6.018, 0.2809, -0.8397, -6.2616, 0.225, -0.6147, -6.2616, 0.6147, -0.9399, -6.018, 0.5426, -0.7528, -6.2616, 0.4347, -0.4347, -6.2616, 0.7528, -0.7674, -6.018, 0.7674, -0.6147, -6.2616, 0.6147, -0.225, -6.2616, 0.8397, -0.5426, -6.018, 0.9399, -0.4347, -6.2616, 0.7528, 0, -6.2616, 0.8693, -0.2809, -6.018, 1.0483, -0.225, -6.2616, 0.8397, 0, -6.2616, 0.8693, 0.2809, -6.018, 1.0483, 0, -6.018, 1.0853, 0.4347, -6.2616, 0.7528, 0.2809, -6.018, 1.0483, 0.225, -6.2616, 0.8397, 0.4347, -6.2616, 0.7528, 0.7674, -6.018, 0.7674, 0.5426, -6.018, 0.9399, 0.7528, -6.2616, 0.4347, 0.7674, -6.018, 0.7674, 0.6147, -6.2616, 0.6147, 0.7528, -6.2616, 0.4347, 1.0483, -6.018, 0.2809, 0.9399, -6.018, 0.5426, 0.8397, -6.2616, 0.225, 1.0853, -6.018, 0, 1.0483, -6.018, 0.2809, 0.8693, -6.2616, 0, 1.0483, -6.018, -0.2809, 1.0853, -6.018, 0, 0.7528, -6.2616, -0.4347, 1.0483, -6.018, -0.2809, 0.8397, -6.2616, -0.225, 0.6147, -6.2616, -0.6147, 0.9399, -6.018, -0.5426, 0.7528, -6.2616, -0.4347, 0.6147, -6.2616, -0.6147, 0.5426, -6.018, -0.9399, 0.7674, -6.018, -0.7674, 0.225, -6.2616, -0.8397, 0.5426, -6.018, -0.9399, 0.4347, -6.2616, -0.7528, 0, -6.2616, -0.8693, 0.2809, -6.018, -1.0483, 0.225, -6.2616, -0.8397, 0, -6.2616, -0.8693, -0.2809, -6.018, -1.0483, 0, -6.018, -1.0853, -0.225, -6.2616, -0.8397, -0.5426, -6.018, -0.9399, -0.2809, -6.018, -1.0483, -0.4347, -6.2616, -0.7528, -0.7674, -6.018, -0.7674, -0.5426, -6.018, -0.9399, -0.6147, -6.2616, -0.6147, -0.9399, -6.018, -0.5426, -0.7674, -6.018, -0.7674, -0.8397, -6.2616, -0.225, -0.9399, -6.018, -0.5426, -0.7528, -6.2616, -0.4347, -0.8693, -6.2616, 0, -1.0483, -6.018, -0.2809, -0.8397, -6.2616, -0.225, -0.7727, -6.5958, 0.2071, -0.8693, -6.2616, 0, -0.8, -6.5958, 0, -0.7727, -6.5958, 0.2071, -0.7528, -6.2616, 0.4347, -0.8397, -6.2616, 0.225, -0.6928, -6.5958, 0.4, -0.6147, -6.2616, 0.6147, -0.7528, -6.2616, 0.4347, -0.5657, -6.5958, 0.5657, -0.4347, -6.2616, 0.7528, -0.6147, -6.2616, 0.6147, -0.4, -6.5958, 0.6928, -0.225, -6.2616, 0.8397, -0.4347, -6.2616, 0.7528, 0, -6.5958, 0.8, -0.225, -6.2616, 0.8397, -0.2071, -6.5958, 0.7727, 0, -6.5958, 0.8, 0.225, -6.2616, 0.8397, 0, -6.2616, 0.8693, 0.2071, -6.5958, 0.7727, 0.4347, -6.2616, 0.7528, 0.225, -6.2616, 0.8397, 0.4, -6.5958, 0.6928, 0.6147, -6.2616, 0.6147, 0.4347, -6.2616, 0.7528, 0.6928, -6.5958, 0.4, 0.6147, -6.2616, 0.6147, 0.5657, -6.5958, 0.5657, 0.7727, -6.5958, 0.2071, 0.7528, -6.2616, 0.4347, 0.6928, -6.5958, 0.4, 0.7727, -6.5958, 0.2071, 0.8693, -6.2616, 0, 0.8397, -6.2616, 0.225, 0.8, -6.5958, 0, 0.8397, -6.2616, -0.225, 0.8693, -6.2616, 0, 0.7727, -6.5958, -0.2071, 0.7528, -6.2616, -0.4347, 0.8397, -6.2616, -0.225, 0.6928, -6.5958, -0.4, 0.6147, -6.2616, -0.6147, 0.7528, -6.2616, -0.4347, 0.5657, -6.5958, -0.5657, 0.4347, -6.2616, -0.7528, 0.6147, -6.2616, -0.6147, 0.2071, -6.5958, -0.7727, 0.4347, -6.2616, -0.7528, 0.4, -6.5958, -0.6928, 0.2071, -6.5958, -0.7727, 0, -6.2616, -0.8693, 0.225, -6.2616, -0.8397, -0.2071, -6.5958, -0.7727, 0, -6.2616, -0.8693, 0, -6.5958, -0.8, -0.2071, -6.5958, -0.7727, -0.4347, -6.2616, -0.7528, -0.225, -6.2616, -0.8397, -0.4, -6.5958, -0.6928, -0.6147, -6.2616, -0.6147, -0.4347, -6.2616, -0.7528, -0.5657, -6.5958, -0.5657, -0.7528, -6.2616, -0.4347, -0.6147, -6.2616, -0.6147, -0.7727, -6.5958, -0.2071, -0.7528, -6.2616, -0.4347, -0.6928, -6.5958, -0.4, -0.8, -6.5958, 0, -0.8397, -6.2616, -0.225, -0.7727, -6.5958, -0.2071, -4.6364, -4.5958, 1.2423, -5, -4.5958, 0, -4.8, -4.5958, 0, -4.1569, -4.5958, 2.4, -4.8296, -4.5958, 1.2941, -4.6364, -4.5958, 1.2423, -3.3941, -4.5958, 3.3941, -4.3301, -4.5958, 2.5, -4.1569, -4.5958, 2.4, -2.4, -4.5958, 4.1569, -3.5355, -4.5958, 3.5355, -3.3941, -4.5958, 3.3941, -1.2941, -4.5958, 4.8296, -2.4, -4.5958, 4.1569, -1.2423, -4.5958, 4.6364, 0, -4.5958, 4.8, -1.2941, -4.5958, 4.8296, -1.2423, -4.5958, 4.6364, 1.2423, -4.5958, 4.6364, 0, -4.5958, 5, 0, -4.5958, 4.8, 2.4, -4.5958, 4.1569, 1.2941, -4.5958, 4.8296, 1.2423, -4.5958, 4.6364, 3.3941, -4.5958, 3.3941, 2.5, -4.5958, 4.3301, 2.4, -4.5958, 4.1569, 4.1569, -4.5958, 2.4, 3.5355, -4.5958, 3.5355, 3.3941, -4.5958, 3.3941, 4.6364, -4.5958, 1.2423, 4.3301, -4.5958, 2.5, 4.1569, -4.5958, 2.4, 5, -4.5958, 0, 4.6364, -4.5958, 1.2423, 4.8, -4.5958, 0, 4.6364, -4.5958, -1.2423, 5, -4.5958, 0, 4.8, -4.5958, 0, 4.3301, -4.5958, -2.5, 4.6364, -4.5958, -1.2423, 4.1569, -4.5958, -2.4, 3.3941, -4.5958, -3.3941, 4.3301, -4.5958, -2.5, 4.1569, -4.5958, -2.4, 2.5, -4.5958, -4.3301, 3.3941, -4.5958, -3.3941, 2.4, -4.5958, -4.1569, 1.2941, -4.5958, -4.8296, 2.4, -4.5958, -4.1569, 1.2423, -4.5958, -4.6364, 0, -4.5958, -5, 1.2423, -4.5958, -4.6364, 0, -4.5958, -4.8, -1.2423, -4.5958, -4.6364, 0, -4.5958, -5, 0, -4.5958, -4.8, -2.4, -4.5958, -4.1569, -1.2941, -4.5958, -4.8296, -1.2423, -4.5958, -4.6364, -3.5355, -4.5958, -3.5355, -2.4, -4.5958, -4.1569, -3.3941, -4.5958, -3.3941, -4.3301, -4.5958, -2.5, -3.3941, -4.5958, -3.3941, -4.1569, -4.5958, -2.4, -4.8296, -4.5958, -1.2941, -4.1569, -4.5958, -2.4, -4.6364, -4.5958, -1.2423, -4.8, -4.5958, 0, -4.8296, -4.5958, -1.2941, -4.6364, -4.5958, -1.2423, -0.9659, -6.5958, 0.2588, -0.8, -6.5958, 0, -1, -6.5958, 0, -0.866, -6.5958, 0.5, -0.7727, -6.5958, 0.2071, -0.9659, -6.5958, 0.2588, -0.7071, -6.5958, 0.7071, -0.6928, -6.5958, 0.4, -0.866, -6.5958, 0.5, -0.5, -6.5958, 0.866, -0.5657, -6.5958, 0.5657, -0.7071, -6.5958, 0.7071, -0.2071, -6.5958, 0.7727, -0.5, -6.5958, 0.866, -0.2588, -6.5958, 0.9659, 0, -6.5958, 1, -0.2071, -6.5958, 0.7727, -0.2588, -6.5958, 0.9659, 0.2588, -6.5958, 0.9659, 0, -6.5958, 0.8, 0, -6.5958, 1, 0.5, -6.5958, 0.866, 0.2071, -6.5958, 0.7727, 0.2588, -6.5958, 0.9659, 0.7071, -6.5958, 0.7071, 0.4, -6.5958, 0.6928, 0.5, -6.5958, 0.866, 0.866, -6.5958, 0.5, 0.5657, -6.5958, 0.5657, 0.7071, -6.5958, 0.7071, 0.7727, -6.5958, 0.2071, 0.866, -6.5958, 0.5, 0.9659, -6.5958, 0.2588, 1, -6.5958, 0, 0.7727, -6.5958, 0.2071, 0.9659, -6.5958, 0.2588, 0.7727, -6.5958, -0.2071, 1, -6.5958, 0, 0.9659, -6.5958, -0.2588, 0.866, -6.5958, -0.5, 0.7727, -6.5958, -0.2071, 0.9659, -6.5958, -0.2588, 0.7071, -6.5958, -0.7071, 0.6928, -6.5958, -0.4, 0.866, -6.5958, -0.5, 0.5, -6.5958, -0.866, 0.5657, -6.5958, -0.5657, 0.7071, -6.5958, -0.7071, 0.2588, -6.5958, -0.9659, 0.4, -6.5958, -0.6928, 0.5, -6.5958, -0.866, 0, -6.5958, -1, 0.2071, -6.5958, -0.7727, 0.2588, -6.5958, -0.9659, -0.2588, -6.5958, -0.9659, 0, -6.5958, -0.8, 0, -6.5958, -1, -0.5, -6.5958, -0.866, -0.2071, -6.5958, -0.7727, -0.2588, -6.5958, -0.9659, -0.5657, -6.5958, -0.5657, -0.5, -6.5958, -0.866, -0.7071, -6.5958, -0.7071, -0.6928, -6.5958, -0.4, -0.7071, -6.5958, -0.7071, -0.866, -6.5958, -0.5, -0.9659, -6.5958, -0.2588, -0.6928, -6.5958, -0.4, -0.866, -6.5958, -0.5, -1, -6.5958, 0, -0.7727, -6.5958, -0.2071, -0.9659, -6.5958, -0.2588, -4.7052, -5.0703, 1.2608, -4.8712, -5.0703, 0, -4.8296, -4.5958, 1.2941, -4.7052, -5.0703, 1.2608, -4.8296, -4.5958, 1.2941, -4.2186, -5.0703, 2.4356, -3.4444, -5.0703, 3.4444, -4.2186, -5.0703, 2.4356, -3.5355, -4.5958, 3.5355, -2.4356, -5.0703, 4.2186, -3.4444, -5.0703, 3.4444, -2.5, -4.5958, 4.3301, -1.2608, -5.0703, 4.7052, -2.4356, -5.0703, 4.2186, -1.2941, -4.5958, 4.8296, 0, -5.0703, 4.8712, -1.2608, -5.0703, 4.7052, 0, -4.5958, 5, 1.2608, -5.0703, 4.7052, 0, -5.0703, 4.8712, 1.2941, -4.5958, 4.8296, 1.2608, -5.0703, 4.7052, 1.2941, -4.5958, 4.8296, 2.4356, -5.0703, 4.2186, 2.4356, -5.0703, 4.2186, 2.5, -4.5958, 4.3301, 3.4444, -5.0703, 3.4444, 3.4444, -5.0703, 3.4444, 3.5355, -4.5958, 3.5355, 4.2186, -5.0703, 2.4356, 4.7052, -5.0703, 1.2608, 4.2186, -5.0703, 2.4356, 4.8296, -4.5958, 1.2941, 4.8712, -5.0703, 0, 4.7052, -5.0703, 1.2608, 5, -4.5958, 0, 4.7052, -5.0703, -1.2608, 4.8712, -5.0703, 0, 4.8296, -4.5958, -1.2941, 4.2186, -5.0703, -2.4356, 4.7052, -5.0703, -1.2608, 4.3301, -4.5958, -2.5, 3.4444, -5.0703, -3.4444, 4.2186, -5.0703, -2.4356, 3.5355, -4.5958, -3.5355, 2.4356, -5.0703, -4.2186, 3.4444, -5.0703, -3.4444, 2.5, -4.5958, -4.3301, 2.4356, -5.0703, -4.2186, 2.5, -4.5958, -4.3301, 1.2608, -5.0703, -4.7052, 0, -5.0703, -4.8712, 1.2608, -5.0703, -4.7052, 0, -4.5958, -5, -1.2608, -5.0703, -4.7052, 0, -5.0703, -4.8712, -1.2941, -4.5958, -4.8296, -2.4356, -5.0703, -4.2186, -1.2608, -5.0703, -4.7052, -2.5, -4.5958, -4.3301, -3.4444, -5.0703, -3.4444, -2.4356, -5.0703, -4.2186, -3.5355, -4.5958, -3.5355, -4.2186, -5.0703, -2.4356, -3.4444, -5.0703, -3.4444, -4.3301, -4.5958, -2.5, -4.2186, -5.0703, -2.4356, -4.3301, -4.5958, -2.5, -4.7052, -5.0703, -1.2608, -4.8712, -5.0703, 0, -4.7052, -5.0703, -1.2608, -5, -4.5958, 0, -4.5081, -5.3105, 1.208, -4.6672, -5.3105, 0, -4.7052, -5.0703, 1.2608, -4.0419, -5.3105, 2.3336, -4.5081, -5.3105, 1.208, -4.2186, -5.0703, 2.4356, -3.3002, -5.3105, 3.3002, -4.0419, -5.3105, 2.3336, -3.4444, -5.0703, 3.4444, -2.3336, -5.3105, 4.0419, -3.3002, -5.3105, 3.3002, -2.4356, -5.0703, 4.2186, -1.208, -5.3105, 4.5081, -2.3336, -5.3105, 4.0419, -1.2608, -5.0703, 4.7052, 0, -5.3105, 4.6672, -1.208, -5.3105, 4.5081, 0, -5.0703, 4.8712, 0, -5.3105, 4.6672, 0, -5.0703, 4.8712, 1.208, -5.3105, 4.5081, 2.3336, -5.3105, 4.0419, 1.208, -5.3105, 4.5081, 2.4356, -5.0703, 4.2186, 3.3002, -5.3105, 3.3002, 2.3336, -5.3105, 4.0419, 3.4444, -5.0703, 3.4444, 3.3002, -5.3105, 3.3002, 3.4444, -5.0703, 3.4444, 4.0419, -5.3105, 2.3336, 4.0419, -5.3105, 2.3336, 4.2186, -5.0703, 2.4356, 4.5081, -5.3105, 1.208, 4.6672, -5.3105, 0, 4.5081, -5.3105, 1.208, 4.8712, -5.0703, 0, 4.5081, -5.3105, -1.208, 4.6672, -5.3105, 0, 4.7052, -5.0703, -1.2608, 4.0419, -5.3105, -2.3336, 4.5081, -5.3105, -1.208, 4.2186, -5.0703, -2.4356, 3.3002, -5.3105, -3.3002, 4.0419, -5.3105, -2.3336, 3.4444, -5.0703, -3.4444, 2.3336, -5.3105, -4.0419, 3.3002, -5.3105, -3.3002, 2.4356, -5.0703, -4.2186, 1.208, -5.3105, -4.5081, 2.3336, -5.3105, -4.0419, 1.2608, -5.0703, -4.7052, 0, -5.3105, -4.6672, 1.208, -5.3105, -4.5081, 0, -5.0703, -4.8712, 0, -5.3105, -4.6672, 0, -5.0703, -4.8712, -1.208, -5.3105, -4.5081, -2.3336, -5.3105, -4.0419, -1.208, -5.3105, -4.5081, -2.4356, -5.0703, -4.2186, -2.3336, -5.3105, -4.0419, -2.4356, -5.0703, -4.2186, -3.3002, -5.3105, -3.3002, -4.0419, -5.3105, -2.3336, -3.3002, -5.3105, -3.3002, -4.2186, -5.0703, -2.4356, -4.5081, -5.3105, -1.208, -4.0419, -5.3105, -2.3336, -4.7052, -5.0703, -1.2608, -4.6672, -5.3105, 0, -4.5081, -5.3105, -1.208, -4.8712, -5.0703, 0, -4.1954, -5.4788, 1.1242, -4.3434, -5.4788, 0, -4.5081, -5.3105, 1.208, -3.7615, -5.4788, 2.1717, -4.1954, -5.4788, 1.1242, -4.0419, -5.3105, 2.3336, -3.7615, -5.4788, 2.1717, -4.0419, -5.3105, 2.3336, -3.0713, -5.4788, 3.0713, -2.1717, -5.4788, 3.7615, -3.0713, -5.4788, 3.0713, -2.3336, -5.3105, 4.0419, -1.1242, -5.4788, 4.1954, -2.1717, -5.4788, 3.7615, -1.208, -5.3105, 4.5081, 0, -5.4788, 4.3434, -1.1242, -5.4788, 4.1954, 0, -5.3105, 4.6672, 0, -5.4788, 4.3434, 0, -5.3105, 4.6672, 1.1242, -5.4788, 4.1954, 1.1242, -5.4788, 4.1954, 1.208, -5.3105, 4.5081, 2.1717, -5.4788, 3.7615, 2.1717, -5.4788, 3.7615, 2.3336, -5.3105, 4.0419, 3.0713, -5.4788, 3.0713, 3.7615, -5.4788, 2.1717, 3.0713, -5.4788, 3.0713, 4.0419, -5.3105, 2.3336, 4.1954, -5.4788, 1.1242, 3.7615, -5.4788, 2.1717, 4.5081, -5.3105, 1.208, 4.1954, -5.4788, 1.1242, 4.5081, -5.3105, 1.208, 4.3434, -5.4788, 0, 4.1954, -5.4788, -1.1242, 4.3434, -5.4788, 0, 4.5081, -5.3105, -1.208, 3.7615, -5.4788, -2.1717, 4.1954, -5.4788, -1.1242, 4.0419, -5.3105, -2.3336, 3.7615, -5.4788, -2.1717, 4.0419, -5.3105, -2.3336, 3.0713, -5.4788, -3.0713, 2.1717, -5.4788, -3.7615, 3.0713, -5.4788, -3.0713, 2.3336, -5.3105, -4.0419, 2.1717, -5.4788, -3.7615, 2.3336, -5.3105, -4.0419, 1.1242, -5.4788, -4.1954, 1.1242, -5.4788, -4.1954, 1.208, -5.3105, -4.5081, 0, -5.4788, -4.3434, 0, -5.4788, -4.3434, 0, -5.3105, -4.6672, -1.1242, -5.4788, -4.1954, -2.1717, -5.4788, -3.7615, -1.1242, -5.4788, -4.1954, -2.3336, -5.3105, -4.0419, -3.0713, -5.4788, -3.0713, -2.1717, -5.4788, -3.7615, -3.3002, -5.3105, -3.3002, -3.0713, -5.4788, -3.0713, -3.3002, -5.3105, -3.3002, -3.7615, -5.4788, -2.1717, -3.7615, -5.4788, -2.1717, -4.0419, -5.3105, -2.3336, -4.1954, -5.4788, -1.1242, -4.3434, -5.4788, 0, -4.1954, -5.4788, -1.1242, -4.6672, -5.3105, 0, -3.9295, -5.5934, 0, -4.3434, -5.4788, 0, -3.7956, -5.5934, 1.017, -3.4031, -5.5934, 1.9648, -3.7956, -5.5934, 1.017, -3.7615, -5.4788, 2.1717, -2.7786, -5.5934, 2.7786, -3.4031, -5.5934, 1.9648, -3.0713, -5.4788, 3.0713, -2.7786, -5.5934, 2.7786, -3.0713, -5.4788, 3.0713, -1.9648, -5.5934, 3.4031, -1.9648, -5.5934, 3.4031, -2.1717, -5.4788, 3.7615, -1.017, -5.5934, 3.7956, 0, -5.5934, 3.9295, -1.017, -5.5934, 3.7956, 0, -5.4788, 4.3434, 1.017, -5.5934, 3.7956, 0, -5.5934, 3.9295, 1.1242, -5.4788, 4.1954, 1.017, -5.5934, 3.7956, 1.1242, -5.4788, 4.1954, 1.9648, -5.5934, 3.4031, 2.7786, -5.5934, 2.7786, 1.9648, -5.5934, 3.4031, 3.0713, -5.4788, 3.0713, 3.4031, -5.5934, 1.9648, 2.7786, -5.5934, 2.7786, 3.7615, -5.4788, 2.1717, 3.7956, -5.5934, 1.017, 3.4031, -5.5934, 1.9648, 4.1954, -5.4788, 1.1242, 3.7956, -5.5934, 1.017, 4.1954, -5.4788, 1.1242, 3.9295, -5.5934, 0, 3.9295, -5.5934, 0, 4.3434, -5.4788, 0, 3.7956, -5.5934, -1.017, 3.4031, -5.5934, -1.9648, 3.7956, -5.5934, -1.017, 3.7615, -5.4788, -2.1717, 3.4031, -5.5934, -1.9648, 3.7615, -5.4788, -2.1717, 2.7786, -5.5934, -2.7786, 1.9648, -5.5934, -3.4031, 2.7786, -5.5934, -2.7786, 2.1717, -5.4788, -3.7615, 1.017, -5.5934, -3.7956, 1.9648, -5.5934, -3.4031, 1.1242, -5.4788, -4.1954, 0, -5.5934, -3.9295, 1.017, -5.5934, -3.7956, 0, -5.4788, -4.3434, 0, -5.5934, -3.9295, 0, -5.4788, -4.3434, -1.017, -5.5934, -3.7956, -1.9648, -5.5934, -3.4031, -1.017, -5.5934, -3.7956, -2.1717, -5.4788, -3.7615, -2.7786, -5.5934, -2.7786, -1.9648, -5.5934, -3.4031, -3.0713, -5.4788, -3.0713, -3.4031, -5.5934, -1.9648, -2.7786, -5.5934, -2.7786, -3.7615, -5.4788, -2.1717, -3.7956, -5.5934, -1.017, -3.4031, -5.5934, -1.9648, -4.1954, -5.4788, -1.1242, -3.9295, -5.5934, 0, -3.7956, -5.5934, -1.017, -4.3434, -5.4788, 0, -3.3374, -5.6722, 0.8943, -3.4551, -5.6722, 0, -3.7956, -5.5934, 1.017, -2.9922, -5.6722, 1.7276, -3.3374, -5.6722, 0.8943, -3.4031, -5.5934, 1.9648, -2.9922, -5.6722, 1.7276, -3.4031, -5.5934, 1.9648, -2.4431, -5.6722, 2.4431, -2.4431, -5.6722, 2.4431, -2.7786, -5.5934, 2.7786, -1.7276, -5.6722, 2.9922, -0.8943, -5.6722, 3.3374, -1.7276, -5.6722, 2.9922, -1.017, -5.5934, 3.7956, -0.8943, -5.6722, 3.3374, -1.017, -5.5934, 3.7956, 0, -5.6722, 3.4551, 0.8943, -5.6722, 3.3374, 0, -5.6722, 3.4551, 1.017, -5.5934, 3.7956, 1.7276, -5.6722, 2.9922, 0.8943, -5.6722, 3.3374, 1.9648, -5.5934, 3.4031, 2.4431, -5.6722, 2.4431, 1.7276, -5.6722, 2.9922, 2.7786, -5.5934, 2.7786, 2.4431, -5.6722, 2.4431, 2.7786, -5.5934, 2.7786, 2.9922, -5.6722, 1.7276, 3.3374, -5.6722, 0.8943, 2.9922, -5.6722, 1.7276, 3.7956, -5.5934, 1.017, 3.4551, -5.6722, 0, 3.3374, -5.6722, 0.8943, 3.9295, -5.5934, 0, 3.3374, -5.6722, -0.8943, 3.4551, -5.6722, 0, 3.7956, -5.5934, -1.017, 2.9922, -5.6722, -1.7276, 3.3374, -5.6722, -0.8943, 3.4031, -5.5934, -1.9648, 2.9922, -5.6722, -1.7276, 3.4031, -5.5934, -1.9648, 2.4431, -5.6722, -2.4431, 2.4431, -5.6722, -2.4431, 2.7786, -5.5934, -2.7786, 1.7276, -5.6722, -2.9922, 0.8943, -5.6722, -3.3374, 1.7276, -5.6722, -2.9922, 1.017, -5.5934, -3.7956, 0, -5.6722, -3.4551, 0.8943, -5.6722, -3.3374, 0, -5.5934, -3.9295, -0.8943, -5.6722, -3.3374, 0, -5.6722, -3.4551, -1.017, -5.5934, -3.7956, -1.7276, -5.6722, -2.9922, -0.8943, -5.6722, -3.3374, -1.9648, -5.5934, -3.4031, -2.4431, -5.6722, -2.4431, -1.7276, -5.6722, -2.9922, -2.7786, -5.5934, -2.7786, -2.9922, -5.6722, -1.7276, -2.4431, -5.6722, -2.4431, -3.4031, -5.5934, -1.9648, -3.3374, -5.6722, -0.8943, -2.9922, -5.6722, -1.7276, -3.7956, -5.5934, -1.017, -3.4551, -5.6722, 0, -3.3374, -5.6722, -0.8943, -3.9295, -5.5934, 0, -2.9498, -5.7334, 0, -3.4551, -5.6722, 0, -2.8493, -5.7334, 0.7635, -2.5546, -5.7334, 1.4749, -2.8493, -5.7334, 0.7635, -2.9922, -5.6722, 1.7276, -2.0858, -5.7334, 2.0858, -2.5546, -5.7334, 1.4749, -2.4431, -5.6722, 2.4431, -2.0858, -5.7334, 2.0858, -2.4431, -5.6722, 2.4431, -1.4749, -5.7334, 2.5546, -0.7635, -5.7334, 2.8493, -1.4749, -5.7334, 2.5546, -0.8943, -5.6722, 3.3374, 0, -5.7334, 2.9498, -0.7635, -5.7334, 2.8493, 0, -5.6722, 3.4551, 0.7635, -5.7334, 2.8493, 0, -5.7334, 2.9498, 0.8943, -5.6722, 3.3374, 1.4749, -5.7334, 2.5546, 0.7635, -5.7334, 2.8493, 1.7276, -5.6722, 2.9922, 2.0858, -5.7334, 2.0858, 1.4749, -5.7334, 2.5546, 2.4431, -5.6722, 2.4431, 2.0858, -5.7334, 2.0858, 2.4431, -5.6722, 2.4431, 2.5546, -5.7334, 1.4749, 2.5546, -5.7334, 1.4749, 2.9922, -5.6722, 1.7276, 2.8493, -5.7334, 0.7635, 2.9498, -5.7334, 0, 2.8493, -5.7334, 0.7635, 3.4551, -5.6722, 0, 2.9498, -5.7334, 0, 3.4551, -5.6722, 0, 2.8493, -5.7334, -0.7635, 2.5546, -5.7334, -1.4749, 2.8493, -5.7334, -0.7635, 2.9922, -5.6722, -1.7276, 2.0858, -5.7334, -2.0858, 2.5546, -5.7334, -1.4749, 2.4431, -5.6722, -2.4431, 1.4749, -5.7334, -2.5546, 2.0858, -5.7334, -2.0858, 1.7276, -5.6722, -2.9922, 0.7635, -5.7334, -2.8493, 1.4749, -5.7334, -2.5546, 0.8943, -5.6722, -3.3374, 0, -5.7334, -2.9498, 0.7635, -5.7334, -2.8493, 0, -5.6722, -3.4551, -0.7635, -5.7334, -2.8493, 0, -5.7334, -2.9498, -0.8943, -5.6722, -3.3374, -1.4749, -5.7334, -2.5546, -0.7635, -5.7334, -2.8493, -1.7276, -5.6722, -2.9922, -2.0858, -5.7334, -2.0858, -1.4749, -5.7334, -2.5546, -2.4431, -5.6722, -2.4431, -2.5546, -5.7334, -1.4749, -2.0858, -5.7334, -2.0858, -2.9922, -5.6722, -1.7276, -2.5546, -5.7334, -1.4749, -2.9922, -5.6722, -1.7276, -2.8493, -5.7334, -0.7635, -2.9498, -5.7334, 0, -2.8493, -5.7334, -0.7635, -3.4551, -5.6722, 0, -2.3599, -5.795, 0.6323, -2.4431, -5.795, 0, -2.8493, -5.7334, 0.7635, -2.1158, -5.795, 1.2216, -2.3599, -5.795, 0.6323, -2.5546, -5.7334, 1.4749, -1.7275, -5.795, 1.7275, -2.1158, -5.795, 1.2216, -2.0858, -5.7334, 2.0858, -1.7275, -5.795, 1.7275, -2.0858, -5.7334, 2.0858, -1.2216, -5.795, 2.1158, -0.6323, -5.795, 2.3599, -1.2216, -5.795, 2.1158, -0.7635, -5.7334, 2.8493, -0.6323, -5.795, 2.3599, -0.7635, -5.7334, 2.8493, 0, -5.795, 2.4431, 0.6323, -5.795, 2.3599, 0, -5.795, 2.4431, 0.7635, -5.7334, 2.8493, 1.2216, -5.795, 2.1158, 0.6323, -5.795, 2.3599, 1.4749, -5.7334, 2.5546, 1.7275, -5.795, 1.7275, 1.2216, -5.795, 2.1158, 2.0858, -5.7334, 2.0858, 1.7275, -5.795, 1.7275, 2.0858, -5.7334, 2.0858, 2.1158, -5.795, 1.2216, 2.1158, -5.795, 1.2216, 2.5546, -5.7334, 1.4749, 2.3599, -5.795, 0.6323, 2.4431, -5.795, 0, 2.3599, -5.795, 0.6323, 2.9498, -5.7334, 0, 2.3599, -5.795, -0.6323, 2.4431, -5.795, 0, 2.8493, -5.7334, -0.7635, 2.1158, -5.795, -1.2216, 2.3599, -5.795, -0.6323, 2.5546, -5.7334, -1.4749, 1.7275, -5.795, -1.7275, 2.1158, -5.795, -1.2216, 2.0858, -5.7334, -2.0858, 1.2216, -5.795, -2.1158, 1.7275, -5.795, -1.7275, 1.4749, -5.7334, -2.5546, 1.2216, -5.795, -2.1158, 1.4749, -5.7334, -2.5546, 0.6323, -5.795, -2.3599, 0, -5.795, -2.4431, 0.6323, -5.795, -2.3599, 0, -5.7334, -2.9498, -0.6323, -5.795, -2.3599, 0, -5.795, -2.4431, -0.7635, -5.7334, -2.8493, -1.2216, -5.795, -2.1158, -0.6323, -5.795, -2.3599, -1.4749, -5.7334, -2.5546, -1.7275, -5.795, -1.7275, -1.2216, -5.795, -2.1158, -2.0858, -5.7334, -2.0858, -1.7275, -5.795, -1.7275, -2.0858, -5.7334, -2.0858, -2.1158, -5.795, -1.2216, -2.3599, -5.795, -0.6323, -2.1158, -5.795, -1.2216, -2.8493, -5.7334, -0.7635, -2.4431, -5.795, 0, -2.3599, -5.795, -0.6323, -2.9498, -5.7334, 0, -1.8978, -5.8749, 0.5085, -1.9647, -5.8749, 0, -2.3599, -5.795, 0.6323, -1.7015, -5.8749, 0.9824, -1.8978, -5.8749, 0.5085, -2.1158, -5.795, 1.2216, -1.3893, -5.8749, 1.3893, -1.7015, -5.8749, 0.9824, -1.7275, -5.795, 1.7275, -0.9824, -5.8749, 1.7015, -1.3893, -5.8749, 1.3893, -1.2216, -5.795, 2.1158, -0.5085, -5.8749, 1.8978, -0.9824, -5.8749, 1.7015, -0.6323, -5.795, 2.3599, -0.5085, -5.8749, 1.8978, -0.6323, -5.795, 2.3599, 0, -5.8749, 1.9647, 0.5085, -5.8749, 1.8978, 0, -5.8749, 1.9647, 0.6323, -5.795, 2.3599, 0.9824, -5.8749, 1.7015, 0.5085, -5.8749, 1.8978, 1.2216, -5.795, 2.1158, 1.3893, -5.8749, 1.3893, 0.9824, -5.8749, 1.7015, 1.7275, -5.795, 1.7275, 1.7015, -5.8749, 0.9824, 1.3893, -5.8749, 1.3893, 2.1158, -5.795, 1.2216, 1.8978, -5.8749, 0.5085, 1.7015, -5.8749, 0.9824, 2.3599, -5.795, 0.6323, 1.9647, -5.8749, 0, 1.8978, -5.8749, 0.5085, 2.4431, -5.795, 0, 1.8978, -5.8749, -0.5085, 1.9647, -5.8749, 0, 2.3599, -5.795, -0.6323, 1.7015, -5.8749, -0.9824, 1.8978, -5.8749, -0.5085, 2.1158, -5.795, -1.2216, 1.3893, -5.8749, -1.3893, 1.7015, -5.8749, -0.9824, 1.7275, -5.795, -1.7275, 0.9824, -5.8749, -1.7015, 1.3893, -5.8749, -1.3893, 1.2216, -5.795, -2.1158, 0.9824, -5.8749, -1.7015, 1.2216, -5.795, -2.1158, 0.5085, -5.8749, -1.8978, 0.5085, -5.8749, -1.8978, 0.6323, -5.795, -2.3599, 0, -5.8749, -1.9647, -0.5085, -5.8749, -1.8978, 0, -5.8749, -1.9647, -0.6323, -5.795, -2.3599, -0.9824, -5.8749, -1.7015, -0.5085, -5.8749, -1.8978, -1.2216, -5.795, -2.1158, -1.3893, -5.8749, -1.3893, -0.9824, -5.8749, -1.7015, -1.7275, -5.795, -1.7275, -1.7015, -5.8749, -0.9824, -1.3893, -5.8749, -1.3893, -2.1158, -5.795, -1.2216, -1.8978, -5.8749, -0.5085, -1.7015, -5.8749, -0.9824, -2.3599, -5.795, -0.6323, -1.9647, -5.8749, 0, -1.8978, -5.8749, -0.5085, -2.4431, -5.795, 0, -1.5442, -5.9914, 0, -1.9647, -5.8749, 0, -1.4916, -5.9914, 0.3997, -1.3373, -5.9914, 0.7721, -1.4916, -5.9914, 0.3997, -1.7015, -5.8749, 0.9824, -1.0919, -5.9914, 1.0919, -1.3373, -5.9914, 0.7721, -1.3893, -5.8749, 1.3893, -0.7721, -5.9914, 1.3373, -1.0919, -5.9914, 1.0919, -0.9824, -5.8749, 1.7015, -0.3997, -5.9914, 1.4916, -0.7721, -5.9914, 1.3373, -0.5085, -5.8749, 1.8978, 0, -5.9914, 1.5442, -0.3997, -5.9914, 1.4916, 0, -5.8749, 1.9647, 0.3997, -5.9914, 1.4916, 0, -5.9914, 1.5442, 0.5085, -5.8749, 1.8978, 0.3997, -5.9914, 1.4916, 0.5085, -5.8749, 1.8978, 0.7721, -5.9914, 1.3373, 1.0919, -5.9914, 1.0919, 0.7721, -5.9914, 1.3373, 1.3893, -5.8749, 1.3893, 1.0919, -5.9914, 1.0919, 1.3893, -5.8749, 1.3893, 1.3373, -5.9914, 0.7721, 1.4916, -5.9914, 0.3997, 1.3373, -5.9914, 0.7721, 1.8978, -5.8749, 0.5085, 1.5442, -5.9914, 0, 1.4916, -5.9914, 0.3997, 1.9647, -5.8749, 0, 1.4916, -5.9914, -0.3997, 1.5442, -5.9914, 0, 1.8978, -5.8749, -0.5085, 1.4916, -5.9914, -0.3997, 1.8978, -5.8749, -0.5085, 1.3373, -5.9914, -0.7721, 1.0919, -5.9914, -1.0919, 1.3373, -5.9914, -0.7721, 1.3893, -5.8749, -1.3893, 1.0919, -5.9914, -1.0919, 1.3893, -5.8749, -1.3893, 0.7721, -5.9914, -1.3373, 0.3997, -5.9914, -1.4916, 0.7721, -5.9914, -1.3373, 0.5085, -5.8749, -1.8978, 0, -5.9914, -1.5442, 0.3997, -5.9914, -1.4916, 0, -5.8749, -1.9647, -0.3997, -5.9914, -1.4916, 0, -5.9914, -1.5442, -0.5085, -5.8749, -1.8978, -0.3997, -5.9914, -1.4916, -0.5085, -5.8749, -1.8978, -0.7721, -5.9914, -1.3373, -1.0919, -5.9914, -1.0919, -0.7721, -5.9914, -1.3373, -1.3893, -5.8749, -1.3893, -1.0919, -5.9914, -1.0919, -1.3893, -5.8749, -1.3893, -1.3373, -5.9914, -0.7721, -1.4916, -5.9914, -0.3997, -1.3373, -5.9914, -0.7721, -1.8978, -5.8749, -0.5085, -1.5442, -5.9914, 0, -1.4916, -5.9914, -0.3997, -1.9647, -5.8749, 0, -1.1699, -6.1624, 0.3135, -1.2111, -6.1624, 0, -1.4916, -5.9914, 0.3997, -1.0489, -6.1624, 0.6056, -1.1699, -6.1624, 0.3135, -1.3373, -5.9914, 0.7721, -0.8564, -6.1624, 0.8564, -1.0489, -6.1624, 0.6056, -1.0919, -5.9914, 1.0919, -0.6056, -6.1624, 1.0489, -0.8564, -6.1624, 0.8564, -0.7721, -5.9914, 1.3373, -0.3135, -6.1624, 1.1699, -0.6056, -6.1624, 1.0489, -0.3997, -5.9914, 1.4916, 0, -6.1624, 1.2111, -0.3135, -6.1624, 1.1699, 0, -5.9914, 1.5442, 0.3135, -6.1624, 1.1699, 0, -6.1624, 1.2111, 0.3997, -5.9914, 1.4916, 0.6056, -6.1624, 1.0489, 0.3135, -6.1624, 1.1699, 0.7721, -5.9914, 1.3373, 0.8564, -6.1624, 0.8564, 0.6056, -6.1624, 1.0489, 1.0919, -5.9914, 1.0919, 1.0489, -6.1624, 0.6056, 0.8564, -6.1624, 0.8564, 1.3373, -5.9914, 0.7721, 1.1699, -6.1624, 0.3135, 1.0489, -6.1624, 0.6056, 1.4916, -5.9914, 0.3997, 1.2111, -6.1624, 0, 1.1699, -6.1624, 0.3135, 1.5442, -5.9914, 0, 1.1699, -6.1624, -0.3135, 1.2111, -6.1624, 0, 1.4916, -5.9914, -0.3997, 1.0489, -6.1624, -0.6056, 1.1699, -6.1624, -0.3135, 1.3373, -5.9914, -0.7721, 1.0489, -6.1624, -0.6056, 1.3373, -5.9914, -0.7721, 0.8564, -6.1624, -0.8564, 0.6056, -6.1624, -1.0489, 0.8564, -6.1624, -0.8564, 0.7721, -5.9914, -1.3373, 0.3135, -6.1624, -1.1699, 0.6056, -6.1624, -1.0489, 0.3997, -5.9914, -1.4916, 0, -6.1624, -1.2111, 0.3135, -6.1624, -1.1699, 0, -5.9914, -1.5442, -0.3135, -6.1624, -1.1699, 0, -6.1624, -1.2111, -0.3997, -5.9914, -1.4916, -0.6056, -6.1624, -1.0489, -0.3135, -6.1624, -1.1699, -0.7721, -5.9914, -1.3373, -0.8564, -6.1624, -0.8564, -0.6056, -6.1624, -1.0489, -1.0919, -5.9914, -1.0919, -1.0489, -6.1624, -0.6056, -0.8564, -6.1624, -0.8564, -1.3373, -5.9914, -0.7721, -1.1699, -6.1624, -0.3135, -1.0489, -6.1624, -0.6056, -1.4916, -5.9914, -0.3997, -1.2111, -6.1624, 0, -1.1699, -6.1624, -0.3135, -1.5442, -5.9914, 0, -1.0096, -6.3726, 0.2705, -1.0452, -6.3726, 0, -1.1699, -6.1624, 0.3135, -0.9052, -6.3726, 0.5226, -1.0096, -6.3726, 0.2705, -1.0489, -6.1624, 0.6056, -0.7391, -6.3726, 0.7391, -0.9052, -6.3726, 0.5226, -0.8564, -6.1624, 0.8564, -0.5226, -6.3726, 0.9052, -0.7391, -6.3726, 0.7391, -0.6056, -6.1624, 1.0489, -0.5226, -6.3726, 0.9052, -0.6056, -6.1624, 1.0489, -0.2705, -6.3726, 1.0096, -0.2705, -6.3726, 1.0096, -0.3135, -6.1624, 1.1699, 0, -6.3726, 1.0452, 0.2705, -6.3726, 1.0096, 0, -6.3726, 1.0452, 0.3135, -6.1624, 1.1699, 0.5226, -6.3726, 0.9052, 0.2705, -6.3726, 1.0096, 0.6056, -6.1624, 1.0489, 0.7391, -6.3726, 0.7391, 0.5226, -6.3726, 0.9052, 0.8564, -6.1624, 0.8564, 0.9052, -6.3726, 0.5226, 0.7391, -6.3726, 0.7391, 1.0489, -6.1624, 0.6056, 1.0096, -6.3726, 0.2705, 0.9052, -6.3726, 0.5226, 1.1699, -6.1624, 0.3135, 1.0452, -6.3726, 0, 1.0096, -6.3726, 0.2705, 1.2111, -6.1624, 0, 1.0452, -6.3726, 0, 1.2111, -6.1624, 0, 1.0096, -6.3726, -0.2705, 1.0096, -6.3726, -0.2705, 1.1699, -6.1624, -0.3135, 0.9052, -6.3726, -0.5226, 0.7391, -6.3726, -0.7391, 0.9052, -6.3726, -0.5226, 0.8564, -6.1624, -0.8564, 0.5226, -6.3726, -0.9052, 0.7391, -6.3726, -0.7391, 0.6056, -6.1624, -1.0489, 0.5226, -6.3726, -0.9052, 0.6056, -6.1624, -1.0489, 0.2705, -6.3726, -1.0096, 0.2705, -6.3726, -1.0096, 0.3135, -6.1624, -1.1699, 0, -6.3726, -1.0452, -0.2705, -6.3726, -1.0096, 0, -6.3726, -1.0452, -0.3135, -6.1624, -1.1699, -0.5226, -6.3726, -0.9052, -0.2705, -6.3726, -1.0096, -0.6056, -6.1624, -1.0489, -0.7391, -6.3726, -0.7391, -0.5226, -6.3726, -0.9052, -0.8564, -6.1624, -0.8564, -0.7391, -6.3726, -0.7391, -0.8564, -6.1624, -0.8564, -0.9052, -6.3726, -0.5226, -0.9052, -6.3726, -0.5226, -1.0489, -6.1624, -0.6056, -1.0096, -6.3726, -0.2705, -1.0452, -6.3726, 0, -1.0096, -6.3726, -0.2705, -1.2111, -6.1624, 0, -0.9659, -6.5958, 0.2588, -1, -6.5958, 0, -1.0096, -6.3726, 0.2705, -0.9659, -6.5958, 0.2588, -1.0096, -6.3726, 0.2705, -0.866, -6.5958, 0.5, -0.7071, -6.5958, 0.7071, -0.866, -6.5958, 0.5, -0.7391, -6.3726, 0.7391, -0.5, -6.5958, 0.866, -0.7071, -6.5958, 0.7071, -0.5226, -6.3726, 0.9052, -0.5, -6.5958, 0.866, -0.5226, -6.3726, 0.9052, -0.2588, -6.5958, 0.9659, -0.2588, -6.5958, 0.9659, -0.2705, -6.3726, 1.0096, 0, -6.5958, 1, 0.2588, -6.5958, 0.9659, 0, -6.5958, 1, 0.2705, -6.3726, 1.0096, 0.2588, -6.5958, 0.9659, 0.2705, -6.3726, 1.0096, 0.5, -6.5958, 0.866, 0.7071, -6.5958, 0.7071, 0.5, -6.5958, 0.866, 0.7391, -6.3726, 0.7391, 0.7071, -6.5958, 0.7071, 0.7391, -6.3726, 0.7391, 0.866, -6.5958, 0.5, 0.9659, -6.5958, 0.2588, 0.866, -6.5958, 0.5, 1.0096, -6.3726, 0.2705, 1, -6.5958, 0, 0.9659, -6.5958, 0.2588, 1.0452, -6.3726, 0, 0.9659, -6.5958, -0.2588, 1, -6.5958, 0, 1.0096, -6.3726, -0.2705, 0.9659, -6.5958, -0.2588, 1.0096, -6.3726, -0.2705, 0.866, -6.5958, -0.5, 0.866, -6.5958, -0.5, 0.9052, -6.3726, -0.5226, 0.7071, -6.5958, -0.7071, 0.5, -6.5958, -0.866, 0.7071, -6.5958, -0.7071, 0.5226, -6.3726, -0.9052, 0.2588, -6.5958, -0.9659, 0.5, -6.5958, -0.866, 0.2705, -6.3726, -1.0096, 0.2588, -6.5958, -0.9659, 0.2705, -6.3726, -1.0096, 0, -6.5958, -1, -0.2588, -6.5958, -0.9659, 0, -6.5958, -1, -0.2705, -6.3726, -1.0096, -0.2588, -6.5958, -0.9659, -0.2705, -6.3726, -1.0096, -0.5, -6.5958, -0.866, -0.5, -6.5958, -0.866, -0.5226, -6.3726, -0.9052, -0.7071, -6.5958, -0.7071, -0.7071, -6.5958, -0.7071, -0.7391, -6.3726, -0.7391, -0.866, -6.5958, -0.5, -0.866, -6.5958, -0.5, -0.9052, -6.3726, -0.5226, -0.9659, -6.5958, -0.2588, -1, -6.5958, 0, -0.9659, -6.5958, -0.2588, -1.0452, -6.3726, 0, -4.5836, -4.9259, 1.2282, -4.6364, -4.5958, 1.2423, -4.7453, -4.9259, 0, -4.1569, -4.5958, 2.4, -4.6364, -4.5958, 1.2423, -4.1096, -4.9259, 2.3727, -3.3941, -4.5958, 3.3941, -4.1569, -4.5958, 2.4, -3.3555, -4.9259, 3.3555, -2.4, -4.5958, 4.1569, -3.3941, -4.5958, 3.3941, -2.3727, -4.9259, 4.1096, -1.2423, -4.5958, 4.6364, -2.4, -4.5958, 4.1569, -1.2282, -4.9259, 4.5836, 0, -4.9259, 4.7453, 0, -4.5958, 4.8, -1.2282, -4.9259, 4.5836, 1.2282, -4.9259, 4.5836, 1.2423, -4.5958, 4.6364, 0, -4.9259, 4.7453, 2.3727, -4.9259, 4.1096, 2.4, -4.5958, 4.1569, 1.2282, -4.9259, 4.5836, 3.3941, -4.5958, 3.3941, 2.4, -4.5958, 4.1569, 3.3555, -4.9259, 3.3555, 4.1096, -4.9259, 2.3727, 4.1569, -4.5958, 2.4, 3.3555, -4.9259, 3.3555, 4.5836, -4.9259, 1.2282, 4.6364, -4.5958, 1.2423, 4.1096, -4.9259, 2.3727, 4.8, -4.5958, 0, 4.6364, -4.5958, 1.2423, 4.7453, -4.9259, 0, 4.6364, -4.5958, -1.2423, 4.8, -4.5958, 0, 4.5836, -4.9259, -1.2282, 4.1569, -4.5958, -2.4, 4.6364, -4.5958, -1.2423, 4.1096, -4.9259, -2.3727, 3.3555, -4.9259, -3.3555, 3.3941, -4.5958, -3.3941, 4.1096, -4.9259, -2.3727, 2.3727, -4.9259, -4.1096, 2.4, -4.5958, -4.1569, 3.3555, -4.9259, -3.3555, 1.2423, -4.5958, -4.6364, 2.4, -4.5958, -4.1569, 1.2282, -4.9259, -4.5836, 0, -4.5958, -4.8, 1.2423, -4.5958, -4.6364, 0, -4.9259, -4.7453, -1.2282, -4.9259, -4.5836, -1.2423, -4.5958, -4.6364, 0, -4.9259, -4.7453, -2.3727, -4.9259, -4.1096, -2.4, -4.5958, -4.1569, -1.2282, -4.9259, -4.5836, -3.3941, -4.5958, -3.3941, -2.4, -4.5958, -4.1569, -3.3555, -4.9259, -3.3555, -4.1096, -4.9259, -2.3727, -4.1569, -4.5958, -2.4, -3.3555, -4.9259, -3.3555, -4.6364, -4.5958, -1.2423, -4.1569, -4.5958, -2.4, -4.5836, -4.9259, -1.2282, -4.7453, -4.9259, 0, -4.8, -4.5958, 0, -4.5836, -4.9259, -1.2282, -4.3866, -5.1661, 1.1754, -4.5836, -4.9259, 1.2282, -4.5413, -5.1661, 0, -4.1096, -4.9259, 2.3727, -4.5836, -4.9259, 1.2282, -3.9329, -5.1661, 2.2707, -3.2112, -5.1661, 3.2112, -3.3555, -4.9259, 3.3555, -3.9329, -5.1661, 2.2707, -2.3727, -4.9259, 4.1096, -3.3555, -4.9259, 3.3555, -2.2707, -5.1661, 3.9329, -1.2282, -4.9259, 4.5836, -2.3727, -4.9259, 4.1096, -1.1754, -5.1661, 4.3866, 0, -4.9259, 4.7453, -1.2282, -4.9259, 4.5836, 0, -5.1661, 4.5413, 1.2282, -4.9259, 4.5836, 0, -4.9259, 4.7453, 1.1754, -5.1661, 4.3866, 2.2707, -5.1661, 3.9329, 2.3727, -4.9259, 4.1096, 1.1754, -5.1661, 4.3866, 3.2112, -5.1661, 3.2112, 3.3555, -4.9259, 3.3555, 2.2707, -5.1661, 3.9329, 3.9329, -5.1661, 2.2707, 4.1096, -4.9259, 2.3727, 3.2112, -5.1661, 3.2112, 4.3866, -5.1661, 1.1754, 4.5836, -4.9259, 1.2282, 3.9329, -5.1661, 2.2707, 4.5413, -5.1661, 0, 4.7453, -4.9259, 0, 4.3866, -5.1661, 1.1754, 4.3866, -5.1661, -1.1754, 4.5836, -4.9259, -1.2282, 4.5413, -5.1661, 0, 3.9329, -5.1661, -2.2707, 4.1096, -4.9259, -2.3727, 4.3866, -5.1661, -1.1754, 3.3555, -4.9259, -3.3555, 4.1096, -4.9259, -2.3727, 3.2112, -5.1661, -3.2112, 2.2707, -5.1661, -3.9329, 2.3727, -4.9259, -4.1096, 3.2112, -5.1661, -3.2112, 1.1754, -5.1661, -4.3866, 1.2282, -4.9259, -4.5836, 2.2707, -5.1661, -3.9329, 0, -5.1661, -4.5413, 0, -4.9259, -4.7453, 1.1754, -5.1661, -4.3866, -1.2282, -4.9259, -4.5836, 0, -4.9259, -4.7453, -1.1754, -5.1661, -4.3866, -2.2707, -5.1661, -3.9329, -2.3727, -4.9259, -4.1096, -1.1754, -5.1661, -4.3866, -3.2112, -5.1661, -3.2112, -3.3555, -4.9259, -3.3555, -2.2707, -5.1661, -3.9329, -3.9329, -5.1661, -2.2707, -4.1096, -4.9259, -2.3727, -3.2112, -5.1661, -3.2112, -4.5836, -4.9259, -1.2282, -4.1096, -4.9259, -2.3727, -4.3866, -5.1661, -1.1754, -4.5413, -5.1661, 0, -4.7453, -4.9259, 0, -4.3866, -5.1661, -1.1754, -4.0739, -5.3344, 1.0916, -4.3866, -5.1661, 1.1754, -4.2176, -5.3344, 0, -3.9329, -5.1661, 2.2707, -4.3866, -5.1661, 1.1754, -3.6525, -5.3344, 2.1088, -2.9823, -5.3344, 2.9823, -3.2112, -5.1661, 3.2112, -3.6525, -5.3344, 2.1088, -2.1088, -5.3344, 3.6525, -2.2707, -5.1661, 3.9329, -2.9823, -5.3344, 2.9823, -1.0916, -5.3344, 4.0739, -1.1754, -5.1661, 4.3866, -2.1088, -5.3344, 3.6525, 0, -5.3344, 4.2176, 0, -5.1661, 4.5413, -1.0916, -5.3344, 4.0739, 1.0916, -5.3344, 4.0739, 1.1754, -5.1661, 4.3866, 0, -5.3344, 4.2176, 2.2707, -5.1661, 3.9329, 1.1754, -5.1661, 4.3866, 2.1088, -5.3344, 3.6525, 2.9823, -5.3344, 2.9823, 3.2112, -5.1661, 3.2112, 2.1088, -5.3344, 3.6525, 3.9329, -5.1661, 2.2707, 3.2112, -5.1661, 3.2112, 3.6525, -5.3344, 2.1088, 4.3866, -5.1661, 1.1754, 3.9329, -5.1661, 2.2707, 4.0739, -5.3344, 1.0916, 4.5413, -5.1661, 0, 4.3866, -5.1661, 1.1754, 4.2176, -5.3344, 0, 4.3866, -5.1661, -1.1754, 4.5413, -5.1661, 0, 4.0739, -5.3344, -1.0916, 3.9329, -5.1661, -2.2707, 4.3866, -5.1661, -1.1754, 3.6525, -5.3344, -2.1088, 2.9823, -5.3344, -2.9823, 3.2112, -5.1661, -3.2112, 3.6525, -5.3344, -2.1088, 2.1088, -5.3344, -3.6525, 2.2707, -5.1661, -3.9329, 2.9823, -5.3344, -2.9823, 1.0916, -5.3344, -4.0739, 1.1754, -5.1661, -4.3866, 2.1088, -5.3344, -3.6525, 0, -5.3344, -4.2176, 0, -5.1661, -4.5413, 1.0916, -5.3344, -4.0739, -1.1754, -5.1661, -4.3866, 0, -5.1661, -4.5413, -1.0916, -5.3344, -4.0739, -2.1088, -5.3344, -3.6525, -2.2707, -5.1661, -3.9329, -1.0916, -5.3344, -4.0739, -3.2112, -5.1661, -3.2112, -2.2707, -5.1661, -3.9329, -2.9823, -5.3344, -2.9823, -3.6525, -5.3344, -2.1088, -3.9329, -5.1661, -2.2707, -2.9823, -5.3344, -2.9823, -4.3866, -5.1661, -1.1754, -3.9329, -5.1661, -2.2707, -4.0739, -5.3344, -1.0916, -4.2176, -5.3344, 0, -4.5413, -5.1661, 0, -4.0739, -5.3344, -1.0916, -3.6741, -5.449, 0.9845, -4.0739, -5.3344, 1.0916, -3.8037, -5.449, 0, -3.2941, -5.449, 1.9018, -3.6525, -5.3344, 2.1088, -3.6741, -5.449, 0.9845, -2.6896, -5.449, 2.6896, -2.9823, -5.3344, 2.9823, -3.2941, -5.449, 1.9018, -2.1088, -5.3344, 3.6525, -2.9823, -5.3344, 2.9823, -1.9018, -5.449, 3.2941, -1.0916, -5.3344, 4.0739, -2.1088, -5.3344, 3.6525, -0.9845, -5.449, 3.6741, 0, -5.449, 3.8037, 0, -5.3344, 4.2176, -0.9845, -5.449, 3.6741, 0.9845, -5.449, 3.6741, 1.0916, -5.3344, 4.0739, 0, -5.449, 3.8037, 1.9018, -5.449, 3.2941, 2.1088, -5.3344, 3.6525, 0.9845, -5.449, 3.6741, 2.6896, -5.449, 2.6896, 2.9823, -5.3344, 2.9823, 1.9018, -5.449, 3.2941, 3.6525, -5.3344, 2.1088, 2.9823, -5.3344, 2.9823, 3.2941, -5.449, 1.9018, 3.6741, -5.449, 0.9845, 4.0739, -5.3344, 1.0916, 3.2941, -5.449, 1.9018, 3.8037, -5.449, 0, 4.2176, -5.3344, 0, 3.6741, -5.449, 0.9845, 4.0739, -5.3344, -1.0916, 4.2176, -5.3344, 0, 3.6741, -5.449, -0.9845, 3.2941, -5.449, -1.9018, 3.6525, -5.3344, -2.1088, 3.6741, -5.449, -0.9845, 2.6896, -5.449, -2.6896, 2.9823, -5.3344, -2.9823, 3.2941, -5.449, -1.9018, 2.1088, -5.3344, -3.6525, 2.9823, -5.3344, -2.9823, 1.9018, -5.449, -3.2941, 0.9845, -5.449, -3.6741, 1.0916, -5.3344, -4.0739, 1.9018, -5.449, -3.2941, 0, -5.449, -3.8037, 0, -5.3344, -4.2176, 0.9845, -5.449, -3.6741, -0.9845, -5.449, -3.6741, -1.0916, -5.3344, -4.0739, 0, -5.449, -3.8037, -1.9018, -5.449, -3.2941, -2.1088, -5.3344, -3.6525, -0.9845, -5.449, -3.6741, -2.9823, -5.3344, -2.9823, -2.1088, -5.3344, -3.6525, -2.6896, -5.449, -2.6896, -3.6525, -5.3344, -2.1088, -2.9823, -5.3344, -2.9823, -3.2941, -5.449, -1.9018, -3.6741, -5.449, -0.9845, -4.0739, -5.3344, -1.0916, -3.2941, -5.449, -1.9018, -3.8037, -5.449, 0, -4.2176, -5.3344, 0, -3.6741, -5.449, -0.9845, -3.2158, -5.5279, 0.8617, -3.6741, -5.449, 0.9845, -3.3293, -5.5279, 0, -2.8832, -5.5279, 1.6646, -3.2941, -5.449, 1.9018, -3.2158, -5.5279, 0.8617, -2.6896, -5.449, 2.6896, -3.2941, -5.449, 1.9018, -2.3542, -5.5279, 2.3542, -1.6646, -5.5279, 2.8832, -1.9018, -5.449, 3.2941, -2.3542, -5.5279, 2.3542, -0.9845, -5.449, 3.6741, -1.9018, -5.449, 3.2941, -0.8617, -5.5279, 3.2158, 0, -5.5279, 3.3293, 0, -5.449, 3.8037, -0.8617, -5.5279, 3.2158, 0.9845, -5.449, 3.6741, 0, -5.449, 3.8037, 0.8617, -5.5279, 3.2158, 1.6646, -5.5279, 2.8832, 1.9018, -5.449, 3.2941, 0.8617, -5.5279, 3.2158, 2.3542, -5.5279, 2.3542, 2.6896, -5.449, 2.6896, 1.6646, -5.5279, 2.8832, 3.2941, -5.449, 1.9018, 2.6896, -5.449, 2.6896, 2.8832, -5.5279, 1.6646, 3.6741, -5.449, 0.9845, 3.2941, -5.449, 1.9018, 3.2158, -5.5279, 0.8617, 3.3293, -5.5279, 0, 3.8037, -5.449, 0, 3.2158, -5.5279, 0.8617, 3.6741, -5.449, -0.9845, 3.8037, -5.449, 0, 3.2158, -5.5279, -0.8617, 2.8832, -5.5279, -1.6646, 3.2941, -5.449, -1.9018, 3.2158, -5.5279, -0.8617, 2.3542, -5.5279, -2.3542, 2.6896, -5.449, -2.6896, 2.8832, -5.5279, -1.6646, 1.9018, -5.449, -3.2941, 2.6896, -5.449, -2.6896, 1.6646, -5.5279, -2.8832, 0.9845, -5.449, -3.6741, 1.9018, -5.449, -3.2941, 0.8617, -5.5279, -3.2158, 0, -5.449, -3.8037, 0.9845, -5.449, -3.6741, 0, -5.5279, -3.3293, -0.8617, -5.5279, -3.2158, -0.9845, -5.449, -3.6741, 0, -5.5279, -3.3293, -1.6646, -5.5279, -2.8832, -1.9018, -5.449, -3.2941, -0.8617, -5.5279, -3.2158, -2.6896, -5.449, -2.6896, -1.9018, -5.449, -3.2941, -2.3542, -5.5279, -2.3542, -2.8832, -5.5279, -1.6646, -3.2941, -5.449, -1.9018, -2.3542, -5.5279, -2.3542, -3.2158, -5.5279, -0.8617, -3.6741, -5.449, -0.9845, -2.8832, -5.5279, -1.6646, -3.3293, -5.5279, 0, -3.8037, -5.449, 0, -3.2158, -5.5279, -0.8617, -2.7277, -5.589, 0.7309, -3.2158, -5.5279, 0.8617, -2.8239, -5.589, 0, -2.4456, -5.589, 1.412, -2.8832, -5.5279, 1.6646, -2.7277, -5.589, 0.7309, -1.9968, -5.589, 1.9968, -2.3542, -5.5279, 2.3542, -2.4456, -5.589, 1.412, -1.412, -5.589, 2.4456, -1.6646, -5.5279, 2.8832, -1.9968, -5.589, 1.9968, -0.8617, -5.5279, 3.2158, -1.6646, -5.5279, 2.8832, -0.7309, -5.589, 2.7277, 0, -5.589, 2.8239, 0, -5.5279, 3.3293, -0.7309, -5.589, 2.7277, 0.7309, -5.589, 2.7277, 0.8617, -5.5279, 3.2158, 0, -5.589, 2.8239, 1.412, -5.589, 2.4456, 1.6646, -5.5279, 2.8832, 0.7309, -5.589, 2.7277, 1.9968, -5.589, 1.9968, 2.3542, -5.5279, 2.3542, 1.412, -5.589, 2.4456, 2.4456, -5.589, 1.412, 2.8832, -5.5279, 1.6646, 1.9968, -5.589, 1.9968, 2.7277, -5.589, 0.7309, 3.2158, -5.5279, 0.8617, 2.4456, -5.589, 1.412, 3.3293, -5.5279, 0, 3.2158, -5.5279, 0.8617, 2.8239, -5.589, 0, 2.7277, -5.589, -0.7309, 3.2158, -5.5279, -0.8617, 2.8239, -5.589, 0, 2.4456, -5.589, -1.412, 2.8832, -5.5279, -1.6646, 2.7277, -5.589, -0.7309, 1.9968, -5.589, -1.9968, 2.3542, -5.5279, -2.3542, 2.4456, -5.589, -1.412, 1.412, -5.589, -2.4456, 1.6646, -5.5279, -2.8832, 1.9968, -5.589, -1.9968, 0.8617, -5.5279, -3.2158, 1.6646, -5.5279, -2.8832, 0.7309, -5.589, -2.7277, 0, -5.589, -2.8239, 0, -5.5279, -3.3293, 0.7309, -5.589, -2.7277, -0.7309, -5.589, -2.7277, -0.8617, -5.5279, -3.2158, 0, -5.589, -2.8239, -1.412, -5.589, -2.4456, -1.6646, -5.5279, -2.8832, -0.7309, -5.589, -2.7277, -1.9968, -5.589, -1.9968, -2.3542, -5.5279, -2.3542, -1.412, -5.589, -2.4456, -2.4456, -5.589, -1.412, -2.8832, -5.5279, -1.6646, -1.9968, -5.589, -1.9968, -3.2158, -5.5279, -0.8617, -2.8832, -5.5279, -1.6646, -2.7277, -5.589, -0.7309, -3.3293, -5.5279, 0, -3.2158, -5.5279, -0.8617, -2.8239, -5.589, 0, -2.7277, -5.589, 0.7309, -2.8239, -5.589, 0, -2.2383, -5.6506, 0.5998, -2.0068, -5.6506, 1.1586, -2.4456, -5.589, 1.412, -2.2383, -5.6506, 0.5998, -1.6386, -5.6506, 1.6386, -1.9968, -5.589, 1.9968, -2.0068, -5.6506, 1.1586, -1.412, -5.589, 2.4456, -1.9968, -5.589, 1.9968, -1.1586, -5.6506, 2.0068, -0.5998, -5.6506, 2.2383, -0.7309, -5.589, 2.7277, -1.1586, -5.6506, 2.0068, 0, -5.6506, 2.3173, 0, -5.589, 2.8239, -0.5998, -5.6506, 2.2383, 0.5998, -5.6506, 2.2383, 0.7309, -5.589, 2.7277, 0, -5.6506, 2.3173, 1.1586, -5.6506, 2.0068, 1.412, -5.589, 2.4456, 0.5998, -5.6506, 2.2383, 1.6386, -5.6506, 1.6386, 1.9968, -5.589, 1.9968, 1.1586, -5.6506, 2.0068, 2.0068, -5.6506, 1.1586, 2.4456, -5.589, 1.412, 1.6386, -5.6506, 1.6386, 2.2383, -5.6506, 0.5998, 2.7277, -5.589, 0.7309, 2.0068, -5.6506, 1.1586, 2.3173, -5.6506, 0, 2.8239, -5.589, 0, 2.2383, -5.6506, 0.5998, 2.2383, -5.6506, -0.5998, 2.7277, -5.589, -0.7309, 2.3173, -5.6506, 0, 2.0068, -5.6506, -1.1586, 2.4456, -5.589, -1.412, 2.2383, -5.6506, -0.5998, 1.6386, -5.6506, -1.6386, 1.9968, -5.589, -1.9968, 2.0068, -5.6506, -1.1586, 1.1586, -5.6506, -2.0068, 1.412, -5.589, -2.4456, 1.6386, -5.6506, -1.6386, 0.7309, -5.589, -2.7277, 1.412, -5.589, -2.4456, 0.5998, -5.6506, -2.2383, 0, -5.6506, -2.3173, 0, -5.589, -2.8239, 0.5998, -5.6506, -2.2383, -0.5998, -5.6506, -2.2383, -0.7309, -5.589, -2.7277, 0, -5.6506, -2.3173, -1.412, -5.589, -2.4456, -0.7309, -5.589, -2.7277, -1.1586, -5.6506, -2.0068, -1.9968, -5.589, -1.9968, -1.412, -5.589, -2.4456, -1.6386, -5.6506, -1.6386, -2.4456, -5.589, -1.412, -1.9968, -5.589, -1.9968, -2.0068, -5.6506, -1.1586, -2.2383, -5.6506, -0.5998, -2.7277, -5.589, -0.7309, -2.0068, -5.6506, -1.1586, -2.3173, -5.6506, 0, -2.8239, -5.589, 0, -2.2383, -5.6506, -0.5998, -1.7762, -5.7305, 0.4759, -2.2383, -5.6506, 0.5998, -1.8389, -5.7305, 0, -1.5925, -5.7305, 0.9194, -2.0068, -5.6506, 1.1586, -1.7762, -5.7305, 0.4759, -1.3003, -5.7305, 1.3003, -1.6386, -5.6506, 1.6386, -1.5925, -5.7305, 0.9194, -1.1586, -5.6506, 2.0068, -1.6386, -5.6506, 1.6386, -0.9194, -5.7305, 1.5925, -0.4759, -5.7305, 1.7762, -0.5998, -5.6506, 2.2383, -0.9194, -5.7305, 1.5925, 0, -5.7305, 1.8389, 0, -5.6506, 2.3173, -0.4759, -5.7305, 1.7762, 0.4759, -5.7305, 1.7762, 0.5998, -5.6506, 2.2383, 0, -5.7305, 1.8389, 1.1586, -5.6506, 2.0068, 0.5998, -5.6506, 2.2383, 0.9194, -5.7305, 1.5925, 1.3003, -5.7305, 1.3003, 1.6386, -5.6506, 1.6386, 0.9194, -5.7305, 1.5925, 1.5925, -5.7305, 0.9194, 2.0068, -5.6506, 1.1586, 1.3003, -5.7305, 1.3003, 2.2383, -5.6506, 0.5998, 2.0068, -5.6506, 1.1586, 1.7762, -5.7305, 0.4759, 1.8389, -5.7305, 0, 2.3173, -5.6506, 0, 1.7762, -5.7305, 0.4759, 1.7762, -5.7305, -0.4759, 2.2383, -5.6506, -0.5998, 1.8389, -5.7305, 0, 2.0068, -5.6506, -1.1586, 2.2383, -5.6506, -0.5998, 1.5925, -5.7305, -0.9194, 1.3003, -5.7305, -1.3003, 1.6386, -5.6506, -1.6386, 1.5925, -5.7305, -0.9194, 1.1586, -5.6506, -2.0068, 1.6386, -5.6506, -1.6386, 0.9194, -5.7305, -1.5925, 0.4759, -5.7305, -1.7762, 0.5998, -5.6506, -2.2383, 0.9194, -5.7305, -1.5925, 0, -5.7305, -1.8389, 0, -5.6506, -2.3173, 0.4759, -5.7305, -1.7762, -0.4759, -5.7305, -1.7762, -0.5998, -5.6506, -2.2383, 0, -5.7305, -1.8389, -1.1586, -5.6506, -2.0068, -0.5998, -5.6506, -2.2383, -0.9194, -5.7305, -1.5925, -1.3003, -5.7305, -1.3003, -1.6386, -5.6506, -1.6386, -0.9194, -5.7305, -1.5925, -2.0068, -5.6506, -1.1586, -1.6386, -5.6506, -1.6386, -1.5925, -5.7305, -0.9194, -1.7762, -5.7305, -0.4759, -2.2383, -5.6506, -0.5998, -1.5925, -5.7305, -0.9194, -1.8389, -5.7305, 0, -2.3173, -5.6506, 0, -1.7762, -5.7305, -0.4759, -1.37, -5.847, 0.3671, -1.7762, -5.7305, 0.4759, -1.4183, -5.847, 0, -1.2283, -5.847, 0.7092, -1.5925, -5.7305, 0.9194, -1.37, -5.847, 0.3671, -1.0029, -5.847, 1.0029, -1.3003, -5.7305, 1.3003, -1.2283, -5.847, 0.7092, -0.9194, -5.7305, 1.5925, -1.3003, -5.7305, 1.3003, -0.7092, -5.847, 1.2283, -0.4759, -5.7305, 1.7762, -0.9194, -5.7305, 1.5925, -0.3671, -5.847, 1.37, 0, -5.7305, 1.8389, -0.4759, -5.7305, 1.7762, 0, -5.847, 1.4183, 0.3671, -5.847, 1.37, 0.4759, -5.7305, 1.7762, 0, -5.847, 1.4183, 0.7092, -5.847, 1.2283, 0.9194, -5.7305, 1.5925, 0.3671, -5.847, 1.37, 1.0029, -5.847, 1.0029, 1.3003, -5.7305, 1.3003, 0.7092, -5.847, 1.2283, 1.2283, -5.847, 0.7092, 1.5925, -5.7305, 0.9194, 1.0029, -5.847, 1.0029, 1.37, -5.847, 0.3671, 1.7762, -5.7305, 0.4759, 1.2283, -5.847, 0.7092, 1.4183, -5.847, 0, 1.8389, -5.7305, 0, 1.37, -5.847, 0.3671, 1.7762, -5.7305, -0.4759, 1.8389, -5.7305, 0, 1.37, -5.847, -0.3671, 1.2283, -5.847, -0.7092, 1.5925, -5.7305, -0.9194, 1.37, -5.847, -0.3671, 1.3003, -5.7305, -1.3003, 1.5925, -5.7305, -0.9194, 1.0029, -5.847, -1.0029, 0.9194, -5.7305, -1.5925, 1.3003, -5.7305, -1.3003, 0.7092, -5.847, -1.2283, 0.4759, -5.7305, -1.7762, 0.9194, -5.7305, -1.5925, 0.3671, -5.847, -1.37, 0, -5.7305, -1.8389, 0.4759, -5.7305, -1.7762, 0, -5.847, -1.4183, -0.3671, -5.847, -1.37, -0.4759, -5.7305, -1.7762, 0, -5.847, -1.4183, -0.7092, -5.847, -1.2283, -0.9194, -5.7305, -1.5925, -0.3671, -5.847, -1.37, -1.0029, -5.847, -1.0029, -1.3003, -5.7305, -1.3003, -0.7092, -5.847, -1.2283, -1.5925, -5.7305, -0.9194, -1.3003, -5.7305, -1.3003, -1.2283, -5.847, -0.7092, -1.37, -5.847, -0.3671, -1.7762, -5.7305, -0.4759, -1.2283, -5.847, -0.7092, -1.4183, -5.847, 0, -1.8389, -5.7305, 0, -1.37, -5.847, -0.3671, -1.37, -5.847, 0.3671, -1.4183, -5.847, 0, -1.0483, -6.018, 0.2809, -0.9399, -6.018, 0.5426, -1.2283, -5.847, 0.7092, -1.0483, -6.018, 0.2809, -0.7674, -6.018, 0.7674, -1.0029, -5.847, 1.0029, -0.9399, -6.018, 0.5426, -0.5426, -6.018, 0.9399, -0.7092, -5.847, 1.2283, -0.7674, -6.018, 0.7674, -0.2809, -6.018, 1.0483, -0.3671, -5.847, 1.37, -0.5426, -6.018, 0.9399, 0, -6.018, 1.0853, 0, -5.847, 1.4183, -0.2809, -6.018, 1.0483, 0.2809, -6.018, 1.0483, 0.3671, -5.847, 1.37, 0, -6.018, 1.0853, 0.5426, -6.018, 0.9399, 0.7092, -5.847, 1.2283, 0.2809, -6.018, 1.0483, 0.7674, -6.018, 0.7674, 1.0029, -5.847, 1.0029, 0.5426, -6.018, 0.9399, 0.9399, -6.018, 0.5426, 1.2283, -5.847, 0.7092, 0.7674, -6.018, 0.7674, 1.0483, -6.018, 0.2809, 1.37, -5.847, 0.3671, 0.9399, -6.018, 0.5426, 1.4183, -5.847, 0, 1.37, -5.847, 0.3671, 1.0853, -6.018, 0, 1.0483, -6.018, -0.2809, 1.37, -5.847, -0.3671, 1.0853, -6.018, 0, 0.9399, -6.018, -0.5426, 1.2283, -5.847, -0.7092, 1.0483, -6.018, -0.2809, 0.7674, -6.018, -0.7674, 1.0029, -5.847, -1.0029, 0.9399, -6.018, -0.5426, 0.5426, -6.018, -0.9399, 0.7092, -5.847, -1.2283, 0.7674, -6.018, -0.7674, 0.3671, -5.847, -1.37, 0.7092, -5.847, -1.2283, 0.2809, -6.018, -1.0483, 0, -6.018, -1.0853, 0, -5.847, -1.4183, 0.2809, -6.018, -1.0483, -0.2809, -6.018, -1.0483, -0.3671, -5.847, -1.37, 0, -6.018, -1.0853, -0.5426, -6.018, -0.9399, -0.7092, -5.847, -1.2283, -0.2809, -6.018, -1.0483, -0.7674, -6.018, -0.7674, -1.0029, -5.847, -1.0029, -0.5426, -6.018, -0.9399, -0.9399, -6.018, -0.5426, -1.2283, -5.847, -0.7092, -0.7674, -6.018, -0.7674, -1.37, -5.847, -0.3671, -1.2283, -5.847, -0.7092, -1.0483, -6.018, -0.2809, -1.0853, -6.018, 0, -1.4183, -5.847, 0, -1.0483, -6.018, -0.2809, -0.8397, -6.2616, 0.225, -1.0483, -6.018, 0.2809, -0.8693, -6.2616, 0, -0.9399, -6.018, 0.5426, -1.0483, -6.018, 0.2809, -0.7528, -6.2616, 0.4347, -0.7674, -6.018, 0.7674, -0.9399, -6.018, 0.5426, -0.6147, -6.2616, 0.6147, -0.5426, -6.018, 0.9399, -0.7674, -6.018, 0.7674, -0.4347, -6.2616, 0.7528, -0.2809, -6.018, 1.0483, -0.5426, -6.018, 0.9399, -0.225, -6.2616, 0.8397, 0, -6.018, 1.0853, -0.2809, -6.018, 1.0483, 0, -6.2616, 0.8693, 0.225, -6.2616, 0.8397, 0.2809, -6.018, 1.0483, 0, -6.2616, 0.8693, 0.5426, -6.018, 0.9399, 0.2809, -6.018, 1.0483, 0.4347, -6.2616, 0.7528, 0.6147, -6.2616, 0.6147, 0.7674, -6.018, 0.7674, 0.4347, -6.2616, 0.7528, 0.9399, -6.018, 0.5426, 0.7674, -6.018, 0.7674, 0.7528, -6.2616, 0.4347, 0.8397, -6.2616, 0.225, 1.0483, -6.018, 0.2809, 0.7528, -6.2616, 0.4347, 0.8693, -6.2616, 0, 1.0853, -6.018, 0, 0.8397, -6.2616, 0.225, 0.8397, -6.2616, -0.225, 1.0483, -6.018, -0.2809, 0.8693, -6.2616, 0, 0.9399, -6.018, -0.5426, 1.0483, -6.018, -0.2809, 0.7528, -6.2616, -0.4347, 0.7674, -6.018, -0.7674, 0.9399, -6.018, -0.5426, 0.6147, -6.2616, -0.6147, 0.4347, -6.2616, -0.7528, 0.5426, -6.018, -0.9399, 0.6147, -6.2616, -0.6147, 0.2809, -6.018, -1.0483, 0.5426, -6.018, -0.9399, 0.225, -6.2616, -0.8397, 0, -6.018, -1.0853, 0.2809, -6.018, -1.0483, 0, -6.2616, -0.8693, -0.225, -6.2616, -0.8397, -0.2809, -6.018, -1.0483, 0, -6.2616, -0.8693, -0.4347, -6.2616, -0.7528, -0.5426, -6.018, -0.9399, -0.225, -6.2616, -0.8397, -0.6147, -6.2616, -0.6147, -0.7674, -6.018, -0.7674, -0.4347, -6.2616, -0.7528, -0.7528, -6.2616, -0.4347, -0.9399, -6.018, -0.5426, -0.6147, -6.2616, -0.6147, -1.0483, -6.018, -0.2809, -0.9399, -6.018, -0.5426, -0.8397, -6.2616, -0.225, -1.0853, -6.018, 0, -1.0483, -6.018, -0.2809, -0.8693, -6.2616, 0, -0.8397, -6.2616, 0.225, -0.8693, -6.2616, 0, -0.7727, -6.5958, 0.2071, -0.6928, -6.5958, 0.4, -0.7528, -6.2616, 0.4347, -0.7727, -6.5958, 0.2071, -0.5657, -6.5958, 0.5657, -0.6147, -6.2616, 0.6147, -0.6928, -6.5958, 0.4, -0.4, -6.5958, 0.6928, -0.4347, -6.2616, 0.7528, -0.5657, -6.5958, 0.5657, -0.2071, -6.5958, 0.7727, -0.225, -6.2616, 0.8397, -0.4, -6.5958, 0.6928, 0, -6.2616, 0.8693, -0.225, -6.2616, 0.8397, 0, -6.5958, 0.8, 0.2071, -6.5958, 0.7727, 0.225, -6.2616, 0.8397, 0, -6.5958, 0.8, 0.4, -6.5958, 0.6928, 0.4347, -6.2616, 0.7528, 0.2071, -6.5958, 0.7727, 0.5657, -6.5958, 0.5657, 0.6147, -6.2616, 0.6147, 0.4, -6.5958, 0.6928, 0.7528, -6.2616, 0.4347, 0.6147, -6.2616, 0.6147, 0.6928, -6.5958, 0.4, 0.8397, -6.2616, 0.225, 0.7528, -6.2616, 0.4347, 0.7727, -6.5958, 0.2071, 0.8, -6.5958, 0, 0.8693, -6.2616, 0, 0.7727, -6.5958, 0.2071, 0.7727, -6.5958, -0.2071, 0.8397, -6.2616, -0.225, 0.8, -6.5958, 0, 0.6928, -6.5958, -0.4, 0.7528, -6.2616, -0.4347, 0.7727, -6.5958, -0.2071, 0.5657, -6.5958, -0.5657, 0.6147, -6.2616, -0.6147, 0.6928, -6.5958, -0.4, 0.4, -6.5958, -0.6928, 0.4347, -6.2616, -0.7528, 0.5657, -6.5958, -0.5657, 0.225, -6.2616, -0.8397, 0.4347, -6.2616, -0.7528, 0.2071, -6.5958, -0.7727, 0, -6.5958, -0.8, 0, -6.2616, -0.8693, 0.2071, -6.5958, -0.7727, -0.225, -6.2616, -0.8397, 0, -6.2616, -0.8693, -0.2071, -6.5958, -0.7727, -0.4, -6.5958, -0.6928, -0.4347, -6.2616, -0.7528, -0.2071, -6.5958, -0.7727, -0.5657, -6.5958, -0.5657, -0.6147, -6.2616, -0.6147, -0.4, -6.5958, -0.6928, -0.6928, -6.5958, -0.4, -0.7528, -6.2616, -0.4347, -0.5657, -6.5958, -0.5657, -0.8397, -6.2616, -0.225, -0.7528, -6.2616, -0.4347, -0.7727, -6.5958, -0.2071, -0.8693, -6.2616, 0, -0.8397, -6.2616, -0.225, -0.8, -6.5958, 0, -4.8296, -4.5958, 1.2941, -5, -4.5958, 0, -4.6364, -4.5958, 1.2423, -4.3301, -4.5958, 2.5, -4.8296, -4.5958, 1.2941, -4.1569, -4.5958, 2.4, -3.5355, -4.5958, 3.5355, -4.3301, -4.5958, 2.5, -3.3941, -4.5958, 3.3941, -2.5, -4.5958, 4.3301, -3.5355, -4.5958, 3.5355, -2.4, -4.5958, 4.1569, -2.5, -4.5958, 4.3301, -2.4, -4.5958, 4.1569, -1.2941, -4.5958, 4.8296, 0, -4.5958, 5, -1.2941, -4.5958, 4.8296, 0, -4.5958, 4.8, 1.2941, -4.5958, 4.8296, 0, -4.5958, 5, 1.2423, -4.5958, 4.6364, 2.5, -4.5958, 4.3301, 1.2941, -4.5958, 4.8296, 2.4, -4.5958, 4.1569, 3.5355, -4.5958, 3.5355, 2.5, -4.5958, 4.3301, 3.3941, -4.5958, 3.3941, 4.3301, -4.5958, 2.5, 3.5355, -4.5958, 3.5355, 4.1569, -4.5958, 2.4, 4.8296, -4.5958, 1.2941, 4.3301, -4.5958, 2.5, 4.6364, -4.5958, 1.2423, 4.8296, -4.5958, 1.2941, 4.6364, -4.5958, 1.2423, 5, -4.5958, 0, 4.8296, -4.5958, -1.2941, 5, -4.5958, 0, 4.6364, -4.5958, -1.2423, 4.8296, -4.5958, -1.2941, 4.6364, -4.5958, -1.2423, 4.3301, -4.5958, -2.5, 3.5355, -4.5958, -3.5355, 4.3301, -4.5958, -2.5, 3.3941, -4.5958, -3.3941, 3.5355, -4.5958, -3.5355, 3.3941, -4.5958, -3.3941, 2.5, -4.5958, -4.3301, 2.5, -4.5958, -4.3301, 2.4, -4.5958, -4.1569, 1.2941, -4.5958, -4.8296, 1.2941, -4.5958, -4.8296, 1.2423, -4.5958, -4.6364, 0, -4.5958, -5, -1.2941, -4.5958, -4.8296, 0, -4.5958, -5, -1.2423, -4.5958, -4.6364, -2.5, -4.5958, -4.3301, -1.2941, -4.5958, -4.8296, -2.4, -4.5958, -4.1569, -2.5, -4.5958, -4.3301, -2.4, -4.5958, -4.1569, -3.5355, -4.5958, -3.5355, -3.5355, -4.5958, -3.5355, -3.3941, -4.5958, -3.3941, -4.3301, -4.5958, -2.5, -4.3301, -4.5958, -2.5, -4.1569, -4.5958, -2.4, -4.8296, -4.5958, -1.2941, -5, -4.5958, 0, -4.8296, -4.5958, -1.2941, -4.8, -4.5958, 0, -0.7727, -6.5958, 0.2071, -0.8, -6.5958, 0, -0.9659, -6.5958, 0.2588, -0.6928, -6.5958, 0.4, -0.7727, -6.5958, 0.2071, -0.866, -6.5958, 0.5, -0.5657, -6.5958, 0.5657, -0.6928, -6.5958, 0.4, -0.7071, -6.5958, 0.7071, -0.4, -6.5958, 0.6928, -0.5657, -6.5958, 0.5657, -0.5, -6.5958, 0.866, -0.4, -6.5958, 0.6928, -0.5, -6.5958, 0.866, -0.2071, -6.5958, 0.7727, 0, -6.5958, 0.8, -0.2071, -6.5958, 0.7727, 0, -6.5958, 1, 0.2071, -6.5958, 0.7727, 0, -6.5958, 0.8, 0.2588, -6.5958, 0.9659, 0.4, -6.5958, 0.6928, 0.2071, -6.5958, 0.7727, 0.5, -6.5958, 0.866, 0.5657, -6.5958, 0.5657, 0.4, -6.5958, 0.6928, 0.7071, -6.5958, 0.7071, 0.6928, -6.5958, 0.4, 0.5657, -6.5958, 0.5657, 0.866, -6.5958, 0.5, 0.6928, -6.5958, 0.4, 0.866, -6.5958, 0.5, 0.7727, -6.5958, 0.2071, 0.8, -6.5958, 0, 0.7727, -6.5958, 0.2071, 1, -6.5958, 0, 0.8, -6.5958, 0, 1, -6.5958, 0, 0.7727, -6.5958, -0.2071, 0.6928, -6.5958, -0.4, 0.7727, -6.5958, -0.2071, 0.866, -6.5958, -0.5, 0.5657, -6.5958, -0.5657, 0.6928, -6.5958, -0.4, 0.7071, -6.5958, -0.7071, 0.4, -6.5958, -0.6928, 0.5657, -6.5958, -0.5657, 0.5, -6.5958, -0.866, 0.2071, -6.5958, -0.7727, 0.4, -6.5958, -0.6928, 0.2588, -6.5958, -0.9659, 0, -6.5958, -0.8, 0.2071, -6.5958, -0.7727, 0, -6.5958, -1, -0.2071, -6.5958, -0.7727, 0, -6.5958, -0.8, -0.2588, -6.5958, -0.9659, -0.4, -6.5958, -0.6928, -0.2071, -6.5958, -0.7727, -0.5, -6.5958, -0.866, -0.4, -6.5958, -0.6928, -0.5, -6.5958, -0.866, -0.5657, -6.5958, -0.5657, -0.5657, -6.5958, -0.5657, -0.7071, -6.5958, -0.7071, -0.6928, -6.5958, -0.4, -0.7727, -6.5958, -0.2071, -0.6928, -6.5958, -0.4, -0.9659, -6.5958, -0.2588, -0.8, -6.5958, 0, -0.7727, -6.5958, -0.2071, -1, -6.5958, 0) -[node name="Looping" type="StaticBody"] -script = ExtResource( 1 ) +[node name="StartLine" type="StaticBody3D"] +collision_mask = 0 +script = ExtResource("1") + +[node name="Mesh" type="MeshInstance3D" parent="."] +material_override = ExtResource("2") +mesh = ExtResource("3") + +[node name="CollisionShape3D2" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, 0.142867, 0.0763623) +shape = SubResource("CylinderShape3D_gyx3i") + +[node name="CollisionShape3D9" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, 0.142867, -1.08312) +shape = SubResource("CylinderShape3D_gyx3i") + +[node name="CollisionShape3D10" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, 0.142867, -2.24431) +shape = SubResource("CylinderShape3D_gyx3i") + +[node name="CollisionShape3D3" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, 0.142867, 1.23832) +shape = SubResource("CylinderShape3D_gyx3i") + +[node name="CollisionShape3D4" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, 0.142867, 2.40004) +shape = SubResource("CylinderShape3D_gyx3i") + +[node name="CollisionShape3D5" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, 1.30573, 1.81545) +shape = SubResource("CylinderShape3D_gyx3i") + +[node name="CollisionShape3D6" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, 1.30573, 0.656273) +shape = SubResource("CylinderShape3D_gyx3i") -[node name="Mesh" type="MeshInstance" parent="."] -material_override = ExtResource( 2 ) -mesh = ExtResource( 3 ) +[node name="CollisionShape3D7" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, 1.30573, -0.498905) +shape = SubResource("CylinderShape3D_gyx3i") -[node name="CollisionShape" type="CollisionShape" parent="."] -shape = SubResource( 3 ) +[node name="CollisionShape3D8" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, 1.30573, -1.66661) +shape = SubResource("CylinderShape3D_gyx3i") -[node name="BeginArea" type="Area" parent="."] +[node name="CollisionShape3D11" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, -1.01798, 1.81545) +shape = SubResource("CylinderShape3D_gyx3i") + +[node name="CollisionShape3D12" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, -1.01798, 0.656273) +shape = SubResource("CylinderShape3D_gyx3i") + +[node name="CollisionShape3D13" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, -1.01798, -0.498905) +shape = SubResource("CylinderShape3D_gyx3i") + +[node name="CollisionShape3D14" type="CollisionShape3D" parent="."] +transform = Transform3D(-2.40413e-08, 0.55, 0, -0.55, -2.40413e-08, 0, 0, 0, 0.55, -0.0772767, -1.01798, -1.66661) +shape = SubResource("CylinderShape3D_gyx3i") + +[node name="BeginArea" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 2.31399, 0, 3, 0 ) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6, 0) collision_layer = 2 -collision_mask = 0 +collision_mask = 4 -[node name="CollisionShape" type="CollisionShape" parent="BeginArea"] -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="BeginArea"] +shape = SubResource("2") -[node name="EndArea" type="Area" parent="."] +[node name="EndArea" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -8.6, 2 ) -collision_layer = 3 +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -8.6, 2) +collision_layer = 2 +collision_mask = 4 +script = ExtResource("5") + +[node name="CollisionShape" type="CollisionShape3D" parent="EndArea"] +shape = SubResource("2") + +[node name="TubeVerticalToHorizontal" parent="." instance=ExtResource("4")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -7.6, 0) collision_mask = 0 -script = ExtResource( 5 ) -[node name="CollisionShape" type="CollisionShape" parent="EndArea"] -shape = SubResource( 2 ) +[node name="Positions" type="Node3D" parent="."] -[node name="TubeVerticalToHorizontal" parent="." instance=ExtResource( 4 )] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -7.6, 0 ) +[node name="Position3D" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.15525, 2.60312, 0) -[node name="Positions" type="Spatial" parent="."] +[node name="Position3D2" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.4321, -2.85858, 0) -[node name="Position3D" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 5.15525, 2.60312, 0 ) +[node name="Position3D3" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.4321, -7.78808, 0) -[node name="Position3D2" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 5.4321, -2.85858, 0 ) +[node name="PlayerSpawn" type="Marker3D" parent="." groups=["spawn"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 0, 0) -[node name="Position3D3" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 5.4321, -7.78808, 0 ) +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("ConcavePolygonShape3D_x8g7v") diff --git a/scenes/blocks/tube_vertical_to_horizontal.tscn b/scenes/blocks/tube_vertical_to_horizontal.tscn index 21a28f2..70c63c9 100644 --- a/scenes/blocks/tube_vertical_to_horizontal.tscn +++ b/scenes/blocks/tube_vertical_to_horizontal.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=6 format=2] diff --git a/scenes/blocks/turn_left_2.tscn b/scenes/blocks/turn_left_2.tscn index a13daca..dd7e096 100644 --- a/scenes/blocks/turn_left_2.tscn +++ b/scenes/blocks/turn_left_2.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=7 format=2] diff --git a/scenes/blocks/turn_left_3.tscn b/scenes/blocks/turn_left_3.tscn index 9bdd9eb..10d0b7e 100644 --- a/scenes/blocks/turn_left_3.tscn +++ b/scenes/blocks/turn_left_3.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=7 format=2] diff --git a/scenes/blocks/turn_left_covered.tscn b/scenes/blocks/turn_left_covered.tscn index 0612322..d936bac 100644 --- a/scenes/blocks/turn_left_covered.tscn +++ b/scenes/blocks/turn_left_covered.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=7 format=2] diff --git a/scenes/blocks/turn_right_2.tscn b/scenes/blocks/turn_right_2.tscn index 77c496e..1979adc 100644 --- a/scenes/blocks/turn_right_2.tscn +++ b/scenes/blocks/turn_right_2.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=7 format=2] diff --git a/scenes/blocks/turn_right_3.tscn b/scenes/blocks/turn_right_3.tscn index 469cfe6..db0389e 100644 --- a/scenes/blocks/turn_right_3.tscn +++ b/scenes/blocks/turn_right_3.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=7 format=2] diff --git a/scenes/blocks/turn_right_covered.tscn b/scenes/blocks/turn_right_covered.tscn index bb24053..bac2227 100644 --- a/scenes/blocks/turn_right_covered.tscn +++ b/scenes/blocks/turn_right_covered.tscn @@ -1,53 +1,50 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=7 format=3 uid="uid://cjxasmc0r1qhd"] -[gd_scene load_steps=7 format=2] +[ext_resource type="Script" path="res://scripts/blocks/piece.gd" id="1"] +[ext_resource type="Material" path="res://resources/materials/piece.tres" id="2"] +[ext_resource type="ArrayMesh" uid="uid://4akktlckcuc0" path="res://assets/blocks/turn_right_covered.obj" id="3"] +[ext_resource type="Script" path="res://scripts/blocks/checkpoint.gd" id="4"] -[ext_resource path="res://scripts/blocks/piece.gd" type="Script" id=1] -[ext_resource path="res://resources/materials/piece.tres" type="Material" id=2] -[ext_resource path="res://assets/blocks/turn_right_covered.obj" type="ArrayMesh" id=3] -[ext_resource path="res://scripts/blocks/checkpoint.gd" type="Script" id=4] +[sub_resource type="ConcavePolygonShape3D" id="1"] +data = PackedVector3Array(0.5433, 0.769, -0.7495, 0.7071, 0.7071, -1, 0.6941, 0.6446, -0.7347, 0.5065, 0.7065, -0.5014, 0.6941, 0.6446, -0.7347, 0.6551, 0.5821, -0.4719, 0.4455, 0.644, -0.2582, 0.6551, 0.5821, -0.4719, 0.5905, 0.5196, -0.2142, 0.361, 0.5815, -0.022, 0.5905, 0.5196, -0.2142, 0.501, 0.4571, 0.036, 0.2538, 0.519, 0.2047, 0.501, 0.4571, 0.036, 0.3875, 0.3946, 0.2761, 0.1249, 0.4565, 0.4198, 0.3875, 0.3946, 0.2761, 0.2509, 0.3321, 0.504, -0.0245, 0.394, 0.6212, 0.2509, 0.3321, 0.504, 0.0926, 0.2696, 0.7174, -0.1929, 0.3315, 0.8071, 0.0926, 0.2696, 0.7174, -0.0858, 0.2071, 0.9142, -0.3788, 0.269, 0.9755, -0.0858, 0.2071, 0.9142, -0.2826, 0.1446, 1.0926, -0.5802, 0.2065, 1.1249, -0.2826, 0.1446, 1.0926, -0.496, 0.0821, 1.2509, -0.7953, 0.144, 1.2538, -0.496, 0.0821, 1.2509, -0.7239, 0.0196, 1.3875, -1.022, 0.0815, 1.361, -0.7239, 0.0196, 1.3875, -0.964, -0.0429, 1.501, -1.2582, 0.019, 1.4455, -0.964, -0.0429, 1.501, -1.2142, -0.1054, 1.5905, -1.5014, -0.0435, 1.5065, -1.2142, -0.1054, 1.5905, -1.4719, -0.1679, 1.6551, -1.7495, -0.106, 1.5433, -1.4719, -0.1679, 1.6551, -1.7347, -0.2304, 1.6941, -2, -0.1685, 1.5556, -1.7347, -0.2304, 1.6941, -2, -0.2929, 1.7071, 0.6941, 0.6446, -0.7347, 0.8315, 0.5556, -1, 0.8178, 0.4931, -0.7225, 0.6551, 0.5821, -0.4719, 0.8178, 0.4931, -0.7225, 0.7771, 0.4306, -0.4476, 0.5905, 0.5196, -0.2142, 0.7771, 0.4306, -0.4476, 0.7095, 0.3681, -0.1781, 0.501, 0.4571, 0.036, 0.7095, 0.3681, -0.1781, 0.6159, 0.3056, 0.0836, 0.3875, 0.3946, 0.2761, 0.6159, 0.3056, 0.0836, 0.4971, 0.2431, 0.3347, 0.2509, 0.3321, 0.504, 0.4971, 0.2431, 0.3347, 0.3543, 0.1806, 0.5731, 0.0926, 0.2696, 0.7174, 0.3543, 0.1806, 0.5731, 0.1888, 0.1181, 0.7963, -0.0858, 0.2071, 0.9142, 0.1888, 0.1181, 0.7963, 0.0022, 0.0556, 1.0022, -0.2826, 0.1446, 1.0926, 0.0022, 0.0556, 1.0022, -0.2037, -0.0069, 1.1888, -0.496, 0.0821, 1.2509, -0.2037, -0.0069, 1.1888, -0.4269, -0.0694, 1.3543, -0.7239, 0.0196, 1.3875, -0.4269, -0.0694, 1.3543, -0.6653, -0.1319, 1.4971, -0.964, -0.0429, 1.501, -0.6653, -0.1319, 1.4971, -0.9164, -0.1944, 1.6159, -1.2142, -0.1054, 1.5905, -0.9164, -0.1944, 1.6159, -1.1781, -0.2569, 1.7095, -1.4719, -0.1679, 1.6551, -1.1781, -0.2569, 1.7095, -1.4476, -0.3194, 1.7771, -1.7347, -0.2304, 1.6941, -1.4476, -0.3194, 1.7771, -1.7225, -0.3819, 1.8178, -2, -0.2929, 1.7071, -1.7225, -0.3819, 1.8178, -2, -0.4444, 1.8315, 0.8178, 0.4931, -0.7225, 0.9239, 0.3827, -1, 0.9098, 0.3202, -0.7134, 0.7771, 0.4306, -0.4476, 0.9098, 0.3202, -0.7134, 0.8677, 0.2577, -0.4296, 0.7095, 0.3681, -0.1781, 0.8677, 0.2577, -0.4296, 0.798, 0.1952, -0.1512, 0.6159, 0.3056, 0.0836, 0.798, 0.1952, -0.1512, 0.7013, 0.1327, 0.1189, 0.4971, 0.2431, 0.3347, 0.7013, 0.1327, 0.1189, 0.5786, 0.0702, 0.3783, 0.3543, 0.1806, 0.5731, 0.5786, 0.0702, 0.3783, 0.4311, 0.0077, 0.6244, 0.1888, 0.1181, 0.7963, 0.4311, 0.0077, 0.6244, 0.2602, -0.0548, 0.8549, 0.0022, 0.0556, 1.0022, 0.2602, -0.0548, 0.8549, 0.0675, -0.1173, 1.0675, -0.2037, -0.0069, 1.1888, 0.0675, -0.1173, 1.0675, -0.1451, -0.1798, 1.2602, -0.4269, -0.0694, 1.3543, -0.1451, -0.1798, 1.2602, -0.3756, -0.2423, 1.4311, -0.6653, -0.1319, 1.4971, -0.3756, -0.2423, 1.4311, -0.6217, -0.3048, 1.5786, -0.9164, -0.1944, 1.6159, -0.6217, -0.3048, 1.5786, -0.8811, -0.3673, 1.7013, -1.1781, -0.2569, 1.7095, -0.8811, -0.3673, 1.7013, -1.1512, -0.4298, 1.798, -1.4476, -0.3194, 1.7771, -1.1512, -0.4298, 1.798, -1.4296, -0.4923, 1.8677, -1.7225, -0.3819, 1.8178, -1.4296, -0.4923, 1.8677, -1.7134, -0.5548, 1.9098, -2, -0.4444, 1.8315, -1.7134, -0.5548, 1.9098, -2, -0.6173, 1.9239, 0.9098, 0.3202, -0.7134, 0.9808, 0.1951, -1, 0.9664, 0.1326, -0.7078, 0.8677, 0.2577, -0.4296, 0.9664, 0.1326, -0.7078, 0.9235, 0.0701, -0.4185, 0.798, 0.1952, -0.1512, 0.9235, 0.0701, -0.4185, 0.8524, 0.0076, -0.1347, 0.7013, 0.1327, 0.1189, 0.8524, 0.0076, -0.1347, 0.7539, -0.0549, 0.1407, 0.5786, 0.0702, 0.3783, 0.7539, -0.0549, 0.1407, 0.6288, -0.1174, 0.4051, 0.4311, 0.0077, 0.6244, 0.6288, -0.1174, 0.4051, 0.4784, -0.1799, 0.656, 0.2602, -0.0548, 0.8549, 0.4784, -0.1799, 0.656, 0.3042, -0.2424, 0.891, 0.0675, -0.1173, 1.0675, 0.3042, -0.2424, 0.891, 0.1077, -0.3049, 1.1077, -0.1451, -0.1798, 1.2602, 0.1077, -0.3049, 1.1077, -0.109, -0.3674, 1.3042, -0.3756, -0.2423, 1.4311, -0.109, -0.3674, 1.3042, -0.344, -0.4299, 1.4784, -0.6217, -0.3048, 1.5786, -0.344, -0.4299, 1.4784, -0.5949, -0.4924, 1.6288, -0.8811, -0.3673, 1.7013, -0.5949, -0.4924, 1.6288, -0.8593, -0.5549, 1.7539, -1.1512, -0.4298, 1.798, -0.8593, -0.5549, 1.7539, -1.1347, -0.6174, 1.8524, -1.4296, -0.4923, 1.8677, -1.1347, -0.6174, 1.8524, -1.4185, -0.6799, 1.9235, -1.7134, -0.5548, 1.9098, -1.4185, -0.6799, 1.9235, -1.7078, -0.7424, 1.9664, -2, -0.6173, 1.9239, -1.7078, -0.7424, 1.9664, -2, -0.8049, 1.9808, 0.9664, 0.1326, -0.7078, 1, 0, -1, 0.9856, -0.0625, -0.7059, 0.9235, 0.0701, -0.4185, 0.9856, -0.0625, -0.7059, 0.9424, -0.125, -0.4147, 0.8524, 0.0076, -0.1347, 0.9424, -0.125, -0.4147, 0.8708, -0.1875, -0.1291, 0.7539, -0.0549, 0.1407, 0.8708, -0.1875, -0.1291, 0.7716, -0.25, 0.148, 0.6288, -0.1174, 0.4051, 0.7716, -0.25, 0.148, 0.6458, -0.3125, 0.4142, 0.4784, -0.1799, 0.656, 0.6458, -0.3125, 0.4142, 0.4944, -0.375, 0.6667, 0.3042, -0.2424, 0.891, 0.4944, -0.375, 0.6667, 0.319, -0.4375, 0.9032, 0.1077, -0.3049, 1.1077, 0.319, -0.4375, 0.9032, 0.1213, -0.5, 1.1213, -0.109, -0.3674, 1.3042, 0.1213, -0.5, 1.1213, -0.0968, -0.5625, 1.319, -0.344, -0.4299, 1.4784, -0.0968, -0.5625, 1.319, -0.3333, -0.625, 1.4944, -0.5949, -0.4924, 1.6288, -0.3333, -0.625, 1.4944, -0.5858, -0.6875, 1.6458, -0.8593, -0.5549, 1.7539, -0.5858, -0.6875, 1.6458, -0.852, -0.75, 1.7716, -1.1347, -0.6174, 1.8524, -0.852, -0.75, 1.7716, -1.1291, -0.8125, 1.8708, -1.4185, -0.6799, 1.9235, -1.1291, -0.8125, 1.8708, -1.4147, -0.875, 1.9424, -1.7078, -0.7424, 1.9664, -1.4147, -0.875, 1.9424, -1.7059, -0.9375, 1.9856, -2, -0.8049, 1.9808, -1.7059, -0.9375, 1.9856, -2, -1, 2, 0.9856, -0.0625, -0.7059, 0.9808, -0.1951, -1, 0.9664, -0.2576, -0.7078, 0.9424, -0.125, -0.4147, 0.9664, -0.2576, -0.7078, 0.9235, -0.3201, -0.4185, 0.8708, -0.1875, -0.1291, 0.9235, -0.3201, -0.4185, 0.8524, -0.3826, -0.1347, 0.7716, -0.25, 0.148, 0.8524, -0.3826, -0.1347, 0.7539, -0.4451, 0.1407, 0.6458, -0.3125, 0.4142, 0.7539, -0.4451, 0.1407, 0.6288, -0.5076, 0.4051, 0.4944, -0.375, 0.6667, 0.6288, -0.5076, 0.4051, 0.4784, -0.5701, 0.656, 0.319, -0.4375, 0.9032, 0.4784, -0.5701, 0.656, 0.3042, -0.6326, 0.891, 0.1213, -0.5, 1.1213, 0.3042, -0.6326, 0.891, 0.1077, -0.6951, 1.1077, -0.0968, -0.5625, 1.319, 0.1077, -0.6951, 1.1077, -0.109, -0.7576, 1.3042, -0.3333, -0.625, 1.4944, -0.109, -0.7576, 1.3042, -0.344, -0.8201, 1.4784, -0.5858, -0.6875, 1.6458, -0.344, -0.8201, 1.4784, -0.5949, -0.8826, 1.6288, -0.852, -0.75, 1.7716, -0.5949, -0.8826, 1.6288, -0.8593, -0.9451, 1.7539, -1.1291, -0.8125, 1.8708, -0.8593, -0.9451, 1.7539, -1.1347, -1.0076, 1.8524, -1.4147, -0.875, 1.9424, -1.1347, -1.0076, 1.8524, -1.4185, -1.0701, 1.9235, -1.7059, -0.9375, 1.9856, -1.4185, -1.0701, 1.9235, -1.7078, -1.1326, 1.9664, -2, -1, 2, -1.7078, -1.1326, 1.9664, -2, -1.1951, 1.9808, 0.9664, -0.2576, -0.7078, 0.9239, -0.3827, -1, 0.9098, -0.4452, -0.7134, 0.9235, -0.3201, -0.4185, 0.9098, -0.4452, -0.7134, 0.8677, -0.5077, -0.4296, 0.8524, -0.3826, -0.1347, 0.8677, -0.5077, -0.4296, 0.798, -0.5702, -0.1512, 0.7539, -0.4451, 0.1407, 0.798, -0.5702, -0.1512, 0.7013, -0.6327, 0.1189, 0.6288, -0.5076, 0.4051, 0.7013, -0.6327, 0.1189, 0.5786, -0.6952, 0.3783, 0.4784, -0.5701, 0.656, 0.5786, -0.6952, 0.3783, 0.4311, -0.7577, 0.6244, 0.3042, -0.6326, 0.891, 0.4311, -0.7577, 0.6244, 0.2602, -0.8202, 0.8549, 0.1077, -0.6951, 1.1077, 0.2602, -0.8202, 0.8549, 0.0675, -0.8827, 1.0675, -0.109, -0.7576, 1.3042, 0.0675, -0.8827, 1.0675, -0.1451, -0.9452, 1.2602, -0.344, -0.8201, 1.4784, -0.1451, -0.9452, 1.2602, -0.3756, -1.0077, 1.4311, -0.5949, -0.8826, 1.6288, -0.3756, -1.0077, 1.4311, -0.6217, -1.0702, 1.5786, -0.8593, -0.9451, 1.7539, -0.6217, -1.0702, 1.5786, -0.8811, -1.1327, 1.7013, -1.1347, -1.0076, 1.8524, -0.8811, -1.1327, 1.7013, -1.1512, -1.1952, 1.798, -1.4185, -1.0701, 1.9235, -1.1512, -1.1952, 1.798, -1.4296, -1.2577, 1.8677, -1.7078, -1.1326, 1.9664, -1.4296, -1.2577, 1.8677, -1.7134, -1.3202, 1.9098, -2, -1.1951, 1.9808, -1.7134, -1.3202, 1.9098, -2, -1.3827, 1.9239, 0.9098, -0.4452, -0.7134, 0.8315, -0.5556, -1, 0.8178, -0.6181, -0.7225, 0.8677, -0.5077, -0.4296, 0.8178, -0.6181, -0.7225, 0.7771, -0.6806, -0.4476, 0.798, -0.5702, -0.1512, 0.7771, -0.6806, -0.4476, 0.7095, -0.7431, -0.1781, 0.7013, -0.6327, 0.1189, 0.7095, -0.7431, -0.1781, 0.6159, -0.8056, 0.0836, 0.5786, -0.6952, 0.3783, 0.6159, -0.8056, 0.0836, 0.4971, -0.8681, 0.3347, 0.4311, -0.7577, 0.6244, 0.4971, -0.8681, 0.3347, 0.3543, -0.9306, 0.5731, 0.2602, -0.8202, 0.8549, 0.3543, -0.9306, 0.5731, 0.1888, -0.9931, 0.7963, 0.0675, -0.8827, 1.0675, 0.1888, -0.9931, 0.7963, 0.0022, -1.0556, 1.0022, -0.1451, -0.9452, 1.2602, 0.0022, -1.0556, 1.0022, -0.2037, -1.1181, 1.1888, -0.3756, -1.0077, 1.4311, -0.2037, -1.1181, 1.1888, -0.4269, -1.1806, 1.3543, -0.6217, -1.0702, 1.5786, -0.4269, -1.1806, 1.3543, -0.6653, -1.2431, 1.4971, -0.8811, -1.1327, 1.7013, -0.6653, -1.2431, 1.4971, -0.9164, -1.3056, 1.6159, -1.1512, -1.1952, 1.798, -0.9164, -1.3056, 1.6159, -1.1781, -1.3681, 1.7095, -1.4296, -1.2577, 1.8677, -1.1781, -1.3681, 1.7095, -1.4476, -1.4306, 1.7771, -1.7134, -1.3202, 1.9098, -1.4476, -1.4306, 1.7771, -1.7225, -1.4931, 1.8178, -2, -1.3827, 1.9239, -1.7225, -1.4931, 1.8178, -2, -1.5556, 1.8315, 0.8178, -0.6181, -0.7225, 0.7071, -0.7071, -1, 0.6941, -0.7696, -0.7347, 0.7771, -0.6806, -0.4476, 0.6941, -0.7696, -0.7347, 0.6551, -0.8321, -0.4719, 0.7095, -0.7431, -0.1781, 0.6551, -0.8321, -0.4719, 0.5905, -0.8946, -0.2142, 0.6159, -0.8056, 0.0836, 0.5905, -0.8946, -0.2142, 0.501, -0.9571, 0.036, 0.4971, -0.8681, 0.3347, 0.501, -0.9571, 0.036, 0.3875, -1.0196, 0.2761, 0.3543, -0.9306, 0.5731, 0.3875, -1.0196, 0.2761, 0.2509, -1.0821, 0.504, 0.1888, -0.9931, 0.7963, 0.2509, -1.0821, 0.504, 0.0926, -1.1446, 0.7174, 0.0022, -1.0556, 1.0022, 0.0926, -1.1446, 0.7174, -0.0858, -1.2071, 0.9142, -0.2037, -1.1181, 1.1888, -0.0858, -1.2071, 0.9142, -0.2826, -1.2696, 1.0926, -0.4269, -1.1806, 1.3543, -0.2826, -1.2696, 1.0926, -0.496, -1.3321, 1.2509, -0.6653, -1.2431, 1.4971, -0.496, -1.3321, 1.2509, -0.7239, -1.3946, 1.3875, -0.9164, -1.3056, 1.6159, -0.7239, -1.3946, 1.3875, -0.964, -1.4571, 1.501, -1.1781, -1.3681, 1.7095, -0.964, -1.4571, 1.501, -1.2142, -1.5196, 1.5905, -1.4476, -1.4306, 1.7771, -1.2142, -1.5196, 1.5905, -1.4719, -1.5821, 1.6551, -1.7225, -1.4931, 1.8178, -1.4719, -1.5821, 1.6551, -1.7347, -1.6446, 1.6941, -2, -1.5556, 1.8315, -1.7347, -1.6446, 1.6941, -2, -1.7071, 1.7071, 0.6941, -0.7696, -0.7347, 0.5556, -0.8315, -1, 0.5433, -0.894, -0.7495, 0.6551, -0.8321, -0.4719, 0.5433, -0.894, -0.7495, 0.5065, -0.9565, -0.5014, 0.5905, -0.8946, -0.2142, 0.5065, -0.9565, -0.5014, 0.4455, -1.019, -0.2582, 0.501, -0.9571, 0.036, 0.4455, -1.019, -0.2582, 0.361, -1.0815, -0.022, 0.3875, -1.0196, 0.2761, 0.361, -1.0815, -0.022, 0.2538, -1.144, 0.2047, 0.2509, -1.0821, 0.504, 0.2538, -1.144, 0.2047, 0.1249, -1.2065, 0.4198, 0.0926, -1.1446, 0.7174, 0.1249, -1.2065, 0.4198, -0.0245, -1.269, 0.6212, -0.0858, -1.2071, 0.9142, -0.0245, -1.269, 0.6212, -0.1929, -1.3315, 0.8071, -0.2826, -1.2696, 1.0926, -0.1929, -1.3315, 0.8071, -0.3788, -1.394, 0.9755, -0.496, -1.3321, 1.2509, -0.3788, -1.394, 0.9755, -0.5802, -1.4565, 1.1249, -0.7239, -1.3946, 1.3875, -0.5802, -1.4565, 1.1249, -0.7953, -1.519, 1.2538, -0.964, -1.4571, 1.501, -0.7953, -1.519, 1.2538, -1.022, -1.5815, 1.361, -1.2142, -1.5196, 1.5905, -1.022, -1.5815, 1.361, -1.2582, -1.644, 1.4455, -1.4719, -1.5821, 1.6551, -1.2582, -1.644, 1.4455, -1.5014, -1.7065, 1.5065, -1.7347, -1.6446, 1.6941, -1.5014, -1.7065, 1.5065, -1.7495, -1.769, 1.5433, -2, -1.7071, 1.7071, -1.7495, -1.769, 1.5433, -2, -1.8315, 1.5556, 0.5433, -0.894, -0.7495, 0.3827, -0.9239, -1, 0.3712, -0.9864, -0.7665, 0.5065, -0.9565, -0.5014, 0.3712, -0.9864, -0.7665, 0.3369, -1.0489, -0.5352, 0.4455, -1.019, -0.2582, 0.3369, -1.0489, -0.5352, 0.2801, -1.1114, -0.3083, 0.361, -1.0815, -0.022, 0.2801, -1.1114, -0.3083, 0.2013, -1.1739, -0.0882, 0.2538, -1.144, 0.2047, 0.2013, -1.1739, -0.0882, 0.1013, -1.2364, 0.1232, 0.1249, -1.2065, 0.4198, 0.1013, -1.2364, 0.1232, -0.0189, -1.2989, 0.3237, -0.0245, -1.269, 0.6212, -0.0189, -1.2989, 0.3237, -0.1582, -1.3614, 0.5116, -0.1929, -1.3315, 0.8071, -0.1582, -1.3614, 0.5116, -0.3152, -1.4239, 0.6848, -0.3788, -1.394, 0.9755, -0.3152, -1.4239, 0.6848, -0.4884, -1.4864, 0.8418, -0.5802, -1.4565, 1.1249, -0.4884, -1.4864, 0.8418, -0.6763, -1.5489, 0.9811, -0.7953, -1.519, 1.2538, -0.6763, -1.5489, 0.9811, -0.8768, -1.6114, 1.1013, -1.022, -1.5815, 1.361, -0.8768, -1.6114, 1.1013, -1.0882, -1.6739, 1.2013, -1.2582, -1.644, 1.4455, -1.0882, -1.6739, 1.2013, -1.3083, -1.7364, 1.2801, -1.5014, -1.7065, 1.5065, -1.3083, -1.7364, 1.2801, -1.5352, -1.7989, 1.3369, -1.7495, -1.769, 1.5433, -1.5352, -1.7989, 1.3369, -1.7665, -1.8614, 1.3712, -2, -1.8315, 1.5556, -1.7665, -1.8614, 1.3712, -2, -1.9239, 1.3827, 0.3712, -0.9864, -0.7665, 0.1951, -0.9808, -1, 0.1845, -1.0433, -0.7848, 0.3369, -1.0489, -0.5352, 0.1845, -1.0433, -0.7848, 0.1529, -1.1058, -0.5718, 0.2801, -1.1114, -0.3083, 0.1529, -1.1058, -0.5718, 0.1006, -1.1683, -0.3628, 0.2013, -1.1739, -0.0882, 0.1006, -1.1683, -0.3628, 0.028, -1.2308, -0.16, 0.1013, -1.2364, 0.1232, 0.028, -1.2308, -0.16, -0.0641, -1.2933, 0.0348, -0.0189, -1.2989, 0.3237, -0.0641, -1.2933, 0.0348, -0.1748, -1.3558, 0.2195, -0.1582, -1.3614, 0.5116, -0.1748, -1.3558, 0.2195, -0.3032, -1.4183, 0.3926, -0.3152, -1.4239, 0.6848, -0.3032, -1.4183, 0.3926, -0.4478, -1.4808, 0.5522, -0.4884, -1.4864, 0.8418, -0.4478, -1.4808, 0.5522, -0.6075, -1.5433, 0.6968, -0.6763, -1.5489, 0.9811, -0.6075, -1.5433, 0.6968, -0.7805, -1.6058, 0.8252, -0.8768, -1.6114, 1.1013, -0.7805, -1.6058, 0.8252, -0.9652, -1.6683, 0.9359, -1.0882, -1.6739, 1.2013, -0.9652, -1.6683, 0.9359, -1.16, -1.7308, 1.028, -1.3083, -1.7364, 1.2801, -1.16, -1.7308, 1.028, -1.3628, -1.7933, 1.1006, -1.5352, -1.7989, 1.3369, -1.3628, -1.7933, 1.1006, -1.5718, -1.8558, 1.1529, -1.7665, -1.8614, 1.3712, -1.5718, -1.8558, 1.1529, -1.7848, -1.9183, 1.1845, -2, -1.9239, 1.3827, -1.7848, -1.9183, 1.1845, -2, -1.9808, 1.1951, 0.1845, -1.0433, -0.7848, 0, -1, -1, -0.0096, -1.0625, -0.804, 0.1529, -1.1058, -0.5718, -0.0096, -1.0625, -0.804, -0.0384, -1.125, -0.6098, 0.1006, -1.1683, -0.3628, -0.0384, -1.125, -0.6098, -0.0861, -1.1875, -0.4194, 0.028, -1.2308, -0.16, -0.0861, -1.1875, -0.4194, -0.1522, -1.25, -0.2346, -0.0641, -1.2933, 0.0348, -0.1522, -1.25, -0.2346, -0.2362, -1.3125, -0.0572, -0.1748, -1.3558, 0.2195, -0.2362, -1.3125, -0.0572, -0.3371, -1.375, 0.1111, -0.3032, -1.4183, 0.3926, -0.3371, -1.375, 0.1111, -0.454, -1.4375, 0.2688, -0.4478, -1.4808, 0.5522, -0.454, -1.4375, 0.2688, -0.5858, -1.5, 0.4142, -0.6075, -1.5433, 0.6968, -0.5858, -1.5, 0.4142, -0.7312, -1.5625, 0.546, -0.7805, -1.6058, 0.8252, -0.7312, -1.5625, 0.546, -0.8889, -1.625, 0.6629, -0.9652, -1.6683, 0.9359, -0.8889, -1.625, 0.6629, -1.0572, -1.6875, 0.7638, -1.16, -1.7308, 1.028, -1.0572, -1.6875, 0.7638, -1.2346, -1.75, 0.8478, -1.3628, -1.7933, 1.1006, -1.2346, -1.75, 0.8478, -1.4194, -1.8125, 0.9139, -1.5718, -1.8558, 1.1529, -1.4194, -1.8125, 0.9139, -1.6098, -1.875, 0.9616, -1.7848, -1.9183, 1.1845, -1.6098, -1.875, 0.9616, -1.804, -1.9375, 0.9904, -2, -1.9808, 1.1951, -1.804, -1.9375, 0.9904, -2, -2, 1, -0.2038, -1.0433, -0.8231, 0, -1, -1, -0.1951, -0.9808, -1, -0.2298, -1.1058, -0.6479, -0.0096, -1.0625, -0.804, -0.2038, -1.0433, -0.8231, -0.2728, -1.1683, -0.4761, -0.0384, -1.125, -0.6098, -0.2298, -1.1058, -0.6479, -0.3325, -1.2308, -0.3093, -0.0861, -1.1875, -0.4194, -0.2728, -1.1683, -0.4761, -0.4082, -1.2933, -0.1492, -0.1522, -1.25, -0.2346, -0.3325, -1.2308, -0.3093, -0.4993, -1.3558, 0.0028, -0.2362, -1.3125, -0.0572, -0.4082, -1.2933, -0.1492, -0.6048, -1.4183, 0.145, -0.3371, -1.375, 0.1111, -0.4993, -1.3558, 0.0028, -0.7237, -1.4808, 0.2763, -0.454, -1.4375, 0.2688, -0.6048, -1.4183, 0.145, -0.855, -1.5433, 0.3952, -0.5858, -1.5, 0.4142, -0.7237, -1.4808, 0.2763, -0.9972, -1.6058, 0.5007, -0.7312, -1.5625, 0.546, -0.855, -1.5433, 0.3952, -1.1492, -1.6683, 0.5918, -0.8889, -1.625, 0.6629, -0.9972, -1.6058, 0.5007, -1.3093, -1.7308, 0.6675, -1.0572, -1.6875, 0.7638, -1.1492, -1.6683, 0.5918, -1.4761, -1.7933, 0.7272, -1.2346, -1.75, 0.8478, -1.3093, -1.7308, 0.6675, -1.6479, -1.8558, 0.7702, -1.4194, -1.8125, 0.9139, -1.4761, -1.7933, 0.7272, -1.8231, -1.9183, 0.7962, -1.6098, -1.875, 0.9616, -1.6479, -1.8558, 0.7702, -2, -1.9808, 0.8049, -1.804, -1.9375, 0.9904, -1.8231, -1.9183, 0.7962, -0.3905, -0.9864, -0.8415, -0.1951, -0.9808, -1, -0.3827, -0.9239, -1, -0.4138, -1.0489, -0.6845, -0.2038, -1.0433, -0.8231, -0.3905, -0.9864, -0.8415, -0.4523, -1.1114, -0.5305, -0.2298, -1.1058, -0.6479, -0.4138, -1.0489, -0.6845, -0.5058, -1.1739, -0.3811, -0.2728, -1.1683, -0.4761, -0.4523, -1.1114, -0.5305, -0.5737, -1.2364, -0.2376, -0.3325, -1.2308, -0.3093, -0.5058, -1.1739, -0.3811, -0.6553, -1.2989, -0.1015, -0.4082, -1.2933, -0.1492, -0.5737, -1.2364, -0.2376, -0.7498, -1.3614, 0.026, -0.4993, -1.3558, 0.0028, -0.6553, -1.2989, -0.1015, -0.8564, -1.4239, 0.1436, -0.6048, -1.4183, 0.145, -0.7498, -1.3614, 0.026, -0.974, -1.4864, 0.2502, -0.7237, -1.4808, 0.2763, -0.8564, -1.4239, 0.1436, -1.1015, -1.5489, 0.3447, -0.855, -1.5433, 0.3952, -0.974, -1.4864, 0.2502, -1.2376, -1.6114, 0.4263, -0.9972, -1.6058, 0.5007, -1.1015, -1.5489, 0.3447, -1.3811, -1.6739, 0.4942, -1.1492, -1.6683, 0.5918, -1.2376, -1.6114, 0.4263, -1.5305, -1.7364, 0.5477, -1.3093, -1.7308, 0.6675, -1.3811, -1.6739, 0.4942, -1.6845, -1.7989, 0.5862, -1.4761, -1.7933, 0.7272, -1.5305, -1.7364, 0.5477, -1.8415, -1.8614, 0.6095, -1.6479, -1.8558, 0.7702, -1.6845, -1.7989, 0.5862, -2, -1.9239, 0.6173, -1.8231, -1.9183, 0.7962, -1.8415, -1.8614, 0.6095, -0.5625, -0.894, -0.8584, -0.3827, -0.9239, -1, -0.5556, -0.8315, -1, -0.5833, -0.9565, -0.7182, -0.3905, -0.9864, -0.8415, -0.5625, -0.894, -0.8584, -0.6178, -1.019, -0.5807, -0.4138, -1.0489, -0.6845, -0.5833, -0.9565, -0.7182, -0.6655, -1.0815, -0.4472, -0.4523, -1.1114, -0.5305, -0.6178, -1.019, -0.5807, -0.7261, -1.144, -0.3191, -0.5058, -1.1739, -0.3811, -0.6655, -1.0815, -0.4472, -0.799, -1.2065, -0.1975, -0.5737, -1.2364, -0.2376, -0.7261, -1.144, -0.3191, -0.8834, -1.269, -0.0837, -0.6553, -1.2989, -0.1015, -0.799, -1.2065, -0.1975, -0.9786, -1.3315, 0.0214, -0.7498, -1.3614, 0.026, -0.8834, -1.269, -0.0837, -1.0837, -1.394, 0.1166, -0.8564, -1.4239, 0.1436, -0.9786, -1.3315, 0.0214, -1.1975, -1.4565, 0.201, -0.974, -1.4864, 0.2502, -1.0837, -1.394, 0.1166, -1.3191, -1.519, 0.2739, -1.1015, -1.5489, 0.3447, -1.1975, -1.4565, 0.201, -1.4472, -1.5815, 0.3345, -1.2376, -1.6114, 0.4263, -1.3191, -1.519, 0.2739, -1.5807, -1.644, 0.3822, -1.3811, -1.6739, 0.4942, -1.4472, -1.5815, 0.3345, -1.7182, -1.7065, 0.4167, -1.5305, -1.7364, 0.5477, -1.5807, -1.644, 0.3822, -1.8584, -1.769, 0.4375, -1.6845, -1.7989, 0.5862, -1.7182, -1.7065, 0.4167, -2, -1.8315, 0.4444, -1.8415, -1.8614, 0.6095, -1.8584, -1.769, 0.4375, -0.7133, -0.7696, -0.8733, -0.5556, -0.8315, -1, -0.7071, -0.7071, -1, -0.732, -0.8321, -0.7478, -0.5625, -0.894, -0.8584, -0.7133, -0.7696, -0.8733, -0.7628, -0.8946, -0.6247, -0.5833, -0.9565, -0.7182, -0.732, -0.8321, -0.7478, -0.8055, -0.9571, -0.5052, -0.6178, -1.019, -0.5807, -0.7628, -0.8946, -0.6247, -0.8598, -1.0196, -0.3905, -0.6655, -1.0815, -0.4472, -0.8055, -0.9571, -0.5052, -0.925, -1.0821, -0.2817, -0.7261, -1.144, -0.3191, -0.8598, -1.0196, -0.3905, -1.0006, -1.1446, -0.1798, -0.799, -1.2065, -0.1975, -0.925, -1.0821, -0.2817, -1.0858, -1.2071, -0.0858, -0.8834, -1.269, -0.0837, -1.0006, -1.1446, -0.1798, -1.1798, -1.2696, -0.0006, -0.9786, -1.3315, 0.0214, -1.0858, -1.2071, -0.0858, -1.2817, -1.3321, 0.075, -1.0837, -1.394, 0.1166, -1.1798, -1.2696, -0.0006, -1.3905, -1.3946, 0.1402, -1.1975, -1.4565, 0.201, -1.2817, -1.3321, 0.075, -1.5052, -1.4571, 0.1945, -1.3191, -1.519, 0.2739, -1.3905, -1.3946, 0.1402, -1.6247, -1.5196, 0.2372, -1.4472, -1.5815, 0.3345, -1.5052, -1.4571, 0.1945, -1.7478, -1.5821, 0.268, -1.5807, -1.644, 0.3822, -1.6247, -1.5196, 0.2372, -1.8733, -1.6446, 0.2867, -1.7182, -1.7065, 0.4167, -1.7478, -1.5821, 0.268, -2, -1.7071, 0.2929, -1.8584, -1.769, 0.4375, -1.8733, -1.6446, 0.2867, -0.8371, -0.6181, -0.8855, -0.7071, -0.7071, -1, -0.8315, -0.5556, -1, -0.8539, -0.6806, -0.772, -0.7133, -0.7696, -0.8733, -0.8371, -0.6181, -0.8855, -0.8818, -0.7431, -0.6608, -0.732, -0.8321, -0.7478, -0.8539, -0.6806, -0.772, -0.9204, -0.8056, -0.5528, -0.7628, -0.8946, -0.6247, -0.8818, -0.7431, -0.6608, -0.9694, -0.8681, -0.4492, -0.8055, -0.9571, -0.5052, -0.9204, -0.8056, -0.5528, -1.0284, -0.9306, -0.3508, -0.8598, -1.0196, -0.3905, -0.9694, -0.8681, -0.4492, -1.0967, -0.9931, -0.2587, -0.925, -1.0821, -0.2817, -1.0284, -0.9306, -0.3508, -1.1737, -1.0556, -0.1737, -1.0006, -1.1446, -0.1798, -1.0967, -0.9931, -0.2587, -1.2587, -1.1181, -0.0967, -1.0858, -1.2071, -0.0858, -1.1737, -1.0556, -0.1737, -1.3508, -1.1806, -0.0284, -1.1798, -1.2696, -0.0006, -1.2587, -1.1181, -0.0967, -1.4492, -1.2431, 0.0306, -1.2817, -1.3321, 0.075, -1.3508, -1.1806, -0.0284, -1.5528, -1.3056, 0.0796, -1.3905, -1.3946, 0.1402, -1.4492, -1.2431, 0.0306, -1.6608, -1.3681, 0.1182, -1.5052, -1.4571, 0.1945, -1.5528, -1.3056, 0.0796, -1.772, -1.4306, 0.1461, -1.6247, -1.5196, 0.2372, -1.6608, -1.3681, 0.1182, -1.8855, -1.4931, 0.1629, -1.7478, -1.5821, 0.268, -1.772, -1.4306, 0.1461, -2, -1.5556, 0.1685, -1.8733, -1.6446, 0.2867, -1.8855, -1.4931, 0.1629, -0.9291, -0.4452, -0.8945, -0.8315, -0.5556, -1, -0.9239, -0.3827, -1, -0.9446, -0.5077, -0.7901, -0.8371, -0.6181, -0.8855, -0.9291, -0.4452, -0.8945, -0.9702, -0.5702, -0.6876, -0.8539, -0.6806, -0.772, -0.9446, -0.5077, -0.7901, -1.0058, -0.6327, -0.5882, -0.8818, -0.7431, -0.6608, -0.9702, -0.5702, -0.6876, -1.0509, -0.6952, -0.4927, -0.9204, -0.8056, -0.5528, -1.0058, -0.6327, -0.5882, -1.1052, -0.7577, -0.4021, -0.9694, -0.8681, -0.4492, -1.0509, -0.6952, -0.4927, -1.1681, -0.8202, -0.3173, -1.0284, -0.9306, -0.3508, -1.1052, -0.7577, -0.4021, -1.2391, -0.8827, -0.2391, -1.0967, -0.9931, -0.2587, -1.1681, -0.8202, -0.3173, -1.3173, -0.9452, -0.1681, -1.1737, -1.0556, -0.1737, -1.2391, -0.8827, -0.2391, -1.4021, -1.0077, -0.1052, -1.2587, -1.1181, -0.0967, -1.3173, -0.9452, -0.1681, -1.4927, -1.0702, -0.0509, -1.3508, -1.1806, -0.0284, -1.4021, -1.0077, -0.1052, -1.5882, -1.1327, -0.0058, -1.4492, -1.2431, 0.0306, -1.4927, -1.0702, -0.0509, -1.6876, -1.1952, 0.0298, -1.5528, -1.3056, 0.0796, -1.5882, -1.1327, -0.0058, -1.7901, -1.2577, 0.0554, -1.6608, -1.3681, 0.1182, -1.6876, -1.1952, 0.0298, -1.8945, -1.3202, 0.0709, -1.772, -1.4306, 0.1461, -1.7901, -1.2577, 0.0554, -2, -1.3827, 0.0761, -1.8855, -1.4931, 0.1629, -1.8945, -1.3202, 0.0709, -0.9857, -0.2576, -0.9001, -0.9239, -0.3827, -1, -0.9808, -0.1951, -1, -1.0004, -0.3201, -0.8012, -0.9291, -0.4452, -0.8945, -0.9857, -0.2576, -0.9001, -1.0247, -0.3826, -0.7041, -0.9446, -0.5077, -0.7901, -1.0004, -0.3201, -0.8012, -1.0584, -0.4451, -0.61, -0.9702, -0.5702, -0.6876, -1.0247, -0.3826, -0.7041, -1.1011, -0.5076, -0.5195, -1.0058, -0.6327, -0.5882, -1.0584, -0.4451, -0.61, -1.1526, -0.5701, -0.4338, -1.0509, -0.6952, -0.4927, -1.1011, -0.5076, -0.5195, -1.2121, -0.6326, -0.3534, -1.1052, -0.7577, -0.4021, -1.1526, -0.5701, -0.4338, -1.2793, -0.6951, -0.2793, -1.1681, -0.8202, -0.3173, -1.2121, -0.6326, -0.3534, -1.3534, -0.7576, -0.2121, -1.2391, -0.8827, -0.2391, -1.2793, -0.6951, -0.2793, -1.4338, -0.8201, -0.1526, -1.3173, -0.9452, -0.1681, -1.3534, -0.7576, -0.2121, -1.5195, -0.8826, -0.1011, -1.4021, -1.0077, -0.1052, -1.4338, -0.8201, -0.1526, -1.61, -0.9451, -0.0584, -1.4927, -1.0702, -0.0509, -1.5195, -0.8826, -0.1011, -1.7041, -1.0076, -0.0247, -1.5882, -1.1327, -0.0058, -1.61, -0.9451, -0.0584, -1.8012, -1.0701, -0.0004, -1.6876, -1.1952, 0.0298, -1.7041, -1.0076, -0.0247, -1.9001, -1.1326, 0.0143, -1.7901, -1.2577, 0.0554, -1.8012, -1.0701, -0.0004, -2, -1.1951, 0.0192, -1.8945, -1.3202, 0.0709, -1.9001, -1.1326, 0.0143, -1.0048, -0.0625, -0.902, -0.9808, -0.1951, -1, -1, 0, -1, -1.0192, -0.125, -0.8049, -0.9857, -0.2576, -0.9001, -1.0048, -0.0625, -0.902, -1.0431, -0.1875, -0.7097, -1.0004, -0.3201, -0.8012, -1.0192, -0.125, -0.8049, -1.0761, -0.25, -0.6173, -1.0247, -0.3826, -0.7041, -1.0431, -0.1875, -0.7097, -1.1181, -0.3125, -0.5286, -1.0584, -0.4451, -0.61, -1.0761, -0.25, -0.6173, -1.1685, -0.375, -0.4444, -1.1011, -0.5076, -0.5195, -1.1181, -0.3125, -0.5286, -1.227, -0.4375, -0.3656, -1.1526, -0.5701, -0.4338, -1.1685, -0.375, -0.4444, -1.2929, -0.5, -0.2929, -1.2121, -0.6326, -0.3534, -1.227, -0.4375, -0.3656, -1.3656, -0.5625, -0.227, -1.2793, -0.6951, -0.2793, -1.2929, -0.5, -0.2929, -1.4444, -0.625, -0.1685, -1.3534, -0.7576, -0.2121, -1.3656, -0.5625, -0.227, -1.5286, -0.6875, -0.1181, -1.4338, -0.8201, -0.1526, -1.4444, -0.625, -0.1685, -1.6173, -0.75, -0.0761, -1.5195, -0.8826, -0.1011, -1.5286, -0.6875, -0.1181, -1.7097, -0.8125, -0.0431, -1.61, -0.9451, -0.0584, -1.6173, -0.75, -0.0761, -1.8049, -0.875, -0.0192, -1.7041, -1.0076, -0.0247, -1.7097, -0.8125, -0.0431, -1.902, -0.9375, -0.0048, -1.8012, -1.0701, -0.0004, -1.8049, -0.875, -0.0192, -2, -1, 0, -1.9001, -1.1326, 0.0143, -1.902, -0.9375, -0.0048, 0.4327, 0.6027, -0.7604, 0.5657, 0.5657, -1, 0.4445, 0.6652, -1, 0.3975, 0.5402, -0.5231, 0.5533, 0.5032, -0.7485, 0.4327, 0.6027, -0.7604, 0.3392, 0.4777, -0.2904, 0.5164, 0.4407, -0.4995, 0.3975, 0.5402, -0.5231, 0.2584, 0.4152, -0.0645, 0.4552, 0.3782, -0.2552, 0.3392, 0.4777, -0.2904, 0.1558, 0.3527, 0.1523, 0.3704, 0.3157, -0.0182, 0.2584, 0.4152, -0.0645, 0.0325, 0.2902, 0.3581, 0.2627, 0.2532, 0.2095, 0.1558, 0.3527, 0.1523, -0.1104, 0.2277, 0.5507, 0.1333, 0.1907, 0.4254, 0.0325, 0.2902, 0.3581, -0.2715, 0.1652, 0.7285, -0.0167, 0.1282, 0.6277, -0.1104, 0.2277, 0.5507, -0.4493, 0.1027, 0.8896, -0.1858, 0.0657, 0.8142, -0.2715, 0.1652, 0.7285, -0.6419, 0.0402, 1.0325, -0.3723, 0.0032, 0.9833, -0.4493, 0.1027, 0.8896, -0.8477, -0.0223, 1.1558, -0.5746, -0.0593, 1.1333, -0.6419, 0.0402, 1.0325, -1.0645, -0.0848, 1.2584, -0.7905, -0.1218, 1.2627, -0.8477, -0.0223, 1.1558, -1.2904, -0.1473, 1.3392, -1.0182, -0.1843, 1.3704, -1.0645, -0.0848, 1.2584, -1.5231, -0.2098, 1.3975, -1.2552, -0.2468, 1.4552, -1.2904, -0.1473, 1.3392, -1.7604, -0.2723, 1.4327, -1.4995, -0.3093, 1.5164, -1.5231, -0.2098, 1.3975, -2, -0.3348, 1.4445, -1.7485, -0.3718, 1.5533, -1.7604, -0.2723, 1.4327, 0.5533, 0.5032, -0.7485, 0.6652, 0.4445, -1, 0.5657, 0.5657, -1, 0.5164, 0.4407, -0.4995, 0.6523, 0.382, -0.7388, 0.5533, 0.5032, -0.7485, 0.4552, 0.3782, -0.2552, 0.614, 0.3195, -0.4801, 0.5164, 0.4407, -0.4995, 0.3704, 0.3157, -0.0182, 0.5504, 0.257, -0.2263, 0.4552, 0.3782, -0.2552, 0.2627, 0.2532, 0.2095, 0.4623, 0.1945, 0.0199, 0.3704, 0.3157, -0.0182, 0.1333, 0.1907, 0.4254, 0.3505, 0.132, 0.2564, 0.2627, 0.2532, 0.2095, -0.0167, 0.1282, 0.6277, 0.216, 0.0695, 0.4807, 0.1333, 0.1907, 0.4254, -0.1858, 0.0657, 0.8142, 0.0602, 0.007, 0.6908, -0.0167, 0.1282, 0.6277, -0.3723, 0.0032, 0.9833, -0.1154, -0.0555, 0.8846, -0.1858, 0.0657, 0.8142, -0.5746, -0.0593, 1.1333, -0.3092, -0.118, 1.0602, -0.3723, 0.0032, 0.9833, -0.7905, -0.1218, 1.2627, -0.5193, -0.1805, 1.216, -0.5746, -0.0593, 1.1333, -1.0182, -0.1843, 1.3704, -0.7436, -0.243, 1.3505, -0.7905, -0.1218, 1.2627, -1.2552, -0.2468, 1.4552, -0.9801, -0.3055, 1.4623, -1.0182, -0.1843, 1.3704, -1.4995, -0.3093, 1.5164, -1.2263, -0.368, 1.5504, -1.2552, -0.2468, 1.4552, -1.7485, -0.3718, 1.5533, -1.4801, -0.4305, 1.614, -1.4995, -0.3093, 1.5164, -2, -0.4343, 1.5657, -1.7388, -0.493, 1.6523, -1.7485, -0.3718, 1.5533, 0.6523, 0.382, -0.7388, 0.7391, 0.3061, -1, 0.6652, 0.4445, -1, 0.614, 0.3195, -0.4801, 0.7259, 0.2436, -0.7315, 0.6523, 0.382, -0.7388, 0.5504, 0.257, -0.2263, 0.6865, 0.1811, -0.4656, 0.614, 0.3195, -0.4801, 0.4623, 0.1945, 0.0199, 0.6212, 0.1186, -0.2049, 0.5504, 0.257, -0.2263, 0.3505, 0.132, 0.2564, 0.5306, 0.0561, 0.0482, 0.4623, 0.1945, 0.0199, 0.216, 0.0695, 0.4807, 0.4157, -0.0064, 0.2912, 0.3505, 0.132, 0.2564, 0.0602, 0.007, 0.6908, 0.2775, -0.0689, 0.5218, 0.216, 0.0695, 0.4807, -0.1154, -0.0555, 0.8846, 0.1174, -0.1314, 0.7377, 0.0602, 0.007, 0.6908, -0.3092, -0.118, 1.0602, -0.0632, -0.1939, 0.9368, -0.1154, -0.0555, 0.8846, -0.5193, -0.1805, 1.216, -0.2623, -0.2564, 1.1174, -0.3092, -0.118, 1.0602, -0.7436, -0.243, 1.3505, -0.4782, -0.3189, 1.2775, -0.5193, -0.1805, 1.216, -0.9801, -0.3055, 1.4623, -0.7088, -0.3814, 1.4157, -0.7436, -0.243, 1.3505, -1.2263, -0.368, 1.5504, -0.9518, -0.4439, 1.5306, -0.9801, -0.3055, 1.4623, -1.4801, -0.4305, 1.614, -1.2049, -0.5064, 1.6212, -1.2263, -0.368, 1.5504, -1.7388, -0.493, 1.6523, -1.4656, -0.5689, 1.6865, -1.4801, -0.4305, 1.614, -2, -0.5555, 1.6652, -1.7315, -0.6314, 1.7259, -1.7388, -0.493, 1.6523, 0.7259, 0.2436, -0.7315, 0.7846, 0.1561, -1, 0.7391, 0.3061, -1, 0.6865, 0.1811, -0.4656, 0.7712, 0.0936, -0.7271, 0.7259, 0.2436, -0.7315, 0.6212, 0.1186, -0.2049, 0.7311, 0.0311, -0.4567, 0.6865, 0.1811, -0.4656, 0.5306, 0.0561, 0.0482, 0.6647, -0.0314, -0.1917, 0.6212, 0.1186, -0.2049, 0.4157, -0.0064, 0.2912, 0.5727, -0.0939, 0.0656, 0.5306, 0.0561, 0.0482, 0.2775, -0.0689, 0.5218, 0.4558, -0.1564, 0.3127, 0.4157, -0.0064, 0.2912, 0.1174, -0.1314, 0.7377, 0.3153, -0.2189, 0.5471, 0.2775, -0.0689, 0.5218, -0.0632, -0.1939, 0.9368, 0.1525, -0.2814, 0.7666, 0.1174, -0.1314, 0.7377, -0.2623, -0.2564, 1.1174, -0.031, -0.3439, 0.969, -0.0632, -0.1939, 0.9368, -0.4782, -0.3189, 1.2775, -0.2335, -0.4064, 1.1525, -0.2623, -0.2564, 1.1174, -0.7088, -0.3814, 1.4157, -0.4529, -0.4689, 1.3153, -0.4782, -0.3189, 1.2775, -0.9518, -0.4439, 1.5306, -0.6873, -0.5314, 1.4558, -0.7088, -0.3814, 1.4157, -1.2049, -0.5064, 1.6212, -0.9344, -0.5939, 1.5727, -0.9518, -0.4439, 1.5306, -1.4656, -0.5689, 1.6865, -1.1917, -0.6564, 1.6647, -1.2049, -0.5064, 1.6212, -1.7315, -0.6314, 1.7259, -1.4567, -0.7189, 1.7311, -1.4656, -0.5689, 1.6865, -2, -0.6939, 1.7391, -1.7271, -0.7814, 1.7712, -1.7315, -0.6314, 1.7259, 0.7712, 0.0936, -0.7271, 0.8, 0, -1, 0.7846, 0.1561, -1, 0.7311, 0.0311, -0.4567, 0.7865, -0.0625, -0.7256, 0.7712, 0.0936, -0.7271, 0.6647, -0.0314, -0.1917, 0.7462, -0.125, -0.4537, 0.7311, 0.0311, -0.4567, 0.5727, -0.0939, 0.0656, 0.6794, -0.1875, -0.1872, 0.6647, -0.0314, -0.1917, 0.4558, -0.1564, 0.3127, 0.5869, -0.25, 0.0715, 0.5727, -0.0939, 0.0656, 0.3153, -0.2189, 0.5471, 0.4694, -0.3125, 0.3199, 0.4558, -0.1564, 0.3127, 0.1525, -0.2814, 0.7666, 0.3281, -0.375, 0.5556, 0.3153, -0.2189, 0.5471, -0.031, -0.3439, 0.969, 0.1644, -0.4375, 0.7763, 0.1525, -0.2814, 0.7666, -0.2335, -0.4064, 1.1525, -0.0201, -0.5, 0.9799, -0.031, -0.3439, 0.969, -0.4529, -0.4689, 1.3153, -0.2237, -0.5625, 1.1644, -0.2335, -0.4064, 1.1525, -0.6873, -0.5314, 1.4558, -0.4444, -0.625, 1.3281, -0.4529, -0.4689, 1.3153, -0.9344, -0.5939, 1.5727, -0.6801, -0.6875, 1.4694, -0.6873, -0.5314, 1.4558, -1.1917, -0.6564, 1.6647, -0.9285, -0.75, 1.5869, -0.9344, -0.5939, 1.5727, -1.4567, -0.7189, 1.7311, -1.1872, -0.8125, 1.6794, -1.1917, -0.6564, 1.6647, -1.7271, -0.7814, 1.7712, -1.4537, -0.875, 1.7462, -1.4567, -0.7189, 1.7311, -2, -0.8439, 1.7846, -1.7256, -0.9375, 1.7865, -1.7271, -0.7814, 1.7712, 0.7865, -0.0625, -0.7256, 0.7846, -0.1561, -1, 0.8, 0, -1, 0.7462, -0.125, -0.4537, 0.7712, -0.2186, -0.7271, 0.7865, -0.0625, -0.7256, 0.6794, -0.1875, -0.1872, 0.7311, -0.2811, -0.4567, 0.7462, -0.125, -0.4537, 0.5869, -0.25, 0.0715, 0.6647, -0.3436, -0.1917, 0.6794, -0.1875, -0.1872, 0.4694, -0.3125, 0.3199, 0.5727, -0.4061, 0.0656, 0.5869, -0.25, 0.0715, 0.3281, -0.375, 0.5556, 0.4558, -0.4686, 0.3127, 0.4694, -0.3125, 0.3199, 0.1644, -0.4375, 0.7763, 0.3153, -0.5311, 0.5471, 0.3281, -0.375, 0.5556, -0.0201, -0.5, 0.9799, 0.1525, -0.5936, 0.7666, 0.1644, -0.4375, 0.7763, -0.2237, -0.5625, 1.1644, -0.031, -0.6561, 0.969, -0.0201, -0.5, 0.9799, -0.4444, -0.625, 1.3281, -0.2335, -0.7186, 1.1525, -0.2237, -0.5625, 1.1644, -0.6801, -0.6875, 1.4694, -0.4529, -0.7811, 1.3153, -0.4444, -0.625, 1.3281, -0.9285, -0.75, 1.5869, -0.6873, -0.8436, 1.4558, -0.6801, -0.6875, 1.4694, -1.1872, -0.8125, 1.6794, -0.9344, -0.9061, 1.5727, -0.9285, -0.75, 1.5869, -1.4537, -0.875, 1.7462, -1.1917, -0.9686, 1.6647, -1.1872, -0.8125, 1.6794, -1.7256, -0.9375, 1.7865, -1.4567, -1.0311, 1.7311, -1.4537, -0.875, 1.7462, -2, -1, 1.8, -1.7271, -1.0936, 1.7712, -1.7256, -0.9375, 1.7865, 0.7712, -0.2186, -0.7271, 0.7391, -0.3061, -1, 0.7846, -0.1561, -1, 0.7311, -0.2811, -0.4567, 0.7259, -0.3686, -0.7315, 0.7712, -0.2186, -0.7271, 0.6647, -0.3436, -0.1917, 0.6865, -0.4311, -0.4656, 0.7311, -0.2811, -0.4567, 0.5727, -0.4061, 0.0656, 0.6212, -0.4936, -0.2049, 0.6647, -0.3436, -0.1917, 0.4558, -0.4686, 0.3127, 0.5306, -0.5561, 0.0482, 0.5727, -0.4061, 0.0656, 0.3153, -0.5311, 0.5471, 0.4157, -0.6186, 0.2912, 0.4558, -0.4686, 0.3127, 0.1525, -0.5936, 0.7666, 0.2775, -0.6811, 0.5218, 0.3153, -0.5311, 0.5471, -0.031, -0.6561, 0.969, 0.1174, -0.7436, 0.7377, 0.1525, -0.5936, 0.7666, -0.2335, -0.7186, 1.1525, -0.0632, -0.8061, 0.9368, -0.031, -0.6561, 0.969, -0.4529, -0.7811, 1.3153, -0.2623, -0.8686, 1.1174, -0.2335, -0.7186, 1.1525, -0.6873, -0.8436, 1.4558, -0.4782, -0.9311, 1.2775, -0.4529, -0.7811, 1.3153, -0.9344, -0.9061, 1.5727, -0.7088, -0.9936, 1.4157, -0.6873, -0.8436, 1.4558, -1.1917, -0.9686, 1.6647, -0.9518, -1.0561, 1.5306, -0.9344, -0.9061, 1.5727, -1.4567, -1.0311, 1.7311, -1.2049, -1.1186, 1.6212, -1.1917, -0.9686, 1.6647, -1.7271, -1.0936, 1.7712, -1.4656, -1.1811, 1.6865, -1.4567, -1.0311, 1.7311, -2, -1.1561, 1.7846, -1.7315, -1.2436, 1.7259, -1.7271, -1.0936, 1.7712, 0.7259, -0.3686, -0.7315, 0.6652, -0.4445, -1, 0.7391, -0.3061, -1, 0.6865, -0.4311, -0.4656, 0.6523, -0.507, -0.7388, 0.7259, -0.3686, -0.7315, 0.6212, -0.4936, -0.2049, 0.614, -0.5695, -0.4801, 0.6865, -0.4311, -0.4656, 0.5306, -0.5561, 0.0482, 0.5504, -0.632, -0.2263, 0.6212, -0.4936, -0.2049, 0.4157, -0.6186, 0.2912, 0.4623, -0.6945, 0.0199, 0.5306, -0.5561, 0.0482, 0.2775, -0.6811, 0.5218, 0.3505, -0.757, 0.2564, 0.4157, -0.6186, 0.2912, 0.1174, -0.7436, 0.7377, 0.216, -0.8195, 0.4807, 0.2775, -0.6811, 0.5218, -0.0632, -0.8061, 0.9368, 0.0602, -0.882, 0.6908, 0.1174, -0.7436, 0.7377, -0.2623, -0.8686, 1.1174, -0.1154, -0.9445, 0.8846, -0.0632, -0.8061, 0.9368, -0.4782, -0.9311, 1.2775, -0.3092, -1.007, 1.0602, -0.2623, -0.8686, 1.1174, -0.7088, -0.9936, 1.4157, -0.5193, -1.0695, 1.216, -0.4782, -0.9311, 1.2775, -0.9518, -1.0561, 1.5306, -0.7436, -1.132, 1.3505, -0.7088, -0.9936, 1.4157, -1.2049, -1.1186, 1.6212, -0.9801, -1.1945, 1.4623, -0.9518, -1.0561, 1.5306, -1.4656, -1.1811, 1.6865, -1.2263, -1.257, 1.5504, -1.2049, -1.1186, 1.6212, -1.7315, -1.2436, 1.7259, -1.4801, -1.3195, 1.614, -1.4656, -1.1811, 1.6865, -2, -1.3061, 1.7391, -1.7388, -1.382, 1.6523, -1.7315, -1.2436, 1.7259, 0.6523, -0.507, -0.7388, 0.5657, -0.5657, -1, 0.6652, -0.4445, -1, 0.614, -0.5695, -0.4801, 0.5533, -0.6282, -0.7485, 0.6523, -0.507, -0.7388, 0.5504, -0.632, -0.2263, 0.5164, -0.6907, -0.4995, 0.614, -0.5695, -0.4801, 0.4623, -0.6945, 0.0199, 0.4552, -0.7532, -0.2552, 0.5504, -0.632, -0.2263, 0.3505, -0.757, 0.2564, 0.3704, -0.8157, -0.0182, 0.4623, -0.6945, 0.0199, 0.216, -0.8195, 0.4807, 0.2627, -0.8782, 0.2095, 0.3505, -0.757, 0.2564, 0.0602, -0.882, 0.6908, 0.1333, -0.9407, 0.4254, 0.216, -0.8195, 0.4807, -0.1154, -0.9445, 0.8846, -0.0167, -1.0032, 0.6277, 0.0602, -0.882, 0.6908, -0.3092, -1.007, 1.0602, -0.1858, -1.0657, 0.8142, -0.1154, -0.9445, 0.8846, -0.5193, -1.0695, 1.216, -0.3723, -1.1282, 0.9833, -0.3092, -1.007, 1.0602, -0.7436, -1.132, 1.3505, -0.5746, -1.1907, 1.1333, -0.5193, -1.0695, 1.216, -0.9801, -1.1945, 1.4623, -0.7905, -1.2532, 1.2627, -0.7436, -1.132, 1.3505, -1.2263, -1.257, 1.5504, -1.0182, -1.3157, 1.3704, -0.9801, -1.1945, 1.4623, -1.4801, -1.3195, 1.614, -1.2552, -1.3782, 1.4552, -1.2263, -1.257, 1.5504, -1.7388, -1.382, 1.6523, -1.4995, -1.4407, 1.5164, -1.4801, -1.3195, 1.614, -2, -1.4445, 1.6652, -1.7485, -1.5032, 1.5533, -1.7388, -1.382, 1.6523, 0.5533, -0.6282, -0.7485, 0.4445, -0.6652, -1, 0.5657, -0.5657, -1, 0.5164, -0.6907, -0.4995, 0.4327, -0.7277, -0.7604, 0.5533, -0.6282, -0.7485, 0.4552, -0.7532, -0.2552, 0.3975, -0.7902, -0.5231, 0.5164, -0.6907, -0.4995, 0.3704, -0.8157, -0.0182, 0.3392, -0.8527, -0.2904, 0.4552, -0.7532, -0.2552, 0.2627, -0.8782, 0.2095, 0.2584, -0.9152, -0.0645, 0.3704, -0.8157, -0.0182, 0.1333, -0.9407, 0.4254, 0.1558, -0.9777, 0.1523, 0.2627, -0.8782, 0.2095, -0.0167, -1.0032, 0.6277, 0.0325, -1.0402, 0.3581, 0.1333, -0.9407, 0.4254, -0.1858, -1.0657, 0.8142, -0.1104, -1.1027, 0.5507, -0.0167, -1.0032, 0.6277, -0.3723, -1.1282, 0.9833, -0.2715, -1.1652, 0.7285, -0.1858, -1.0657, 0.8142, -0.5746, -1.1907, 1.1333, -0.4493, -1.2277, 0.8896, -0.3723, -1.1282, 0.9833, -0.7905, -1.2532, 1.2627, -0.6419, -1.2902, 1.0325, -0.5746, -1.1907, 1.1333, -1.0182, -1.3157, 1.3704, -0.8477, -1.3527, 1.1558, -0.7905, -1.2532, 1.2627, -1.2552, -1.3782, 1.4552, -1.0645, -1.4152, 1.2584, -1.0182, -1.3157, 1.3704, -1.4995, -1.4407, 1.5164, -1.2904, -1.4777, 1.3392, -1.2552, -1.3782, 1.4552, -1.7485, -1.5032, 1.5533, -1.5231, -1.5402, 1.3975, -1.4995, -1.4407, 1.5164, -2, -1.5657, 1.5657, -1.7604, -1.6027, 1.4327, -1.7485, -1.5032, 1.5533, 0.4327, -0.7277, -0.7604, 0.3061, -0.7391, -1, 0.4445, -0.6652, -1, 0.3975, -0.7902, -0.5231, 0.295, -0.8016, -0.774, 0.4327, -0.7277, -0.7604, 0.3392, -0.8527, -0.2904, 0.2618, -0.8641, -0.5501, 0.3975, -0.7902, -0.5231, 0.2584, -0.9152, -0.0645, 0.2068, -0.9266, -0.3306, 0.3392, -0.8527, -0.2904, 0.1558, -0.9777, 0.1523, 0.1306, -0.9891, -0.1175, 0.2584, -0.9152, -0.0645, 0.0325, -1.0402, 0.3581, 0.0338, -1.0516, 0.0871, 0.1558, -0.9777, 0.1523, -0.1104, -1.1027, 0.5507, -0.0825, -1.1141, 0.2812, 0.0325, -1.0402, 0.3581, -0.2715, -1.1652, 0.7285, -0.2173, -1.1766, 0.463, -0.1104, -1.1027, 0.5507, -0.4493, -1.2277, 0.8896, -0.3693, -1.2391, 0.6307, -0.2715, -1.1652, 0.7285, -0.6419, -1.2902, 1.0325, -0.537, -1.3016, 0.7827, -0.4493, -1.2277, 0.8896, -0.8477, -1.3527, 1.1558, -0.7188, -1.3641, 0.9175, -0.6419, -1.2902, 1.0325, -1.0645, -1.4152, 1.2584, -0.9129, -1.4266, 1.0338, -0.8477, -1.3527, 1.1558, -1.2904, -1.4777, 1.3392, -1.1175, -1.4891, 1.1306, -1.0645, -1.4152, 1.2584, -1.5231, -1.5402, 1.3975, -1.3306, -1.5516, 1.2068, -1.2904, -1.4777, 1.3392, -1.7604, -1.6027, 1.4327, -1.5501, -1.6141, 1.2618, -1.5231, -1.5402, 1.3975, -2, -1.6652, 1.4445, -1.774, -1.6766, 1.295, -1.7604, -1.6027, 1.4327, 0.295, -0.8016, -0.774, 0.1561, -0.7846, -1, 0.3061, -0.7391, -1, 0.2618, -0.8641, -0.5501, 0.1457, -0.8471, -0.7887, 0.295, -0.8016, -0.774, 0.2068, -0.9266, -0.3306, 0.1146, -0.9096, -0.5794, 0.2618, -0.8641, -0.5501, 0.1306, -0.9891, -0.1175, 0.0632, -0.9721, -0.3741, 0.2068, -0.9266, -0.3306, 0.0338, -1.0516, 0.0871, -0.008, -1.0346, -0.1749, 0.1306, -0.9891, -0.1175, -0.0825, -1.1141, 0.2812, -0.0985, -1.0971, 0.0164, 0.0338, -1.0516, 0.0871, -0.2173, -1.1766, 0.463, -0.2073, -1.1596, 0.1979, -0.0825, -1.1141, 0.2812, -0.3693, -1.2391, 0.6307, -0.3333, -1.2221, 0.3678, -0.2173, -1.1766, 0.463, -0.537, -1.3016, 0.7827, -0.4754, -1.2846, 0.5246, -0.3693, -1.2391, 0.6307, -0.7188, -1.3641, 0.9175, -0.6322, -1.3471, 0.6667, -0.537, -1.3016, 0.7827, -0.9129, -1.4266, 1.0338, -0.8022, -1.4096, 0.7927, -0.7188, -1.3641, 0.9175, -1.1175, -1.4891, 1.1306, -0.9836, -1.4721, 0.9015, -0.9129, -1.4266, 1.0338, -1.3306, -1.5516, 1.2068, -1.1749, -1.5346, 0.992, -1.1175, -1.4891, 1.1306, -1.5501, -1.6141, 1.2618, -1.3741, -1.5971, 1.0632, -1.3306, -1.5516, 1.2068, -1.774, -1.6766, 1.295, -1.5794, -1.6596, 1.1146, -1.5501, -1.6141, 1.2618, -2, -1.7391, 1.3061, -1.7887, -1.7221, 1.1457, -1.774, -1.6766, 1.295, 0.1457, -0.8471, -0.7887, 0, -0.8, -1, 0.1561, -0.7846, -1, 0.1146, -0.9096, -0.5794, -0.0096, -0.8625, -0.804, 0.1457, -0.8471, -0.7887, 0.0632, -0.9721, -0.3741, -0.0384, -0.925, -0.6098, 0.1146, -0.9096, -0.5794, -0.008, -1.0346, -0.1749, -0.0861, -0.9875, -0.4194, 0.0632, -0.9721, -0.3741, -0.0985, -1.0971, 0.0164, -0.1522, -1.05, -0.2346, -0.008, -1.0346, -0.1749, -0.2073, -1.1596, 0.1979, -0.2362, -1.1125, -0.0572, -0.0985, -1.0971, 0.0164, -0.3333, -1.2221, 0.3678, -0.3371, -1.175, 0.1111, -0.2073, -1.1596, 0.1979, -0.4754, -1.2846, 0.5246, -0.454, -1.2375, 0.2688, -0.3333, -1.2221, 0.3678, -0.6322, -1.3471, 0.6667, -0.5858, -1.3, 0.4142, -0.4754, -1.2846, 0.5246, -0.8022, -1.4096, 0.7927, -0.7312, -1.3625, 0.546, -0.6322, -1.3471, 0.6667, -0.9836, -1.4721, 0.9015, -0.8889, -1.425, 0.6629, -0.8022, -1.4096, 0.7927, -1.1749, -1.5346, 0.992, -1.0572, -1.4875, 0.7638, -0.9836, -1.4721, 0.9015, -1.3741, -1.5971, 1.0632, -1.2346, -1.55, 0.8478, -1.1749, -1.5346, 0.992, -1.5794, -1.6596, 1.1146, -1.4194, -1.6125, 0.9139, -1.3741, -1.5971, 1.0632, -1.7887, -1.7221, 1.1457, -1.6098, -1.675, 0.9616, -1.5794, -1.6596, 1.1146, -2, -1.7846, 1.1561, -1.804, -1.7375, 0.9904, -1.7887, -1.7221, 1.1457, 0, -0.8, -1, -0.165, -0.8471, -0.8193, -0.1561, -0.7846, -1, -0.0096, -0.8625, -0.804, -0.1915, -0.9096, -0.6403, -0.165, -0.8471, -0.8193, -0.0384, -0.925, -0.6098, -0.2355, -0.9721, -0.4647, -0.1915, -0.9096, -0.6403, -0.0861, -0.9875, -0.4194, -0.2964, -1.0346, -0.2944, -0.2355, -0.9721, -0.4647, -0.1522, -1.05, -0.2346, -0.3738, -1.0971, -0.1308, -0.2964, -1.0346, -0.2944, -0.2362, -1.1125, -0.0572, -0.4668, -1.1596, 0.0244, -0.3738, -1.0971, -0.1308, -0.3371, -1.175, 0.1111, -0.5746, -1.2221, 0.1698, -0.4668, -1.1596, 0.0244, -0.454, -1.2375, 0.2688, -0.6961, -1.2846, 0.3039, -0.5746, -1.2221, 0.1698, -0.5858, -1.3, 0.4142, -0.8302, -1.3471, 0.4254, -0.6961, -1.2846, 0.3039, -0.7312, -1.3625, 0.546, -0.9756, -1.4096, 0.5332, -0.8302, -1.3471, 0.4254, -0.8889, -1.425, 0.6629, -1.1308, -1.4721, 0.6262, -0.9756, -1.4096, 0.5332, -1.0572, -1.4875, 0.7638, -1.2944, -1.5346, 0.7036, -1.1308, -1.4721, 0.6262, -1.2346, -1.55, 0.8478, -1.4647, -1.5971, 0.7645, -1.2944, -1.5346, 0.7036, -1.4194, -1.6125, 0.9139, -1.6403, -1.6596, 0.8085, -1.4647, -1.5971, 0.7645, -1.6098, -1.675, 0.9616, -1.8193, -1.7221, 0.835, -1.6403, -1.6596, 0.8085, -1.804, -1.7375, 0.9904, -2, -1.7846, 0.8439, -1.8193, -1.7221, 0.835, -0.1561, -0.7846, -1, -0.3143, -0.8016, -0.834, -0.3061, -0.7391, -1, -0.165, -0.8471, -0.8193, -0.3387, -0.8641, -0.6695, -0.3143, -0.8016, -0.834, -0.1915, -0.9096, -0.6403, -0.3791, -0.9266, -0.5083, -0.3387, -0.8641, -0.6695, -0.2355, -0.9721, -0.4647, -0.4351, -0.9891, -0.3518, -0.3791, -0.9266, -0.5083, -0.2964, -1.0346, -0.2944, -0.5062, -1.0516, -0.2015, -0.4351, -0.9891, -0.3518, -0.3738, -1.0971, -0.1308, -0.5916, -1.1141, -0.0589, -0.5062, -1.0516, -0.2015, -0.4668, -1.1596, 0.0244, -0.6906, -1.1766, 0.0746, -0.5916, -1.1141, -0.0589, -0.5746, -1.2221, 0.1698, -0.8023, -1.2391, 0.1977, -0.6906, -1.1766, 0.0746, -0.6961, -1.2846, 0.3039, -0.9254, -1.3016, 0.3094, -0.8023, -1.2391, 0.1977, -0.8302, -1.3471, 0.4254, -1.0589, -1.3641, 0.4084, -0.9254, -1.3016, 0.3094, -0.9756, -1.4096, 0.5332, -1.2015, -1.4266, 0.4938, -1.0589, -1.3641, 0.4084, -1.1308, -1.4721, 0.6262, -1.3518, -1.4891, 0.5649, -1.2015, -1.4266, 0.4938, -1.2944, -1.5346, 0.7036, -1.5083, -1.5516, 0.6209, -1.3518, -1.4891, 0.5649, -1.4647, -1.5971, 0.7645, -1.6695, -1.6141, 0.6613, -1.5083, -1.5516, 0.6209, -1.6403, -1.6596, 0.8085, -1.834, -1.6766, 0.6857, -1.6695, -1.6141, 0.6613, -1.8193, -1.7221, 0.835, -2, -1.7391, 0.6939, -1.834, -1.6766, 0.6857, -0.3061, -0.7391, -1, -0.4519, -0.7277, -0.8475, -0.4445, -0.6652, -1, -0.3143, -0.8016, -0.834, -0.4743, -0.7902, -0.6965, -0.4519, -0.7277, -0.8475, -0.3387, -0.8641, -0.6695, -0.5114, -0.8527, -0.5485, -0.4743, -0.7902, -0.6965, -0.3791, -0.9266, -0.5083, -0.5629, -0.9152, -0.4047, -0.5114, -0.8527, -0.5485, -0.4351, -0.9891, -0.3518, -0.6281, -0.9777, -0.2667, -0.5629, -0.9152, -0.4047, -0.5062, -1.0516, -0.2015, -0.7066, -1.0402, -0.1358, -0.6281, -0.9777, -0.2667, -0.5916, -1.1141, -0.0589, -0.7975, -1.1027, -0.0132, -0.7066, -1.0402, -0.1358, -0.6906, -1.1766, 0.0746, -0.9001, -1.1652, 0.0999, -0.7975, -1.1027, -0.0132, -0.8023, -1.2391, 0.1977, -1.0132, -1.2277, 0.2025, -0.9001, -1.1652, 0.0999, -0.9254, -1.3016, 0.3094, -1.1358, -1.2902, 0.2934, -1.0132, -1.2277, 0.2025, -1.0589, -1.3641, 0.4084, -1.2667, -1.3527, 0.3719, -1.1358, -1.2902, 0.2934, -1.2015, -1.4266, 0.4938, -1.4047, -1.4152, 0.4371, -1.2667, -1.3527, 0.3719, -1.3518, -1.4891, 0.5649, -1.5485, -1.4777, 0.4886, -1.4047, -1.4152, 0.4371, -1.5083, -1.5516, 0.6209, -1.6965, -1.5402, 0.5257, -1.5485, -1.4777, 0.4886, -1.6695, -1.6141, 0.6613, -1.8475, -1.6027, 0.5481, -1.6965, -1.5402, 0.5257, -1.834, -1.6766, 0.6857, -2, -1.6652, 0.5555, -1.8475, -1.6027, 0.5481, -0.4445, -0.6652, -1, -0.5726, -0.6282, -0.8594, -0.5657, -0.5657, -1, -0.4519, -0.7277, -0.8475, -0.5932, -0.6907, -0.7202, -0.5726, -0.6282, -0.8594, -0.4743, -0.7902, -0.6965, -0.6274, -0.7532, -0.5836, -0.5932, -0.6907, -0.7202, -0.5114, -0.8527, -0.5485, -0.6749, -0.8157, -0.4511, -0.6274, -0.7532, -0.5836, -0.5629, -0.9152, -0.4047, -0.735, -0.8782, -0.3239, -0.6749, -0.8157, -0.4511, -0.6281, -0.9777, -0.2667, -0.8074, -0.9407, -0.2031, -0.735, -0.8782, -0.3239, -0.7066, -1.0402, -0.1358, -0.8913, -1.0032, -0.0901, -0.8074, -0.9407, -0.2031, -0.7975, -1.1027, -0.0132, -0.9858, -1.0657, 0.0142, -0.8913, -1.0032, -0.0901, -0.9001, -1.1652, 0.0999, -1.0901, -1.1282, 0.1087, -0.9858, -1.0657, 0.0142, -1.0132, -1.2277, 0.2025, -1.2031, -1.1907, 0.1926, -1.0901, -1.1282, 0.1087, -1.1358, -1.2902, 0.2934, -1.3239, -1.2532, 0.265, -1.2031, -1.1907, 0.1926, -1.2667, -1.3527, 0.3719, -1.4511, -1.3157, 0.3251, -1.3239, -1.2532, 0.265, -1.4047, -1.4152, 0.4371, -1.5836, -1.3782, 0.3726, -1.4511, -1.3157, 0.3251, -1.5485, -1.4777, 0.4886, -1.7202, -1.4407, 0.4068, -1.5836, -1.3782, 0.3726, -1.6965, -1.5402, 0.5257, -1.8594, -1.5032, 0.4274, -1.7202, -1.4407, 0.4068, -1.8475, -1.6027, 0.5481, -2, -1.5657, 0.4343, -1.8594, -1.5032, 0.4274, -0.5657, -0.5657, -1, -0.6716, -0.507, -0.8692, -0.6652, -0.4445, -1, -0.5726, -0.6282, -0.8594, -0.6908, -0.5695, -0.7396, -0.6716, -0.507, -0.8692, -0.5932, -0.6907, -0.7202, -0.7227, -0.632, -0.6125, -0.6908, -0.5695, -0.7396, -0.6274, -0.7532, -0.5836, -0.7668, -0.6945, -0.4892, -0.7227, -0.632, -0.6125, -0.6749, -0.8157, -0.4511, -0.8228, -0.757, -0.3708, -0.7668, -0.6945, -0.4892, -0.735, -0.8782, -0.3239, -0.8901, -0.8195, -0.2584, -0.8228, -0.757, -0.3708, -0.8074, -0.9407, -0.2031, -0.9682, -0.882, -0.1532, -0.8901, -0.8195, -0.2584, -0.8913, -1.0032, -0.0901, -1.0561, -0.9445, -0.0561, -0.9682, -0.882, -0.1532, -0.9858, -1.0657, 0.0142, -1.1532, -1.007, 0.0318, -1.0561, -0.9445, -0.0561, -1.0901, -1.1282, 0.1087, -1.2584, -1.0695, 0.1099, -1.1532, -1.007, 0.0318, -1.2031, -1.1907, 0.1926, -1.3708, -1.132, 0.1772, -1.2584, -1.0695, 0.1099, -1.3239, -1.2532, 0.265, -1.4892, -1.1945, 0.2332, -1.3708, -1.132, 0.1772, -1.4511, -1.3157, 0.3251, -1.6125, -1.257, 0.2773, -1.4892, -1.1945, 0.2332, -1.5836, -1.3782, 0.3726, -1.7396, -1.3195, 0.3092, -1.6125, -1.257, 0.2773, -1.7202, -1.4407, 0.4068, -1.8692, -1.382, 0.3284, -1.7396, -1.3195, 0.3092, -1.8594, -1.5032, 0.4274, -2, -1.4445, 0.3348, -1.8692, -1.382, 0.3284, -0.6652, -0.4445, -1, -0.7452, -0.3686, -0.8764, -0.7391, -0.3061, -1, -0.6716, -0.507, -0.8692, -0.7633, -0.4311, -0.754, -0.7452, -0.3686, -0.8764, -0.6908, -0.5695, -0.7396, -0.7934, -0.4936, -0.634, -0.7633, -0.4311, -0.754, -0.7227, -0.632, -0.6125, -0.8351, -0.5561, -0.5175, -0.7934, -0.4936, -0.634, -0.7668, -0.6945, -0.4892, -0.888, -0.6186, -0.4056, -0.8351, -0.5561, -0.5175, -0.8228, -0.757, -0.3708, -0.9516, -0.6811, -0.2995, -0.888, -0.6186, -0.4056, -0.8901, -0.8195, -0.2584, -1.0253, -0.7436, -0.2001, -0.9516, -0.6811, -0.2995, -0.9682, -0.882, -0.1532, -1.1084, -0.8061, -0.1084, -1.0253, -0.7436, -0.2001, -1.0561, -0.9445, -0.0561, -1.2001, -0.8686, -0.0253, -1.1084, -0.8061, -0.1084, -1.1532, -1.007, 0.0318, -1.2995, -0.9311, 0.0484, -1.2001, -0.8686, -0.0253, -1.2584, -1.0695, 0.1099, -1.4056, -0.9936, 0.112, -1.2995, -0.9311, 0.0484, -1.3708, -1.132, 0.1772, -1.5175, -1.0561, 0.1649, -1.4056, -0.9936, 0.112, -1.4892, -1.1945, 0.2332, -1.634, -1.1186, 0.2066, -1.5175, -1.0561, 0.1649, -1.6125, -1.257, 0.2773, -1.754, -1.1811, 0.2367, -1.634, -1.1186, 0.2066, -1.7396, -1.3195, 0.3092, -1.8764, -1.2436, 0.2548, -1.754, -1.1811, 0.2367, -1.8692, -1.382, 0.3284, -2, -1.3061, 0.2609, -1.8764, -1.2436, 0.2548, -0.7391, -0.3061, -1, -0.7905, -0.2186, -0.8809, -0.7846, -0.1561, -1, -0.7452, -0.3686, -0.8764, -0.808, -0.2811, -0.7629, -0.7905, -0.2186, -0.8809, -0.7633, -0.4311, -0.754, -0.837, -0.3436, -0.6472, -0.808, -0.2811, -0.7629, -0.7934, -0.4936, -0.634, -0.8771, -0.4061, -0.5349, -0.837, -0.3436, -0.6472, -0.8351, -0.5561, -0.5175, -0.9281, -0.4686, -0.4271, -0.8771, -0.4061, -0.5349, -0.888, -0.6186, -0.4056, -0.9895, -0.5311, -0.3248, -0.9281, -0.4686, -0.4271, -0.9516, -0.6811, -0.2995, -1.0605, -0.5936, -0.229, -0.9895, -0.5311, -0.3248, -1.0253, -0.7436, -0.2001, -1.1406, -0.6561, -0.1406, -1.0605, -0.5936, -0.229, -1.1084, -0.8061, -0.1084, -1.229, -0.7186, -0.0605, -1.1406, -0.6561, -0.1406, -1.2001, -0.8686, -0.0253, -1.3248, -0.7811, 0.0105, -1.229, -0.7186, -0.0605, -1.2995, -0.9311, 0.0484, -1.4271, -0.8436, 0.0719, -1.3248, -0.7811, 0.0105, -1.4056, -0.9936, 0.112, -1.5349, -0.9061, 0.1229, -1.4271, -0.8436, 0.0719, -1.5175, -1.0561, 0.1649, -1.6472, -0.9686, 0.163, -1.5349, -0.9061, 0.1229, -1.634, -1.1186, 0.2066, -1.7629, -1.0311, 0.192, -1.6472, -0.9686, 0.163, -1.754, -1.1811, 0.2367, -1.8809, -1.0936, 0.2095, -1.7629, -1.0311, 0.192, -1.8764, -1.2436, 0.2548, -2, -1.1561, 0.2154, -1.8809, -1.0936, 0.2095, -0.7846, -0.1561, -1, -0.8058, -0.0625, -0.8824, -0.8, 0, -1, -0.7905, -0.2186, -0.8809, -0.8231, -0.125, -0.7659, -0.8058, -0.0625, -0.8824, -0.808, -0.2811, -0.7629, -0.8517, -0.1875, -0.6517, -0.8231, -0.125, -0.7659, -0.837, -0.3436, -0.6472, -0.8913, -0.25, -0.5408, -0.8517, -0.1875, -0.6517, -0.8771, -0.4061, -0.5349, -0.9417, -0.3125, -0.4343, -0.8913, -0.25, -0.5408, -0.9281, -0.4686, -0.4271, -1.0022, -0.375, -0.3333, -0.9417, -0.3125, -0.4343, -0.9895, -0.5311, -0.3248, -1.0724, -0.4375, -0.2387, -1.0022, -0.375, -0.3333, -1.0605, -0.5936, -0.229, -1.1515, -0.5, -0.1515, -1.0724, -0.4375, -0.2387, -1.1406, -0.6561, -0.1406, -1.2387, -0.5625, -0.0724, -1.1515, -0.5, -0.1515, -1.229, -0.7186, -0.0605, -1.3333, -0.625, -0.0022, -1.2387, -0.5625, -0.0724, -1.3248, -0.7811, 0.0105, -1.4343, -0.6875, 0.0583, -1.3333, -0.625, -0.0022, -1.4271, -0.8436, 0.0719, -1.5408, -0.75, 0.1087, -1.4343, -0.6875, 0.0583, -1.5349, -0.9061, 0.1229, -1.6517, -0.8125, 0.1483, -1.5408, -0.75, 0.1087, -1.6472, -0.9686, 0.163, -1.7659, -0.875, 0.1769, -1.6517, -0.8125, 0.1483, -1.7629, -1.0311, 0.192, -1.8824, -0.9375, 0.1942, -1.7659, -0.875, 0.1769, -1.8809, -1.0936, 0.2095, -2, -1, 0.2, -1.8824, -0.9375, 0.1942, 0.5433, 0.769, -0.7495, 0.4445, 0.6652, -1, 0.5556, 0.8315, -1, 0.5065, 0.7065, -0.5014, 0.4327, 0.6027, -0.7604, 0.5433, 0.769, -0.7495, 0.4455, 0.644, -0.2582, 0.3975, 0.5402, -0.5231, 0.5065, 0.7065, -0.5014, 0.361, 0.5815, -0.022, 0.3392, 0.4777, -0.2904, 0.4455, 0.644, -0.2582, 0.2538, 0.519, 0.2047, 0.2584, 0.4152, -0.0645, 0.361, 0.5815, -0.022, 0.1249, 0.4565, 0.4198, 0.1558, 0.3527, 0.1523, 0.2538, 0.519, 0.2047, -0.0245, 0.394, 0.6212, 0.0325, 0.2902, 0.3581, 0.1249, 0.4565, 0.4198, -0.1929, 0.3315, 0.8071, -0.1104, 0.2277, 0.5507, -0.0245, 0.394, 0.6212, -0.3788, 0.269, 0.9755, -0.2715, 0.1652, 0.7285, -0.1929, 0.3315, 0.8071, -0.5802, 0.2065, 1.1249, -0.4493, 0.1027, 0.8896, -0.3788, 0.269, 0.9755, -0.7953, 0.144, 1.2538, -0.6419, 0.0402, 1.0325, -0.5802, 0.2065, 1.1249, -1.022, 0.0815, 1.361, -0.8477, -0.0223, 1.1558, -0.7953, 0.144, 1.2538, -1.2582, 0.019, 1.4455, -1.0645, -0.0848, 1.2584, -1.022, 0.0815, 1.361, -1.5014, -0.0435, 1.5065, -1.2904, -0.1473, 1.3392, -1.2582, 0.019, 1.4455, -1.7495, -0.106, 1.5433, -1.5231, -0.2098, 1.3975, -1.5014, -0.0435, 1.5065, -2, -0.1685, 1.5556, -1.7604, -0.2723, 1.4327, -1.7495, -0.106, 1.5433, -1.0048, -0.0625, -0.902, -0.8, 0, -1, -0.8058, -0.0625, -0.8824, -1.0192, -0.125, -0.8049, -0.8058, -0.0625, -0.8824, -0.8231, -0.125, -0.7659, -1.0431, -0.1875, -0.7097, -0.8231, -0.125, -0.7659, -0.8517, -0.1875, -0.6517, -1.0761, -0.25, -0.6173, -0.8517, -0.1875, -0.6517, -0.8913, -0.25, -0.5408, -1.1181, -0.3125, -0.5286, -0.8913, -0.25, -0.5408, -0.9417, -0.3125, -0.4343, -1.1685, -0.375, -0.4444, -0.9417, -0.3125, -0.4343, -1.0022, -0.375, -0.3333, -1.227, -0.4375, -0.3656, -1.0022, -0.375, -0.3333, -1.0724, -0.4375, -0.2387, -1.1515, -0.5, -0.1515, -1.227, -0.4375, -0.3656, -1.0724, -0.4375, -0.2387, -1.2387, -0.5625, -0.0724, -1.2929, -0.5, -0.2929, -1.1515, -0.5, -0.1515, -1.4444, -0.625, -0.1685, -1.2387, -0.5625, -0.0724, -1.3333, -0.625, -0.0022, -1.5286, -0.6875, -0.1181, -1.3333, -0.625, -0.0022, -1.4343, -0.6875, 0.0583, -1.5408, -0.75, 0.1087, -1.5286, -0.6875, -0.1181, -1.4343, -0.6875, 0.0583, -1.6517, -0.8125, 0.1483, -1.6173, -0.75, -0.0761, -1.5408, -0.75, 0.1087, -1.8049, -0.875, -0.0192, -1.6517, -0.8125, 0.1483, -1.7659, -0.875, 0.1769, -1.8824, -0.9375, 0.1942, -1.8049, -0.875, -0.0192, -1.7659, -0.875, 0.1769, -2, -1, 0.2, -1.902, -0.9375, -0.0048, -1.8824, -0.9375, 0.1942, 0.3061, -0.7391, -1, 0.3827, -0.9239, -1, 0.4445, -0.6652, -1, -2, -1.8315, 1.5556, -2, -1.6652, 1.4445, -2, -1.7071, 1.7071, 0.5556, 0.8315, -1, 0.7071, 0.7071, -1, 0.5433, 0.769, -0.7495, 0.5433, 0.769, -0.7495, 0.6941, 0.6446, -0.7347, 0.5065, 0.7065, -0.5014, 0.5065, 0.7065, -0.5014, 0.6551, 0.5821, -0.4719, 0.4455, 0.644, -0.2582, 0.4455, 0.644, -0.2582, 0.5905, 0.5196, -0.2142, 0.361, 0.5815, -0.022, 0.361, 0.5815, -0.022, 0.501, 0.4571, 0.036, 0.2538, 0.519, 0.2047, 0.2538, 0.519, 0.2047, 0.3875, 0.3946, 0.2761, 0.1249, 0.4565, 0.4198, 0.1249, 0.4565, 0.4198, 0.2509, 0.3321, 0.504, -0.0245, 0.394, 0.6212, -0.0245, 0.394, 0.6212, 0.0926, 0.2696, 0.7174, -0.1929, 0.3315, 0.8071, -0.1929, 0.3315, 0.8071, -0.0858, 0.2071, 0.9142, -0.3788, 0.269, 0.9755, -0.3788, 0.269, 0.9755, -0.2826, 0.1446, 1.0926, -0.5802, 0.2065, 1.1249, -0.5802, 0.2065, 1.1249, -0.496, 0.0821, 1.2509, -0.7953, 0.144, 1.2538, -0.7953, 0.144, 1.2538, -0.7239, 0.0196, 1.3875, -1.022, 0.0815, 1.361, -1.022, 0.0815, 1.361, -0.964, -0.0429, 1.501, -1.2582, 0.019, 1.4455, -1.2582, 0.019, 1.4455, -1.2142, -0.1054, 1.5905, -1.5014, -0.0435, 1.5065, -1.5014, -0.0435, 1.5065, -1.4719, -0.1679, 1.6551, -1.7495, -0.106, 1.5433, -1.7495, -0.106, 1.5433, -1.7347, -0.2304, 1.6941, -2, -0.1685, 1.5556, 0.7071, 0.7071, -1, 0.8315, 0.5556, -1, 0.6941, 0.6446, -0.7347, 0.6941, 0.6446, -0.7347, 0.8178, 0.4931, -0.7225, 0.6551, 0.5821, -0.4719, 0.6551, 0.5821, -0.4719, 0.7771, 0.4306, -0.4476, 0.5905, 0.5196, -0.2142, 0.5905, 0.5196, -0.2142, 0.7095, 0.3681, -0.1781, 0.501, 0.4571, 0.036, 0.501, 0.4571, 0.036, 0.6159, 0.3056, 0.0836, 0.3875, 0.3946, 0.2761, 0.3875, 0.3946, 0.2761, 0.4971, 0.2431, 0.3347, 0.2509, 0.3321, 0.504, 0.2509, 0.3321, 0.504, 0.3543, 0.1806, 0.5731, 0.0926, 0.2696, 0.7174, 0.0926, 0.2696, 0.7174, 0.1888, 0.1181, 0.7963, -0.0858, 0.2071, 0.9142, -0.0858, 0.2071, 0.9142, 0.0022, 0.0556, 1.0022, -0.2826, 0.1446, 1.0926, -0.2826, 0.1446, 1.0926, -0.2037, -0.0069, 1.1888, -0.496, 0.0821, 1.2509, -0.496, 0.0821, 1.2509, -0.4269, -0.0694, 1.3543, -0.7239, 0.0196, 1.3875, -0.7239, 0.0196, 1.3875, -0.6653, -0.1319, 1.4971, -0.964, -0.0429, 1.501, -0.964, -0.0429, 1.501, -0.9164, -0.1944, 1.6159, -1.2142, -0.1054, 1.5905, -1.2142, -0.1054, 1.5905, -1.1781, -0.2569, 1.7095, -1.4719, -0.1679, 1.6551, -1.4719, -0.1679, 1.6551, -1.4476, -0.3194, 1.7771, -1.7347, -0.2304, 1.6941, -1.7347, -0.2304, 1.6941, -1.7225, -0.3819, 1.8178, -2, -0.2929, 1.7071, 0.8315, 0.5556, -1, 0.9239, 0.3827, -1, 0.8178, 0.4931, -0.7225, 0.8178, 0.4931, -0.7225, 0.9098, 0.3202, -0.7134, 0.7771, 0.4306, -0.4476, 0.7771, 0.4306, -0.4476, 0.8677, 0.2577, -0.4296, 0.7095, 0.3681, -0.1781, 0.7095, 0.3681, -0.1781, 0.798, 0.1952, -0.1512, 0.6159, 0.3056, 0.0836, 0.6159, 0.3056, 0.0836, 0.7013, 0.1327, 0.1189, 0.4971, 0.2431, 0.3347, 0.4971, 0.2431, 0.3347, 0.5786, 0.0702, 0.3783, 0.3543, 0.1806, 0.5731, 0.3543, 0.1806, 0.5731, 0.4311, 0.0077, 0.6244, 0.1888, 0.1181, 0.7963, 0.1888, 0.1181, 0.7963, 0.2602, -0.0548, 0.8549, 0.0022, 0.0556, 1.0022, 0.0022, 0.0556, 1.0022, 0.0675, -0.1173, 1.0675, -0.2037, -0.0069, 1.1888, -0.2037, -0.0069, 1.1888, -0.1451, -0.1798, 1.2602, -0.4269, -0.0694, 1.3543, -0.4269, -0.0694, 1.3543, -0.3756, -0.2423, 1.4311, -0.6653, -0.1319, 1.4971, -0.6653, -0.1319, 1.4971, -0.6217, -0.3048, 1.5786, -0.9164, -0.1944, 1.6159, -0.9164, -0.1944, 1.6159, -0.8811, -0.3673, 1.7013, -1.1781, -0.2569, 1.7095, -1.1781, -0.2569, 1.7095, -1.1512, -0.4298, 1.798, -1.4476, -0.3194, 1.7771, -1.4476, -0.3194, 1.7771, -1.4296, -0.4923, 1.8677, -1.7225, -0.3819, 1.8178, -1.7225, -0.3819, 1.8178, -1.7134, -0.5548, 1.9098, -2, -0.4444, 1.8315, 0.9239, 0.3827, -1, 0.9808, 0.1951, -1, 0.9098, 0.3202, -0.7134, 0.9098, 0.3202, -0.7134, 0.9664, 0.1326, -0.7078, 0.8677, 0.2577, -0.4296, 0.8677, 0.2577, -0.4296, 0.9235, 0.0701, -0.4185, 0.798, 0.1952, -0.1512, 0.798, 0.1952, -0.1512, 0.8524, 0.0076, -0.1347, 0.7013, 0.1327, 0.1189, 0.7013, 0.1327, 0.1189, 0.7539, -0.0549, 0.1407, 0.5786, 0.0702, 0.3783, 0.5786, 0.0702, 0.3783, 0.6288, -0.1174, 0.4051, 0.4311, 0.0077, 0.6244, 0.4311, 0.0077, 0.6244, 0.4784, -0.1799, 0.656, 0.2602, -0.0548, 0.8549, 0.2602, -0.0548, 0.8549, 0.3042, -0.2424, 0.891, 0.0675, -0.1173, 1.0675, 0.0675, -0.1173, 1.0675, 0.1077, -0.3049, 1.1077, -0.1451, -0.1798, 1.2602, -0.1451, -0.1798, 1.2602, -0.109, -0.3674, 1.3042, -0.3756, -0.2423, 1.4311, -0.3756, -0.2423, 1.4311, -0.344, -0.4299, 1.4784, -0.6217, -0.3048, 1.5786, -0.6217, -0.3048, 1.5786, -0.5949, -0.4924, 1.6288, -0.8811, -0.3673, 1.7013, -0.8811, -0.3673, 1.7013, -0.8593, -0.5549, 1.7539, -1.1512, -0.4298, 1.798, -1.1512, -0.4298, 1.798, -1.1347, -0.6174, 1.8524, -1.4296, -0.4923, 1.8677, -1.4296, -0.4923, 1.8677, -1.4185, -0.6799, 1.9235, -1.7134, -0.5548, 1.9098, -1.7134, -0.5548, 1.9098, -1.7078, -0.7424, 1.9664, -2, -0.6173, 1.9239, 0.9808, 0.1951, -1, 1, 0, -1, 0.9664, 0.1326, -0.7078, 0.9664, 0.1326, -0.7078, 0.9856, -0.0625, -0.7059, 0.9235, 0.0701, -0.4185, 0.9235, 0.0701, -0.4185, 0.9424, -0.125, -0.4147, 0.8524, 0.0076, -0.1347, 0.8524, 0.0076, -0.1347, 0.8708, -0.1875, -0.1291, 0.7539, -0.0549, 0.1407, 0.7539, -0.0549, 0.1407, 0.7716, -0.25, 0.148, 0.6288, -0.1174, 0.4051, 0.6288, -0.1174, 0.4051, 0.6458, -0.3125, 0.4142, 0.4784, -0.1799, 0.656, 0.4784, -0.1799, 0.656, 0.4944, -0.375, 0.6667, 0.3042, -0.2424, 0.891, 0.3042, -0.2424, 0.891, 0.319, -0.4375, 0.9032, 0.1077, -0.3049, 1.1077, 0.1077, -0.3049, 1.1077, 0.1213, -0.5, 1.1213, -0.109, -0.3674, 1.3042, -0.109, -0.3674, 1.3042, -0.0968, -0.5625, 1.319, -0.344, -0.4299, 1.4784, -0.344, -0.4299, 1.4784, -0.3333, -0.625, 1.4944, -0.5949, -0.4924, 1.6288, -0.5949, -0.4924, 1.6288, -0.5858, -0.6875, 1.6458, -0.8593, -0.5549, 1.7539, -0.8593, -0.5549, 1.7539, -0.852, -0.75, 1.7716, -1.1347, -0.6174, 1.8524, -1.1347, -0.6174, 1.8524, -1.1291, -0.8125, 1.8708, -1.4185, -0.6799, 1.9235, -1.4185, -0.6799, 1.9235, -1.4147, -0.875, 1.9424, -1.7078, -0.7424, 1.9664, -1.7078, -0.7424, 1.9664, -1.7059, -0.9375, 1.9856, -2, -0.8049, 1.9808, 1, 0, -1, 0.9808, -0.1951, -1, 0.9856, -0.0625, -0.7059, 0.9856, -0.0625, -0.7059, 0.9664, -0.2576, -0.7078, 0.9424, -0.125, -0.4147, 0.9424, -0.125, -0.4147, 0.9235, -0.3201, -0.4185, 0.8708, -0.1875, -0.1291, 0.8708, -0.1875, -0.1291, 0.8524, -0.3826, -0.1347, 0.7716, -0.25, 0.148, 0.7716, -0.25, 0.148, 0.7539, -0.4451, 0.1407, 0.6458, -0.3125, 0.4142, 0.6458, -0.3125, 0.4142, 0.6288, -0.5076, 0.4051, 0.4944, -0.375, 0.6667, 0.4944, -0.375, 0.6667, 0.4784, -0.5701, 0.656, 0.319, -0.4375, 0.9032, 0.319, -0.4375, 0.9032, 0.3042, -0.6326, 0.891, 0.1213, -0.5, 1.1213, 0.1213, -0.5, 1.1213, 0.1077, -0.6951, 1.1077, -0.0968, -0.5625, 1.319, -0.0968, -0.5625, 1.319, -0.109, -0.7576, 1.3042, -0.3333, -0.625, 1.4944, -0.3333, -0.625, 1.4944, -0.344, -0.8201, 1.4784, -0.5858, -0.6875, 1.6458, -0.5858, -0.6875, 1.6458, -0.5949, -0.8826, 1.6288, -0.852, -0.75, 1.7716, -0.852, -0.75, 1.7716, -0.8593, -0.9451, 1.7539, -1.1291, -0.8125, 1.8708, -1.1291, -0.8125, 1.8708, -1.1347, -1.0076, 1.8524, -1.4147, -0.875, 1.9424, -1.4147, -0.875, 1.9424, -1.4185, -1.0701, 1.9235, -1.7059, -0.9375, 1.9856, -1.7059, -0.9375, 1.9856, -1.7078, -1.1326, 1.9664, -2, -1, 2, 0.9808, -0.1951, -1, 0.9239, -0.3827, -1, 0.9664, -0.2576, -0.7078, 0.9664, -0.2576, -0.7078, 0.9098, -0.4452, -0.7134, 0.9235, -0.3201, -0.4185, 0.9235, -0.3201, -0.4185, 0.8677, -0.5077, -0.4296, 0.8524, -0.3826, -0.1347, 0.8524, -0.3826, -0.1347, 0.798, -0.5702, -0.1512, 0.7539, -0.4451, 0.1407, 0.7539, -0.4451, 0.1407, 0.7013, -0.6327, 0.1189, 0.6288, -0.5076, 0.4051, 0.6288, -0.5076, 0.4051, 0.5786, -0.6952, 0.3783, 0.4784, -0.5701, 0.656, 0.4784, -0.5701, 0.656, 0.4311, -0.7577, 0.6244, 0.3042, -0.6326, 0.891, 0.3042, -0.6326, 0.891, 0.2602, -0.8202, 0.8549, 0.1077, -0.6951, 1.1077, 0.1077, -0.6951, 1.1077, 0.0675, -0.8827, 1.0675, -0.109, -0.7576, 1.3042, -0.109, -0.7576, 1.3042, -0.1451, -0.9452, 1.2602, -0.344, -0.8201, 1.4784, -0.344, -0.8201, 1.4784, -0.3756, -1.0077, 1.4311, -0.5949, -0.8826, 1.6288, -0.5949, -0.8826, 1.6288, -0.6217, -1.0702, 1.5786, -0.8593, -0.9451, 1.7539, -0.8593, -0.9451, 1.7539, -0.8811, -1.1327, 1.7013, -1.1347, -1.0076, 1.8524, -1.1347, -1.0076, 1.8524, -1.1512, -1.1952, 1.798, -1.4185, -1.0701, 1.9235, -1.4185, -1.0701, 1.9235, -1.4296, -1.2577, 1.8677, -1.7078, -1.1326, 1.9664, -1.7078, -1.1326, 1.9664, -1.7134, -1.3202, 1.9098, -2, -1.1951, 1.9808, 0.9239, -0.3827, -1, 0.8315, -0.5556, -1, 0.9098, -0.4452, -0.7134, 0.9098, -0.4452, -0.7134, 0.8178, -0.6181, -0.7225, 0.8677, -0.5077, -0.4296, 0.8677, -0.5077, -0.4296, 0.7771, -0.6806, -0.4476, 0.798, -0.5702, -0.1512, 0.798, -0.5702, -0.1512, 0.7095, -0.7431, -0.1781, 0.7013, -0.6327, 0.1189, 0.7013, -0.6327, 0.1189, 0.6159, -0.8056, 0.0836, 0.5786, -0.6952, 0.3783, 0.5786, -0.6952, 0.3783, 0.4971, -0.8681, 0.3347, 0.4311, -0.7577, 0.6244, 0.4311, -0.7577, 0.6244, 0.3543, -0.9306, 0.5731, 0.2602, -0.8202, 0.8549, 0.2602, -0.8202, 0.8549, 0.1888, -0.9931, 0.7963, 0.0675, -0.8827, 1.0675, 0.0675, -0.8827, 1.0675, 0.0022, -1.0556, 1.0022, -0.1451, -0.9452, 1.2602, -0.1451, -0.9452, 1.2602, -0.2037, -1.1181, 1.1888, -0.3756, -1.0077, 1.4311, -0.3756, -1.0077, 1.4311, -0.4269, -1.1806, 1.3543, -0.6217, -1.0702, 1.5786, -0.6217, -1.0702, 1.5786, -0.6653, -1.2431, 1.4971, -0.8811, -1.1327, 1.7013, -0.8811, -1.1327, 1.7013, -0.9164, -1.3056, 1.6159, -1.1512, -1.1952, 1.798, -1.1512, -1.1952, 1.798, -1.1781, -1.3681, 1.7095, -1.4296, -1.2577, 1.8677, -1.4296, -1.2577, 1.8677, -1.4476, -1.4306, 1.7771, -1.7134, -1.3202, 1.9098, -1.7134, -1.3202, 1.9098, -1.7225, -1.4931, 1.8178, -2, -1.3827, 1.9239, 0.8315, -0.5556, -1, 0.7071, -0.7071, -1, 0.8178, -0.6181, -0.7225, 0.8178, -0.6181, -0.7225, 0.6941, -0.7696, -0.7347, 0.7771, -0.6806, -0.4476, 0.7771, -0.6806, -0.4476, 0.6551, -0.8321, -0.4719, 0.7095, -0.7431, -0.1781, 0.7095, -0.7431, -0.1781, 0.5905, -0.8946, -0.2142, 0.6159, -0.8056, 0.0836, 0.6159, -0.8056, 0.0836, 0.501, -0.9571, 0.036, 0.4971, -0.8681, 0.3347, 0.4971, -0.8681, 0.3347, 0.3875, -1.0196, 0.2761, 0.3543, -0.9306, 0.5731, 0.3543, -0.9306, 0.5731, 0.2509, -1.0821, 0.504, 0.1888, -0.9931, 0.7963, 0.1888, -0.9931, 0.7963, 0.0926, -1.1446, 0.7174, 0.0022, -1.0556, 1.0022, 0.0022, -1.0556, 1.0022, -0.0858, -1.2071, 0.9142, -0.2037, -1.1181, 1.1888, -0.2037, -1.1181, 1.1888, -0.2826, -1.2696, 1.0926, -0.4269, -1.1806, 1.3543, -0.4269, -1.1806, 1.3543, -0.496, -1.3321, 1.2509, -0.6653, -1.2431, 1.4971, -0.6653, -1.2431, 1.4971, -0.7239, -1.3946, 1.3875, -0.9164, -1.3056, 1.6159, -0.9164, -1.3056, 1.6159, -0.964, -1.4571, 1.501, -1.1781, -1.3681, 1.7095, -1.1781, -1.3681, 1.7095, -1.2142, -1.5196, 1.5905, -1.4476, -1.4306, 1.7771, -1.4476, -1.4306, 1.7771, -1.4719, -1.5821, 1.6551, -1.7225, -1.4931, 1.8178, -1.7225, -1.4931, 1.8178, -1.7347, -1.6446, 1.6941, -2, -1.5556, 1.8315, 0.7071, -0.7071, -1, 0.5556, -0.8315, -1, 0.6941, -0.7696, -0.7347, 0.6941, -0.7696, -0.7347, 0.5433, -0.894, -0.7495, 0.6551, -0.8321, -0.4719, 0.6551, -0.8321, -0.4719, 0.5065, -0.9565, -0.5014, 0.5905, -0.8946, -0.2142, 0.5905, -0.8946, -0.2142, 0.4455, -1.019, -0.2582, 0.501, -0.9571, 0.036, 0.501, -0.9571, 0.036, 0.361, -1.0815, -0.022, 0.3875, -1.0196, 0.2761, 0.3875, -1.0196, 0.2761, 0.2538, -1.144, 0.2047, 0.2509, -1.0821, 0.504, 0.2509, -1.0821, 0.504, 0.1249, -1.2065, 0.4198, 0.0926, -1.1446, 0.7174, 0.0926, -1.1446, 0.7174, -0.0245, -1.269, 0.6212, -0.0858, -1.2071, 0.9142, -0.0858, -1.2071, 0.9142, -0.1929, -1.3315, 0.8071, -0.2826, -1.2696, 1.0926, -0.2826, -1.2696, 1.0926, -0.3788, -1.394, 0.9755, -0.496, -1.3321, 1.2509, -0.496, -1.3321, 1.2509, -0.5802, -1.4565, 1.1249, -0.7239, -1.3946, 1.3875, -0.7239, -1.3946, 1.3875, -0.7953, -1.519, 1.2538, -0.964, -1.4571, 1.501, -0.964, -1.4571, 1.501, -1.022, -1.5815, 1.361, -1.2142, -1.5196, 1.5905, -1.2142, -1.5196, 1.5905, -1.2582, -1.644, 1.4455, -1.4719, -1.5821, 1.6551, -1.4719, -1.5821, 1.6551, -1.5014, -1.7065, 1.5065, -1.7347, -1.6446, 1.6941, -1.7347, -1.6446, 1.6941, -1.7495, -1.769, 1.5433, -2, -1.7071, 1.7071, 0.5556, -0.8315, -1, 0.3827, -0.9239, -1, 0.5433, -0.894, -0.7495, 0.5433, -0.894, -0.7495, 0.3712, -0.9864, -0.7665, 0.5065, -0.9565, -0.5014, 0.5065, -0.9565, -0.5014, 0.3369, -1.0489, -0.5352, 0.4455, -1.019, -0.2582, 0.4455, -1.019, -0.2582, 0.2801, -1.1114, -0.3083, 0.361, -1.0815, -0.022, 0.361, -1.0815, -0.022, 0.2013, -1.1739, -0.0882, 0.2538, -1.144, 0.2047, 0.2538, -1.144, 0.2047, 0.1013, -1.2364, 0.1232, 0.1249, -1.2065, 0.4198, 0.1249, -1.2065, 0.4198, -0.0189, -1.2989, 0.3237, -0.0245, -1.269, 0.6212, -0.0245, -1.269, 0.6212, -0.1582, -1.3614, 0.5116, -0.1929, -1.3315, 0.8071, -0.1929, -1.3315, 0.8071, -0.3152, -1.4239, 0.6848, -0.3788, -1.394, 0.9755, -0.3788, -1.394, 0.9755, -0.4884, -1.4864, 0.8418, -0.5802, -1.4565, 1.1249, -0.5802, -1.4565, 1.1249, -0.6763, -1.5489, 0.9811, -0.7953, -1.519, 1.2538, -0.7953, -1.519, 1.2538, -0.8768, -1.6114, 1.1013, -1.022, -1.5815, 1.361, -1.022, -1.5815, 1.361, -1.0882, -1.6739, 1.2013, -1.2582, -1.644, 1.4455, -1.2582, -1.644, 1.4455, -1.3083, -1.7364, 1.2801, -1.5014, -1.7065, 1.5065, -1.5014, -1.7065, 1.5065, -1.5352, -1.7989, 1.3369, -1.7495, -1.769, 1.5433, -1.7495, -1.769, 1.5433, -1.7665, -1.8614, 1.3712, -2, -1.8315, 1.5556, 0.3827, -0.9239, -1, 0.1951, -0.9808, -1, 0.3712, -0.9864, -0.7665, 0.3712, -0.9864, -0.7665, 0.1845, -1.0433, -0.7848, 0.3369, -1.0489, -0.5352, 0.3369, -1.0489, -0.5352, 0.1529, -1.1058, -0.5718, 0.2801, -1.1114, -0.3083, 0.2801, -1.1114, -0.3083, 0.1006, -1.1683, -0.3628, 0.2013, -1.1739, -0.0882, 0.2013, -1.1739, -0.0882, 0.028, -1.2308, -0.16, 0.1013, -1.2364, 0.1232, 0.1013, -1.2364, 0.1232, -0.0641, -1.2933, 0.0348, -0.0189, -1.2989, 0.3237, -0.0189, -1.2989, 0.3237, -0.1748, -1.3558, 0.2195, -0.1582, -1.3614, 0.5116, -0.1582, -1.3614, 0.5116, -0.3032, -1.4183, 0.3926, -0.3152, -1.4239, 0.6848, -0.3152, -1.4239, 0.6848, -0.4478, -1.4808, 0.5522, -0.4884, -1.4864, 0.8418, -0.4884, -1.4864, 0.8418, -0.6075, -1.5433, 0.6968, -0.6763, -1.5489, 0.9811, -0.6763, -1.5489, 0.9811, -0.7805, -1.6058, 0.8252, -0.8768, -1.6114, 1.1013, -0.8768, -1.6114, 1.1013, -0.9652, -1.6683, 0.9359, -1.0882, -1.6739, 1.2013, -1.0882, -1.6739, 1.2013, -1.16, -1.7308, 1.028, -1.3083, -1.7364, 1.2801, -1.3083, -1.7364, 1.2801, -1.3628, -1.7933, 1.1006, -1.5352, -1.7989, 1.3369, -1.5352, -1.7989, 1.3369, -1.5718, -1.8558, 1.1529, -1.7665, -1.8614, 1.3712, -1.7665, -1.8614, 1.3712, -1.7848, -1.9183, 1.1845, -2, -1.9239, 1.3827, 0.1951, -0.9808, -1, 0, -1, -1, 0.1845, -1.0433, -0.7848, 0.1845, -1.0433, -0.7848, -0.0096, -1.0625, -0.804, 0.1529, -1.1058, -0.5718, 0.1529, -1.1058, -0.5718, -0.0384, -1.125, -0.6098, 0.1006, -1.1683, -0.3628, 0.1006, -1.1683, -0.3628, -0.0861, -1.1875, -0.4194, 0.028, -1.2308, -0.16, 0.028, -1.2308, -0.16, -0.1522, -1.25, -0.2346, -0.0641, -1.2933, 0.0348, -0.0641, -1.2933, 0.0348, -0.2362, -1.3125, -0.0572, -0.1748, -1.3558, 0.2195, -0.1748, -1.3558, 0.2195, -0.3371, -1.375, 0.1111, -0.3032, -1.4183, 0.3926, -0.3032, -1.4183, 0.3926, -0.454, -1.4375, 0.2688, -0.4478, -1.4808, 0.5522, -0.4478, -1.4808, 0.5522, -0.5858, -1.5, 0.4142, -0.6075, -1.5433, 0.6968, -0.6075, -1.5433, 0.6968, -0.7312, -1.5625, 0.546, -0.7805, -1.6058, 0.8252, -0.7805, -1.6058, 0.8252, -0.8889, -1.625, 0.6629, -0.9652, -1.6683, 0.9359, -0.9652, -1.6683, 0.9359, -1.0572, -1.6875, 0.7638, -1.16, -1.7308, 1.028, -1.16, -1.7308, 1.028, -1.2346, -1.75, 0.8478, -1.3628, -1.7933, 1.1006, -1.3628, -1.7933, 1.1006, -1.4194, -1.8125, 0.9139, -1.5718, -1.8558, 1.1529, -1.5718, -1.8558, 1.1529, -1.6098, -1.875, 0.9616, -1.7848, -1.9183, 1.1845, -1.7848, -1.9183, 1.1845, -1.804, -1.9375, 0.9904, -2, -1.9808, 1.1951, -0.0096, -1.0625, -0.804, 0, -1, -1, -0.2038, -1.0433, -0.8231, -0.0384, -1.125, -0.6098, -0.0096, -1.0625, -0.804, -0.2298, -1.1058, -0.6479, -0.0861, -1.1875, -0.4194, -0.0384, -1.125, -0.6098, -0.2728, -1.1683, -0.4761, -0.1522, -1.25, -0.2346, -0.0861, -1.1875, -0.4194, -0.3325, -1.2308, -0.3093, -0.2362, -1.3125, -0.0572, -0.1522, -1.25, -0.2346, -0.4082, -1.2933, -0.1492, -0.3371, -1.375, 0.1111, -0.2362, -1.3125, -0.0572, -0.4993, -1.3558, 0.0028, -0.454, -1.4375, 0.2688, -0.3371, -1.375, 0.1111, -0.6048, -1.4183, 0.145, -0.5858, -1.5, 0.4142, -0.454, -1.4375, 0.2688, -0.7237, -1.4808, 0.2763, -0.7312, -1.5625, 0.546, -0.5858, -1.5, 0.4142, -0.855, -1.5433, 0.3952, -0.8889, -1.625, 0.6629, -0.7312, -1.5625, 0.546, -0.9972, -1.6058, 0.5007, -1.0572, -1.6875, 0.7638, -0.8889, -1.625, 0.6629, -1.1492, -1.6683, 0.5918, -1.2346, -1.75, 0.8478, -1.0572, -1.6875, 0.7638, -1.3093, -1.7308, 0.6675, -1.4194, -1.8125, 0.9139, -1.2346, -1.75, 0.8478, -1.4761, -1.7933, 0.7272, -1.6098, -1.875, 0.9616, -1.4194, -1.8125, 0.9139, -1.6479, -1.8558, 0.7702, -1.804, -1.9375, 0.9904, -1.6098, -1.875, 0.9616, -1.8231, -1.9183, 0.7962, -2, -2, 1, -1.804, -1.9375, 0.9904, -2, -1.9808, 0.8049, -0.2038, -1.0433, -0.8231, -0.1951, -0.9808, -1, -0.3905, -0.9864, -0.8415, -0.2298, -1.1058, -0.6479, -0.2038, -1.0433, -0.8231, -0.4138, -1.0489, -0.6845, -0.2728, -1.1683, -0.4761, -0.2298, -1.1058, -0.6479, -0.4523, -1.1114, -0.5305, -0.3325, -1.2308, -0.3093, -0.2728, -1.1683, -0.4761, -0.5058, -1.1739, -0.3811, -0.4082, -1.2933, -0.1492, -0.3325, -1.2308, -0.3093, -0.5737, -1.2364, -0.2376, -0.4993, -1.3558, 0.0028, -0.4082, -1.2933, -0.1492, -0.6553, -1.2989, -0.1015, -0.6048, -1.4183, 0.145, -0.4993, -1.3558, 0.0028, -0.7498, -1.3614, 0.026, -0.7237, -1.4808, 0.2763, -0.6048, -1.4183, 0.145, -0.8564, -1.4239, 0.1436, -0.855, -1.5433, 0.3952, -0.7237, -1.4808, 0.2763, -0.974, -1.4864, 0.2502, -0.9972, -1.6058, 0.5007, -0.855, -1.5433, 0.3952, -1.1015, -1.5489, 0.3447, -1.1492, -1.6683, 0.5918, -0.9972, -1.6058, 0.5007, -1.2376, -1.6114, 0.4263, -1.3093, -1.7308, 0.6675, -1.1492, -1.6683, 0.5918, -1.3811, -1.6739, 0.4942, -1.4761, -1.7933, 0.7272, -1.3093, -1.7308, 0.6675, -1.5305, -1.7364, 0.5477, -1.6479, -1.8558, 0.7702, -1.4761, -1.7933, 0.7272, -1.6845, -1.7989, 0.5862, -1.8231, -1.9183, 0.7962, -1.6479, -1.8558, 0.7702, -1.8415, -1.8614, 0.6095, -2, -1.9808, 0.8049, -1.8231, -1.9183, 0.7962, -2, -1.9239, 0.6173, -0.3905, -0.9864, -0.8415, -0.3827, -0.9239, -1, -0.5625, -0.894, -0.8584, -0.4138, -1.0489, -0.6845, -0.3905, -0.9864, -0.8415, -0.5833, -0.9565, -0.7182, -0.4523, -1.1114, -0.5305, -0.4138, -1.0489, -0.6845, -0.6178, -1.019, -0.5807, -0.5058, -1.1739, -0.3811, -0.4523, -1.1114, -0.5305, -0.6655, -1.0815, -0.4472, -0.5737, -1.2364, -0.2376, -0.5058, -1.1739, -0.3811, -0.7261, -1.144, -0.3191, -0.6553, -1.2989, -0.1015, -0.5737, -1.2364, -0.2376, -0.799, -1.2065, -0.1975, -0.7498, -1.3614, 0.026, -0.6553, -1.2989, -0.1015, -0.8834, -1.269, -0.0837, -0.8564, -1.4239, 0.1436, -0.7498, -1.3614, 0.026, -0.9786, -1.3315, 0.0214, -0.974, -1.4864, 0.2502, -0.8564, -1.4239, 0.1436, -1.0837, -1.394, 0.1166, -1.1015, -1.5489, 0.3447, -0.974, -1.4864, 0.2502, -1.1975, -1.4565, 0.201, -1.2376, -1.6114, 0.4263, -1.1015, -1.5489, 0.3447, -1.3191, -1.519, 0.2739, -1.3811, -1.6739, 0.4942, -1.2376, -1.6114, 0.4263, -1.4472, -1.5815, 0.3345, -1.5305, -1.7364, 0.5477, -1.3811, -1.6739, 0.4942, -1.5807, -1.644, 0.3822, -1.6845, -1.7989, 0.5862, -1.5305, -1.7364, 0.5477, -1.7182, -1.7065, 0.4167, -1.8415, -1.8614, 0.6095, -1.6845, -1.7989, 0.5862, -1.8584, -1.769, 0.4375, -2, -1.9239, 0.6173, -1.8415, -1.8614, 0.6095, -2, -1.8315, 0.4444, -0.5625, -0.894, -0.8584, -0.5556, -0.8315, -1, -0.7133, -0.7696, -0.8733, -0.5833, -0.9565, -0.7182, -0.5625, -0.894, -0.8584, -0.732, -0.8321, -0.7478, -0.6178, -1.019, -0.5807, -0.5833, -0.9565, -0.7182, -0.7628, -0.8946, -0.6247, -0.6655, -1.0815, -0.4472, -0.6178, -1.019, -0.5807, -0.8055, -0.9571, -0.5052, -0.7261, -1.144, -0.3191, -0.6655, -1.0815, -0.4472, -0.8598, -1.0196, -0.3905, -0.799, -1.2065, -0.1975, -0.7261, -1.144, -0.3191, -0.925, -1.0821, -0.2817, -0.8834, -1.269, -0.0837, -0.799, -1.2065, -0.1975, -1.0006, -1.1446, -0.1798, -0.9786, -1.3315, 0.0214, -0.8834, -1.269, -0.0837, -1.0858, -1.2071, -0.0858, -1.0837, -1.394, 0.1166, -0.9786, -1.3315, 0.0214, -1.1798, -1.2696, -0.0006, -1.1975, -1.4565, 0.201, -1.0837, -1.394, 0.1166, -1.2817, -1.3321, 0.075, -1.3191, -1.519, 0.2739, -1.1975, -1.4565, 0.201, -1.3905, -1.3946, 0.1402, -1.4472, -1.5815, 0.3345, -1.3191, -1.519, 0.2739, -1.5052, -1.4571, 0.1945, -1.5807, -1.644, 0.3822, -1.4472, -1.5815, 0.3345, -1.6247, -1.5196, 0.2372, -1.7182, -1.7065, 0.4167, -1.5807, -1.644, 0.3822, -1.7478, -1.5821, 0.268, -1.8584, -1.769, 0.4375, -1.7182, -1.7065, 0.4167, -1.8733, -1.6446, 0.2867, -2, -1.8315, 0.4444, -1.8584, -1.769, 0.4375, -2, -1.7071, 0.2929, -0.7133, -0.7696, -0.8733, -0.7071, -0.7071, -1, -0.8371, -0.6181, -0.8855, -0.732, -0.8321, -0.7478, -0.7133, -0.7696, -0.8733, -0.8539, -0.6806, -0.772, -0.7628, -0.8946, -0.6247, -0.732, -0.8321, -0.7478, -0.8818, -0.7431, -0.6608, -0.8055, -0.9571, -0.5052, -0.7628, -0.8946, -0.6247, -0.9204, -0.8056, -0.5528, -0.8598, -1.0196, -0.3905, -0.8055, -0.9571, -0.5052, -0.9694, -0.8681, -0.4492, -0.925, -1.0821, -0.2817, -0.8598, -1.0196, -0.3905, -1.0284, -0.9306, -0.3508, -1.0006, -1.1446, -0.1798, -0.925, -1.0821, -0.2817, -1.0967, -0.9931, -0.2587, -1.0858, -1.2071, -0.0858, -1.0006, -1.1446, -0.1798, -1.1737, -1.0556, -0.1737, -1.1798, -1.2696, -0.0006, -1.0858, -1.2071, -0.0858, -1.2587, -1.1181, -0.0967, -1.2817, -1.3321, 0.075, -1.1798, -1.2696, -0.0006, -1.3508, -1.1806, -0.0284, -1.3905, -1.3946, 0.1402, -1.2817, -1.3321, 0.075, -1.4492, -1.2431, 0.0306, -1.5052, -1.4571, 0.1945, -1.3905, -1.3946, 0.1402, -1.5528, -1.3056, 0.0796, -1.6247, -1.5196, 0.2372, -1.5052, -1.4571, 0.1945, -1.6608, -1.3681, 0.1182, -1.7478, -1.5821, 0.268, -1.6247, -1.5196, 0.2372, -1.772, -1.4306, 0.1461, -1.8733, -1.6446, 0.2867, -1.7478, -1.5821, 0.268, -1.8855, -1.4931, 0.1629, -2, -1.7071, 0.2929, -1.8733, -1.6446, 0.2867, -2, -1.5556, 0.1685, -0.8371, -0.6181, -0.8855, -0.8315, -0.5556, -1, -0.9291, -0.4452, -0.8945, -0.8539, -0.6806, -0.772, -0.8371, -0.6181, -0.8855, -0.9446, -0.5077, -0.7901, -0.8818, -0.7431, -0.6608, -0.8539, -0.6806, -0.772, -0.9702, -0.5702, -0.6876, -0.9204, -0.8056, -0.5528, -0.8818, -0.7431, -0.6608, -1.0058, -0.6327, -0.5882, -0.9694, -0.8681, -0.4492, -0.9204, -0.8056, -0.5528, -1.0509, -0.6952, -0.4927, -1.0284, -0.9306, -0.3508, -0.9694, -0.8681, -0.4492, -1.1052, -0.7577, -0.4021, -1.0967, -0.9931, -0.2587, -1.0284, -0.9306, -0.3508, -1.1681, -0.8202, -0.3173, -1.1737, -1.0556, -0.1737, -1.0967, -0.9931, -0.2587, -1.2391, -0.8827, -0.2391, -1.2587, -1.1181, -0.0967, -1.1737, -1.0556, -0.1737, -1.3173, -0.9452, -0.1681, -1.3508, -1.1806, -0.0284, -1.2587, -1.1181, -0.0967, -1.4021, -1.0077, -0.1052, -1.4492, -1.2431, 0.0306, -1.3508, -1.1806, -0.0284, -1.4927, -1.0702, -0.0509, -1.5528, -1.3056, 0.0796, -1.4492, -1.2431, 0.0306, -1.5882, -1.1327, -0.0058, -1.6608, -1.3681, 0.1182, -1.5528, -1.3056, 0.0796, -1.6876, -1.1952, 0.0298, -1.772, -1.4306, 0.1461, -1.6608, -1.3681, 0.1182, -1.7901, -1.2577, 0.0554, -1.8855, -1.4931, 0.1629, -1.772, -1.4306, 0.1461, -1.8945, -1.3202, 0.0709, -2, -1.5556, 0.1685, -1.8855, -1.4931, 0.1629, -2, -1.3827, 0.0761, -0.9291, -0.4452, -0.8945, -0.9239, -0.3827, -1, -0.9857, -0.2576, -0.9001, -0.9446, -0.5077, -0.7901, -0.9291, -0.4452, -0.8945, -1.0004, -0.3201, -0.8012, -0.9702, -0.5702, -0.6876, -0.9446, -0.5077, -0.7901, -1.0247, -0.3826, -0.7041, -1.0058, -0.6327, -0.5882, -0.9702, -0.5702, -0.6876, -1.0584, -0.4451, -0.61, -1.0509, -0.6952, -0.4927, -1.0058, -0.6327, -0.5882, -1.1011, -0.5076, -0.5195, -1.1052, -0.7577, -0.4021, -1.0509, -0.6952, -0.4927, -1.1526, -0.5701, -0.4338, -1.1681, -0.8202, -0.3173, -1.1052, -0.7577, -0.4021, -1.2121, -0.6326, -0.3534, -1.2391, -0.8827, -0.2391, -1.1681, -0.8202, -0.3173, -1.2793, -0.6951, -0.2793, -1.3173, -0.9452, -0.1681, -1.2391, -0.8827, -0.2391, -1.3534, -0.7576, -0.2121, -1.4021, -1.0077, -0.1052, -1.3173, -0.9452, -0.1681, -1.4338, -0.8201, -0.1526, -1.4927, -1.0702, -0.0509, -1.4021, -1.0077, -0.1052, -1.5195, -0.8826, -0.1011, -1.5882, -1.1327, -0.0058, -1.4927, -1.0702, -0.0509, -1.61, -0.9451, -0.0584, -1.6876, -1.1952, 0.0298, -1.5882, -1.1327, -0.0058, -1.7041, -1.0076, -0.0247, -1.7901, -1.2577, 0.0554, -1.6876, -1.1952, 0.0298, -1.8012, -1.0701, -0.0004, -1.8945, -1.3202, 0.0709, -1.7901, -1.2577, 0.0554, -1.9001, -1.1326, 0.0143, -2, -1.3827, 0.0761, -1.8945, -1.3202, 0.0709, -2, -1.1951, 0.0192, -0.9857, -0.2576, -0.9001, -0.9808, -0.1951, -1, -1.0048, -0.0625, -0.902, -1.0004, -0.3201, -0.8012, -0.9857, -0.2576, -0.9001, -1.0192, -0.125, -0.8049, -1.0247, -0.3826, -0.7041, -1.0004, -0.3201, -0.8012, -1.0431, -0.1875, -0.7097, -1.0584, -0.4451, -0.61, -1.0247, -0.3826, -0.7041, -1.0761, -0.25, -0.6173, -1.1011, -0.5076, -0.5195, -1.0584, -0.4451, -0.61, -1.1181, -0.3125, -0.5286, -1.1526, -0.5701, -0.4338, -1.1011, -0.5076, -0.5195, -1.1685, -0.375, -0.4444, -1.2121, -0.6326, -0.3534, -1.1526, -0.5701, -0.4338, -1.227, -0.4375, -0.3656, -1.2793, -0.6951, -0.2793, -1.2121, -0.6326, -0.3534, -1.2929, -0.5, -0.2929, -1.3534, -0.7576, -0.2121, -1.2793, -0.6951, -0.2793, -1.3656, -0.5625, -0.227, -1.4338, -0.8201, -0.1526, -1.3534, -0.7576, -0.2121, -1.4444, -0.625, -0.1685, -1.5195, -0.8826, -0.1011, -1.4338, -0.8201, -0.1526, -1.5286, -0.6875, -0.1181, -1.61, -0.9451, -0.0584, -1.5195, -0.8826, -0.1011, -1.6173, -0.75, -0.0761, -1.7041, -1.0076, -0.0247, -1.61, -0.9451, -0.0584, -1.7097, -0.8125, -0.0431, -1.8012, -1.0701, -0.0004, -1.7041, -1.0076, -0.0247, -1.8049, -0.875, -0.0192, -1.9001, -1.1326, 0.0143, -1.8012, -1.0701, -0.0004, -1.902, -0.9375, -0.0048, -2, -1.1951, 0.0192, -1.9001, -1.1326, 0.0143, -2, -1, 0, 0.5533, 0.5032, -0.7485, 0.5657, 0.5657, -1, 0.4327, 0.6027, -0.7604, 0.5164, 0.4407, -0.4995, 0.5533, 0.5032, -0.7485, 0.3975, 0.5402, -0.5231, 0.4552, 0.3782, -0.2552, 0.5164, 0.4407, -0.4995, 0.3392, 0.4777, -0.2904, 0.3704, 0.3157, -0.0182, 0.4552, 0.3782, -0.2552, 0.2584, 0.4152, -0.0645, 0.2627, 0.2532, 0.2095, 0.3704, 0.3157, -0.0182, 0.1558, 0.3527, 0.1523, 0.1333, 0.1907, 0.4254, 0.2627, 0.2532, 0.2095, 0.0325, 0.2902, 0.3581, -0.0167, 0.1282, 0.6277, 0.1333, 0.1907, 0.4254, -0.1104, 0.2277, 0.5507, -0.1858, 0.0657, 0.8142, -0.0167, 0.1282, 0.6277, -0.2715, 0.1652, 0.7285, -0.3723, 0.0032, 0.9833, -0.1858, 0.0657, 0.8142, -0.4493, 0.1027, 0.8896, -0.5746, -0.0593, 1.1333, -0.3723, 0.0032, 0.9833, -0.6419, 0.0402, 1.0325, -0.7905, -0.1218, 1.2627, -0.5746, -0.0593, 1.1333, -0.8477, -0.0223, 1.1558, -1.0182, -0.1843, 1.3704, -0.7905, -0.1218, 1.2627, -1.0645, -0.0848, 1.2584, -1.2552, -0.2468, 1.4552, -1.0182, -0.1843, 1.3704, -1.2904, -0.1473, 1.3392, -1.4995, -0.3093, 1.5164, -1.2552, -0.2468, 1.4552, -1.5231, -0.2098, 1.3975, -1.7485, -0.3718, 1.5533, -1.4995, -0.3093, 1.5164, -1.7604, -0.2723, 1.4327, -2, -0.4343, 1.5657, -1.7485, -0.3718, 1.5533, -2, -0.3348, 1.4445, 0.6523, 0.382, -0.7388, 0.6652, 0.4445, -1, 0.5533, 0.5032, -0.7485, 0.614, 0.3195, -0.4801, 0.6523, 0.382, -0.7388, 0.5164, 0.4407, -0.4995, 0.5504, 0.257, -0.2263, 0.614, 0.3195, -0.4801, 0.4552, 0.3782, -0.2552, 0.4623, 0.1945, 0.0199, 0.5504, 0.257, -0.2263, 0.3704, 0.3157, -0.0182, 0.3505, 0.132, 0.2564, 0.4623, 0.1945, 0.0199, 0.2627, 0.2532, 0.2095, 0.216, 0.0695, 0.4807, 0.3505, 0.132, 0.2564, 0.1333, 0.1907, 0.4254, 0.0602, 0.007, 0.6908, 0.216, 0.0695, 0.4807, -0.0167, 0.1282, 0.6277, -0.1154, -0.0555, 0.8846, 0.0602, 0.007, 0.6908, -0.1858, 0.0657, 0.8142, -0.3092, -0.118, 1.0602, -0.1154, -0.0555, 0.8846, -0.3723, 0.0032, 0.9833, -0.5193, -0.1805, 1.216, -0.3092, -0.118, 1.0602, -0.5746, -0.0593, 1.1333, -0.7436, -0.243, 1.3505, -0.5193, -0.1805, 1.216, -0.7905, -0.1218, 1.2627, -0.9801, -0.3055, 1.4623, -0.7436, -0.243, 1.3505, -1.0182, -0.1843, 1.3704, -1.2263, -0.368, 1.5504, -0.9801, -0.3055, 1.4623, -1.2552, -0.2468, 1.4552, -1.4801, -0.4305, 1.614, -1.2263, -0.368, 1.5504, -1.4995, -0.3093, 1.5164, -1.7388, -0.493, 1.6523, -1.4801, -0.4305, 1.614, -1.7485, -0.3718, 1.5533, -2, -0.5555, 1.6652, -1.7388, -0.493, 1.6523, -2, -0.4343, 1.5657, 0.7259, 0.2436, -0.7315, 0.7391, 0.3061, -1, 0.6523, 0.382, -0.7388, 0.6865, 0.1811, -0.4656, 0.7259, 0.2436, -0.7315, 0.614, 0.3195, -0.4801, 0.6212, 0.1186, -0.2049, 0.6865, 0.1811, -0.4656, 0.5504, 0.257, -0.2263, 0.5306, 0.0561, 0.0482, 0.6212, 0.1186, -0.2049, 0.4623, 0.1945, 0.0199, 0.4157, -0.0064, 0.2912, 0.5306, 0.0561, 0.0482, 0.3505, 0.132, 0.2564, 0.2775, -0.0689, 0.5218, 0.4157, -0.0064, 0.2912, 0.216, 0.0695, 0.4807, 0.1174, -0.1314, 0.7377, 0.2775, -0.0689, 0.5218, 0.0602, 0.007, 0.6908, -0.0632, -0.1939, 0.9368, 0.1174, -0.1314, 0.7377, -0.1154, -0.0555, 0.8846, -0.2623, -0.2564, 1.1174, -0.0632, -0.1939, 0.9368, -0.3092, -0.118, 1.0602, -0.4782, -0.3189, 1.2775, -0.2623, -0.2564, 1.1174, -0.5193, -0.1805, 1.216, -0.7088, -0.3814, 1.4157, -0.4782, -0.3189, 1.2775, -0.7436, -0.243, 1.3505, -0.9518, -0.4439, 1.5306, -0.7088, -0.3814, 1.4157, -0.9801, -0.3055, 1.4623, -1.2049, -0.5064, 1.6212, -0.9518, -0.4439, 1.5306, -1.2263, -0.368, 1.5504, -1.4656, -0.5689, 1.6865, -1.2049, -0.5064, 1.6212, -1.4801, -0.4305, 1.614, -1.7315, -0.6314, 1.7259, -1.4656, -0.5689, 1.6865, -1.7388, -0.493, 1.6523, -2, -0.6939, 1.7391, -1.7315, -0.6314, 1.7259, -2, -0.5555, 1.6652, 0.7712, 0.0936, -0.7271, 0.7846, 0.1561, -1, 0.7259, 0.2436, -0.7315, 0.7311, 0.0311, -0.4567, 0.7712, 0.0936, -0.7271, 0.6865, 0.1811, -0.4656, 0.6647, -0.0314, -0.1917, 0.7311, 0.0311, -0.4567, 0.6212, 0.1186, -0.2049, 0.5727, -0.0939, 0.0656, 0.6647, -0.0314, -0.1917, 0.5306, 0.0561, 0.0482, 0.4558, -0.1564, 0.3127, 0.5727, -0.0939, 0.0656, 0.4157, -0.0064, 0.2912, 0.3153, -0.2189, 0.5471, 0.4558, -0.1564, 0.3127, 0.2775, -0.0689, 0.5218, 0.1525, -0.2814, 0.7666, 0.3153, -0.2189, 0.5471, 0.1174, -0.1314, 0.7377, -0.031, -0.3439, 0.969, 0.1525, -0.2814, 0.7666, -0.0632, -0.1939, 0.9368, -0.2335, -0.4064, 1.1525, -0.031, -0.3439, 0.969, -0.2623, -0.2564, 1.1174, -0.4529, -0.4689, 1.3153, -0.2335, -0.4064, 1.1525, -0.4782, -0.3189, 1.2775, -0.6873, -0.5314, 1.4558, -0.4529, -0.4689, 1.3153, -0.7088, -0.3814, 1.4157, -0.9344, -0.5939, 1.5727, -0.6873, -0.5314, 1.4558, -0.9518, -0.4439, 1.5306, -1.1917, -0.6564, 1.6647, -0.9344, -0.5939, 1.5727, -1.2049, -0.5064, 1.6212, -1.4567, -0.7189, 1.7311, -1.1917, -0.6564, 1.6647, -1.4656, -0.5689, 1.6865, -1.7271, -0.7814, 1.7712, -1.4567, -0.7189, 1.7311, -1.7315, -0.6314, 1.7259, -2, -0.8439, 1.7846, -1.7271, -0.7814, 1.7712, -2, -0.6939, 1.7391, 0.7865, -0.0625, -0.7256, 0.8, 0, -1, 0.7712, 0.0936, -0.7271, 0.7462, -0.125, -0.4537, 0.7865, -0.0625, -0.7256, 0.7311, 0.0311, -0.4567, 0.6794, -0.1875, -0.1872, 0.7462, -0.125, -0.4537, 0.6647, -0.0314, -0.1917, 0.5869, -0.25, 0.0715, 0.6794, -0.1875, -0.1872, 0.5727, -0.0939, 0.0656, 0.4694, -0.3125, 0.3199, 0.5869, -0.25, 0.0715, 0.4558, -0.1564, 0.3127, 0.3281, -0.375, 0.5556, 0.4694, -0.3125, 0.3199, 0.3153, -0.2189, 0.5471, 0.1644, -0.4375, 0.7763, 0.3281, -0.375, 0.5556, 0.1525, -0.2814, 0.7666, -0.0201, -0.5, 0.9799, 0.1644, -0.4375, 0.7763, -0.031, -0.3439, 0.969, -0.2237, -0.5625, 1.1644, -0.0201, -0.5, 0.9799, -0.2335, -0.4064, 1.1525, -0.4444, -0.625, 1.3281, -0.2237, -0.5625, 1.1644, -0.4529, -0.4689, 1.3153, -0.6801, -0.6875, 1.4694, -0.4444, -0.625, 1.3281, -0.6873, -0.5314, 1.4558, -0.9285, -0.75, 1.5869, -0.6801, -0.6875, 1.4694, -0.9344, -0.5939, 1.5727, -1.1872, -0.8125, 1.6794, -0.9285, -0.75, 1.5869, -1.1917, -0.6564, 1.6647, -1.4537, -0.875, 1.7462, -1.1872, -0.8125, 1.6794, -1.4567, -0.7189, 1.7311, -1.7256, -0.9375, 1.7865, -1.4537, -0.875, 1.7462, -1.7271, -0.7814, 1.7712, -2, -1, 1.8, -1.7256, -0.9375, 1.7865, -2, -0.8439, 1.7846, 0.7712, -0.2186, -0.7271, 0.7846, -0.1561, -1, 0.7865, -0.0625, -0.7256, 0.7311, -0.2811, -0.4567, 0.7712, -0.2186, -0.7271, 0.7462, -0.125, -0.4537, 0.6647, -0.3436, -0.1917, 0.7311, -0.2811, -0.4567, 0.6794, -0.1875, -0.1872, 0.5727, -0.4061, 0.0656, 0.6647, -0.3436, -0.1917, 0.5869, -0.25, 0.0715, 0.4558, -0.4686, 0.3127, 0.5727, -0.4061, 0.0656, 0.4694, -0.3125, 0.3199, 0.3153, -0.5311, 0.5471, 0.4558, -0.4686, 0.3127, 0.3281, -0.375, 0.5556, 0.1525, -0.5936, 0.7666, 0.3153, -0.5311, 0.5471, 0.1644, -0.4375, 0.7763, -0.031, -0.6561, 0.969, 0.1525, -0.5936, 0.7666, -0.0201, -0.5, 0.9799, -0.2335, -0.7186, 1.1525, -0.031, -0.6561, 0.969, -0.2237, -0.5625, 1.1644, -0.4529, -0.7811, 1.3153, -0.2335, -0.7186, 1.1525, -0.4444, -0.625, 1.3281, -0.6873, -0.8436, 1.4558, -0.4529, -0.7811, 1.3153, -0.6801, -0.6875, 1.4694, -0.9344, -0.9061, 1.5727, -0.6873, -0.8436, 1.4558, -0.9285, -0.75, 1.5869, -1.1917, -0.9686, 1.6647, -0.9344, -0.9061, 1.5727, -1.1872, -0.8125, 1.6794, -1.4567, -1.0311, 1.7311, -1.1917, -0.9686, 1.6647, -1.4537, -0.875, 1.7462, -1.7271, -1.0936, 1.7712, -1.4567, -1.0311, 1.7311, -1.7256, -0.9375, 1.7865, -2, -1.1561, 1.7846, -1.7271, -1.0936, 1.7712, -2, -1, 1.8, 0.7259, -0.3686, -0.7315, 0.7391, -0.3061, -1, 0.7712, -0.2186, -0.7271, 0.6865, -0.4311, -0.4656, 0.7259, -0.3686, -0.7315, 0.7311, -0.2811, -0.4567, 0.6212, -0.4936, -0.2049, 0.6865, -0.4311, -0.4656, 0.6647, -0.3436, -0.1917, 0.5306, -0.5561, 0.0482, 0.6212, -0.4936, -0.2049, 0.5727, -0.4061, 0.0656, 0.4157, -0.6186, 0.2912, 0.5306, -0.5561, 0.0482, 0.4558, -0.4686, 0.3127, 0.2775, -0.6811, 0.5218, 0.4157, -0.6186, 0.2912, 0.3153, -0.5311, 0.5471, 0.1174, -0.7436, 0.7377, 0.2775, -0.6811, 0.5218, 0.1525, -0.5936, 0.7666, -0.0632, -0.8061, 0.9368, 0.1174, -0.7436, 0.7377, -0.031, -0.6561, 0.969, -0.2623, -0.8686, 1.1174, -0.0632, -0.8061, 0.9368, -0.2335, -0.7186, 1.1525, -0.4782, -0.9311, 1.2775, -0.2623, -0.8686, 1.1174, -0.4529, -0.7811, 1.3153, -0.7088, -0.9936, 1.4157, -0.4782, -0.9311, 1.2775, -0.6873, -0.8436, 1.4558, -0.9518, -1.0561, 1.5306, -0.7088, -0.9936, 1.4157, -0.9344, -0.9061, 1.5727, -1.2049, -1.1186, 1.6212, -0.9518, -1.0561, 1.5306, -1.1917, -0.9686, 1.6647, -1.4656, -1.1811, 1.6865, -1.2049, -1.1186, 1.6212, -1.4567, -1.0311, 1.7311, -1.7315, -1.2436, 1.7259, -1.4656, -1.1811, 1.6865, -1.7271, -1.0936, 1.7712, -2, -1.3061, 1.7391, -1.7315, -1.2436, 1.7259, -2, -1.1561, 1.7846, 0.6523, -0.507, -0.7388, 0.6652, -0.4445, -1, 0.7259, -0.3686, -0.7315, 0.614, -0.5695, -0.4801, 0.6523, -0.507, -0.7388, 0.6865, -0.4311, -0.4656, 0.5504, -0.632, -0.2263, 0.614, -0.5695, -0.4801, 0.6212, -0.4936, -0.2049, 0.4623, -0.6945, 0.0199, 0.5504, -0.632, -0.2263, 0.5306, -0.5561, 0.0482, 0.3505, -0.757, 0.2564, 0.4623, -0.6945, 0.0199, 0.4157, -0.6186, 0.2912, 0.216, -0.8195, 0.4807, 0.3505, -0.757, 0.2564, 0.2775, -0.6811, 0.5218, 0.0602, -0.882, 0.6908, 0.216, -0.8195, 0.4807, 0.1174, -0.7436, 0.7377, -0.1154, -0.9445, 0.8846, 0.0602, -0.882, 0.6908, -0.0632, -0.8061, 0.9368, -0.3092, -1.007, 1.0602, -0.1154, -0.9445, 0.8846, -0.2623, -0.8686, 1.1174, -0.5193, -1.0695, 1.216, -0.3092, -1.007, 1.0602, -0.4782, -0.9311, 1.2775, -0.7436, -1.132, 1.3505, -0.5193, -1.0695, 1.216, -0.7088, -0.9936, 1.4157, -0.9801, -1.1945, 1.4623, -0.7436, -1.132, 1.3505, -0.9518, -1.0561, 1.5306, -1.2263, -1.257, 1.5504, -0.9801, -1.1945, 1.4623, -1.2049, -1.1186, 1.6212, -1.4801, -1.3195, 1.614, -1.2263, -1.257, 1.5504, -1.4656, -1.1811, 1.6865, -1.7388, -1.382, 1.6523, -1.4801, -1.3195, 1.614, -1.7315, -1.2436, 1.7259, -2, -1.4445, 1.6652, -1.7388, -1.382, 1.6523, -2, -1.3061, 1.7391, 0.5533, -0.6282, -0.7485, 0.5657, -0.5657, -1, 0.6523, -0.507, -0.7388, 0.5164, -0.6907, -0.4995, 0.5533, -0.6282, -0.7485, 0.614, -0.5695, -0.4801, 0.4552, -0.7532, -0.2552, 0.5164, -0.6907, -0.4995, 0.5504, -0.632, -0.2263, 0.3704, -0.8157, -0.0182, 0.4552, -0.7532, -0.2552, 0.4623, -0.6945, 0.0199, 0.2627, -0.8782, 0.2095, 0.3704, -0.8157, -0.0182, 0.3505, -0.757, 0.2564, 0.1333, -0.9407, 0.4254, 0.2627, -0.8782, 0.2095, 0.216, -0.8195, 0.4807, -0.0167, -1.0032, 0.6277, 0.1333, -0.9407, 0.4254, 0.0602, -0.882, 0.6908, -0.1858, -1.0657, 0.8142, -0.0167, -1.0032, 0.6277, -0.1154, -0.9445, 0.8846, -0.3723, -1.1282, 0.9833, -0.1858, -1.0657, 0.8142, -0.3092, -1.007, 1.0602, -0.5746, -1.1907, 1.1333, -0.3723, -1.1282, 0.9833, -0.5193, -1.0695, 1.216, -0.7905, -1.2532, 1.2627, -0.5746, -1.1907, 1.1333, -0.7436, -1.132, 1.3505, -1.0182, -1.3157, 1.3704, -0.7905, -1.2532, 1.2627, -0.9801, -1.1945, 1.4623, -1.2552, -1.3782, 1.4552, -1.0182, -1.3157, 1.3704, -1.2263, -1.257, 1.5504, -1.4995, -1.4407, 1.5164, -1.2552, -1.3782, 1.4552, -1.4801, -1.3195, 1.614, -1.7485, -1.5032, 1.5533, -1.4995, -1.4407, 1.5164, -1.7388, -1.382, 1.6523, -2, -1.5657, 1.5657, -1.7485, -1.5032, 1.5533, -2, -1.4445, 1.6652, 0.4327, -0.7277, -0.7604, 0.4445, -0.6652, -1, 0.5533, -0.6282, -0.7485, 0.3975, -0.7902, -0.5231, 0.4327, -0.7277, -0.7604, 0.5164, -0.6907, -0.4995, 0.3392, -0.8527, -0.2904, 0.3975, -0.7902, -0.5231, 0.4552, -0.7532, -0.2552, 0.2584, -0.9152, -0.0645, 0.3392, -0.8527, -0.2904, 0.3704, -0.8157, -0.0182, 0.1558, -0.9777, 0.1523, 0.2584, -0.9152, -0.0645, 0.2627, -0.8782, 0.2095, 0.0325, -1.0402, 0.3581, 0.1558, -0.9777, 0.1523, 0.1333, -0.9407, 0.4254, -0.1104, -1.1027, 0.5507, 0.0325, -1.0402, 0.3581, -0.0167, -1.0032, 0.6277, -0.2715, -1.1652, 0.7285, -0.1104, -1.1027, 0.5507, -0.1858, -1.0657, 0.8142, -0.4493, -1.2277, 0.8896, -0.2715, -1.1652, 0.7285, -0.3723, -1.1282, 0.9833, -0.6419, -1.2902, 1.0325, -0.4493, -1.2277, 0.8896, -0.5746, -1.1907, 1.1333, -0.8477, -1.3527, 1.1558, -0.6419, -1.2902, 1.0325, -0.7905, -1.2532, 1.2627, -1.0645, -1.4152, 1.2584, -0.8477, -1.3527, 1.1558, -1.0182, -1.3157, 1.3704, -1.2904, -1.4777, 1.3392, -1.0645, -1.4152, 1.2584, -1.2552, -1.3782, 1.4552, -1.5231, -1.5402, 1.3975, -1.2904, -1.4777, 1.3392, -1.4995, -1.4407, 1.5164, -1.7604, -1.6027, 1.4327, -1.5231, -1.5402, 1.3975, -1.7485, -1.5032, 1.5533, -2, -1.6652, 1.4445, -1.7604, -1.6027, 1.4327, -2, -1.5657, 1.5657, 0.295, -0.8016, -0.774, 0.3061, -0.7391, -1, 0.4327, -0.7277, -0.7604, 0.2618, -0.8641, -0.5501, 0.295, -0.8016, -0.774, 0.3975, -0.7902, -0.5231, 0.2068, -0.9266, -0.3306, 0.2618, -0.8641, -0.5501, 0.3392, -0.8527, -0.2904, 0.1306, -0.9891, -0.1175, 0.2068, -0.9266, -0.3306, 0.2584, -0.9152, -0.0645, 0.0338, -1.0516, 0.0871, 0.1306, -0.9891, -0.1175, 0.1558, -0.9777, 0.1523, -0.0825, -1.1141, 0.2812, 0.0338, -1.0516, 0.0871, 0.0325, -1.0402, 0.3581, -0.2173, -1.1766, 0.463, -0.0825, -1.1141, 0.2812, -0.1104, -1.1027, 0.5507, -0.3693, -1.2391, 0.6307, -0.2173, -1.1766, 0.463, -0.2715, -1.1652, 0.7285, -0.537, -1.3016, 0.7827, -0.3693, -1.2391, 0.6307, -0.4493, -1.2277, 0.8896, -0.7188, -1.3641, 0.9175, -0.537, -1.3016, 0.7827, -0.6419, -1.2902, 1.0325, -0.9129, -1.4266, 1.0338, -0.7188, -1.3641, 0.9175, -0.8477, -1.3527, 1.1558, -1.1175, -1.4891, 1.1306, -0.9129, -1.4266, 1.0338, -1.0645, -1.4152, 1.2584, -1.3306, -1.5516, 1.2068, -1.1175, -1.4891, 1.1306, -1.2904, -1.4777, 1.3392, -1.5501, -1.6141, 1.2618, -1.3306, -1.5516, 1.2068, -1.5231, -1.5402, 1.3975, -1.774, -1.6766, 1.295, -1.5501, -1.6141, 1.2618, -1.7604, -1.6027, 1.4327, -2, -1.7391, 1.3061, -1.774, -1.6766, 1.295, -2, -1.6652, 1.4445, 0.1457, -0.8471, -0.7887, 0.1561, -0.7846, -1, 0.295, -0.8016, -0.774, 0.1146, -0.9096, -0.5794, 0.1457, -0.8471, -0.7887, 0.2618, -0.8641, -0.5501, 0.0632, -0.9721, -0.3741, 0.1146, -0.9096, -0.5794, 0.2068, -0.9266, -0.3306, -0.008, -1.0346, -0.1749, 0.0632, -0.9721, -0.3741, 0.1306, -0.9891, -0.1175, -0.0985, -1.0971, 0.0164, -0.008, -1.0346, -0.1749, 0.0338, -1.0516, 0.0871, -0.2073, -1.1596, 0.1979, -0.0985, -1.0971, 0.0164, -0.0825, -1.1141, 0.2812, -0.3333, -1.2221, 0.3678, -0.2073, -1.1596, 0.1979, -0.2173, -1.1766, 0.463, -0.4754, -1.2846, 0.5246, -0.3333, -1.2221, 0.3678, -0.3693, -1.2391, 0.6307, -0.6322, -1.3471, 0.6667, -0.4754, -1.2846, 0.5246, -0.537, -1.3016, 0.7827, -0.8022, -1.4096, 0.7927, -0.6322, -1.3471, 0.6667, -0.7188, -1.3641, 0.9175, -0.9836, -1.4721, 0.9015, -0.8022, -1.4096, 0.7927, -0.9129, -1.4266, 1.0338, -1.1749, -1.5346, 0.992, -0.9836, -1.4721, 0.9015, -1.1175, -1.4891, 1.1306, -1.3741, -1.5971, 1.0632, -1.1749, -1.5346, 0.992, -1.3306, -1.5516, 1.2068, -1.5794, -1.6596, 1.1146, -1.3741, -1.5971, 1.0632, -1.5501, -1.6141, 1.2618, -1.7887, -1.7221, 1.1457, -1.5794, -1.6596, 1.1146, -1.774, -1.6766, 1.295, -2, -1.7846, 1.1561, -1.7887, -1.7221, 1.1457, -2, -1.7391, 1.3061, -0.0096, -0.8625, -0.804, 0, -0.8, -1, 0.1457, -0.8471, -0.7887, -0.0384, -0.925, -0.6098, -0.0096, -0.8625, -0.804, 0.1146, -0.9096, -0.5794, -0.0861, -0.9875, -0.4194, -0.0384, -0.925, -0.6098, 0.0632, -0.9721, -0.3741, -0.1522, -1.05, -0.2346, -0.0861, -0.9875, -0.4194, -0.008, -1.0346, -0.1749, -0.2362, -1.1125, -0.0572, -0.1522, -1.05, -0.2346, -0.0985, -1.0971, 0.0164, -0.3371, -1.175, 0.1111, -0.2362, -1.1125, -0.0572, -0.2073, -1.1596, 0.1979, -0.454, -1.2375, 0.2688, -0.3371, -1.175, 0.1111, -0.3333, -1.2221, 0.3678, -0.5858, -1.3, 0.4142, -0.454, -1.2375, 0.2688, -0.4754, -1.2846, 0.5246, -0.7312, -1.3625, 0.546, -0.5858, -1.3, 0.4142, -0.6322, -1.3471, 0.6667, -0.8889, -1.425, 0.6629, -0.7312, -1.3625, 0.546, -0.8022, -1.4096, 0.7927, -1.0572, -1.4875, 0.7638, -0.8889, -1.425, 0.6629, -0.9836, -1.4721, 0.9015, -1.2346, -1.55, 0.8478, -1.0572, -1.4875, 0.7638, -1.1749, -1.5346, 0.992, -1.4194, -1.6125, 0.9139, -1.2346, -1.55, 0.8478, -1.3741, -1.5971, 1.0632, -1.6098, -1.675, 0.9616, -1.4194, -1.6125, 0.9139, -1.5794, -1.6596, 1.1146, -1.804, -1.7375, 0.9904, -1.6098, -1.675, 0.9616, -1.7887, -1.7221, 1.1457, -2, -1.8, 1, -1.804, -1.7375, 0.9904, -2, -1.7846, 1.1561, -0.0096, -0.8625, -0.804, -0.165, -0.8471, -0.8193, 0, -0.8, -1, -0.0384, -0.925, -0.6098, -0.1915, -0.9096, -0.6403, -0.0096, -0.8625, -0.804, -0.0861, -0.9875, -0.4194, -0.2355, -0.9721, -0.4647, -0.0384, -0.925, -0.6098, -0.1522, -1.05, -0.2346, -0.2964, -1.0346, -0.2944, -0.0861, -0.9875, -0.4194, -0.2362, -1.1125, -0.0572, -0.3738, -1.0971, -0.1308, -0.1522, -1.05, -0.2346, -0.3371, -1.175, 0.1111, -0.4668, -1.1596, 0.0244, -0.2362, -1.1125, -0.0572, -0.454, -1.2375, 0.2688, -0.5746, -1.2221, 0.1698, -0.3371, -1.175, 0.1111, -0.5858, -1.3, 0.4142, -0.6961, -1.2846, 0.3039, -0.454, -1.2375, 0.2688, -0.7312, -1.3625, 0.546, -0.8302, -1.3471, 0.4254, -0.5858, -1.3, 0.4142, -0.8889, -1.425, 0.6629, -0.9756, -1.4096, 0.5332, -0.7312, -1.3625, 0.546, -1.0572, -1.4875, 0.7638, -1.1308, -1.4721, 0.6262, -0.8889, -1.425, 0.6629, -1.2346, -1.55, 0.8478, -1.2944, -1.5346, 0.7036, -1.0572, -1.4875, 0.7638, -1.4194, -1.6125, 0.9139, -1.4647, -1.5971, 0.7645, -1.2346, -1.55, 0.8478, -1.6098, -1.675, 0.9616, -1.6403, -1.6596, 0.8085, -1.4194, -1.6125, 0.9139, -1.804, -1.7375, 0.9904, -1.8193, -1.7221, 0.835, -1.6098, -1.675, 0.9616, -2, -1.8, 1, -2, -1.7846, 0.8439, -1.804, -1.7375, 0.9904, -0.165, -0.8471, -0.8193, -0.3143, -0.8016, -0.834, -0.1561, -0.7846, -1, -0.1915, -0.9096, -0.6403, -0.3387, -0.8641, -0.6695, -0.165, -0.8471, -0.8193, -0.2355, -0.9721, -0.4647, -0.3791, -0.9266, -0.5083, -0.1915, -0.9096, -0.6403, -0.2964, -1.0346, -0.2944, -0.4351, -0.9891, -0.3518, -0.2355, -0.9721, -0.4647, -0.3738, -1.0971, -0.1308, -0.5062, -1.0516, -0.2015, -0.2964, -1.0346, -0.2944, -0.4668, -1.1596, 0.0244, -0.5916, -1.1141, -0.0589, -0.3738, -1.0971, -0.1308, -0.5746, -1.2221, 0.1698, -0.6906, -1.1766, 0.0746, -0.4668, -1.1596, 0.0244, -0.6961, -1.2846, 0.3039, -0.8023, -1.2391, 0.1977, -0.5746, -1.2221, 0.1698, -0.8302, -1.3471, 0.4254, -0.9254, -1.3016, 0.3094, -0.6961, -1.2846, 0.3039, -0.9756, -1.4096, 0.5332, -1.0589, -1.3641, 0.4084, -0.8302, -1.3471, 0.4254, -1.1308, -1.4721, 0.6262, -1.2015, -1.4266, 0.4938, -0.9756, -1.4096, 0.5332, -1.2944, -1.5346, 0.7036, -1.3518, -1.4891, 0.5649, -1.1308, -1.4721, 0.6262, -1.4647, -1.5971, 0.7645, -1.5083, -1.5516, 0.6209, -1.2944, -1.5346, 0.7036, -1.6403, -1.6596, 0.8085, -1.6695, -1.6141, 0.6613, -1.4647, -1.5971, 0.7645, -1.8193, -1.7221, 0.835, -1.834, -1.6766, 0.6857, -1.6403, -1.6596, 0.8085, -2, -1.7846, 0.8439, -2, -1.7391, 0.6939, -1.8193, -1.7221, 0.835, -0.3143, -0.8016, -0.834, -0.4519, -0.7277, -0.8475, -0.3061, -0.7391, -1, -0.3387, -0.8641, -0.6695, -0.4743, -0.7902, -0.6965, -0.3143, -0.8016, -0.834, -0.3791, -0.9266, -0.5083, -0.5114, -0.8527, -0.5485, -0.3387, -0.8641, -0.6695, -0.4351, -0.9891, -0.3518, -0.5629, -0.9152, -0.4047, -0.3791, -0.9266, -0.5083, -0.5062, -1.0516, -0.2015, -0.6281, -0.9777, -0.2667, -0.4351, -0.9891, -0.3518, -0.5916, -1.1141, -0.0589, -0.7066, -1.0402, -0.1358, -0.5062, -1.0516, -0.2015, -0.6906, -1.1766, 0.0746, -0.7975, -1.1027, -0.0132, -0.5916, -1.1141, -0.0589, -0.8023, -1.2391, 0.1977, -0.9001, -1.1652, 0.0999, -0.6906, -1.1766, 0.0746, -0.9254, -1.3016, 0.3094, -1.0132, -1.2277, 0.2025, -0.8023, -1.2391, 0.1977, -1.0589, -1.3641, 0.4084, -1.1358, -1.2902, 0.2934, -0.9254, -1.3016, 0.3094, -1.2015, -1.4266, 0.4938, -1.2667, -1.3527, 0.3719, -1.0589, -1.3641, 0.4084, -1.3518, -1.4891, 0.5649, -1.4047, -1.4152, 0.4371, -1.2015, -1.4266, 0.4938, -1.5083, -1.5516, 0.6209, -1.5485, -1.4777, 0.4886, -1.3518, -1.4891, 0.5649, -1.6695, -1.6141, 0.6613, -1.6965, -1.5402, 0.5257, -1.5083, -1.5516, 0.6209, -1.834, -1.6766, 0.6857, -1.8475, -1.6027, 0.5481, -1.6695, -1.6141, 0.6613, -2, -1.7391, 0.6939, -2, -1.6652, 0.5555, -1.834, -1.6766, 0.6857, -0.4519, -0.7277, -0.8475, -0.5726, -0.6282, -0.8594, -0.4445, -0.6652, -1, -0.4743, -0.7902, -0.6965, -0.5932, -0.6907, -0.7202, -0.4519, -0.7277, -0.8475, -0.5114, -0.8527, -0.5485, -0.6274, -0.7532, -0.5836, -0.4743, -0.7902, -0.6965, -0.5629, -0.9152, -0.4047, -0.6749, -0.8157, -0.4511, -0.5114, -0.8527, -0.5485, -0.6281, -0.9777, -0.2667, -0.735, -0.8782, -0.3239, -0.5629, -0.9152, -0.4047, -0.7066, -1.0402, -0.1358, -0.8074, -0.9407, -0.2031, -0.6281, -0.9777, -0.2667, -0.7975, -1.1027, -0.0132, -0.8913, -1.0032, -0.0901, -0.7066, -1.0402, -0.1358, -0.9001, -1.1652, 0.0999, -0.9858, -1.0657, 0.0142, -0.7975, -1.1027, -0.0132, -1.0132, -1.2277, 0.2025, -1.0901, -1.1282, 0.1087, -0.9001, -1.1652, 0.0999, -1.1358, -1.2902, 0.2934, -1.2031, -1.1907, 0.1926, -1.0132, -1.2277, 0.2025, -1.2667, -1.3527, 0.3719, -1.3239, -1.2532, 0.265, -1.1358, -1.2902, 0.2934, -1.4047, -1.4152, 0.4371, -1.4511, -1.3157, 0.3251, -1.2667, -1.3527, 0.3719, -1.5485, -1.4777, 0.4886, -1.5836, -1.3782, 0.3726, -1.4047, -1.4152, 0.4371, -1.6965, -1.5402, 0.5257, -1.7202, -1.4407, 0.4068, -1.5485, -1.4777, 0.4886, -1.8475, -1.6027, 0.5481, -1.8594, -1.5032, 0.4274, -1.6965, -1.5402, 0.5257, -2, -1.6652, 0.5555, -2, -1.5657, 0.4343, -1.8475, -1.6027, 0.5481, -0.5726, -0.6282, -0.8594, -0.6716, -0.507, -0.8692, -0.5657, -0.5657, -1, -0.5932, -0.6907, -0.7202, -0.6908, -0.5695, -0.7396, -0.5726, -0.6282, -0.8594, -0.6274, -0.7532, -0.5836, -0.7227, -0.632, -0.6125, -0.5932, -0.6907, -0.7202, -0.6749, -0.8157, -0.4511, -0.7668, -0.6945, -0.4892, -0.6274, -0.7532, -0.5836, -0.735, -0.8782, -0.3239, -0.8228, -0.757, -0.3708, -0.6749, -0.8157, -0.4511, -0.8074, -0.9407, -0.2031, -0.8901, -0.8195, -0.2584, -0.735, -0.8782, -0.3239, -0.8913, -1.0032, -0.0901, -0.9682, -0.882, -0.1532, -0.8074, -0.9407, -0.2031, -0.9858, -1.0657, 0.0142, -1.0561, -0.9445, -0.0561, -0.8913, -1.0032, -0.0901, -1.0901, -1.1282, 0.1087, -1.1532, -1.007, 0.0318, -0.9858, -1.0657, 0.0142, -1.2031, -1.1907, 0.1926, -1.2584, -1.0695, 0.1099, -1.0901, -1.1282, 0.1087, -1.3239, -1.2532, 0.265, -1.3708, -1.132, 0.1772, -1.2031, -1.1907, 0.1926, -1.4511, -1.3157, 0.3251, -1.4892, -1.1945, 0.2332, -1.3239, -1.2532, 0.265, -1.5836, -1.3782, 0.3726, -1.6125, -1.257, 0.2773, -1.4511, -1.3157, 0.3251, -1.7202, -1.4407, 0.4068, -1.7396, -1.3195, 0.3092, -1.5836, -1.3782, 0.3726, -1.8594, -1.5032, 0.4274, -1.8692, -1.382, 0.3284, -1.7202, -1.4407, 0.4068, -2, -1.5657, 0.4343, -2, -1.4445, 0.3348, -1.8594, -1.5032, 0.4274, -0.6716, -0.507, -0.8692, -0.7452, -0.3686, -0.8764, -0.6652, -0.4445, -1, -0.6908, -0.5695, -0.7396, -0.7633, -0.4311, -0.754, -0.6716, -0.507, -0.8692, -0.7227, -0.632, -0.6125, -0.7934, -0.4936, -0.634, -0.6908, -0.5695, -0.7396, -0.7668, -0.6945, -0.4892, -0.8351, -0.5561, -0.5175, -0.7227, -0.632, -0.6125, -0.8228, -0.757, -0.3708, -0.888, -0.6186, -0.4056, -0.7668, -0.6945, -0.4892, -0.8901, -0.8195, -0.2584, -0.9516, -0.6811, -0.2995, -0.8228, -0.757, -0.3708, -0.9682, -0.882, -0.1532, -1.0253, -0.7436, -0.2001, -0.8901, -0.8195, -0.2584, -1.0561, -0.9445, -0.0561, -1.1084, -0.8061, -0.1084, -0.9682, -0.882, -0.1532, -1.1532, -1.007, 0.0318, -1.2001, -0.8686, -0.0253, -1.0561, -0.9445, -0.0561, -1.2584, -1.0695, 0.1099, -1.2995, -0.9311, 0.0484, -1.1532, -1.007, 0.0318, -1.3708, -1.132, 0.1772, -1.4056, -0.9936, 0.112, -1.2584, -1.0695, 0.1099, -1.4892, -1.1945, 0.2332, -1.5175, -1.0561, 0.1649, -1.3708, -1.132, 0.1772, -1.6125, -1.257, 0.2773, -1.634, -1.1186, 0.2066, -1.4892, -1.1945, 0.2332, -1.7396, -1.3195, 0.3092, -1.754, -1.1811, 0.2367, -1.6125, -1.257, 0.2773, -1.8692, -1.382, 0.3284, -1.8764, -1.2436, 0.2548, -1.7396, -1.3195, 0.3092, -2, -1.4445, 0.3348, -2, -1.3061, 0.2609, -1.8692, -1.382, 0.3284, -0.7452, -0.3686, -0.8764, -0.7905, -0.2186, -0.8809, -0.7391, -0.3061, -1, -0.7633, -0.4311, -0.754, -0.808, -0.2811, -0.7629, -0.7452, -0.3686, -0.8764, -0.7934, -0.4936, -0.634, -0.837, -0.3436, -0.6472, -0.7633, -0.4311, -0.754, -0.8351, -0.5561, -0.5175, -0.8771, -0.4061, -0.5349, -0.7934, -0.4936, -0.634, -0.888, -0.6186, -0.4056, -0.9281, -0.4686, -0.4271, -0.8351, -0.5561, -0.5175, -0.9516, -0.6811, -0.2995, -0.9895, -0.5311, -0.3248, -0.888, -0.6186, -0.4056, -1.0253, -0.7436, -0.2001, -1.0605, -0.5936, -0.229, -0.9516, -0.6811, -0.2995, -1.1084, -0.8061, -0.1084, -1.1406, -0.6561, -0.1406, -1.0253, -0.7436, -0.2001, -1.2001, -0.8686, -0.0253, -1.229, -0.7186, -0.0605, -1.1084, -0.8061, -0.1084, -1.2995, -0.9311, 0.0484, -1.3248, -0.7811, 0.0105, -1.2001, -0.8686, -0.0253, -1.4056, -0.9936, 0.112, -1.4271, -0.8436, 0.0719, -1.2995, -0.9311, 0.0484, -1.5175, -1.0561, 0.1649, -1.5349, -0.9061, 0.1229, -1.4056, -0.9936, 0.112, -1.634, -1.1186, 0.2066, -1.6472, -0.9686, 0.163, -1.5175, -1.0561, 0.1649, -1.754, -1.1811, 0.2367, -1.7629, -1.0311, 0.192, -1.634, -1.1186, 0.2066, -1.8764, -1.2436, 0.2548, -1.8809, -1.0936, 0.2095, -1.754, -1.1811, 0.2367, -2, -1.3061, 0.2609, -2, -1.1561, 0.2154, -1.8764, -1.2436, 0.2548, -0.7905, -0.2186, -0.8809, -0.8058, -0.0625, -0.8824, -0.7846, -0.1561, -1, -0.808, -0.2811, -0.7629, -0.8231, -0.125, -0.7659, -0.7905, -0.2186, -0.8809, -0.837, -0.3436, -0.6472, -0.8517, -0.1875, -0.6517, -0.808, -0.2811, -0.7629, -0.8771, -0.4061, -0.5349, -0.8913, -0.25, -0.5408, -0.837, -0.3436, -0.6472, -0.9281, -0.4686, -0.4271, -0.9417, -0.3125, -0.4343, -0.8771, -0.4061, -0.5349, -0.9895, -0.5311, -0.3248, -1.0022, -0.375, -0.3333, -0.9281, -0.4686, -0.4271, -1.0605, -0.5936, -0.229, -1.0724, -0.4375, -0.2387, -0.9895, -0.5311, -0.3248, -1.1406, -0.6561, -0.1406, -1.1515, -0.5, -0.1515, -1.0605, -0.5936, -0.229, -1.229, -0.7186, -0.0605, -1.2387, -0.5625, -0.0724, -1.1406, -0.6561, -0.1406, -1.3248, -0.7811, 0.0105, -1.3333, -0.625, -0.0022, -1.229, -0.7186, -0.0605, -1.4271, -0.8436, 0.0719, -1.4343, -0.6875, 0.0583, -1.3248, -0.7811, 0.0105, -1.5349, -0.9061, 0.1229, -1.5408, -0.75, 0.1087, -1.4271, -0.8436, 0.0719, -1.6472, -0.9686, 0.163, -1.6517, -0.8125, 0.1483, -1.5349, -0.9061, 0.1229, -1.7629, -1.0311, 0.192, -1.7659, -0.875, 0.1769, -1.6472, -0.9686, 0.163, -1.8809, -1.0936, 0.2095, -1.8824, -0.9375, 0.1942, -1.7629, -1.0311, 0.192, -2, -1.1561, 0.2154, -2, -1, 0.2, -1.8809, -1.0936, 0.2095, 0.4327, 0.6027, -0.7604, 0.4445, 0.6652, -1, 0.5433, 0.769, -0.7495, 0.3975, 0.5402, -0.5231, 0.4327, 0.6027, -0.7604, 0.5065, 0.7065, -0.5014, 0.3392, 0.4777, -0.2904, 0.3975, 0.5402, -0.5231, 0.4455, 0.644, -0.2582, 0.2584, 0.4152, -0.0645, 0.3392, 0.4777, -0.2904, 0.361, 0.5815, -0.022, 0.1558, 0.3527, 0.1523, 0.2584, 0.4152, -0.0645, 0.2538, 0.519, 0.2047, 0.0325, 0.2902, 0.3581, 0.1558, 0.3527, 0.1523, 0.1249, 0.4565, 0.4198, -0.1104, 0.2277, 0.5507, 0.0325, 0.2902, 0.3581, -0.0245, 0.394, 0.6212, -0.2715, 0.1652, 0.7285, -0.1104, 0.2277, 0.5507, -0.1929, 0.3315, 0.8071, -0.4493, 0.1027, 0.8896, -0.2715, 0.1652, 0.7285, -0.3788, 0.269, 0.9755, -0.6419, 0.0402, 1.0325, -0.4493, 0.1027, 0.8896, -0.5802, 0.2065, 1.1249, -0.8477, -0.0223, 1.1558, -0.6419, 0.0402, 1.0325, -0.7953, 0.144, 1.2538, -1.0645, -0.0848, 1.2584, -0.8477, -0.0223, 1.1558, -1.022, 0.0815, 1.361, -1.2904, -0.1473, 1.3392, -1.0645, -0.0848, 1.2584, -1.2582, 0.019, 1.4455, -1.5231, -0.2098, 1.3975, -1.2904, -0.1473, 1.3392, -1.5014, -0.0435, 1.5065, -1.7604, -0.2723, 1.4327, -1.5231, -0.2098, 1.3975, -1.7495, -0.106, 1.5433, -2, -0.3348, 1.4445, -1.7604, -0.2723, 1.4327, -2, -0.1685, 1.5556, -1, 0, -1, -0.8, 0, -1, -1.0048, -0.0625, -0.902, -1.0048, -0.0625, -0.902, -0.8058, -0.0625, -0.8824, -1.0192, -0.125, -0.8049, -1.0192, -0.125, -0.8049, -0.8231, -0.125, -0.7659, -1.0431, -0.1875, -0.7097, -1.0431, -0.1875, -0.7097, -0.8517, -0.1875, -0.6517, -1.0761, -0.25, -0.6173, -1.0761, -0.25, -0.6173, -0.8913, -0.25, -0.5408, -1.1181, -0.3125, -0.5286, -1.1181, -0.3125, -0.5286, -0.9417, -0.3125, -0.4343, -1.1685, -0.375, -0.4444, -1.1685, -0.375, -0.4444, -1.0022, -0.375, -0.3333, -1.227, -0.4375, -0.3656, -1.2929, -0.5, -0.2929, -1.227, -0.4375, -0.3656, -1.1515, -0.5, -0.1515, -1.3656, -0.5625, -0.227, -1.2929, -0.5, -0.2929, -1.2387, -0.5625, -0.0724, -1.3656, -0.5625, -0.227, -1.2387, -0.5625, -0.0724, -1.4444, -0.625, -0.1685, -1.4444, -0.625, -0.1685, -1.3333, -0.625, -0.0022, -1.5286, -0.6875, -0.1181, -1.6173, -0.75, -0.0761, -1.5286, -0.6875, -0.1181, -1.5408, -0.75, 0.1087, -1.7097, -0.8125, -0.0431, -1.6173, -0.75, -0.0761, -1.6517, -0.8125, 0.1483, -1.7097, -0.8125, -0.0431, -1.6517, -0.8125, 0.1483, -1.8049, -0.875, -0.0192, -1.902, -0.9375, -0.0048, -1.8049, -0.875, -0.0192, -1.8824, -0.9375, 0.1942, -2, -1, 0, -1.902, -0.9375, -0.0048, -2, -1, 0.2, 0.5556, 0.8315, -1, 0.4445, 0.6652, -1, 0.5657, 0.5657, -1, 0.8315, 0.5556, -1, 0.7071, 0.7071, -1, 0.6652, 0.4445, -1, 0.9808, 0.1951, -1, 0.9239, 0.3827, -1, 0.7391, 0.3061, -1, 0.9808, -0.1951, -1, 1, 0, -1, 0.7846, -0.1561, -1, 0.8315, -0.5556, -1, 0.9239, -0.3827, -1, 0.7391, -0.3061, -1, 0.5556, -0.8315, -1, 0.7071, -0.7071, -1, 0.4445, -0.6652, -1, 0.1951, -0.9808, -1, 0.3827, -0.9239, -1, 0.3061, -0.7391, -1, -0.1951, -0.9808, -1, 0, -1, -1, -0.1561, -0.7846, -1, -0.5556, -0.8315, -1, -0.3827, -0.9239, -1, -0.4445, -0.6652, -1, -0.8315, -0.5556, -1, -0.7071, -0.7071, -1, -0.6652, -0.4445, -1, -0.9808, -0.1951, -1, -0.9239, -0.3827, -1, -0.7391, -0.3061, -1, -0.8, 0, -1, -1, 0, -1, -0.7846, -0.1561, -1, -0.7846, -0.1561, -1, -1, 0, -1, -0.9808, -0.1951, -1, -0.9239, -0.3827, -1, -0.8315, -0.5556, -1, -0.7391, -0.3061, -1, -0.3827, -0.9239, -1, -0.1951, -0.9808, -1, -0.3061, -0.7391, -1, 0.3827, -0.9239, -1, 0.5556, -0.8315, -1, 0.4445, -0.6652, -1, 0.9239, -0.3827, -1, 0.9808, -0.1951, -1, 0.7391, -0.3061, -1, 0.9239, 0.3827, -1, 0.8315, 0.5556, -1, 0.6652, 0.4445, -1, 0.5556, 0.8315, -1, 0.5657, 0.5657, -1, 0.7071, 0.7071, -1, 0.5657, 0.5657, -1, 0.6652, 0.4445, -1, 0.7071, 0.7071, -1, -0.7846, -0.1561, -1, -0.9808, -0.1951, -1, -0.7391, -0.3061, -1, -0.7391, -0.3061, -1, -0.8315, -0.5556, -1, -0.6652, -0.4445, -1, 0.9239, 0.3827, -1, 0.6652, 0.4445, -1, 0.7391, 0.3061, -1, 0.9808, 0.1951, -1, 0.7391, 0.3061, -1, 0.7846, 0.1561, -1, -0.6652, -0.4445, -1, -0.7071, -0.7071, -1, -0.5657, -0.5657, -1, -0.5657, -0.5657, -1, -0.7071, -0.7071, -1, -0.4445, -0.6652, -1, 0.9808, 0.1951, -1, 0.7846, 0.1561, -1, 1, 0, -1, 0.7846, 0.1561, -1, 0.8, 0, -1, 1, 0, -1, -0.7071, -0.7071, -1, -0.5556, -0.8315, -1, -0.4445, -0.6652, -1, -0.4445, -0.6652, -1, -0.3827, -0.9239, -1, -0.3061, -0.7391, -1, 0.8, 0, -1, 0.7846, -0.1561, -1, 1, 0, -1, 0.7846, -0.1561, -1, 0.7391, -0.3061, -1, 0.9808, -0.1951, -1, -0.3061, -0.7391, -1, -0.1951, -0.9808, -1, -0.1561, -0.7846, -1, -0.1561, -0.7846, -1, 0, -1, -1, 0, -0.8, -1, 0.8315, -0.5556, -1, 0.7391, -0.3061, -1, 0.6652, -0.4445, -1, 0.8315, -0.5556, -1, 0.6652, -0.4445, -1, 0.7071, -0.7071, -1, 0, -0.8, -1, 0, -1, -1, 0.1561, -0.7846, -1, 0.1561, -0.7846, -1, 0, -1, -1, 0.1951, -0.9808, -1, 0.6652, -0.4445, -1, 0.5657, -0.5657, -1, 0.7071, -0.7071, -1, 0.3061, -0.7391, -1, 0.1561, -0.7846, -1, 0.1951, -0.9808, -1, 0.5657, -0.5657, -1, 0.4445, -0.6652, -1, 0.7071, -0.7071, -1, -2, -0.1685, 1.5556, -2, -0.2929, 1.7071, -2, -0.4343, 1.5657, -2, -0.3348, 1.4445, -2, -0.1685, 1.5556, -2, -0.4343, 1.5657, -2, -0.4444, 1.8315, -2, -0.6173, 1.9239, -2, -0.6939, 1.7391, -2, -0.8049, 1.9808, -2, -1, 2, -2, -0.8439, 1.7846, -2, -1.1951, 1.9808, -2, -1.3827, 1.9239, -2, -1.1561, 1.7846, -2, -1.5556, 1.8315, -2, -1.7071, 1.7071, -2, -1.4445, 1.6652, -2, -1.8315, 1.5556, -2, -1.9239, 1.3827, -2, -1.6652, 1.4445, -2, -1.9808, 1.1951, -2, -2, 1, -2, -1.7846, 1.1561, -2, -1.9808, 0.8049, -2, -1.9239, 0.6173, -2, -1.7391, 0.6939, -2, -1.8315, 0.4444, -2, -1.7071, 0.2929, -2, -1.6652, 0.5555, -2, -1.5556, 0.1685, -2, -1.3827, 0.0761, -2, -1.3061, 0.2609, -2, -1.1951, 0.0192, -2, -1, 0, -2, -1.1561, 0.2154, -2, -1, 0.2, -2, -1.1561, 0.2154, -2, -1, 0, -2, -1.1561, 0.2154, -2, -1.3061, 0.2609, -2, -1.1951, 0.0192, -2, -1.3827, 0.0761, -2, -1.1951, 0.0192, -2, -1.3061, 0.2609, -2, -1.9239, 0.6173, -2, -1.8315, 0.4444, -2, -1.6652, 0.5555, -2, -1.9239, 1.3827, -2, -1.9808, 1.1951, -2, -1.7391, 1.3061, -2, -1.3827, 1.9239, -2, -1.5556, 1.8315, -2, -1.3061, 1.7391, -2, -0.6173, 1.9239, -2, -0.8049, 1.9808, -2, -0.6939, 1.7391, -2, -0.4343, 1.5657, -2, -0.2929, 1.7071, -2, -0.5555, 1.6652, -2, -0.5555, 1.6652, -2, -0.2929, 1.7071, -2, -0.4444, 1.8315, -2, -1.5556, 0.1685, -2, -1.3061, 0.2609, -2, -1.4445, 0.3348, -2, -1.5556, 0.1685, -2, -1.4445, 0.3348, -2, -1.7071, 0.2929, -2, -0.5555, 1.6652, -2, -0.4444, 1.8315, -2, -0.6939, 1.7391, -2, -0.6939, 1.7391, -2, -0.8049, 1.9808, -2, -0.8439, 1.7846, -2, -1.4445, 0.3348, -2, -1.5657, 0.4343, -2, -1.7071, 0.2929, -2, -1.5657, 0.4343, -2, -1.6652, 0.5555, -2, -1.7071, 0.2929, -2, -0.8439, 1.7846, -2, -1, 2, -2, -1, 1.8, -2, -1, 1.8, -2, -1, 2, -2, -1.1561, 1.7846, -2, -1.9239, 0.6173, -2, -1.6652, 0.5555, -2, -1.7391, 0.6939, -2, -1.9808, 0.8049, -2, -1.7391, 0.6939, -2, -1.7846, 0.8439, -2, -1, 2, -2, -1.1951, 1.9808, -2, -1.1561, 1.7846, -2, -1.1561, 1.7846, -2, -1.3827, 1.9239, -2, -1.3061, 1.7391, -2, -1.9808, 0.8049, -2, -1.7846, 0.8439, -2, -2, 1, -2, -1.7846, 0.8439, -2, -1.8, 1, -2, -2, 1, -2, -1.3061, 1.7391, -2, -1.5556, 1.8315, -2, -1.4445, 1.6652, -2, -1.4445, 1.6652, -2, -1.7071, 1.7071, -2, -1.5657, 1.5657, -2, -1.8, 1, -2, -1.7846, 1.1561, -2, -2, 1, -2, -1.7846, 1.1561, -2, -1.7391, 1.3061, -2, -1.9808, 1.1951, -2, -1.5657, 1.5657, -2, -1.7071, 1.7071, -2, -1.6652, 1.4445, -2, -1.7391, 1.3061, -2, -1.6652, 1.4445, -2, -1.9239, 1.3827) -[sub_resource type="ConcavePolygonShape" id=1] -data = PoolVector3Array( 0.5433, 0.769, -0.7495, 0.7071, 0.7071, -1, 0.6941, 0.6446, -0.7347, 0.5065, 0.7065, -0.5014, 0.6941, 0.6446, -0.7347, 0.6551, 0.5821, -0.4719, 0.4455, 0.644, -0.2582, 0.6551, 0.5821, -0.4719, 0.5905, 0.5196, -0.2142, 0.361, 0.5815, -0.022, 0.5905, 0.5196, -0.2142, 0.501, 0.4571, 0.036, 0.2538, 0.519, 0.2047, 0.501, 0.4571, 0.036, 0.3875, 0.3946, 0.2761, 0.1249, 0.4565, 0.4198, 0.3875, 0.3946, 0.2761, 0.2509, 0.3321, 0.504, -0.0245, 0.394, 0.6212, 0.2509, 0.3321, 0.504, 0.0926, 0.2696, 0.7174, -0.1929, 0.3315, 0.8071, 0.0926, 0.2696, 0.7174, -0.0858, 0.2071, 0.9142, -0.3788, 0.269, 0.9755, -0.0858, 0.2071, 0.9142, -0.2826, 0.1446, 1.0926, -0.5802, 0.2065, 1.1249, -0.2826, 0.1446, 1.0926, -0.496, 0.0821, 1.2509, -0.7953, 0.144, 1.2538, -0.496, 0.0821, 1.2509, -0.7239, 0.0196, 1.3875, -1.022, 0.0815, 1.361, -0.7239, 0.0196, 1.3875, -0.964, -0.0429, 1.501, -1.2582, 0.019, 1.4455, -0.964, -0.0429, 1.501, -1.2142, -0.1054, 1.5905, -1.5014, -0.0435, 1.5065, -1.2142, -0.1054, 1.5905, -1.4719, -0.1679, 1.6551, -1.7495, -0.106, 1.5433, -1.4719, -0.1679, 1.6551, -1.7347, -0.2304, 1.6941, -2, -0.1685, 1.5556, -1.7347, -0.2304, 1.6941, -2, -0.2929, 1.7071, 0.6941, 0.6446, -0.7347, 0.8315, 0.5556, -1, 0.8178, 0.4931, -0.7225, 0.6551, 0.5821, -0.4719, 0.8178, 0.4931, -0.7225, 0.7771, 0.4306, -0.4476, 0.5905, 0.5196, -0.2142, 0.7771, 0.4306, -0.4476, 0.7095, 0.3681, -0.1781, 0.501, 0.4571, 0.036, 0.7095, 0.3681, -0.1781, 0.6159, 0.3056, 0.0836, 0.3875, 0.3946, 0.2761, 0.6159, 0.3056, 0.0836, 0.4971, 0.2431, 0.3347, 0.2509, 0.3321, 0.504, 0.4971, 0.2431, 0.3347, 0.3543, 0.1806, 0.5731, 0.0926, 0.2696, 0.7174, 0.3543, 0.1806, 0.5731, 0.1888, 0.1181, 0.7963, -0.0858, 0.2071, 0.9142, 0.1888, 0.1181, 0.7963, 0.0022, 0.0556, 1.0022, -0.2826, 0.1446, 1.0926, 0.0022, 0.0556, 1.0022, -0.2037, -0.0069, 1.1888, -0.496, 0.0821, 1.2509, -0.2037, -0.0069, 1.1888, -0.4269, -0.0694, 1.3543, -0.7239, 0.0196, 1.3875, -0.4269, -0.0694, 1.3543, -0.6653, -0.1319, 1.4971, -0.964, -0.0429, 1.501, -0.6653, -0.1319, 1.4971, -0.9164, -0.1944, 1.6159, -1.2142, -0.1054, 1.5905, -0.9164, -0.1944, 1.6159, -1.1781, -0.2569, 1.7095, -1.4719, -0.1679, 1.6551, -1.1781, -0.2569, 1.7095, -1.4476, -0.3194, 1.7771, -1.7347, -0.2304, 1.6941, -1.4476, -0.3194, 1.7771, -1.7225, -0.3819, 1.8178, -2, -0.2929, 1.7071, -1.7225, -0.3819, 1.8178, -2, -0.4444, 1.8315, 0.8178, 0.4931, -0.7225, 0.9239, 0.3827, -1, 0.9098, 0.3202, -0.7134, 0.7771, 0.4306, -0.4476, 0.9098, 0.3202, -0.7134, 0.8677, 0.2577, -0.4296, 0.7095, 0.3681, -0.1781, 0.8677, 0.2577, -0.4296, 0.798, 0.1952, -0.1512, 0.6159, 0.3056, 0.0836, 0.798, 0.1952, -0.1512, 0.7013, 0.1327, 0.1189, 0.4971, 0.2431, 0.3347, 0.7013, 0.1327, 0.1189, 0.5786, 0.0702, 0.3783, 0.3543, 0.1806, 0.5731, 0.5786, 0.0702, 0.3783, 0.4311, 0.0077, 0.6244, 0.1888, 0.1181, 0.7963, 0.4311, 0.0077, 0.6244, 0.2602, -0.0548, 0.8549, 0.0022, 0.0556, 1.0022, 0.2602, -0.0548, 0.8549, 0.0675, -0.1173, 1.0675, -0.2037, -0.0069, 1.1888, 0.0675, -0.1173, 1.0675, -0.1451, -0.1798, 1.2602, -0.4269, -0.0694, 1.3543, -0.1451, -0.1798, 1.2602, -0.3756, -0.2423, 1.4311, -0.6653, -0.1319, 1.4971, -0.3756, -0.2423, 1.4311, -0.6217, -0.3048, 1.5786, -0.9164, -0.1944, 1.6159, -0.6217, -0.3048, 1.5786, -0.8811, -0.3673, 1.7013, -1.1781, -0.2569, 1.7095, -0.8811, -0.3673, 1.7013, -1.1512, -0.4298, 1.798, -1.4476, -0.3194, 1.7771, -1.1512, -0.4298, 1.798, -1.4296, -0.4923, 1.8677, -1.7225, -0.3819, 1.8178, -1.4296, -0.4923, 1.8677, -1.7134, -0.5548, 1.9098, -2, -0.4444, 1.8315, -1.7134, -0.5548, 1.9098, -2, -0.6173, 1.9239, 0.9098, 0.3202, -0.7134, 0.9808, 0.1951, -1, 0.9664, 0.1326, -0.7078, 0.8677, 0.2577, -0.4296, 0.9664, 0.1326, -0.7078, 0.9235, 0.0701, -0.4185, 0.798, 0.1952, -0.1512, 0.9235, 0.0701, -0.4185, 0.8524, 0.0076, -0.1347, 0.7013, 0.1327, 0.1189, 0.8524, 0.0076, -0.1347, 0.7539, -0.0549, 0.1407, 0.5786, 0.0702, 0.3783, 0.7539, -0.0549, 0.1407, 0.6288, -0.1174, 0.4051, 0.4311, 0.0077, 0.6244, 0.6288, -0.1174, 0.4051, 0.4784, -0.1799, 0.656, 0.2602, -0.0548, 0.8549, 0.4784, -0.1799, 0.656, 0.3042, -0.2424, 0.891, 0.0675, -0.1173, 1.0675, 0.3042, -0.2424, 0.891, 0.1077, -0.3049, 1.1077, -0.1451, -0.1798, 1.2602, 0.1077, -0.3049, 1.1077, -0.109, -0.3674, 1.3042, -0.3756, -0.2423, 1.4311, -0.109, -0.3674, 1.3042, -0.344, -0.4299, 1.4784, -0.6217, -0.3048, 1.5786, -0.344, -0.4299, 1.4784, -0.5949, -0.4924, 1.6288, -0.8811, -0.3673, 1.7013, -0.5949, -0.4924, 1.6288, -0.8593, -0.5549, 1.7539, -1.1512, -0.4298, 1.798, -0.8593, -0.5549, 1.7539, -1.1347, -0.6174, 1.8524, -1.4296, -0.4923, 1.8677, -1.1347, -0.6174, 1.8524, -1.4185, -0.6799, 1.9235, -1.7134, -0.5548, 1.9098, -1.4185, -0.6799, 1.9235, -1.7078, -0.7424, 1.9664, -2, -0.6173, 1.9239, -1.7078, -0.7424, 1.9664, -2, -0.8049, 1.9808, 0.9664, 0.1326, -0.7078, 1, 0, -1, 0.9856, -0.0625, -0.7059, 0.9235, 0.0701, -0.4185, 0.9856, -0.0625, -0.7059, 0.9424, -0.125, -0.4147, 0.8524, 0.0076, -0.1347, 0.9424, -0.125, -0.4147, 0.8708, -0.1875, -0.1291, 0.7539, -0.0549, 0.1407, 0.8708, -0.1875, -0.1291, 0.7716, -0.25, 0.148, 0.6288, -0.1174, 0.4051, 0.7716, -0.25, 0.148, 0.6458, -0.3125, 0.4142, 0.4784, -0.1799, 0.656, 0.6458, -0.3125, 0.4142, 0.4944, -0.375, 0.6667, 0.3042, -0.2424, 0.891, 0.4944, -0.375, 0.6667, 0.319, -0.4375, 0.9032, 0.1077, -0.3049, 1.1077, 0.319, -0.4375, 0.9032, 0.1213, -0.5, 1.1213, -0.109, -0.3674, 1.3042, 0.1213, -0.5, 1.1213, -0.0968, -0.5625, 1.319, -0.344, -0.4299, 1.4784, -0.0968, -0.5625, 1.319, -0.3333, -0.625, 1.4944, -0.5949, -0.4924, 1.6288, -0.3333, -0.625, 1.4944, -0.5858, -0.6875, 1.6458, -0.8593, -0.5549, 1.7539, -0.5858, -0.6875, 1.6458, -0.852, -0.75, 1.7716, -1.1347, -0.6174, 1.8524, -0.852, -0.75, 1.7716, -1.1291, -0.8125, 1.8708, -1.4185, -0.6799, 1.9235, -1.1291, -0.8125, 1.8708, -1.4147, -0.875, 1.9424, -1.7078, -0.7424, 1.9664, -1.4147, -0.875, 1.9424, -1.7059, -0.9375, 1.9856, -2, -0.8049, 1.9808, -1.7059, -0.9375, 1.9856, -2, -1, 2, 0.9856, -0.0625, -0.7059, 0.9808, -0.1951, -1, 0.9664, -0.2576, -0.7078, 0.9424, -0.125, -0.4147, 0.9664, -0.2576, -0.7078, 0.9235, -0.3201, -0.4185, 0.8708, -0.1875, -0.1291, 0.9235, -0.3201, -0.4185, 0.8524, -0.3826, -0.1347, 0.7716, -0.25, 0.148, 0.8524, -0.3826, -0.1347, 0.7539, -0.4451, 0.1407, 0.6458, -0.3125, 0.4142, 0.7539, -0.4451, 0.1407, 0.6288, -0.5076, 0.4051, 0.4944, -0.375, 0.6667, 0.6288, -0.5076, 0.4051, 0.4784, -0.5701, 0.656, 0.319, -0.4375, 0.9032, 0.4784, -0.5701, 0.656, 0.3042, -0.6326, 0.891, 0.1213, -0.5, 1.1213, 0.3042, -0.6326, 0.891, 0.1077, -0.6951, 1.1077, -0.0968, -0.5625, 1.319, 0.1077, -0.6951, 1.1077, -0.109, -0.7576, 1.3042, -0.3333, -0.625, 1.4944, -0.109, -0.7576, 1.3042, -0.344, -0.8201, 1.4784, -0.5858, -0.6875, 1.6458, -0.344, -0.8201, 1.4784, -0.5949, -0.8826, 1.6288, -0.852, -0.75, 1.7716, -0.5949, -0.8826, 1.6288, -0.8593, -0.9451, 1.7539, -1.1291, -0.8125, 1.8708, -0.8593, -0.9451, 1.7539, -1.1347, -1.0076, 1.8524, -1.4147, -0.875, 1.9424, -1.1347, -1.0076, 1.8524, -1.4185, -1.0701, 1.9235, -1.7059, -0.9375, 1.9856, -1.4185, -1.0701, 1.9235, -1.7078, -1.1326, 1.9664, -2, -1, 2, -1.7078, -1.1326, 1.9664, -2, -1.1951, 1.9808, 0.9664, -0.2576, -0.7078, 0.9239, -0.3827, -1, 0.9098, -0.4452, -0.7134, 0.9235, -0.3201, -0.4185, 0.9098, -0.4452, -0.7134, 0.8677, -0.5077, -0.4296, 0.8524, -0.3826, -0.1347, 0.8677, -0.5077, -0.4296, 0.798, -0.5702, -0.1512, 0.7539, -0.4451, 0.1407, 0.798, -0.5702, -0.1512, 0.7013, -0.6327, 0.1189, 0.6288, -0.5076, 0.4051, 0.7013, -0.6327, 0.1189, 0.5786, -0.6952, 0.3783, 0.4784, -0.5701, 0.656, 0.5786, -0.6952, 0.3783, 0.4311, -0.7577, 0.6244, 0.3042, -0.6326, 0.891, 0.4311, -0.7577, 0.6244, 0.2602, -0.8202, 0.8549, 0.1077, -0.6951, 1.1077, 0.2602, -0.8202, 0.8549, 0.0675, -0.8827, 1.0675, -0.109, -0.7576, 1.3042, 0.0675, -0.8827, 1.0675, -0.1451, -0.9452, 1.2602, -0.344, -0.8201, 1.4784, -0.1451, -0.9452, 1.2602, -0.3756, -1.0077, 1.4311, -0.5949, -0.8826, 1.6288, -0.3756, -1.0077, 1.4311, -0.6217, -1.0702, 1.5786, -0.8593, -0.9451, 1.7539, -0.6217, -1.0702, 1.5786, -0.8811, -1.1327, 1.7013, -1.1347, -1.0076, 1.8524, -0.8811, -1.1327, 1.7013, -1.1512, -1.1952, 1.798, -1.4185, -1.0701, 1.9235, -1.1512, -1.1952, 1.798, -1.4296, -1.2577, 1.8677, -1.7078, -1.1326, 1.9664, -1.4296, -1.2577, 1.8677, -1.7134, -1.3202, 1.9098, -2, -1.1951, 1.9808, -1.7134, -1.3202, 1.9098, -2, -1.3827, 1.9239, 0.9098, -0.4452, -0.7134, 0.8315, -0.5556, -1, 0.8178, -0.6181, -0.7225, 0.8677, -0.5077, -0.4296, 0.8178, -0.6181, -0.7225, 0.7771, -0.6806, -0.4476, 0.798, -0.5702, -0.1512, 0.7771, -0.6806, -0.4476, 0.7095, -0.7431, -0.1781, 0.7013, -0.6327, 0.1189, 0.7095, -0.7431, -0.1781, 0.6159, -0.8056, 0.0836, 0.5786, -0.6952, 0.3783, 0.6159, -0.8056, 0.0836, 0.4971, -0.8681, 0.3347, 0.4311, -0.7577, 0.6244, 0.4971, -0.8681, 0.3347, 0.3543, -0.9306, 0.5731, 0.2602, -0.8202, 0.8549, 0.3543, -0.9306, 0.5731, 0.1888, -0.9931, 0.7963, 0.0675, -0.8827, 1.0675, 0.1888, -0.9931, 0.7963, 0.0022, -1.0556, 1.0022, -0.1451, -0.9452, 1.2602, 0.0022, -1.0556, 1.0022, -0.2037, -1.1181, 1.1888, -0.3756, -1.0077, 1.4311, -0.2037, -1.1181, 1.1888, -0.4269, -1.1806, 1.3543, -0.6217, -1.0702, 1.5786, -0.4269, -1.1806, 1.3543, -0.6653, -1.2431, 1.4971, -0.8811, -1.1327, 1.7013, -0.6653, -1.2431, 1.4971, -0.9164, -1.3056, 1.6159, -1.1512, -1.1952, 1.798, -0.9164, -1.3056, 1.6159, -1.1781, -1.3681, 1.7095, -1.4296, -1.2577, 1.8677, -1.1781, -1.3681, 1.7095, -1.4476, -1.4306, 1.7771, -1.7134, -1.3202, 1.9098, -1.4476, -1.4306, 1.7771, -1.7225, -1.4931, 1.8178, -2, -1.3827, 1.9239, -1.7225, -1.4931, 1.8178, -2, -1.5556, 1.8315, 0.8178, -0.6181, -0.7225, 0.7071, -0.7071, -1, 0.6941, -0.7696, -0.7347, 0.7771, -0.6806, -0.4476, 0.6941, -0.7696, -0.7347, 0.6551, -0.8321, -0.4719, 0.7095, -0.7431, -0.1781, 0.6551, -0.8321, -0.4719, 0.5905, -0.8946, -0.2142, 0.6159, -0.8056, 0.0836, 0.5905, -0.8946, -0.2142, 0.501, -0.9571, 0.036, 0.4971, -0.8681, 0.3347, 0.501, -0.9571, 0.036, 0.3875, -1.0196, 0.2761, 0.3543, -0.9306, 0.5731, 0.3875, -1.0196, 0.2761, 0.2509, -1.0821, 0.504, 0.1888, -0.9931, 0.7963, 0.2509, -1.0821, 0.504, 0.0926, -1.1446, 0.7174, 0.0022, -1.0556, 1.0022, 0.0926, -1.1446, 0.7174, -0.0858, -1.2071, 0.9142, -0.2037, -1.1181, 1.1888, -0.0858, -1.2071, 0.9142, -0.2826, -1.2696, 1.0926, -0.4269, -1.1806, 1.3543, -0.2826, -1.2696, 1.0926, -0.496, -1.3321, 1.2509, -0.6653, -1.2431, 1.4971, -0.496, -1.3321, 1.2509, -0.7239, -1.3946, 1.3875, -0.9164, -1.3056, 1.6159, -0.7239, -1.3946, 1.3875, -0.964, -1.4571, 1.501, -1.1781, -1.3681, 1.7095, -0.964, -1.4571, 1.501, -1.2142, -1.5196, 1.5905, -1.4476, -1.4306, 1.7771, -1.2142, -1.5196, 1.5905, -1.4719, -1.5821, 1.6551, -1.7225, -1.4931, 1.8178, -1.4719, -1.5821, 1.6551, -1.7347, -1.6446, 1.6941, -2, -1.5556, 1.8315, -1.7347, -1.6446, 1.6941, -2, -1.7071, 1.7071, 0.6941, -0.7696, -0.7347, 0.5556, -0.8315, -1, 0.5433, -0.894, -0.7495, 0.6551, -0.8321, -0.4719, 0.5433, -0.894, -0.7495, 0.5065, -0.9565, -0.5014, 0.5905, -0.8946, -0.2142, 0.5065, -0.9565, -0.5014, 0.4455, -1.019, -0.2582, 0.501, -0.9571, 0.036, 0.4455, -1.019, -0.2582, 0.361, -1.0815, -0.022, 0.3875, -1.0196, 0.2761, 0.361, -1.0815, -0.022, 0.2538, -1.144, 0.2047, 0.2509, -1.0821, 0.504, 0.2538, -1.144, 0.2047, 0.1249, -1.2065, 0.4198, 0.0926, -1.1446, 0.7174, 0.1249, -1.2065, 0.4198, -0.0245, -1.269, 0.6212, -0.0858, -1.2071, 0.9142, -0.0245, -1.269, 0.6212, -0.1929, -1.3315, 0.8071, -0.2826, -1.2696, 1.0926, -0.1929, -1.3315, 0.8071, -0.3788, -1.394, 0.9755, -0.496, -1.3321, 1.2509, -0.3788, -1.394, 0.9755, -0.5802, -1.4565, 1.1249, -0.7239, -1.3946, 1.3875, -0.5802, -1.4565, 1.1249, -0.7953, -1.519, 1.2538, -0.964, -1.4571, 1.501, -0.7953, -1.519, 1.2538, -1.022, -1.5815, 1.361, -1.2142, -1.5196, 1.5905, -1.022, -1.5815, 1.361, -1.2582, -1.644, 1.4455, -1.4719, -1.5821, 1.6551, -1.2582, -1.644, 1.4455, -1.5014, -1.7065, 1.5065, -1.7347, -1.6446, 1.6941, -1.5014, -1.7065, 1.5065, -1.7495, -1.769, 1.5433, -2, -1.7071, 1.7071, -1.7495, -1.769, 1.5433, -2, -1.8315, 1.5556, 0.5433, -0.894, -0.7495, 0.3827, -0.9239, -1, 0.3712, -0.9864, -0.7665, 0.5065, -0.9565, -0.5014, 0.3712, -0.9864, -0.7665, 0.3369, -1.0489, -0.5352, 0.4455, -1.019, -0.2582, 0.3369, -1.0489, -0.5352, 0.2801, -1.1114, -0.3083, 0.361, -1.0815, -0.022, 0.2801, -1.1114, -0.3083, 0.2013, -1.1739, -0.0882, 0.2538, -1.144, 0.2047, 0.2013, -1.1739, -0.0882, 0.1013, -1.2364, 0.1232, 0.1249, -1.2065, 0.4198, 0.1013, -1.2364, 0.1232, -0.0189, -1.2989, 0.3237, -0.0245, -1.269, 0.6212, -0.0189, -1.2989, 0.3237, -0.1582, -1.3614, 0.5116, -0.1929, -1.3315, 0.8071, -0.1582, -1.3614, 0.5116, -0.3152, -1.4239, 0.6848, -0.3788, -1.394, 0.9755, -0.3152, -1.4239, 0.6848, -0.4884, -1.4864, 0.8418, -0.5802, -1.4565, 1.1249, -0.4884, -1.4864, 0.8418, -0.6763, -1.5489, 0.9811, -0.7953, -1.519, 1.2538, -0.6763, -1.5489, 0.9811, -0.8768, -1.6114, 1.1013, -1.022, -1.5815, 1.361, -0.8768, -1.6114, 1.1013, -1.0882, -1.6739, 1.2013, -1.2582, -1.644, 1.4455, -1.0882, -1.6739, 1.2013, -1.3083, -1.7364, 1.2801, -1.5014, -1.7065, 1.5065, -1.3083, -1.7364, 1.2801, -1.5352, -1.7989, 1.3369, -1.7495, -1.769, 1.5433, -1.5352, -1.7989, 1.3369, -1.7665, -1.8614, 1.3712, -2, -1.8315, 1.5556, -1.7665, -1.8614, 1.3712, -2, -1.9239, 1.3827, 0.3712, -0.9864, -0.7665, 0.1951, -0.9808, -1, 0.1845, -1.0433, -0.7848, 0.3369, -1.0489, -0.5352, 0.1845, -1.0433, -0.7848, 0.1529, -1.1058, -0.5718, 0.2801, -1.1114, -0.3083, 0.1529, -1.1058, -0.5718, 0.1006, -1.1683, -0.3628, 0.2013, -1.1739, -0.0882, 0.1006, -1.1683, -0.3628, 0.028, -1.2308, -0.16, 0.1013, -1.2364, 0.1232, 0.028, -1.2308, -0.16, -0.0641, -1.2933, 0.0348, -0.0189, -1.2989, 0.3237, -0.0641, -1.2933, 0.0348, -0.1748, -1.3558, 0.2195, -0.1582, -1.3614, 0.5116, -0.1748, -1.3558, 0.2195, -0.3032, -1.4183, 0.3926, -0.3152, -1.4239, 0.6848, -0.3032, -1.4183, 0.3926, -0.4478, -1.4808, 0.5522, -0.4884, -1.4864, 0.8418, -0.4478, -1.4808, 0.5522, -0.6075, -1.5433, 0.6968, -0.6763, -1.5489, 0.9811, -0.6075, -1.5433, 0.6968, -0.7805, -1.6058, 0.8252, -0.8768, -1.6114, 1.1013, -0.7805, -1.6058, 0.8252, -0.9652, -1.6683, 0.9359, -1.0882, -1.6739, 1.2013, -0.9652, -1.6683, 0.9359, -1.16, -1.7308, 1.028, -1.3083, -1.7364, 1.2801, -1.16, -1.7308, 1.028, -1.3628, -1.7933, 1.1006, -1.5352, -1.7989, 1.3369, -1.3628, -1.7933, 1.1006, -1.5718, -1.8558, 1.1529, -1.7665, -1.8614, 1.3712, -1.5718, -1.8558, 1.1529, -1.7848, -1.9183, 1.1845, -2, -1.9239, 1.3827, -1.7848, -1.9183, 1.1845, -2, -1.9808, 1.1951, 0.1845, -1.0433, -0.7848, 0, -1, -1, -0.0096, -1.0625, -0.804, 0.1529, -1.1058, -0.5718, -0.0096, -1.0625, -0.804, -0.0384, -1.125, -0.6098, 0.1006, -1.1683, -0.3628, -0.0384, -1.125, -0.6098, -0.0861, -1.1875, -0.4194, 0.028, -1.2308, -0.16, -0.0861, -1.1875, -0.4194, -0.1522, -1.25, -0.2346, -0.0641, -1.2933, 0.0348, -0.1522, -1.25, -0.2346, -0.2362, -1.3125, -0.0572, -0.1748, -1.3558, 0.2195, -0.2362, -1.3125, -0.0572, -0.3371, -1.375, 0.1111, -0.3032, -1.4183, 0.3926, -0.3371, -1.375, 0.1111, -0.454, -1.4375, 0.2688, -0.4478, -1.4808, 0.5522, -0.454, -1.4375, 0.2688, -0.5858, -1.5, 0.4142, -0.6075, -1.5433, 0.6968, -0.5858, -1.5, 0.4142, -0.7312, -1.5625, 0.546, -0.7805, -1.6058, 0.8252, -0.7312, -1.5625, 0.546, -0.8889, -1.625, 0.6629, -0.9652, -1.6683, 0.9359, -0.8889, -1.625, 0.6629, -1.0572, -1.6875, 0.7638, -1.16, -1.7308, 1.028, -1.0572, -1.6875, 0.7638, -1.2346, -1.75, 0.8478, -1.3628, -1.7933, 1.1006, -1.2346, -1.75, 0.8478, -1.4194, -1.8125, 0.9139, -1.5718, -1.8558, 1.1529, -1.4194, -1.8125, 0.9139, -1.6098, -1.875, 0.9616, -1.7848, -1.9183, 1.1845, -1.6098, -1.875, 0.9616, -1.804, -1.9375, 0.9904, -2, -1.9808, 1.1951, -1.804, -1.9375, 0.9904, -2, -2, 1, -0.2038, -1.0433, -0.8231, 0, -1, -1, -0.1951, -0.9808, -1, -0.2298, -1.1058, -0.6479, -0.0096, -1.0625, -0.804, -0.2038, -1.0433, -0.8231, -0.2728, -1.1683, -0.4761, -0.0384, -1.125, -0.6098, -0.2298, -1.1058, -0.6479, -0.3325, -1.2308, -0.3093, -0.0861, -1.1875, -0.4194, -0.2728, -1.1683, -0.4761, -0.4082, -1.2933, -0.1492, -0.1522, -1.25, -0.2346, -0.3325, -1.2308, -0.3093, -0.4993, -1.3558, 0.0028, -0.2362, -1.3125, -0.0572, -0.4082, -1.2933, -0.1492, -0.6048, -1.4183, 0.145, -0.3371, -1.375, 0.1111, -0.4993, -1.3558, 0.0028, -0.7237, -1.4808, 0.2763, -0.454, -1.4375, 0.2688, -0.6048, -1.4183, 0.145, -0.855, -1.5433, 0.3952, -0.5858, -1.5, 0.4142, -0.7237, -1.4808, 0.2763, -0.9972, -1.6058, 0.5007, -0.7312, -1.5625, 0.546, -0.855, -1.5433, 0.3952, -1.1492, -1.6683, 0.5918, -0.8889, -1.625, 0.6629, -0.9972, -1.6058, 0.5007, -1.3093, -1.7308, 0.6675, -1.0572, -1.6875, 0.7638, -1.1492, -1.6683, 0.5918, -1.4761, -1.7933, 0.7272, -1.2346, -1.75, 0.8478, -1.3093, -1.7308, 0.6675, -1.6479, -1.8558, 0.7702, -1.4194, -1.8125, 0.9139, -1.4761, -1.7933, 0.7272, -1.8231, -1.9183, 0.7962, -1.6098, -1.875, 0.9616, -1.6479, -1.8558, 0.7702, -2, -1.9808, 0.8049, -1.804, -1.9375, 0.9904, -1.8231, -1.9183, 0.7962, -0.3905, -0.9864, -0.8415, -0.1951, -0.9808, -1, -0.3827, -0.9239, -1, -0.4138, -1.0489, -0.6845, -0.2038, -1.0433, -0.8231, -0.3905, -0.9864, -0.8415, -0.4523, -1.1114, -0.5305, -0.2298, -1.1058, -0.6479, -0.4138, -1.0489, -0.6845, -0.5058, -1.1739, -0.3811, -0.2728, -1.1683, -0.4761, -0.4523, -1.1114, -0.5305, -0.5737, -1.2364, -0.2376, -0.3325, -1.2308, -0.3093, -0.5058, -1.1739, -0.3811, -0.6553, -1.2989, -0.1015, -0.4082, -1.2933, -0.1492, -0.5737, -1.2364, -0.2376, -0.7498, -1.3614, 0.026, -0.4993, -1.3558, 0.0028, -0.6553, -1.2989, -0.1015, -0.8564, -1.4239, 0.1436, -0.6048, -1.4183, 0.145, -0.7498, -1.3614, 0.026, -0.974, -1.4864, 0.2502, -0.7237, -1.4808, 0.2763, -0.8564, -1.4239, 0.1436, -1.1015, -1.5489, 0.3447, -0.855, -1.5433, 0.3952, -0.974, -1.4864, 0.2502, -1.2376, -1.6114, 0.4263, -0.9972, -1.6058, 0.5007, -1.1015, -1.5489, 0.3447, -1.3811, -1.6739, 0.4942, -1.1492, -1.6683, 0.5918, -1.2376, -1.6114, 0.4263, -1.5305, -1.7364, 0.5477, -1.3093, -1.7308, 0.6675, -1.3811, -1.6739, 0.4942, -1.6845, -1.7989, 0.5862, -1.4761, -1.7933, 0.7272, -1.5305, -1.7364, 0.5477, -1.8415, -1.8614, 0.6095, -1.6479, -1.8558, 0.7702, -1.6845, -1.7989, 0.5862, -2, -1.9239, 0.6173, -1.8231, -1.9183, 0.7962, -1.8415, -1.8614, 0.6095, -0.5625, -0.894, -0.8584, -0.3827, -0.9239, -1, -0.5556, -0.8315, -1, -0.5833, -0.9565, -0.7182, -0.3905, -0.9864, -0.8415, -0.5625, -0.894, -0.8584, -0.6178, -1.019, -0.5807, -0.4138, -1.0489, -0.6845, -0.5833, -0.9565, -0.7182, -0.6655, -1.0815, -0.4472, -0.4523, -1.1114, -0.5305, -0.6178, -1.019, -0.5807, -0.7261, -1.144, -0.3191, -0.5058, -1.1739, -0.3811, -0.6655, -1.0815, -0.4472, -0.799, -1.2065, -0.1975, -0.5737, -1.2364, -0.2376, -0.7261, -1.144, -0.3191, -0.8834, -1.269, -0.0837, -0.6553, -1.2989, -0.1015, -0.799, -1.2065, -0.1975, -0.9786, -1.3315, 0.0214, -0.7498, -1.3614, 0.026, -0.8834, -1.269, -0.0837, -1.0837, -1.394, 0.1166, -0.8564, -1.4239, 0.1436, -0.9786, -1.3315, 0.0214, -1.1975, -1.4565, 0.201, -0.974, -1.4864, 0.2502, -1.0837, -1.394, 0.1166, -1.3191, -1.519, 0.2739, -1.1015, -1.5489, 0.3447, -1.1975, -1.4565, 0.201, -1.4472, -1.5815, 0.3345, -1.2376, -1.6114, 0.4263, -1.3191, -1.519, 0.2739, -1.5807, -1.644, 0.3822, -1.3811, -1.6739, 0.4942, -1.4472, -1.5815, 0.3345, -1.7182, -1.7065, 0.4167, -1.5305, -1.7364, 0.5477, -1.5807, -1.644, 0.3822, -1.8584, -1.769, 0.4375, -1.6845, -1.7989, 0.5862, -1.7182, -1.7065, 0.4167, -2, -1.8315, 0.4444, -1.8415, -1.8614, 0.6095, -1.8584, -1.769, 0.4375, -0.7133, -0.7696, -0.8733, -0.5556, -0.8315, -1, -0.7071, -0.7071, -1, -0.732, -0.8321, -0.7478, -0.5625, -0.894, -0.8584, -0.7133, -0.7696, -0.8733, -0.7628, -0.8946, -0.6247, -0.5833, -0.9565, -0.7182, -0.732, -0.8321, -0.7478, -0.8055, -0.9571, -0.5052, -0.6178, -1.019, -0.5807, -0.7628, -0.8946, -0.6247, -0.8598, -1.0196, -0.3905, -0.6655, -1.0815, -0.4472, -0.8055, -0.9571, -0.5052, -0.925, -1.0821, -0.2817, -0.7261, -1.144, -0.3191, -0.8598, -1.0196, -0.3905, -1.0006, -1.1446, -0.1798, -0.799, -1.2065, -0.1975, -0.925, -1.0821, -0.2817, -1.0858, -1.2071, -0.0858, -0.8834, -1.269, -0.0837, -1.0006, -1.1446, -0.1798, -1.1798, -1.2696, -0.0006, -0.9786, -1.3315, 0.0214, -1.0858, -1.2071, -0.0858, -1.2817, -1.3321, 0.075, -1.0837, -1.394, 0.1166, -1.1798, -1.2696, -0.0006, -1.3905, -1.3946, 0.1402, -1.1975, -1.4565, 0.201, -1.2817, -1.3321, 0.075, -1.5052, -1.4571, 0.1945, -1.3191, -1.519, 0.2739, -1.3905, -1.3946, 0.1402, -1.6247, -1.5196, 0.2372, -1.4472, -1.5815, 0.3345, -1.5052, -1.4571, 0.1945, -1.7478, -1.5821, 0.268, -1.5807, -1.644, 0.3822, -1.6247, -1.5196, 0.2372, -1.8733, -1.6446, 0.2867, -1.7182, -1.7065, 0.4167, -1.7478, -1.5821, 0.268, -2, -1.7071, 0.2929, -1.8584, -1.769, 0.4375, -1.8733, -1.6446, 0.2867, -0.8371, -0.6181, -0.8855, -0.7071, -0.7071, -1, -0.8315, -0.5556, -1, -0.8539, -0.6806, -0.772, -0.7133, -0.7696, -0.8733, -0.8371, -0.6181, -0.8855, -0.8818, -0.7431, -0.6608, -0.732, -0.8321, -0.7478, -0.8539, -0.6806, -0.772, -0.9204, -0.8056, -0.5528, -0.7628, -0.8946, -0.6247, -0.8818, -0.7431, -0.6608, -0.9694, -0.8681, -0.4492, -0.8055, -0.9571, -0.5052, -0.9204, -0.8056, -0.5528, -1.0284, -0.9306, -0.3508, -0.8598, -1.0196, -0.3905, -0.9694, -0.8681, -0.4492, -1.0967, -0.9931, -0.2587, -0.925, -1.0821, -0.2817, -1.0284, -0.9306, -0.3508, -1.1737, -1.0556, -0.1737, -1.0006, -1.1446, -0.1798, -1.0967, -0.9931, -0.2587, -1.2587, -1.1181, -0.0967, -1.0858, -1.2071, -0.0858, -1.1737, -1.0556, -0.1737, -1.3508, -1.1806, -0.0284, -1.1798, -1.2696, -0.0006, -1.2587, -1.1181, -0.0967, -1.4492, -1.2431, 0.0306, -1.2817, -1.3321, 0.075, -1.3508, -1.1806, -0.0284, -1.5528, -1.3056, 0.0796, -1.3905, -1.3946, 0.1402, -1.4492, -1.2431, 0.0306, -1.6608, -1.3681, 0.1182, -1.5052, -1.4571, 0.1945, -1.5528, -1.3056, 0.0796, -1.772, -1.4306, 0.1461, -1.6247, -1.5196, 0.2372, -1.6608, -1.3681, 0.1182, -1.8855, -1.4931, 0.1629, -1.7478, -1.5821, 0.268, -1.772, -1.4306, 0.1461, -2, -1.5556, 0.1685, -1.8733, -1.6446, 0.2867, -1.8855, -1.4931, 0.1629, -0.9291, -0.4452, -0.8945, -0.8315, -0.5556, -1, -0.9239, -0.3827, -1, -0.9446, -0.5077, -0.7901, -0.8371, -0.6181, -0.8855, -0.9291, -0.4452, -0.8945, -0.9702, -0.5702, -0.6876, -0.8539, -0.6806, -0.772, -0.9446, -0.5077, -0.7901, -1.0058, -0.6327, -0.5882, -0.8818, -0.7431, -0.6608, -0.9702, -0.5702, -0.6876, -1.0509, -0.6952, -0.4927, -0.9204, -0.8056, -0.5528, -1.0058, -0.6327, -0.5882, -1.1052, -0.7577, -0.4021, -0.9694, -0.8681, -0.4492, -1.0509, -0.6952, -0.4927, -1.1681, -0.8202, -0.3173, -1.0284, -0.9306, -0.3508, -1.1052, -0.7577, -0.4021, -1.2391, -0.8827, -0.2391, -1.0967, -0.9931, -0.2587, -1.1681, -0.8202, -0.3173, -1.3173, -0.9452, -0.1681, -1.1737, -1.0556, -0.1737, -1.2391, -0.8827, -0.2391, -1.4021, -1.0077, -0.1052, -1.2587, -1.1181, -0.0967, -1.3173, -0.9452, -0.1681, -1.4927, -1.0702, -0.0509, -1.3508, -1.1806, -0.0284, -1.4021, -1.0077, -0.1052, -1.5882, -1.1327, -0.0058, -1.4492, -1.2431, 0.0306, -1.4927, -1.0702, -0.0509, -1.6876, -1.1952, 0.0298, -1.5528, -1.3056, 0.0796, -1.5882, -1.1327, -0.0058, -1.7901, -1.2577, 0.0554, -1.6608, -1.3681, 0.1182, -1.6876, -1.1952, 0.0298, -1.8945, -1.3202, 0.0709, -1.772, -1.4306, 0.1461, -1.7901, -1.2577, 0.0554, -2, -1.3827, 0.0761, -1.8855, -1.4931, 0.1629, -1.8945, -1.3202, 0.0709, -0.9857, -0.2576, -0.9001, -0.9239, -0.3827, -1, -0.9808, -0.1951, -1, -1.0004, -0.3201, -0.8012, -0.9291, -0.4452, -0.8945, -0.9857, -0.2576, -0.9001, -1.0247, -0.3826, -0.7041, -0.9446, -0.5077, -0.7901, -1.0004, -0.3201, -0.8012, -1.0584, -0.4451, -0.61, -0.9702, -0.5702, -0.6876, -1.0247, -0.3826, -0.7041, -1.1011, -0.5076, -0.5195, -1.0058, -0.6327, -0.5882, -1.0584, -0.4451, -0.61, -1.1526, -0.5701, -0.4338, -1.0509, -0.6952, -0.4927, -1.1011, -0.5076, -0.5195, -1.2121, -0.6326, -0.3534, -1.1052, -0.7577, -0.4021, -1.1526, -0.5701, -0.4338, -1.2793, -0.6951, -0.2793, -1.1681, -0.8202, -0.3173, -1.2121, -0.6326, -0.3534, -1.3534, -0.7576, -0.2121, -1.2391, -0.8827, -0.2391, -1.2793, -0.6951, -0.2793, -1.4338, -0.8201, -0.1526, -1.3173, -0.9452, -0.1681, -1.3534, -0.7576, -0.2121, -1.5195, -0.8826, -0.1011, -1.4021, -1.0077, -0.1052, -1.4338, -0.8201, -0.1526, -1.61, -0.9451, -0.0584, -1.4927, -1.0702, -0.0509, -1.5195, -0.8826, -0.1011, -1.7041, -1.0076, -0.0247, -1.5882, -1.1327, -0.0058, -1.61, -0.9451, -0.0584, -1.8012, -1.0701, -0.0004, -1.6876, -1.1952, 0.0298, -1.7041, -1.0076, -0.0247, -1.9001, -1.1326, 0.0143, -1.7901, -1.2577, 0.0554, -1.8012, -1.0701, -0.0004, -2, -1.1951, 0.0192, -1.8945, -1.3202, 0.0709, -1.9001, -1.1326, 0.0143, -1.0048, -0.0625, -0.902, -0.9808, -0.1951, -1, -1, 0, -1, -1.0192, -0.125, -0.8049, -0.9857, -0.2576, -0.9001, -1.0048, -0.0625, -0.902, -1.0431, -0.1875, -0.7097, -1.0004, -0.3201, -0.8012, -1.0192, -0.125, -0.8049, -1.0761, -0.25, -0.6173, -1.0247, -0.3826, -0.7041, -1.0431, -0.1875, -0.7097, -1.1181, -0.3125, -0.5286, -1.0584, -0.4451, -0.61, -1.0761, -0.25, -0.6173, -1.1685, -0.375, -0.4444, -1.1011, -0.5076, -0.5195, -1.1181, -0.3125, -0.5286, -1.227, -0.4375, -0.3656, -1.1526, -0.5701, -0.4338, -1.1685, -0.375, -0.4444, -1.2929, -0.5, -0.2929, -1.2121, -0.6326, -0.3534, -1.227, -0.4375, -0.3656, -1.3656, -0.5625, -0.227, -1.2793, -0.6951, -0.2793, -1.2929, -0.5, -0.2929, -1.4444, -0.625, -0.1685, -1.3534, -0.7576, -0.2121, -1.3656, -0.5625, -0.227, -1.5286, -0.6875, -0.1181, -1.4338, -0.8201, -0.1526, -1.4444, -0.625, -0.1685, -1.6173, -0.75, -0.0761, -1.5195, -0.8826, -0.1011, -1.5286, -0.6875, -0.1181, -1.7097, -0.8125, -0.0431, -1.61, -0.9451, -0.0584, -1.6173, -0.75, -0.0761, -1.8049, -0.875, -0.0192, -1.7041, -1.0076, -0.0247, -1.7097, -0.8125, -0.0431, -1.902, -0.9375, -0.0048, -1.8012, -1.0701, -0.0004, -1.8049, -0.875, -0.0192, -2, -1, 0, -1.9001, -1.1326, 0.0143, -1.902, -0.9375, -0.0048, 0.4327, 0.6027, -0.7604, 0.5657, 0.5657, -1, 0.4445, 0.6652, -1, 0.3975, 0.5402, -0.5231, 0.5533, 0.5032, -0.7485, 0.4327, 0.6027, -0.7604, 0.3392, 0.4777, -0.2904, 0.5164, 0.4407, -0.4995, 0.3975, 0.5402, -0.5231, 0.2584, 0.4152, -0.0645, 0.4552, 0.3782, -0.2552, 0.3392, 0.4777, -0.2904, 0.1558, 0.3527, 0.1523, 0.3704, 0.3157, -0.0182, 0.2584, 0.4152, -0.0645, 0.0325, 0.2902, 0.3581, 0.2627, 0.2532, 0.2095, 0.1558, 0.3527, 0.1523, -0.1104, 0.2277, 0.5507, 0.1333, 0.1907, 0.4254, 0.0325, 0.2902, 0.3581, -0.2715, 0.1652, 0.7285, -0.0167, 0.1282, 0.6277, -0.1104, 0.2277, 0.5507, -0.4493, 0.1027, 0.8896, -0.1858, 0.0657, 0.8142, -0.2715, 0.1652, 0.7285, -0.6419, 0.0402, 1.0325, -0.3723, 0.0032, 0.9833, -0.4493, 0.1027, 0.8896, -0.8477, -0.0223, 1.1558, -0.5746, -0.0593, 1.1333, -0.6419, 0.0402, 1.0325, -1.0645, -0.0848, 1.2584, -0.7905, -0.1218, 1.2627, -0.8477, -0.0223, 1.1558, -1.2904, -0.1473, 1.3392, -1.0182, -0.1843, 1.3704, -1.0645, -0.0848, 1.2584, -1.5231, -0.2098, 1.3975, -1.2552, -0.2468, 1.4552, -1.2904, -0.1473, 1.3392, -1.7604, -0.2723, 1.4327, -1.4995, -0.3093, 1.5164, -1.5231, -0.2098, 1.3975, -2, -0.3348, 1.4445, -1.7485, -0.3718, 1.5533, -1.7604, -0.2723, 1.4327, 0.5533, 0.5032, -0.7485, 0.6652, 0.4445, -1, 0.5657, 0.5657, -1, 0.5164, 0.4407, -0.4995, 0.6523, 0.382, -0.7388, 0.5533, 0.5032, -0.7485, 0.4552, 0.3782, -0.2552, 0.614, 0.3195, -0.4801, 0.5164, 0.4407, -0.4995, 0.3704, 0.3157, -0.0182, 0.5504, 0.257, -0.2263, 0.4552, 0.3782, -0.2552, 0.2627, 0.2532, 0.2095, 0.4623, 0.1945, 0.0199, 0.3704, 0.3157, -0.0182, 0.1333, 0.1907, 0.4254, 0.3505, 0.132, 0.2564, 0.2627, 0.2532, 0.2095, -0.0167, 0.1282, 0.6277, 0.216, 0.0695, 0.4807, 0.1333, 0.1907, 0.4254, -0.1858, 0.0657, 0.8142, 0.0602, 0.007, 0.6908, -0.0167, 0.1282, 0.6277, -0.3723, 0.0032, 0.9833, -0.1154, -0.0555, 0.8846, -0.1858, 0.0657, 0.8142, -0.5746, -0.0593, 1.1333, -0.3092, -0.118, 1.0602, -0.3723, 0.0032, 0.9833, -0.7905, -0.1218, 1.2627, -0.5193, -0.1805, 1.216, -0.5746, -0.0593, 1.1333, -1.0182, -0.1843, 1.3704, -0.7436, -0.243, 1.3505, -0.7905, -0.1218, 1.2627, -1.2552, -0.2468, 1.4552, -0.9801, -0.3055, 1.4623, -1.0182, -0.1843, 1.3704, -1.4995, -0.3093, 1.5164, -1.2263, -0.368, 1.5504, -1.2552, -0.2468, 1.4552, -1.7485, -0.3718, 1.5533, -1.4801, -0.4305, 1.614, -1.4995, -0.3093, 1.5164, -2, -0.4343, 1.5657, -1.7388, -0.493, 1.6523, -1.7485, -0.3718, 1.5533, 0.6523, 0.382, -0.7388, 0.7391, 0.3061, -1, 0.6652, 0.4445, -1, 0.614, 0.3195, -0.4801, 0.7259, 0.2436, -0.7315, 0.6523, 0.382, -0.7388, 0.5504, 0.257, -0.2263, 0.6865, 0.1811, -0.4656, 0.614, 0.3195, -0.4801, 0.4623, 0.1945, 0.0199, 0.6212, 0.1186, -0.2049, 0.5504, 0.257, -0.2263, 0.3505, 0.132, 0.2564, 0.5306, 0.0561, 0.0482, 0.4623, 0.1945, 0.0199, 0.216, 0.0695, 0.4807, 0.4157, -0.0064, 0.2912, 0.3505, 0.132, 0.2564, 0.0602, 0.007, 0.6908, 0.2775, -0.0689, 0.5218, 0.216, 0.0695, 0.4807, -0.1154, -0.0555, 0.8846, 0.1174, -0.1314, 0.7377, 0.0602, 0.007, 0.6908, -0.3092, -0.118, 1.0602, -0.0632, -0.1939, 0.9368, -0.1154, -0.0555, 0.8846, -0.5193, -0.1805, 1.216, -0.2623, -0.2564, 1.1174, -0.3092, -0.118, 1.0602, -0.7436, -0.243, 1.3505, -0.4782, -0.3189, 1.2775, -0.5193, -0.1805, 1.216, -0.9801, -0.3055, 1.4623, -0.7088, -0.3814, 1.4157, -0.7436, -0.243, 1.3505, -1.2263, -0.368, 1.5504, -0.9518, -0.4439, 1.5306, -0.9801, -0.3055, 1.4623, -1.4801, -0.4305, 1.614, -1.2049, -0.5064, 1.6212, -1.2263, -0.368, 1.5504, -1.7388, -0.493, 1.6523, -1.4656, -0.5689, 1.6865, -1.4801, -0.4305, 1.614, -2, -0.5555, 1.6652, -1.7315, -0.6314, 1.7259, -1.7388, -0.493, 1.6523, 0.7259, 0.2436, -0.7315, 0.7846, 0.1561, -1, 0.7391, 0.3061, -1, 0.6865, 0.1811, -0.4656, 0.7712, 0.0936, -0.7271, 0.7259, 0.2436, -0.7315, 0.6212, 0.1186, -0.2049, 0.7311, 0.0311, -0.4567, 0.6865, 0.1811, -0.4656, 0.5306, 0.0561, 0.0482, 0.6647, -0.0314, -0.1917, 0.6212, 0.1186, -0.2049, 0.4157, -0.0064, 0.2912, 0.5727, -0.0939, 0.0656, 0.5306, 0.0561, 0.0482, 0.2775, -0.0689, 0.5218, 0.4558, -0.1564, 0.3127, 0.4157, -0.0064, 0.2912, 0.1174, -0.1314, 0.7377, 0.3153, -0.2189, 0.5471, 0.2775, -0.0689, 0.5218, -0.0632, -0.1939, 0.9368, 0.1525, -0.2814, 0.7666, 0.1174, -0.1314, 0.7377, -0.2623, -0.2564, 1.1174, -0.031, -0.3439, 0.969, -0.0632, -0.1939, 0.9368, -0.4782, -0.3189, 1.2775, -0.2335, -0.4064, 1.1525, -0.2623, -0.2564, 1.1174, -0.7088, -0.3814, 1.4157, -0.4529, -0.4689, 1.3153, -0.4782, -0.3189, 1.2775, -0.9518, -0.4439, 1.5306, -0.6873, -0.5314, 1.4558, -0.7088, -0.3814, 1.4157, -1.2049, -0.5064, 1.6212, -0.9344, -0.5939, 1.5727, -0.9518, -0.4439, 1.5306, -1.4656, -0.5689, 1.6865, -1.1917, -0.6564, 1.6647, -1.2049, -0.5064, 1.6212, -1.7315, -0.6314, 1.7259, -1.4567, -0.7189, 1.7311, -1.4656, -0.5689, 1.6865, -2, -0.6939, 1.7391, -1.7271, -0.7814, 1.7712, -1.7315, -0.6314, 1.7259, 0.7712, 0.0936, -0.7271, 0.8, 0, -1, 0.7846, 0.1561, -1, 0.7311, 0.0311, -0.4567, 0.7865, -0.0625, -0.7256, 0.7712, 0.0936, -0.7271, 0.6647, -0.0314, -0.1917, 0.7462, -0.125, -0.4537, 0.7311, 0.0311, -0.4567, 0.5727, -0.0939, 0.0656, 0.6794, -0.1875, -0.1872, 0.6647, -0.0314, -0.1917, 0.4558, -0.1564, 0.3127, 0.5869, -0.25, 0.0715, 0.5727, -0.0939, 0.0656, 0.3153, -0.2189, 0.5471, 0.4694, -0.3125, 0.3199, 0.4558, -0.1564, 0.3127, 0.1525, -0.2814, 0.7666, 0.3281, -0.375, 0.5556, 0.3153, -0.2189, 0.5471, -0.031, -0.3439, 0.969, 0.1644, -0.4375, 0.7763, 0.1525, -0.2814, 0.7666, -0.2335, -0.4064, 1.1525, -0.0201, -0.5, 0.9799, -0.031, -0.3439, 0.969, -0.4529, -0.4689, 1.3153, -0.2237, -0.5625, 1.1644, -0.2335, -0.4064, 1.1525, -0.6873, -0.5314, 1.4558, -0.4444, -0.625, 1.3281, -0.4529, -0.4689, 1.3153, -0.9344, -0.5939, 1.5727, -0.6801, -0.6875, 1.4694, -0.6873, -0.5314, 1.4558, -1.1917, -0.6564, 1.6647, -0.9285, -0.75, 1.5869, -0.9344, -0.5939, 1.5727, -1.4567, -0.7189, 1.7311, -1.1872, -0.8125, 1.6794, -1.1917, -0.6564, 1.6647, -1.7271, -0.7814, 1.7712, -1.4537, -0.875, 1.7462, -1.4567, -0.7189, 1.7311, -2, -0.8439, 1.7846, -1.7256, -0.9375, 1.7865, -1.7271, -0.7814, 1.7712, 0.7865, -0.0625, -0.7256, 0.7846, -0.1561, -1, 0.8, 0, -1, 0.7462, -0.125, -0.4537, 0.7712, -0.2186, -0.7271, 0.7865, -0.0625, -0.7256, 0.6794, -0.1875, -0.1872, 0.7311, -0.2811, -0.4567, 0.7462, -0.125, -0.4537, 0.5869, -0.25, 0.0715, 0.6647, -0.3436, -0.1917, 0.6794, -0.1875, -0.1872, 0.4694, -0.3125, 0.3199, 0.5727, -0.4061, 0.0656, 0.5869, -0.25, 0.0715, 0.3281, -0.375, 0.5556, 0.4558, -0.4686, 0.3127, 0.4694, -0.3125, 0.3199, 0.1644, -0.4375, 0.7763, 0.3153, -0.5311, 0.5471, 0.3281, -0.375, 0.5556, -0.0201, -0.5, 0.9799, 0.1525, -0.5936, 0.7666, 0.1644, -0.4375, 0.7763, -0.2237, -0.5625, 1.1644, -0.031, -0.6561, 0.969, -0.0201, -0.5, 0.9799, -0.4444, -0.625, 1.3281, -0.2335, -0.7186, 1.1525, -0.2237, -0.5625, 1.1644, -0.6801, -0.6875, 1.4694, -0.4529, -0.7811, 1.3153, -0.4444, -0.625, 1.3281, -0.9285, -0.75, 1.5869, -0.6873, -0.8436, 1.4558, -0.6801, -0.6875, 1.4694, -1.1872, -0.8125, 1.6794, -0.9344, -0.9061, 1.5727, -0.9285, -0.75, 1.5869, -1.4537, -0.875, 1.7462, -1.1917, -0.9686, 1.6647, -1.1872, -0.8125, 1.6794, -1.7256, -0.9375, 1.7865, -1.4567, -1.0311, 1.7311, -1.4537, -0.875, 1.7462, -2, -1, 1.8, -1.7271, -1.0936, 1.7712, -1.7256, -0.9375, 1.7865, 0.7712, -0.2186, -0.7271, 0.7391, -0.3061, -1, 0.7846, -0.1561, -1, 0.7311, -0.2811, -0.4567, 0.7259, -0.3686, -0.7315, 0.7712, -0.2186, -0.7271, 0.6647, -0.3436, -0.1917, 0.6865, -0.4311, -0.4656, 0.7311, -0.2811, -0.4567, 0.5727, -0.4061, 0.0656, 0.6212, -0.4936, -0.2049, 0.6647, -0.3436, -0.1917, 0.4558, -0.4686, 0.3127, 0.5306, -0.5561, 0.0482, 0.5727, -0.4061, 0.0656, 0.3153, -0.5311, 0.5471, 0.4157, -0.6186, 0.2912, 0.4558, -0.4686, 0.3127, 0.1525, -0.5936, 0.7666, 0.2775, -0.6811, 0.5218, 0.3153, -0.5311, 0.5471, -0.031, -0.6561, 0.969, 0.1174, -0.7436, 0.7377, 0.1525, -0.5936, 0.7666, -0.2335, -0.7186, 1.1525, -0.0632, -0.8061, 0.9368, -0.031, -0.6561, 0.969, -0.4529, -0.7811, 1.3153, -0.2623, -0.8686, 1.1174, -0.2335, -0.7186, 1.1525, -0.6873, -0.8436, 1.4558, -0.4782, -0.9311, 1.2775, -0.4529, -0.7811, 1.3153, -0.9344, -0.9061, 1.5727, -0.7088, -0.9936, 1.4157, -0.6873, -0.8436, 1.4558, -1.1917, -0.9686, 1.6647, -0.9518, -1.0561, 1.5306, -0.9344, -0.9061, 1.5727, -1.4567, -1.0311, 1.7311, -1.2049, -1.1186, 1.6212, -1.1917, -0.9686, 1.6647, -1.7271, -1.0936, 1.7712, -1.4656, -1.1811, 1.6865, -1.4567, -1.0311, 1.7311, -2, -1.1561, 1.7846, -1.7315, -1.2436, 1.7259, -1.7271, -1.0936, 1.7712, 0.7259, -0.3686, -0.7315, 0.6652, -0.4445, -1, 0.7391, -0.3061, -1, 0.6865, -0.4311, -0.4656, 0.6523, -0.507, -0.7388, 0.7259, -0.3686, -0.7315, 0.6212, -0.4936, -0.2049, 0.614, -0.5695, -0.4801, 0.6865, -0.4311, -0.4656, 0.5306, -0.5561, 0.0482, 0.5504, -0.632, -0.2263, 0.6212, -0.4936, -0.2049, 0.4157, -0.6186, 0.2912, 0.4623, -0.6945, 0.0199, 0.5306, -0.5561, 0.0482, 0.2775, -0.6811, 0.5218, 0.3505, -0.757, 0.2564, 0.4157, -0.6186, 0.2912, 0.1174, -0.7436, 0.7377, 0.216, -0.8195, 0.4807, 0.2775, -0.6811, 0.5218, -0.0632, -0.8061, 0.9368, 0.0602, -0.882, 0.6908, 0.1174, -0.7436, 0.7377, -0.2623, -0.8686, 1.1174, -0.1154, -0.9445, 0.8846, -0.0632, -0.8061, 0.9368, -0.4782, -0.9311, 1.2775, -0.3092, -1.007, 1.0602, -0.2623, -0.8686, 1.1174, -0.7088, -0.9936, 1.4157, -0.5193, -1.0695, 1.216, -0.4782, -0.9311, 1.2775, -0.9518, -1.0561, 1.5306, -0.7436, -1.132, 1.3505, -0.7088, -0.9936, 1.4157, -1.2049, -1.1186, 1.6212, -0.9801, -1.1945, 1.4623, -0.9518, -1.0561, 1.5306, -1.4656, -1.1811, 1.6865, -1.2263, -1.257, 1.5504, -1.2049, -1.1186, 1.6212, -1.7315, -1.2436, 1.7259, -1.4801, -1.3195, 1.614, -1.4656, -1.1811, 1.6865, -2, -1.3061, 1.7391, -1.7388, -1.382, 1.6523, -1.7315, -1.2436, 1.7259, 0.6523, -0.507, -0.7388, 0.5657, -0.5657, -1, 0.6652, -0.4445, -1, 0.614, -0.5695, -0.4801, 0.5533, -0.6282, -0.7485, 0.6523, -0.507, -0.7388, 0.5504, -0.632, -0.2263, 0.5164, -0.6907, -0.4995, 0.614, -0.5695, -0.4801, 0.4623, -0.6945, 0.0199, 0.4552, -0.7532, -0.2552, 0.5504, -0.632, -0.2263, 0.3505, -0.757, 0.2564, 0.3704, -0.8157, -0.0182, 0.4623, -0.6945, 0.0199, 0.216, -0.8195, 0.4807, 0.2627, -0.8782, 0.2095, 0.3505, -0.757, 0.2564, 0.0602, -0.882, 0.6908, 0.1333, -0.9407, 0.4254, 0.216, -0.8195, 0.4807, -0.1154, -0.9445, 0.8846, -0.0167, -1.0032, 0.6277, 0.0602, -0.882, 0.6908, -0.3092, -1.007, 1.0602, -0.1858, -1.0657, 0.8142, -0.1154, -0.9445, 0.8846, -0.5193, -1.0695, 1.216, -0.3723, -1.1282, 0.9833, -0.3092, -1.007, 1.0602, -0.7436, -1.132, 1.3505, -0.5746, -1.1907, 1.1333, -0.5193, -1.0695, 1.216, -0.9801, -1.1945, 1.4623, -0.7905, -1.2532, 1.2627, -0.7436, -1.132, 1.3505, -1.2263, -1.257, 1.5504, -1.0182, -1.3157, 1.3704, -0.9801, -1.1945, 1.4623, -1.4801, -1.3195, 1.614, -1.2552, -1.3782, 1.4552, -1.2263, -1.257, 1.5504, -1.7388, -1.382, 1.6523, -1.4995, -1.4407, 1.5164, -1.4801, -1.3195, 1.614, -2, -1.4445, 1.6652, -1.7485, -1.5032, 1.5533, -1.7388, -1.382, 1.6523, 0.5533, -0.6282, -0.7485, 0.4445, -0.6652, -1, 0.5657, -0.5657, -1, 0.5164, -0.6907, -0.4995, 0.4327, -0.7277, -0.7604, 0.5533, -0.6282, -0.7485, 0.4552, -0.7532, -0.2552, 0.3975, -0.7902, -0.5231, 0.5164, -0.6907, -0.4995, 0.3704, -0.8157, -0.0182, 0.3392, -0.8527, -0.2904, 0.4552, -0.7532, -0.2552, 0.2627, -0.8782, 0.2095, 0.2584, -0.9152, -0.0645, 0.3704, -0.8157, -0.0182, 0.1333, -0.9407, 0.4254, 0.1558, -0.9777, 0.1523, 0.2627, -0.8782, 0.2095, -0.0167, -1.0032, 0.6277, 0.0325, -1.0402, 0.3581, 0.1333, -0.9407, 0.4254, -0.1858, -1.0657, 0.8142, -0.1104, -1.1027, 0.5507, -0.0167, -1.0032, 0.6277, -0.3723, -1.1282, 0.9833, -0.2715, -1.1652, 0.7285, -0.1858, -1.0657, 0.8142, -0.5746, -1.1907, 1.1333, -0.4493, -1.2277, 0.8896, -0.3723, -1.1282, 0.9833, -0.7905, -1.2532, 1.2627, -0.6419, -1.2902, 1.0325, -0.5746, -1.1907, 1.1333, -1.0182, -1.3157, 1.3704, -0.8477, -1.3527, 1.1558, -0.7905, -1.2532, 1.2627, -1.2552, -1.3782, 1.4552, -1.0645, -1.4152, 1.2584, -1.0182, -1.3157, 1.3704, -1.4995, -1.4407, 1.5164, -1.2904, -1.4777, 1.3392, -1.2552, -1.3782, 1.4552, -1.7485, -1.5032, 1.5533, -1.5231, -1.5402, 1.3975, -1.4995, -1.4407, 1.5164, -2, -1.5657, 1.5657, -1.7604, -1.6027, 1.4327, -1.7485, -1.5032, 1.5533, 0.4327, -0.7277, -0.7604, 0.3061, -0.7391, -1, 0.4445, -0.6652, -1, 0.3975, -0.7902, -0.5231, 0.295, -0.8016, -0.774, 0.4327, -0.7277, -0.7604, 0.3392, -0.8527, -0.2904, 0.2618, -0.8641, -0.5501, 0.3975, -0.7902, -0.5231, 0.2584, -0.9152, -0.0645, 0.2068, -0.9266, -0.3306, 0.3392, -0.8527, -0.2904, 0.1558, -0.9777, 0.1523, 0.1306, -0.9891, -0.1175, 0.2584, -0.9152, -0.0645, 0.0325, -1.0402, 0.3581, 0.0338, -1.0516, 0.0871, 0.1558, -0.9777, 0.1523, -0.1104, -1.1027, 0.5507, -0.0825, -1.1141, 0.2812, 0.0325, -1.0402, 0.3581, -0.2715, -1.1652, 0.7285, -0.2173, -1.1766, 0.463, -0.1104, -1.1027, 0.5507, -0.4493, -1.2277, 0.8896, -0.3693, -1.2391, 0.6307, -0.2715, -1.1652, 0.7285, -0.6419, -1.2902, 1.0325, -0.537, -1.3016, 0.7827, -0.4493, -1.2277, 0.8896, -0.8477, -1.3527, 1.1558, -0.7188, -1.3641, 0.9175, -0.6419, -1.2902, 1.0325, -1.0645, -1.4152, 1.2584, -0.9129, -1.4266, 1.0338, -0.8477, -1.3527, 1.1558, -1.2904, -1.4777, 1.3392, -1.1175, -1.4891, 1.1306, -1.0645, -1.4152, 1.2584, -1.5231, -1.5402, 1.3975, -1.3306, -1.5516, 1.2068, -1.2904, -1.4777, 1.3392, -1.7604, -1.6027, 1.4327, -1.5501, -1.6141, 1.2618, -1.5231, -1.5402, 1.3975, -2, -1.6652, 1.4445, -1.774, -1.6766, 1.295, -1.7604, -1.6027, 1.4327, 0.295, -0.8016, -0.774, 0.1561, -0.7846, -1, 0.3061, -0.7391, -1, 0.2618, -0.8641, -0.5501, 0.1457, -0.8471, -0.7887, 0.295, -0.8016, -0.774, 0.2068, -0.9266, -0.3306, 0.1146, -0.9096, -0.5794, 0.2618, -0.8641, -0.5501, 0.1306, -0.9891, -0.1175, 0.0632, -0.9721, -0.3741, 0.2068, -0.9266, -0.3306, 0.0338, -1.0516, 0.0871, -0.008, -1.0346, -0.1749, 0.1306, -0.9891, -0.1175, -0.0825, -1.1141, 0.2812, -0.0985, -1.0971, 0.0164, 0.0338, -1.0516, 0.0871, -0.2173, -1.1766, 0.463, -0.2073, -1.1596, 0.1979, -0.0825, -1.1141, 0.2812, -0.3693, -1.2391, 0.6307, -0.3333, -1.2221, 0.3678, -0.2173, -1.1766, 0.463, -0.537, -1.3016, 0.7827, -0.4754, -1.2846, 0.5246, -0.3693, -1.2391, 0.6307, -0.7188, -1.3641, 0.9175, -0.6322, -1.3471, 0.6667, -0.537, -1.3016, 0.7827, -0.9129, -1.4266, 1.0338, -0.8022, -1.4096, 0.7927, -0.7188, -1.3641, 0.9175, -1.1175, -1.4891, 1.1306, -0.9836, -1.4721, 0.9015, -0.9129, -1.4266, 1.0338, -1.3306, -1.5516, 1.2068, -1.1749, -1.5346, 0.992, -1.1175, -1.4891, 1.1306, -1.5501, -1.6141, 1.2618, -1.3741, -1.5971, 1.0632, -1.3306, -1.5516, 1.2068, -1.774, -1.6766, 1.295, -1.5794, -1.6596, 1.1146, -1.5501, -1.6141, 1.2618, -2, -1.7391, 1.3061, -1.7887, -1.7221, 1.1457, -1.774, -1.6766, 1.295, 0.1457, -0.8471, -0.7887, 0, -0.8, -1, 0.1561, -0.7846, -1, 0.1146, -0.9096, -0.5794, -0.0096, -0.8625, -0.804, 0.1457, -0.8471, -0.7887, 0.0632, -0.9721, -0.3741, -0.0384, -0.925, -0.6098, 0.1146, -0.9096, -0.5794, -0.008, -1.0346, -0.1749, -0.0861, -0.9875, -0.4194, 0.0632, -0.9721, -0.3741, -0.0985, -1.0971, 0.0164, -0.1522, -1.05, -0.2346, -0.008, -1.0346, -0.1749, -0.2073, -1.1596, 0.1979, -0.2362, -1.1125, -0.0572, -0.0985, -1.0971, 0.0164, -0.3333, -1.2221, 0.3678, -0.3371, -1.175, 0.1111, -0.2073, -1.1596, 0.1979, -0.4754, -1.2846, 0.5246, -0.454, -1.2375, 0.2688, -0.3333, -1.2221, 0.3678, -0.6322, -1.3471, 0.6667, -0.5858, -1.3, 0.4142, -0.4754, -1.2846, 0.5246, -0.8022, -1.4096, 0.7927, -0.7312, -1.3625, 0.546, -0.6322, -1.3471, 0.6667, -0.9836, -1.4721, 0.9015, -0.8889, -1.425, 0.6629, -0.8022, -1.4096, 0.7927, -1.1749, -1.5346, 0.992, -1.0572, -1.4875, 0.7638, -0.9836, -1.4721, 0.9015, -1.3741, -1.5971, 1.0632, -1.2346, -1.55, 0.8478, -1.1749, -1.5346, 0.992, -1.5794, -1.6596, 1.1146, -1.4194, -1.6125, 0.9139, -1.3741, -1.5971, 1.0632, -1.7887, -1.7221, 1.1457, -1.6098, -1.675, 0.9616, -1.5794, -1.6596, 1.1146, -2, -1.7846, 1.1561, -1.804, -1.7375, 0.9904, -1.7887, -1.7221, 1.1457, 0, -0.8, -1, -0.165, -0.8471, -0.8193, -0.1561, -0.7846, -1, -0.0096, -0.8625, -0.804, -0.1915, -0.9096, -0.6403, -0.165, -0.8471, -0.8193, -0.0384, -0.925, -0.6098, -0.2355, -0.9721, -0.4647, -0.1915, -0.9096, -0.6403, -0.0861, -0.9875, -0.4194, -0.2964, -1.0346, -0.2944, -0.2355, -0.9721, -0.4647, -0.1522, -1.05, -0.2346, -0.3738, -1.0971, -0.1308, -0.2964, -1.0346, -0.2944, -0.2362, -1.1125, -0.0572, -0.4668, -1.1596, 0.0244, -0.3738, -1.0971, -0.1308, -0.3371, -1.175, 0.1111, -0.5746, -1.2221, 0.1698, -0.4668, -1.1596, 0.0244, -0.454, -1.2375, 0.2688, -0.6961, -1.2846, 0.3039, -0.5746, -1.2221, 0.1698, -0.5858, -1.3, 0.4142, -0.8302, -1.3471, 0.4254, -0.6961, -1.2846, 0.3039, -0.7312, -1.3625, 0.546, -0.9756, -1.4096, 0.5332, -0.8302, -1.3471, 0.4254, -0.8889, -1.425, 0.6629, -1.1308, -1.4721, 0.6262, -0.9756, -1.4096, 0.5332, -1.0572, -1.4875, 0.7638, -1.2944, -1.5346, 0.7036, -1.1308, -1.4721, 0.6262, -1.2346, -1.55, 0.8478, -1.4647, -1.5971, 0.7645, -1.2944, -1.5346, 0.7036, -1.4194, -1.6125, 0.9139, -1.6403, -1.6596, 0.8085, -1.4647, -1.5971, 0.7645, -1.6098, -1.675, 0.9616, -1.8193, -1.7221, 0.835, -1.6403, -1.6596, 0.8085, -1.804, -1.7375, 0.9904, -2, -1.7846, 0.8439, -1.8193, -1.7221, 0.835, -0.1561, -0.7846, -1, -0.3143, -0.8016, -0.834, -0.3061, -0.7391, -1, -0.165, -0.8471, -0.8193, -0.3387, -0.8641, -0.6695, -0.3143, -0.8016, -0.834, -0.1915, -0.9096, -0.6403, -0.3791, -0.9266, -0.5083, -0.3387, -0.8641, -0.6695, -0.2355, -0.9721, -0.4647, -0.4351, -0.9891, -0.3518, -0.3791, -0.9266, -0.5083, -0.2964, -1.0346, -0.2944, -0.5062, -1.0516, -0.2015, -0.4351, -0.9891, -0.3518, -0.3738, -1.0971, -0.1308, -0.5916, -1.1141, -0.0589, -0.5062, -1.0516, -0.2015, -0.4668, -1.1596, 0.0244, -0.6906, -1.1766, 0.0746, -0.5916, -1.1141, -0.0589, -0.5746, -1.2221, 0.1698, -0.8023, -1.2391, 0.1977, -0.6906, -1.1766, 0.0746, -0.6961, -1.2846, 0.3039, -0.9254, -1.3016, 0.3094, -0.8023, -1.2391, 0.1977, -0.8302, -1.3471, 0.4254, -1.0589, -1.3641, 0.4084, -0.9254, -1.3016, 0.3094, -0.9756, -1.4096, 0.5332, -1.2015, -1.4266, 0.4938, -1.0589, -1.3641, 0.4084, -1.1308, -1.4721, 0.6262, -1.3518, -1.4891, 0.5649, -1.2015, -1.4266, 0.4938, -1.2944, -1.5346, 0.7036, -1.5083, -1.5516, 0.6209, -1.3518, -1.4891, 0.5649, -1.4647, -1.5971, 0.7645, -1.6695, -1.6141, 0.6613, -1.5083, -1.5516, 0.6209, -1.6403, -1.6596, 0.8085, -1.834, -1.6766, 0.6857, -1.6695, -1.6141, 0.6613, -1.8193, -1.7221, 0.835, -2, -1.7391, 0.6939, -1.834, -1.6766, 0.6857, -0.3061, -0.7391, -1, -0.4519, -0.7277, -0.8475, -0.4445, -0.6652, -1, -0.3143, -0.8016, -0.834, -0.4743, -0.7902, -0.6965, -0.4519, -0.7277, -0.8475, -0.3387, -0.8641, -0.6695, -0.5114, -0.8527, -0.5485, -0.4743, -0.7902, -0.6965, -0.3791, -0.9266, -0.5083, -0.5629, -0.9152, -0.4047, -0.5114, -0.8527, -0.5485, -0.4351, -0.9891, -0.3518, -0.6281, -0.9777, -0.2667, -0.5629, -0.9152, -0.4047, -0.5062, -1.0516, -0.2015, -0.7066, -1.0402, -0.1358, -0.6281, -0.9777, -0.2667, -0.5916, -1.1141, -0.0589, -0.7975, -1.1027, -0.0132, -0.7066, -1.0402, -0.1358, -0.6906, -1.1766, 0.0746, -0.9001, -1.1652, 0.0999, -0.7975, -1.1027, -0.0132, -0.8023, -1.2391, 0.1977, -1.0132, -1.2277, 0.2025, -0.9001, -1.1652, 0.0999, -0.9254, -1.3016, 0.3094, -1.1358, -1.2902, 0.2934, -1.0132, -1.2277, 0.2025, -1.0589, -1.3641, 0.4084, -1.2667, -1.3527, 0.3719, -1.1358, -1.2902, 0.2934, -1.2015, -1.4266, 0.4938, -1.4047, -1.4152, 0.4371, -1.2667, -1.3527, 0.3719, -1.3518, -1.4891, 0.5649, -1.5485, -1.4777, 0.4886, -1.4047, -1.4152, 0.4371, -1.5083, -1.5516, 0.6209, -1.6965, -1.5402, 0.5257, -1.5485, -1.4777, 0.4886, -1.6695, -1.6141, 0.6613, -1.8475, -1.6027, 0.5481, -1.6965, -1.5402, 0.5257, -1.834, -1.6766, 0.6857, -2, -1.6652, 0.5555, -1.8475, -1.6027, 0.5481, -0.4445, -0.6652, -1, -0.5726, -0.6282, -0.8594, -0.5657, -0.5657, -1, -0.4519, -0.7277, -0.8475, -0.5932, -0.6907, -0.7202, -0.5726, -0.6282, -0.8594, -0.4743, -0.7902, -0.6965, -0.6274, -0.7532, -0.5836, -0.5932, -0.6907, -0.7202, -0.5114, -0.8527, -0.5485, -0.6749, -0.8157, -0.4511, -0.6274, -0.7532, -0.5836, -0.5629, -0.9152, -0.4047, -0.735, -0.8782, -0.3239, -0.6749, -0.8157, -0.4511, -0.6281, -0.9777, -0.2667, -0.8074, -0.9407, -0.2031, -0.735, -0.8782, -0.3239, -0.7066, -1.0402, -0.1358, -0.8913, -1.0032, -0.0901, -0.8074, -0.9407, -0.2031, -0.7975, -1.1027, -0.0132, -0.9858, -1.0657, 0.0142, -0.8913, -1.0032, -0.0901, -0.9001, -1.1652, 0.0999, -1.0901, -1.1282, 0.1087, -0.9858, -1.0657, 0.0142, -1.0132, -1.2277, 0.2025, -1.2031, -1.1907, 0.1926, -1.0901, -1.1282, 0.1087, -1.1358, -1.2902, 0.2934, -1.3239, -1.2532, 0.265, -1.2031, -1.1907, 0.1926, -1.2667, -1.3527, 0.3719, -1.4511, -1.3157, 0.3251, -1.3239, -1.2532, 0.265, -1.4047, -1.4152, 0.4371, -1.5836, -1.3782, 0.3726, -1.4511, -1.3157, 0.3251, -1.5485, -1.4777, 0.4886, -1.7202, -1.4407, 0.4068, -1.5836, -1.3782, 0.3726, -1.6965, -1.5402, 0.5257, -1.8594, -1.5032, 0.4274, -1.7202, -1.4407, 0.4068, -1.8475, -1.6027, 0.5481, -2, -1.5657, 0.4343, -1.8594, -1.5032, 0.4274, -0.5657, -0.5657, -1, -0.6716, -0.507, -0.8692, -0.6652, -0.4445, -1, -0.5726, -0.6282, -0.8594, -0.6908, -0.5695, -0.7396, -0.6716, -0.507, -0.8692, -0.5932, -0.6907, -0.7202, -0.7227, -0.632, -0.6125, -0.6908, -0.5695, -0.7396, -0.6274, -0.7532, -0.5836, -0.7668, -0.6945, -0.4892, -0.7227, -0.632, -0.6125, -0.6749, -0.8157, -0.4511, -0.8228, -0.757, -0.3708, -0.7668, -0.6945, -0.4892, -0.735, -0.8782, -0.3239, -0.8901, -0.8195, -0.2584, -0.8228, -0.757, -0.3708, -0.8074, -0.9407, -0.2031, -0.9682, -0.882, -0.1532, -0.8901, -0.8195, -0.2584, -0.8913, -1.0032, -0.0901, -1.0561, -0.9445, -0.0561, -0.9682, -0.882, -0.1532, -0.9858, -1.0657, 0.0142, -1.1532, -1.007, 0.0318, -1.0561, -0.9445, -0.0561, -1.0901, -1.1282, 0.1087, -1.2584, -1.0695, 0.1099, -1.1532, -1.007, 0.0318, -1.2031, -1.1907, 0.1926, -1.3708, -1.132, 0.1772, -1.2584, -1.0695, 0.1099, -1.3239, -1.2532, 0.265, -1.4892, -1.1945, 0.2332, -1.3708, -1.132, 0.1772, -1.4511, -1.3157, 0.3251, -1.6125, -1.257, 0.2773, -1.4892, -1.1945, 0.2332, -1.5836, -1.3782, 0.3726, -1.7396, -1.3195, 0.3092, -1.6125, -1.257, 0.2773, -1.7202, -1.4407, 0.4068, -1.8692, -1.382, 0.3284, -1.7396, -1.3195, 0.3092, -1.8594, -1.5032, 0.4274, -2, -1.4445, 0.3348, -1.8692, -1.382, 0.3284, -0.6652, -0.4445, -1, -0.7452, -0.3686, -0.8764, -0.7391, -0.3061, -1, -0.6716, -0.507, -0.8692, -0.7633, -0.4311, -0.754, -0.7452, -0.3686, -0.8764, -0.6908, -0.5695, -0.7396, -0.7934, -0.4936, -0.634, -0.7633, -0.4311, -0.754, -0.7227, -0.632, -0.6125, -0.8351, -0.5561, -0.5175, -0.7934, -0.4936, -0.634, -0.7668, -0.6945, -0.4892, -0.888, -0.6186, -0.4056, -0.8351, -0.5561, -0.5175, -0.8228, -0.757, -0.3708, -0.9516, -0.6811, -0.2995, -0.888, -0.6186, -0.4056, -0.8901, -0.8195, -0.2584, -1.0253, -0.7436, -0.2001, -0.9516, -0.6811, -0.2995, -0.9682, -0.882, -0.1532, -1.1084, -0.8061, -0.1084, -1.0253, -0.7436, -0.2001, -1.0561, -0.9445, -0.0561, -1.2001, -0.8686, -0.0253, -1.1084, -0.8061, -0.1084, -1.1532, -1.007, 0.0318, -1.2995, -0.9311, 0.0484, -1.2001, -0.8686, -0.0253, -1.2584, -1.0695, 0.1099, -1.4056, -0.9936, 0.112, -1.2995, -0.9311, 0.0484, -1.3708, -1.132, 0.1772, -1.5175, -1.0561, 0.1649, -1.4056, -0.9936, 0.112, -1.4892, -1.1945, 0.2332, -1.634, -1.1186, 0.2066, -1.5175, -1.0561, 0.1649, -1.6125, -1.257, 0.2773, -1.754, -1.1811, 0.2367, -1.634, -1.1186, 0.2066, -1.7396, -1.3195, 0.3092, -1.8764, -1.2436, 0.2548, -1.754, -1.1811, 0.2367, -1.8692, -1.382, 0.3284, -2, -1.3061, 0.2609, -1.8764, -1.2436, 0.2548, -0.7391, -0.3061, -1, -0.7905, -0.2186, -0.8809, -0.7846, -0.1561, -1, -0.7452, -0.3686, -0.8764, -0.808, -0.2811, -0.7629, -0.7905, -0.2186, -0.8809, -0.7633, -0.4311, -0.754, -0.837, -0.3436, -0.6472, -0.808, -0.2811, -0.7629, -0.7934, -0.4936, -0.634, -0.8771, -0.4061, -0.5349, -0.837, -0.3436, -0.6472, -0.8351, -0.5561, -0.5175, -0.9281, -0.4686, -0.4271, -0.8771, -0.4061, -0.5349, -0.888, -0.6186, -0.4056, -0.9895, -0.5311, -0.3248, -0.9281, -0.4686, -0.4271, -0.9516, -0.6811, -0.2995, -1.0605, -0.5936, -0.229, -0.9895, -0.5311, -0.3248, -1.0253, -0.7436, -0.2001, -1.1406, -0.6561, -0.1406, -1.0605, -0.5936, -0.229, -1.1084, -0.8061, -0.1084, -1.229, -0.7186, -0.0605, -1.1406, -0.6561, -0.1406, -1.2001, -0.8686, -0.0253, -1.3248, -0.7811, 0.0105, -1.229, -0.7186, -0.0605, -1.2995, -0.9311, 0.0484, -1.4271, -0.8436, 0.0719, -1.3248, -0.7811, 0.0105, -1.4056, -0.9936, 0.112, -1.5349, -0.9061, 0.1229, -1.4271, -0.8436, 0.0719, -1.5175, -1.0561, 0.1649, -1.6472, -0.9686, 0.163, -1.5349, -0.9061, 0.1229, -1.634, -1.1186, 0.2066, -1.7629, -1.0311, 0.192, -1.6472, -0.9686, 0.163, -1.754, -1.1811, 0.2367, -1.8809, -1.0936, 0.2095, -1.7629, -1.0311, 0.192, -1.8764, -1.2436, 0.2548, -2, -1.1561, 0.2154, -1.8809, -1.0936, 0.2095, -0.7846, -0.1561, -1, -0.8058, -0.0625, -0.8824, -0.8, 0, -1, -0.7905, -0.2186, -0.8809, -0.8231, -0.125, -0.7659, -0.8058, -0.0625, -0.8824, -0.808, -0.2811, -0.7629, -0.8517, -0.1875, -0.6517, -0.8231, -0.125, -0.7659, -0.837, -0.3436, -0.6472, -0.8913, -0.25, -0.5408, -0.8517, -0.1875, -0.6517, -0.8771, -0.4061, -0.5349, -0.9417, -0.3125, -0.4343, -0.8913, -0.25, -0.5408, -0.9281, -0.4686, -0.4271, -1.0022, -0.375, -0.3333, -0.9417, -0.3125, -0.4343, -0.9895, -0.5311, -0.3248, -1.0724, -0.4375, -0.2387, -1.0022, -0.375, -0.3333, -1.0605, -0.5936, -0.229, -1.1515, -0.5, -0.1515, -1.0724, -0.4375, -0.2387, -1.1406, -0.6561, -0.1406, -1.2387, -0.5625, -0.0724, -1.1515, -0.5, -0.1515, -1.229, -0.7186, -0.0605, -1.3333, -0.625, -0.0022, -1.2387, -0.5625, -0.0724, -1.3248, -0.7811, 0.0105, -1.4343, -0.6875, 0.0583, -1.3333, -0.625, -0.0022, -1.4271, -0.8436, 0.0719, -1.5408, -0.75, 0.1087, -1.4343, -0.6875, 0.0583, -1.5349, -0.9061, 0.1229, -1.6517, -0.8125, 0.1483, -1.5408, -0.75, 0.1087, -1.6472, -0.9686, 0.163, -1.7659, -0.875, 0.1769, -1.6517, -0.8125, 0.1483, -1.7629, -1.0311, 0.192, -1.8824, -0.9375, 0.1942, -1.7659, -0.875, 0.1769, -1.8809, -1.0936, 0.2095, -2, -1, 0.2, -1.8824, -0.9375, 0.1942, 0.5433, 0.769, -0.7495, 0.4445, 0.6652, -1, 0.5556, 0.8315, -1, 0.5065, 0.7065, -0.5014, 0.4327, 0.6027, -0.7604, 0.5433, 0.769, -0.7495, 0.4455, 0.644, -0.2582, 0.3975, 0.5402, -0.5231, 0.5065, 0.7065, -0.5014, 0.361, 0.5815, -0.022, 0.3392, 0.4777, -0.2904, 0.4455, 0.644, -0.2582, 0.2538, 0.519, 0.2047, 0.2584, 0.4152, -0.0645, 0.361, 0.5815, -0.022, 0.1249, 0.4565, 0.4198, 0.1558, 0.3527, 0.1523, 0.2538, 0.519, 0.2047, -0.0245, 0.394, 0.6212, 0.0325, 0.2902, 0.3581, 0.1249, 0.4565, 0.4198, -0.1929, 0.3315, 0.8071, -0.1104, 0.2277, 0.5507, -0.0245, 0.394, 0.6212, -0.3788, 0.269, 0.9755, -0.2715, 0.1652, 0.7285, -0.1929, 0.3315, 0.8071, -0.5802, 0.2065, 1.1249, -0.4493, 0.1027, 0.8896, -0.3788, 0.269, 0.9755, -0.7953, 0.144, 1.2538, -0.6419, 0.0402, 1.0325, -0.5802, 0.2065, 1.1249, -1.022, 0.0815, 1.361, -0.8477, -0.0223, 1.1558, -0.7953, 0.144, 1.2538, -1.2582, 0.019, 1.4455, -1.0645, -0.0848, 1.2584, -1.022, 0.0815, 1.361, -1.5014, -0.0435, 1.5065, -1.2904, -0.1473, 1.3392, -1.2582, 0.019, 1.4455, -1.7495, -0.106, 1.5433, -1.5231, -0.2098, 1.3975, -1.5014, -0.0435, 1.5065, -2, -0.1685, 1.5556, -1.7604, -0.2723, 1.4327, -1.7495, -0.106, 1.5433, -1.0048, -0.0625, -0.902, -0.8, 0, -1, -0.8058, -0.0625, -0.8824, -1.0192, -0.125, -0.8049, -0.8058, -0.0625, -0.8824, -0.8231, -0.125, -0.7659, -1.0431, -0.1875, -0.7097, -0.8231, -0.125, -0.7659, -0.8517, -0.1875, -0.6517, -1.0761, -0.25, -0.6173, -0.8517, -0.1875, -0.6517, -0.8913, -0.25, -0.5408, -1.1181, -0.3125, -0.5286, -0.8913, -0.25, -0.5408, -0.9417, -0.3125, -0.4343, -1.1685, -0.375, -0.4444, -0.9417, -0.3125, -0.4343, -1.0022, -0.375, -0.3333, -1.227, -0.4375, -0.3656, -1.0022, -0.375, -0.3333, -1.0724, -0.4375, -0.2387, -1.1515, -0.5, -0.1515, -1.227, -0.4375, -0.3656, -1.0724, -0.4375, -0.2387, -1.2387, -0.5625, -0.0724, -1.2929, -0.5, -0.2929, -1.1515, -0.5, -0.1515, -1.4444, -0.625, -0.1685, -1.2387, -0.5625, -0.0724, -1.3333, -0.625, -0.0022, -1.5286, -0.6875, -0.1181, -1.3333, -0.625, -0.0022, -1.4343, -0.6875, 0.0583, -1.5408, -0.75, 0.1087, -1.5286, -0.6875, -0.1181, -1.4343, -0.6875, 0.0583, -1.6517, -0.8125, 0.1483, -1.6173, -0.75, -0.0761, -1.5408, -0.75, 0.1087, -1.8049, -0.875, -0.0192, -1.6517, -0.8125, 0.1483, -1.7659, -0.875, 0.1769, -1.8824, -0.9375, 0.1942, -1.8049, -0.875, -0.0192, -1.7659, -0.875, 0.1769, -2, -1, 0.2, -1.902, -0.9375, -0.0048, -1.8824, -0.9375, 0.1942, 0.3061, -0.7391, -1, 0.3827, -0.9239, -1, 0.4445, -0.6652, -1, -2, -1.8315, 1.5556, -2, -1.6652, 1.4445, -2, -1.7071, 1.7071, 0.5556, 0.8315, -1, 0.7071, 0.7071, -1, 0.5433, 0.769, -0.7495, 0.5433, 0.769, -0.7495, 0.6941, 0.6446, -0.7347, 0.5065, 0.7065, -0.5014, 0.5065, 0.7065, -0.5014, 0.6551, 0.5821, -0.4719, 0.4455, 0.644, -0.2582, 0.4455, 0.644, -0.2582, 0.5905, 0.5196, -0.2142, 0.361, 0.5815, -0.022, 0.361, 0.5815, -0.022, 0.501, 0.4571, 0.036, 0.2538, 0.519, 0.2047, 0.2538, 0.519, 0.2047, 0.3875, 0.3946, 0.2761, 0.1249, 0.4565, 0.4198, 0.1249, 0.4565, 0.4198, 0.2509, 0.3321, 0.504, -0.0245, 0.394, 0.6212, -0.0245, 0.394, 0.6212, 0.0926, 0.2696, 0.7174, -0.1929, 0.3315, 0.8071, -0.1929, 0.3315, 0.8071, -0.0858, 0.2071, 0.9142, -0.3788, 0.269, 0.9755, -0.3788, 0.269, 0.9755, -0.2826, 0.1446, 1.0926, -0.5802, 0.2065, 1.1249, -0.5802, 0.2065, 1.1249, -0.496, 0.0821, 1.2509, -0.7953, 0.144, 1.2538, -0.7953, 0.144, 1.2538, -0.7239, 0.0196, 1.3875, -1.022, 0.0815, 1.361, -1.022, 0.0815, 1.361, -0.964, -0.0429, 1.501, -1.2582, 0.019, 1.4455, -1.2582, 0.019, 1.4455, -1.2142, -0.1054, 1.5905, -1.5014, -0.0435, 1.5065, -1.5014, -0.0435, 1.5065, -1.4719, -0.1679, 1.6551, -1.7495, -0.106, 1.5433, -1.7495, -0.106, 1.5433, -1.7347, -0.2304, 1.6941, -2, -0.1685, 1.5556, 0.7071, 0.7071, -1, 0.8315, 0.5556, -1, 0.6941, 0.6446, -0.7347, 0.6941, 0.6446, -0.7347, 0.8178, 0.4931, -0.7225, 0.6551, 0.5821, -0.4719, 0.6551, 0.5821, -0.4719, 0.7771, 0.4306, -0.4476, 0.5905, 0.5196, -0.2142, 0.5905, 0.5196, -0.2142, 0.7095, 0.3681, -0.1781, 0.501, 0.4571, 0.036, 0.501, 0.4571, 0.036, 0.6159, 0.3056, 0.0836, 0.3875, 0.3946, 0.2761, 0.3875, 0.3946, 0.2761, 0.4971, 0.2431, 0.3347, 0.2509, 0.3321, 0.504, 0.2509, 0.3321, 0.504, 0.3543, 0.1806, 0.5731, 0.0926, 0.2696, 0.7174, 0.0926, 0.2696, 0.7174, 0.1888, 0.1181, 0.7963, -0.0858, 0.2071, 0.9142, -0.0858, 0.2071, 0.9142, 0.0022, 0.0556, 1.0022, -0.2826, 0.1446, 1.0926, -0.2826, 0.1446, 1.0926, -0.2037, -0.0069, 1.1888, -0.496, 0.0821, 1.2509, -0.496, 0.0821, 1.2509, -0.4269, -0.0694, 1.3543, -0.7239, 0.0196, 1.3875, -0.7239, 0.0196, 1.3875, -0.6653, -0.1319, 1.4971, -0.964, -0.0429, 1.501, -0.964, -0.0429, 1.501, -0.9164, -0.1944, 1.6159, -1.2142, -0.1054, 1.5905, -1.2142, -0.1054, 1.5905, -1.1781, -0.2569, 1.7095, -1.4719, -0.1679, 1.6551, -1.4719, -0.1679, 1.6551, -1.4476, -0.3194, 1.7771, -1.7347, -0.2304, 1.6941, -1.7347, -0.2304, 1.6941, -1.7225, -0.3819, 1.8178, -2, -0.2929, 1.7071, 0.8315, 0.5556, -1, 0.9239, 0.3827, -1, 0.8178, 0.4931, -0.7225, 0.8178, 0.4931, -0.7225, 0.9098, 0.3202, -0.7134, 0.7771, 0.4306, -0.4476, 0.7771, 0.4306, -0.4476, 0.8677, 0.2577, -0.4296, 0.7095, 0.3681, -0.1781, 0.7095, 0.3681, -0.1781, 0.798, 0.1952, -0.1512, 0.6159, 0.3056, 0.0836, 0.6159, 0.3056, 0.0836, 0.7013, 0.1327, 0.1189, 0.4971, 0.2431, 0.3347, 0.4971, 0.2431, 0.3347, 0.5786, 0.0702, 0.3783, 0.3543, 0.1806, 0.5731, 0.3543, 0.1806, 0.5731, 0.4311, 0.0077, 0.6244, 0.1888, 0.1181, 0.7963, 0.1888, 0.1181, 0.7963, 0.2602, -0.0548, 0.8549, 0.0022, 0.0556, 1.0022, 0.0022, 0.0556, 1.0022, 0.0675, -0.1173, 1.0675, -0.2037, -0.0069, 1.1888, -0.2037, -0.0069, 1.1888, -0.1451, -0.1798, 1.2602, -0.4269, -0.0694, 1.3543, -0.4269, -0.0694, 1.3543, -0.3756, -0.2423, 1.4311, -0.6653, -0.1319, 1.4971, -0.6653, -0.1319, 1.4971, -0.6217, -0.3048, 1.5786, -0.9164, -0.1944, 1.6159, -0.9164, -0.1944, 1.6159, -0.8811, -0.3673, 1.7013, -1.1781, -0.2569, 1.7095, -1.1781, -0.2569, 1.7095, -1.1512, -0.4298, 1.798, -1.4476, -0.3194, 1.7771, -1.4476, -0.3194, 1.7771, -1.4296, -0.4923, 1.8677, -1.7225, -0.3819, 1.8178, -1.7225, -0.3819, 1.8178, -1.7134, -0.5548, 1.9098, -2, -0.4444, 1.8315, 0.9239, 0.3827, -1, 0.9808, 0.1951, -1, 0.9098, 0.3202, -0.7134, 0.9098, 0.3202, -0.7134, 0.9664, 0.1326, -0.7078, 0.8677, 0.2577, -0.4296, 0.8677, 0.2577, -0.4296, 0.9235, 0.0701, -0.4185, 0.798, 0.1952, -0.1512, 0.798, 0.1952, -0.1512, 0.8524, 0.0076, -0.1347, 0.7013, 0.1327, 0.1189, 0.7013, 0.1327, 0.1189, 0.7539, -0.0549, 0.1407, 0.5786, 0.0702, 0.3783, 0.5786, 0.0702, 0.3783, 0.6288, -0.1174, 0.4051, 0.4311, 0.0077, 0.6244, 0.4311, 0.0077, 0.6244, 0.4784, -0.1799, 0.656, 0.2602, -0.0548, 0.8549, 0.2602, -0.0548, 0.8549, 0.3042, -0.2424, 0.891, 0.0675, -0.1173, 1.0675, 0.0675, -0.1173, 1.0675, 0.1077, -0.3049, 1.1077, -0.1451, -0.1798, 1.2602, -0.1451, -0.1798, 1.2602, -0.109, -0.3674, 1.3042, -0.3756, -0.2423, 1.4311, -0.3756, -0.2423, 1.4311, -0.344, -0.4299, 1.4784, -0.6217, -0.3048, 1.5786, -0.6217, -0.3048, 1.5786, -0.5949, -0.4924, 1.6288, -0.8811, -0.3673, 1.7013, -0.8811, -0.3673, 1.7013, -0.8593, -0.5549, 1.7539, -1.1512, -0.4298, 1.798, -1.1512, -0.4298, 1.798, -1.1347, -0.6174, 1.8524, -1.4296, -0.4923, 1.8677, -1.4296, -0.4923, 1.8677, -1.4185, -0.6799, 1.9235, -1.7134, -0.5548, 1.9098, -1.7134, -0.5548, 1.9098, -1.7078, -0.7424, 1.9664, -2, -0.6173, 1.9239, 0.9808, 0.1951, -1, 1, 0, -1, 0.9664, 0.1326, -0.7078, 0.9664, 0.1326, -0.7078, 0.9856, -0.0625, -0.7059, 0.9235, 0.0701, -0.4185, 0.9235, 0.0701, -0.4185, 0.9424, -0.125, -0.4147, 0.8524, 0.0076, -0.1347, 0.8524, 0.0076, -0.1347, 0.8708, -0.1875, -0.1291, 0.7539, -0.0549, 0.1407, 0.7539, -0.0549, 0.1407, 0.7716, -0.25, 0.148, 0.6288, -0.1174, 0.4051, 0.6288, -0.1174, 0.4051, 0.6458, -0.3125, 0.4142, 0.4784, -0.1799, 0.656, 0.4784, -0.1799, 0.656, 0.4944, -0.375, 0.6667, 0.3042, -0.2424, 0.891, 0.3042, -0.2424, 0.891, 0.319, -0.4375, 0.9032, 0.1077, -0.3049, 1.1077, 0.1077, -0.3049, 1.1077, 0.1213, -0.5, 1.1213, -0.109, -0.3674, 1.3042, -0.109, -0.3674, 1.3042, -0.0968, -0.5625, 1.319, -0.344, -0.4299, 1.4784, -0.344, -0.4299, 1.4784, -0.3333, -0.625, 1.4944, -0.5949, -0.4924, 1.6288, -0.5949, -0.4924, 1.6288, -0.5858, -0.6875, 1.6458, -0.8593, -0.5549, 1.7539, -0.8593, -0.5549, 1.7539, -0.852, -0.75, 1.7716, -1.1347, -0.6174, 1.8524, -1.1347, -0.6174, 1.8524, -1.1291, -0.8125, 1.8708, -1.4185, -0.6799, 1.9235, -1.4185, -0.6799, 1.9235, -1.4147, -0.875, 1.9424, -1.7078, -0.7424, 1.9664, -1.7078, -0.7424, 1.9664, -1.7059, -0.9375, 1.9856, -2, -0.8049, 1.9808, 1, 0, -1, 0.9808, -0.1951, -1, 0.9856, -0.0625, -0.7059, 0.9856, -0.0625, -0.7059, 0.9664, -0.2576, -0.7078, 0.9424, -0.125, -0.4147, 0.9424, -0.125, -0.4147, 0.9235, -0.3201, -0.4185, 0.8708, -0.1875, -0.1291, 0.8708, -0.1875, -0.1291, 0.8524, -0.3826, -0.1347, 0.7716, -0.25, 0.148, 0.7716, -0.25, 0.148, 0.7539, -0.4451, 0.1407, 0.6458, -0.3125, 0.4142, 0.6458, -0.3125, 0.4142, 0.6288, -0.5076, 0.4051, 0.4944, -0.375, 0.6667, 0.4944, -0.375, 0.6667, 0.4784, -0.5701, 0.656, 0.319, -0.4375, 0.9032, 0.319, -0.4375, 0.9032, 0.3042, -0.6326, 0.891, 0.1213, -0.5, 1.1213, 0.1213, -0.5, 1.1213, 0.1077, -0.6951, 1.1077, -0.0968, -0.5625, 1.319, -0.0968, -0.5625, 1.319, -0.109, -0.7576, 1.3042, -0.3333, -0.625, 1.4944, -0.3333, -0.625, 1.4944, -0.344, -0.8201, 1.4784, -0.5858, -0.6875, 1.6458, -0.5858, -0.6875, 1.6458, -0.5949, -0.8826, 1.6288, -0.852, -0.75, 1.7716, -0.852, -0.75, 1.7716, -0.8593, -0.9451, 1.7539, -1.1291, -0.8125, 1.8708, -1.1291, -0.8125, 1.8708, -1.1347, -1.0076, 1.8524, -1.4147, -0.875, 1.9424, -1.4147, -0.875, 1.9424, -1.4185, -1.0701, 1.9235, -1.7059, -0.9375, 1.9856, -1.7059, -0.9375, 1.9856, -1.7078, -1.1326, 1.9664, -2, -1, 2, 0.9808, -0.1951, -1, 0.9239, -0.3827, -1, 0.9664, -0.2576, -0.7078, 0.9664, -0.2576, -0.7078, 0.9098, -0.4452, -0.7134, 0.9235, -0.3201, -0.4185, 0.9235, -0.3201, -0.4185, 0.8677, -0.5077, -0.4296, 0.8524, -0.3826, -0.1347, 0.8524, -0.3826, -0.1347, 0.798, -0.5702, -0.1512, 0.7539, -0.4451, 0.1407, 0.7539, -0.4451, 0.1407, 0.7013, -0.6327, 0.1189, 0.6288, -0.5076, 0.4051, 0.6288, -0.5076, 0.4051, 0.5786, -0.6952, 0.3783, 0.4784, -0.5701, 0.656, 0.4784, -0.5701, 0.656, 0.4311, -0.7577, 0.6244, 0.3042, -0.6326, 0.891, 0.3042, -0.6326, 0.891, 0.2602, -0.8202, 0.8549, 0.1077, -0.6951, 1.1077, 0.1077, -0.6951, 1.1077, 0.0675, -0.8827, 1.0675, -0.109, -0.7576, 1.3042, -0.109, -0.7576, 1.3042, -0.1451, -0.9452, 1.2602, -0.344, -0.8201, 1.4784, -0.344, -0.8201, 1.4784, -0.3756, -1.0077, 1.4311, -0.5949, -0.8826, 1.6288, -0.5949, -0.8826, 1.6288, -0.6217, -1.0702, 1.5786, -0.8593, -0.9451, 1.7539, -0.8593, -0.9451, 1.7539, -0.8811, -1.1327, 1.7013, -1.1347, -1.0076, 1.8524, -1.1347, -1.0076, 1.8524, -1.1512, -1.1952, 1.798, -1.4185, -1.0701, 1.9235, -1.4185, -1.0701, 1.9235, -1.4296, -1.2577, 1.8677, -1.7078, -1.1326, 1.9664, -1.7078, -1.1326, 1.9664, -1.7134, -1.3202, 1.9098, -2, -1.1951, 1.9808, 0.9239, -0.3827, -1, 0.8315, -0.5556, -1, 0.9098, -0.4452, -0.7134, 0.9098, -0.4452, -0.7134, 0.8178, -0.6181, -0.7225, 0.8677, -0.5077, -0.4296, 0.8677, -0.5077, -0.4296, 0.7771, -0.6806, -0.4476, 0.798, -0.5702, -0.1512, 0.798, -0.5702, -0.1512, 0.7095, -0.7431, -0.1781, 0.7013, -0.6327, 0.1189, 0.7013, -0.6327, 0.1189, 0.6159, -0.8056, 0.0836, 0.5786, -0.6952, 0.3783, 0.5786, -0.6952, 0.3783, 0.4971, -0.8681, 0.3347, 0.4311, -0.7577, 0.6244, 0.4311, -0.7577, 0.6244, 0.3543, -0.9306, 0.5731, 0.2602, -0.8202, 0.8549, 0.2602, -0.8202, 0.8549, 0.1888, -0.9931, 0.7963, 0.0675, -0.8827, 1.0675, 0.0675, -0.8827, 1.0675, 0.0022, -1.0556, 1.0022, -0.1451, -0.9452, 1.2602, -0.1451, -0.9452, 1.2602, -0.2037, -1.1181, 1.1888, -0.3756, -1.0077, 1.4311, -0.3756, -1.0077, 1.4311, -0.4269, -1.1806, 1.3543, -0.6217, -1.0702, 1.5786, -0.6217, -1.0702, 1.5786, -0.6653, -1.2431, 1.4971, -0.8811, -1.1327, 1.7013, -0.8811, -1.1327, 1.7013, -0.9164, -1.3056, 1.6159, -1.1512, -1.1952, 1.798, -1.1512, -1.1952, 1.798, -1.1781, -1.3681, 1.7095, -1.4296, -1.2577, 1.8677, -1.4296, -1.2577, 1.8677, -1.4476, -1.4306, 1.7771, -1.7134, -1.3202, 1.9098, -1.7134, -1.3202, 1.9098, -1.7225, -1.4931, 1.8178, -2, -1.3827, 1.9239, 0.8315, -0.5556, -1, 0.7071, -0.7071, -1, 0.8178, -0.6181, -0.7225, 0.8178, -0.6181, -0.7225, 0.6941, -0.7696, -0.7347, 0.7771, -0.6806, -0.4476, 0.7771, -0.6806, -0.4476, 0.6551, -0.8321, -0.4719, 0.7095, -0.7431, -0.1781, 0.7095, -0.7431, -0.1781, 0.5905, -0.8946, -0.2142, 0.6159, -0.8056, 0.0836, 0.6159, -0.8056, 0.0836, 0.501, -0.9571, 0.036, 0.4971, -0.8681, 0.3347, 0.4971, -0.8681, 0.3347, 0.3875, -1.0196, 0.2761, 0.3543, -0.9306, 0.5731, 0.3543, -0.9306, 0.5731, 0.2509, -1.0821, 0.504, 0.1888, -0.9931, 0.7963, 0.1888, -0.9931, 0.7963, 0.0926, -1.1446, 0.7174, 0.0022, -1.0556, 1.0022, 0.0022, -1.0556, 1.0022, -0.0858, -1.2071, 0.9142, -0.2037, -1.1181, 1.1888, -0.2037, -1.1181, 1.1888, -0.2826, -1.2696, 1.0926, -0.4269, -1.1806, 1.3543, -0.4269, -1.1806, 1.3543, -0.496, -1.3321, 1.2509, -0.6653, -1.2431, 1.4971, -0.6653, -1.2431, 1.4971, -0.7239, -1.3946, 1.3875, -0.9164, -1.3056, 1.6159, -0.9164, -1.3056, 1.6159, -0.964, -1.4571, 1.501, -1.1781, -1.3681, 1.7095, -1.1781, -1.3681, 1.7095, -1.2142, -1.5196, 1.5905, -1.4476, -1.4306, 1.7771, -1.4476, -1.4306, 1.7771, -1.4719, -1.5821, 1.6551, -1.7225, -1.4931, 1.8178, -1.7225, -1.4931, 1.8178, -1.7347, -1.6446, 1.6941, -2, -1.5556, 1.8315, 0.7071, -0.7071, -1, 0.5556, -0.8315, -1, 0.6941, -0.7696, -0.7347, 0.6941, -0.7696, -0.7347, 0.5433, -0.894, -0.7495, 0.6551, -0.8321, -0.4719, 0.6551, -0.8321, -0.4719, 0.5065, -0.9565, -0.5014, 0.5905, -0.8946, -0.2142, 0.5905, -0.8946, -0.2142, 0.4455, -1.019, -0.2582, 0.501, -0.9571, 0.036, 0.501, -0.9571, 0.036, 0.361, -1.0815, -0.022, 0.3875, -1.0196, 0.2761, 0.3875, -1.0196, 0.2761, 0.2538, -1.144, 0.2047, 0.2509, -1.0821, 0.504, 0.2509, -1.0821, 0.504, 0.1249, -1.2065, 0.4198, 0.0926, -1.1446, 0.7174, 0.0926, -1.1446, 0.7174, -0.0245, -1.269, 0.6212, -0.0858, -1.2071, 0.9142, -0.0858, -1.2071, 0.9142, -0.1929, -1.3315, 0.8071, -0.2826, -1.2696, 1.0926, -0.2826, -1.2696, 1.0926, -0.3788, -1.394, 0.9755, -0.496, -1.3321, 1.2509, -0.496, -1.3321, 1.2509, -0.5802, -1.4565, 1.1249, -0.7239, -1.3946, 1.3875, -0.7239, -1.3946, 1.3875, -0.7953, -1.519, 1.2538, -0.964, -1.4571, 1.501, -0.964, -1.4571, 1.501, -1.022, -1.5815, 1.361, -1.2142, -1.5196, 1.5905, -1.2142, -1.5196, 1.5905, -1.2582, -1.644, 1.4455, -1.4719, -1.5821, 1.6551, -1.4719, -1.5821, 1.6551, -1.5014, -1.7065, 1.5065, -1.7347, -1.6446, 1.6941, -1.7347, -1.6446, 1.6941, -1.7495, -1.769, 1.5433, -2, -1.7071, 1.7071, 0.5556, -0.8315, -1, 0.3827, -0.9239, -1, 0.5433, -0.894, -0.7495, 0.5433, -0.894, -0.7495, 0.3712, -0.9864, -0.7665, 0.5065, -0.9565, -0.5014, 0.5065, -0.9565, -0.5014, 0.3369, -1.0489, -0.5352, 0.4455, -1.019, -0.2582, 0.4455, -1.019, -0.2582, 0.2801, -1.1114, -0.3083, 0.361, -1.0815, -0.022, 0.361, -1.0815, -0.022, 0.2013, -1.1739, -0.0882, 0.2538, -1.144, 0.2047, 0.2538, -1.144, 0.2047, 0.1013, -1.2364, 0.1232, 0.1249, -1.2065, 0.4198, 0.1249, -1.2065, 0.4198, -0.0189, -1.2989, 0.3237, -0.0245, -1.269, 0.6212, -0.0245, -1.269, 0.6212, -0.1582, -1.3614, 0.5116, -0.1929, -1.3315, 0.8071, -0.1929, -1.3315, 0.8071, -0.3152, -1.4239, 0.6848, -0.3788, -1.394, 0.9755, -0.3788, -1.394, 0.9755, -0.4884, -1.4864, 0.8418, -0.5802, -1.4565, 1.1249, -0.5802, -1.4565, 1.1249, -0.6763, -1.5489, 0.9811, -0.7953, -1.519, 1.2538, -0.7953, -1.519, 1.2538, -0.8768, -1.6114, 1.1013, -1.022, -1.5815, 1.361, -1.022, -1.5815, 1.361, -1.0882, -1.6739, 1.2013, -1.2582, -1.644, 1.4455, -1.2582, -1.644, 1.4455, -1.3083, -1.7364, 1.2801, -1.5014, -1.7065, 1.5065, -1.5014, -1.7065, 1.5065, -1.5352, -1.7989, 1.3369, -1.7495, -1.769, 1.5433, -1.7495, -1.769, 1.5433, -1.7665, -1.8614, 1.3712, -2, -1.8315, 1.5556, 0.3827, -0.9239, -1, 0.1951, -0.9808, -1, 0.3712, -0.9864, -0.7665, 0.3712, -0.9864, -0.7665, 0.1845, -1.0433, -0.7848, 0.3369, -1.0489, -0.5352, 0.3369, -1.0489, -0.5352, 0.1529, -1.1058, -0.5718, 0.2801, -1.1114, -0.3083, 0.2801, -1.1114, -0.3083, 0.1006, -1.1683, -0.3628, 0.2013, -1.1739, -0.0882, 0.2013, -1.1739, -0.0882, 0.028, -1.2308, -0.16, 0.1013, -1.2364, 0.1232, 0.1013, -1.2364, 0.1232, -0.0641, -1.2933, 0.0348, -0.0189, -1.2989, 0.3237, -0.0189, -1.2989, 0.3237, -0.1748, -1.3558, 0.2195, -0.1582, -1.3614, 0.5116, -0.1582, -1.3614, 0.5116, -0.3032, -1.4183, 0.3926, -0.3152, -1.4239, 0.6848, -0.3152, -1.4239, 0.6848, -0.4478, -1.4808, 0.5522, -0.4884, -1.4864, 0.8418, -0.4884, -1.4864, 0.8418, -0.6075, -1.5433, 0.6968, -0.6763, -1.5489, 0.9811, -0.6763, -1.5489, 0.9811, -0.7805, -1.6058, 0.8252, -0.8768, -1.6114, 1.1013, -0.8768, -1.6114, 1.1013, -0.9652, -1.6683, 0.9359, -1.0882, -1.6739, 1.2013, -1.0882, -1.6739, 1.2013, -1.16, -1.7308, 1.028, -1.3083, -1.7364, 1.2801, -1.3083, -1.7364, 1.2801, -1.3628, -1.7933, 1.1006, -1.5352, -1.7989, 1.3369, -1.5352, -1.7989, 1.3369, -1.5718, -1.8558, 1.1529, -1.7665, -1.8614, 1.3712, -1.7665, -1.8614, 1.3712, -1.7848, -1.9183, 1.1845, -2, -1.9239, 1.3827, 0.1951, -0.9808, -1, 0, -1, -1, 0.1845, -1.0433, -0.7848, 0.1845, -1.0433, -0.7848, -0.0096, -1.0625, -0.804, 0.1529, -1.1058, -0.5718, 0.1529, -1.1058, -0.5718, -0.0384, -1.125, -0.6098, 0.1006, -1.1683, -0.3628, 0.1006, -1.1683, -0.3628, -0.0861, -1.1875, -0.4194, 0.028, -1.2308, -0.16, 0.028, -1.2308, -0.16, -0.1522, -1.25, -0.2346, -0.0641, -1.2933, 0.0348, -0.0641, -1.2933, 0.0348, -0.2362, -1.3125, -0.0572, -0.1748, -1.3558, 0.2195, -0.1748, -1.3558, 0.2195, -0.3371, -1.375, 0.1111, -0.3032, -1.4183, 0.3926, -0.3032, -1.4183, 0.3926, -0.454, -1.4375, 0.2688, -0.4478, -1.4808, 0.5522, -0.4478, -1.4808, 0.5522, -0.5858, -1.5, 0.4142, -0.6075, -1.5433, 0.6968, -0.6075, -1.5433, 0.6968, -0.7312, -1.5625, 0.546, -0.7805, -1.6058, 0.8252, -0.7805, -1.6058, 0.8252, -0.8889, -1.625, 0.6629, -0.9652, -1.6683, 0.9359, -0.9652, -1.6683, 0.9359, -1.0572, -1.6875, 0.7638, -1.16, -1.7308, 1.028, -1.16, -1.7308, 1.028, -1.2346, -1.75, 0.8478, -1.3628, -1.7933, 1.1006, -1.3628, -1.7933, 1.1006, -1.4194, -1.8125, 0.9139, -1.5718, -1.8558, 1.1529, -1.5718, -1.8558, 1.1529, -1.6098, -1.875, 0.9616, -1.7848, -1.9183, 1.1845, -1.7848, -1.9183, 1.1845, -1.804, -1.9375, 0.9904, -2, -1.9808, 1.1951, -0.0096, -1.0625, -0.804, 0, -1, -1, -0.2038, -1.0433, -0.8231, -0.0384, -1.125, -0.6098, -0.0096, -1.0625, -0.804, -0.2298, -1.1058, -0.6479, -0.0861, -1.1875, -0.4194, -0.0384, -1.125, -0.6098, -0.2728, -1.1683, -0.4761, -0.1522, -1.25, -0.2346, -0.0861, -1.1875, -0.4194, -0.3325, -1.2308, -0.3093, -0.2362, -1.3125, -0.0572, -0.1522, -1.25, -0.2346, -0.4082, -1.2933, -0.1492, -0.3371, -1.375, 0.1111, -0.2362, -1.3125, -0.0572, -0.4993, -1.3558, 0.0028, -0.454, -1.4375, 0.2688, -0.3371, -1.375, 0.1111, -0.6048, -1.4183, 0.145, -0.5858, -1.5, 0.4142, -0.454, -1.4375, 0.2688, -0.7237, -1.4808, 0.2763, -0.7312, -1.5625, 0.546, -0.5858, -1.5, 0.4142, -0.855, -1.5433, 0.3952, -0.8889, -1.625, 0.6629, -0.7312, -1.5625, 0.546, -0.9972, -1.6058, 0.5007, -1.0572, -1.6875, 0.7638, -0.8889, -1.625, 0.6629, -1.1492, -1.6683, 0.5918, -1.2346, -1.75, 0.8478, -1.0572, -1.6875, 0.7638, -1.3093, -1.7308, 0.6675, -1.4194, -1.8125, 0.9139, -1.2346, -1.75, 0.8478, -1.4761, -1.7933, 0.7272, -1.6098, -1.875, 0.9616, -1.4194, -1.8125, 0.9139, -1.6479, -1.8558, 0.7702, -1.804, -1.9375, 0.9904, -1.6098, -1.875, 0.9616, -1.8231, -1.9183, 0.7962, -2, -2, 1, -1.804, -1.9375, 0.9904, -2, -1.9808, 0.8049, -0.2038, -1.0433, -0.8231, -0.1951, -0.9808, -1, -0.3905, -0.9864, -0.8415, -0.2298, -1.1058, -0.6479, -0.2038, -1.0433, -0.8231, -0.4138, -1.0489, -0.6845, -0.2728, -1.1683, -0.4761, -0.2298, -1.1058, -0.6479, -0.4523, -1.1114, -0.5305, -0.3325, -1.2308, -0.3093, -0.2728, -1.1683, -0.4761, -0.5058, -1.1739, -0.3811, -0.4082, -1.2933, -0.1492, -0.3325, -1.2308, -0.3093, -0.5737, -1.2364, -0.2376, -0.4993, -1.3558, 0.0028, -0.4082, -1.2933, -0.1492, -0.6553, -1.2989, -0.1015, -0.6048, -1.4183, 0.145, -0.4993, -1.3558, 0.0028, -0.7498, -1.3614, 0.026, -0.7237, -1.4808, 0.2763, -0.6048, -1.4183, 0.145, -0.8564, -1.4239, 0.1436, -0.855, -1.5433, 0.3952, -0.7237, -1.4808, 0.2763, -0.974, -1.4864, 0.2502, -0.9972, -1.6058, 0.5007, -0.855, -1.5433, 0.3952, -1.1015, -1.5489, 0.3447, -1.1492, -1.6683, 0.5918, -0.9972, -1.6058, 0.5007, -1.2376, -1.6114, 0.4263, -1.3093, -1.7308, 0.6675, -1.1492, -1.6683, 0.5918, -1.3811, -1.6739, 0.4942, -1.4761, -1.7933, 0.7272, -1.3093, -1.7308, 0.6675, -1.5305, -1.7364, 0.5477, -1.6479, -1.8558, 0.7702, -1.4761, -1.7933, 0.7272, -1.6845, -1.7989, 0.5862, -1.8231, -1.9183, 0.7962, -1.6479, -1.8558, 0.7702, -1.8415, -1.8614, 0.6095, -2, -1.9808, 0.8049, -1.8231, -1.9183, 0.7962, -2, -1.9239, 0.6173, -0.3905, -0.9864, -0.8415, -0.3827, -0.9239, -1, -0.5625, -0.894, -0.8584, -0.4138, -1.0489, -0.6845, -0.3905, -0.9864, -0.8415, -0.5833, -0.9565, -0.7182, -0.4523, -1.1114, -0.5305, -0.4138, -1.0489, -0.6845, -0.6178, -1.019, -0.5807, -0.5058, -1.1739, -0.3811, -0.4523, -1.1114, -0.5305, -0.6655, -1.0815, -0.4472, -0.5737, -1.2364, -0.2376, -0.5058, -1.1739, -0.3811, -0.7261, -1.144, -0.3191, -0.6553, -1.2989, -0.1015, -0.5737, -1.2364, -0.2376, -0.799, -1.2065, -0.1975, -0.7498, -1.3614, 0.026, -0.6553, -1.2989, -0.1015, -0.8834, -1.269, -0.0837, -0.8564, -1.4239, 0.1436, -0.7498, -1.3614, 0.026, -0.9786, -1.3315, 0.0214, -0.974, -1.4864, 0.2502, -0.8564, -1.4239, 0.1436, -1.0837, -1.394, 0.1166, -1.1015, -1.5489, 0.3447, -0.974, -1.4864, 0.2502, -1.1975, -1.4565, 0.201, -1.2376, -1.6114, 0.4263, -1.1015, -1.5489, 0.3447, -1.3191, -1.519, 0.2739, -1.3811, -1.6739, 0.4942, -1.2376, -1.6114, 0.4263, -1.4472, -1.5815, 0.3345, -1.5305, -1.7364, 0.5477, -1.3811, -1.6739, 0.4942, -1.5807, -1.644, 0.3822, -1.6845, -1.7989, 0.5862, -1.5305, -1.7364, 0.5477, -1.7182, -1.7065, 0.4167, -1.8415, -1.8614, 0.6095, -1.6845, -1.7989, 0.5862, -1.8584, -1.769, 0.4375, -2, -1.9239, 0.6173, -1.8415, -1.8614, 0.6095, -2, -1.8315, 0.4444, -0.5625, -0.894, -0.8584, -0.5556, -0.8315, -1, -0.7133, -0.7696, -0.8733, -0.5833, -0.9565, -0.7182, -0.5625, -0.894, -0.8584, -0.732, -0.8321, -0.7478, -0.6178, -1.019, -0.5807, -0.5833, -0.9565, -0.7182, -0.7628, -0.8946, -0.6247, -0.6655, -1.0815, -0.4472, -0.6178, -1.019, -0.5807, -0.8055, -0.9571, -0.5052, -0.7261, -1.144, -0.3191, -0.6655, -1.0815, -0.4472, -0.8598, -1.0196, -0.3905, -0.799, -1.2065, -0.1975, -0.7261, -1.144, -0.3191, -0.925, -1.0821, -0.2817, -0.8834, -1.269, -0.0837, -0.799, -1.2065, -0.1975, -1.0006, -1.1446, -0.1798, -0.9786, -1.3315, 0.0214, -0.8834, -1.269, -0.0837, -1.0858, -1.2071, -0.0858, -1.0837, -1.394, 0.1166, -0.9786, -1.3315, 0.0214, -1.1798, -1.2696, -0.0006, -1.1975, -1.4565, 0.201, -1.0837, -1.394, 0.1166, -1.2817, -1.3321, 0.075, -1.3191, -1.519, 0.2739, -1.1975, -1.4565, 0.201, -1.3905, -1.3946, 0.1402, -1.4472, -1.5815, 0.3345, -1.3191, -1.519, 0.2739, -1.5052, -1.4571, 0.1945, -1.5807, -1.644, 0.3822, -1.4472, -1.5815, 0.3345, -1.6247, -1.5196, 0.2372, -1.7182, -1.7065, 0.4167, -1.5807, -1.644, 0.3822, -1.7478, -1.5821, 0.268, -1.8584, -1.769, 0.4375, -1.7182, -1.7065, 0.4167, -1.8733, -1.6446, 0.2867, -2, -1.8315, 0.4444, -1.8584, -1.769, 0.4375, -2, -1.7071, 0.2929, -0.7133, -0.7696, -0.8733, -0.7071, -0.7071, -1, -0.8371, -0.6181, -0.8855, -0.732, -0.8321, -0.7478, -0.7133, -0.7696, -0.8733, -0.8539, -0.6806, -0.772, -0.7628, -0.8946, -0.6247, -0.732, -0.8321, -0.7478, -0.8818, -0.7431, -0.6608, -0.8055, -0.9571, -0.5052, -0.7628, -0.8946, -0.6247, -0.9204, -0.8056, -0.5528, -0.8598, -1.0196, -0.3905, -0.8055, -0.9571, -0.5052, -0.9694, -0.8681, -0.4492, -0.925, -1.0821, -0.2817, -0.8598, -1.0196, -0.3905, -1.0284, -0.9306, -0.3508, -1.0006, -1.1446, -0.1798, -0.925, -1.0821, -0.2817, -1.0967, -0.9931, -0.2587, -1.0858, -1.2071, -0.0858, -1.0006, -1.1446, -0.1798, -1.1737, -1.0556, -0.1737, -1.1798, -1.2696, -0.0006, -1.0858, -1.2071, -0.0858, -1.2587, -1.1181, -0.0967, -1.2817, -1.3321, 0.075, -1.1798, -1.2696, -0.0006, -1.3508, -1.1806, -0.0284, -1.3905, -1.3946, 0.1402, -1.2817, -1.3321, 0.075, -1.4492, -1.2431, 0.0306, -1.5052, -1.4571, 0.1945, -1.3905, -1.3946, 0.1402, -1.5528, -1.3056, 0.0796, -1.6247, -1.5196, 0.2372, -1.5052, -1.4571, 0.1945, -1.6608, -1.3681, 0.1182, -1.7478, -1.5821, 0.268, -1.6247, -1.5196, 0.2372, -1.772, -1.4306, 0.1461, -1.8733, -1.6446, 0.2867, -1.7478, -1.5821, 0.268, -1.8855, -1.4931, 0.1629, -2, -1.7071, 0.2929, -1.8733, -1.6446, 0.2867, -2, -1.5556, 0.1685, -0.8371, -0.6181, -0.8855, -0.8315, -0.5556, -1, -0.9291, -0.4452, -0.8945, -0.8539, -0.6806, -0.772, -0.8371, -0.6181, -0.8855, -0.9446, -0.5077, -0.7901, -0.8818, -0.7431, -0.6608, -0.8539, -0.6806, -0.772, -0.9702, -0.5702, -0.6876, -0.9204, -0.8056, -0.5528, -0.8818, -0.7431, -0.6608, -1.0058, -0.6327, -0.5882, -0.9694, -0.8681, -0.4492, -0.9204, -0.8056, -0.5528, -1.0509, -0.6952, -0.4927, -1.0284, -0.9306, -0.3508, -0.9694, -0.8681, -0.4492, -1.1052, -0.7577, -0.4021, -1.0967, -0.9931, -0.2587, -1.0284, -0.9306, -0.3508, -1.1681, -0.8202, -0.3173, -1.1737, -1.0556, -0.1737, -1.0967, -0.9931, -0.2587, -1.2391, -0.8827, -0.2391, -1.2587, -1.1181, -0.0967, -1.1737, -1.0556, -0.1737, -1.3173, -0.9452, -0.1681, -1.3508, -1.1806, -0.0284, -1.2587, -1.1181, -0.0967, -1.4021, -1.0077, -0.1052, -1.4492, -1.2431, 0.0306, -1.3508, -1.1806, -0.0284, -1.4927, -1.0702, -0.0509, -1.5528, -1.3056, 0.0796, -1.4492, -1.2431, 0.0306, -1.5882, -1.1327, -0.0058, -1.6608, -1.3681, 0.1182, -1.5528, -1.3056, 0.0796, -1.6876, -1.1952, 0.0298, -1.772, -1.4306, 0.1461, -1.6608, -1.3681, 0.1182, -1.7901, -1.2577, 0.0554, -1.8855, -1.4931, 0.1629, -1.772, -1.4306, 0.1461, -1.8945, -1.3202, 0.0709, -2, -1.5556, 0.1685, -1.8855, -1.4931, 0.1629, -2, -1.3827, 0.0761, -0.9291, -0.4452, -0.8945, -0.9239, -0.3827, -1, -0.9857, -0.2576, -0.9001, -0.9446, -0.5077, -0.7901, -0.9291, -0.4452, -0.8945, -1.0004, -0.3201, -0.8012, -0.9702, -0.5702, -0.6876, -0.9446, -0.5077, -0.7901, -1.0247, -0.3826, -0.7041, -1.0058, -0.6327, -0.5882, -0.9702, -0.5702, -0.6876, -1.0584, -0.4451, -0.61, -1.0509, -0.6952, -0.4927, -1.0058, -0.6327, -0.5882, -1.1011, -0.5076, -0.5195, -1.1052, -0.7577, -0.4021, -1.0509, -0.6952, -0.4927, -1.1526, -0.5701, -0.4338, -1.1681, -0.8202, -0.3173, -1.1052, -0.7577, -0.4021, -1.2121, -0.6326, -0.3534, -1.2391, -0.8827, -0.2391, -1.1681, -0.8202, -0.3173, -1.2793, -0.6951, -0.2793, -1.3173, -0.9452, -0.1681, -1.2391, -0.8827, -0.2391, -1.3534, -0.7576, -0.2121, -1.4021, -1.0077, -0.1052, -1.3173, -0.9452, -0.1681, -1.4338, -0.8201, -0.1526, -1.4927, -1.0702, -0.0509, -1.4021, -1.0077, -0.1052, -1.5195, -0.8826, -0.1011, -1.5882, -1.1327, -0.0058, -1.4927, -1.0702, -0.0509, -1.61, -0.9451, -0.0584, -1.6876, -1.1952, 0.0298, -1.5882, -1.1327, -0.0058, -1.7041, -1.0076, -0.0247, -1.7901, -1.2577, 0.0554, -1.6876, -1.1952, 0.0298, -1.8012, -1.0701, -0.0004, -1.8945, -1.3202, 0.0709, -1.7901, -1.2577, 0.0554, -1.9001, -1.1326, 0.0143, -2, -1.3827, 0.0761, -1.8945, -1.3202, 0.0709, -2, -1.1951, 0.0192, -0.9857, -0.2576, -0.9001, -0.9808, -0.1951, -1, -1.0048, -0.0625, -0.902, -1.0004, -0.3201, -0.8012, -0.9857, -0.2576, -0.9001, -1.0192, -0.125, -0.8049, -1.0247, -0.3826, -0.7041, -1.0004, -0.3201, -0.8012, -1.0431, -0.1875, -0.7097, -1.0584, -0.4451, -0.61, -1.0247, -0.3826, -0.7041, -1.0761, -0.25, -0.6173, -1.1011, -0.5076, -0.5195, -1.0584, -0.4451, -0.61, -1.1181, -0.3125, -0.5286, -1.1526, -0.5701, -0.4338, -1.1011, -0.5076, -0.5195, -1.1685, -0.375, -0.4444, -1.2121, -0.6326, -0.3534, -1.1526, -0.5701, -0.4338, -1.227, -0.4375, -0.3656, -1.2793, -0.6951, -0.2793, -1.2121, -0.6326, -0.3534, -1.2929, -0.5, -0.2929, -1.3534, -0.7576, -0.2121, -1.2793, -0.6951, -0.2793, -1.3656, -0.5625, -0.227, -1.4338, -0.8201, -0.1526, -1.3534, -0.7576, -0.2121, -1.4444, -0.625, -0.1685, -1.5195, -0.8826, -0.1011, -1.4338, -0.8201, -0.1526, -1.5286, -0.6875, -0.1181, -1.61, -0.9451, -0.0584, -1.5195, -0.8826, -0.1011, -1.6173, -0.75, -0.0761, -1.7041, -1.0076, -0.0247, -1.61, -0.9451, -0.0584, -1.7097, -0.8125, -0.0431, -1.8012, -1.0701, -0.0004, -1.7041, -1.0076, -0.0247, -1.8049, -0.875, -0.0192, -1.9001, -1.1326, 0.0143, -1.8012, -1.0701, -0.0004, -1.902, -0.9375, -0.0048, -2, -1.1951, 0.0192, -1.9001, -1.1326, 0.0143, -2, -1, 0, 0.5533, 0.5032, -0.7485, 0.5657, 0.5657, -1, 0.4327, 0.6027, -0.7604, 0.5164, 0.4407, -0.4995, 0.5533, 0.5032, -0.7485, 0.3975, 0.5402, -0.5231, 0.4552, 0.3782, -0.2552, 0.5164, 0.4407, -0.4995, 0.3392, 0.4777, -0.2904, 0.3704, 0.3157, -0.0182, 0.4552, 0.3782, -0.2552, 0.2584, 0.4152, -0.0645, 0.2627, 0.2532, 0.2095, 0.3704, 0.3157, -0.0182, 0.1558, 0.3527, 0.1523, 0.1333, 0.1907, 0.4254, 0.2627, 0.2532, 0.2095, 0.0325, 0.2902, 0.3581, -0.0167, 0.1282, 0.6277, 0.1333, 0.1907, 0.4254, -0.1104, 0.2277, 0.5507, -0.1858, 0.0657, 0.8142, -0.0167, 0.1282, 0.6277, -0.2715, 0.1652, 0.7285, -0.3723, 0.0032, 0.9833, -0.1858, 0.0657, 0.8142, -0.4493, 0.1027, 0.8896, -0.5746, -0.0593, 1.1333, -0.3723, 0.0032, 0.9833, -0.6419, 0.0402, 1.0325, -0.7905, -0.1218, 1.2627, -0.5746, -0.0593, 1.1333, -0.8477, -0.0223, 1.1558, -1.0182, -0.1843, 1.3704, -0.7905, -0.1218, 1.2627, -1.0645, -0.0848, 1.2584, -1.2552, -0.2468, 1.4552, -1.0182, -0.1843, 1.3704, -1.2904, -0.1473, 1.3392, -1.4995, -0.3093, 1.5164, -1.2552, -0.2468, 1.4552, -1.5231, -0.2098, 1.3975, -1.7485, -0.3718, 1.5533, -1.4995, -0.3093, 1.5164, -1.7604, -0.2723, 1.4327, -2, -0.4343, 1.5657, -1.7485, -0.3718, 1.5533, -2, -0.3348, 1.4445, 0.6523, 0.382, -0.7388, 0.6652, 0.4445, -1, 0.5533, 0.5032, -0.7485, 0.614, 0.3195, -0.4801, 0.6523, 0.382, -0.7388, 0.5164, 0.4407, -0.4995, 0.5504, 0.257, -0.2263, 0.614, 0.3195, -0.4801, 0.4552, 0.3782, -0.2552, 0.4623, 0.1945, 0.0199, 0.5504, 0.257, -0.2263, 0.3704, 0.3157, -0.0182, 0.3505, 0.132, 0.2564, 0.4623, 0.1945, 0.0199, 0.2627, 0.2532, 0.2095, 0.216, 0.0695, 0.4807, 0.3505, 0.132, 0.2564, 0.1333, 0.1907, 0.4254, 0.0602, 0.007, 0.6908, 0.216, 0.0695, 0.4807, -0.0167, 0.1282, 0.6277, -0.1154, -0.0555, 0.8846, 0.0602, 0.007, 0.6908, -0.1858, 0.0657, 0.8142, -0.3092, -0.118, 1.0602, -0.1154, -0.0555, 0.8846, -0.3723, 0.0032, 0.9833, -0.5193, -0.1805, 1.216, -0.3092, -0.118, 1.0602, -0.5746, -0.0593, 1.1333, -0.7436, -0.243, 1.3505, -0.5193, -0.1805, 1.216, -0.7905, -0.1218, 1.2627, -0.9801, -0.3055, 1.4623, -0.7436, -0.243, 1.3505, -1.0182, -0.1843, 1.3704, -1.2263, -0.368, 1.5504, -0.9801, -0.3055, 1.4623, -1.2552, -0.2468, 1.4552, -1.4801, -0.4305, 1.614, -1.2263, -0.368, 1.5504, -1.4995, -0.3093, 1.5164, -1.7388, -0.493, 1.6523, -1.4801, -0.4305, 1.614, -1.7485, -0.3718, 1.5533, -2, -0.5555, 1.6652, -1.7388, -0.493, 1.6523, -2, -0.4343, 1.5657, 0.7259, 0.2436, -0.7315, 0.7391, 0.3061, -1, 0.6523, 0.382, -0.7388, 0.6865, 0.1811, -0.4656, 0.7259, 0.2436, -0.7315, 0.614, 0.3195, -0.4801, 0.6212, 0.1186, -0.2049, 0.6865, 0.1811, -0.4656, 0.5504, 0.257, -0.2263, 0.5306, 0.0561, 0.0482, 0.6212, 0.1186, -0.2049, 0.4623, 0.1945, 0.0199, 0.4157, -0.0064, 0.2912, 0.5306, 0.0561, 0.0482, 0.3505, 0.132, 0.2564, 0.2775, -0.0689, 0.5218, 0.4157, -0.0064, 0.2912, 0.216, 0.0695, 0.4807, 0.1174, -0.1314, 0.7377, 0.2775, -0.0689, 0.5218, 0.0602, 0.007, 0.6908, -0.0632, -0.1939, 0.9368, 0.1174, -0.1314, 0.7377, -0.1154, -0.0555, 0.8846, -0.2623, -0.2564, 1.1174, -0.0632, -0.1939, 0.9368, -0.3092, -0.118, 1.0602, -0.4782, -0.3189, 1.2775, -0.2623, -0.2564, 1.1174, -0.5193, -0.1805, 1.216, -0.7088, -0.3814, 1.4157, -0.4782, -0.3189, 1.2775, -0.7436, -0.243, 1.3505, -0.9518, -0.4439, 1.5306, -0.7088, -0.3814, 1.4157, -0.9801, -0.3055, 1.4623, -1.2049, -0.5064, 1.6212, -0.9518, -0.4439, 1.5306, -1.2263, -0.368, 1.5504, -1.4656, -0.5689, 1.6865, -1.2049, -0.5064, 1.6212, -1.4801, -0.4305, 1.614, -1.7315, -0.6314, 1.7259, -1.4656, -0.5689, 1.6865, -1.7388, -0.493, 1.6523, -2, -0.6939, 1.7391, -1.7315, -0.6314, 1.7259, -2, -0.5555, 1.6652, 0.7712, 0.0936, -0.7271, 0.7846, 0.1561, -1, 0.7259, 0.2436, -0.7315, 0.7311, 0.0311, -0.4567, 0.7712, 0.0936, -0.7271, 0.6865, 0.1811, -0.4656, 0.6647, -0.0314, -0.1917, 0.7311, 0.0311, -0.4567, 0.6212, 0.1186, -0.2049, 0.5727, -0.0939, 0.0656, 0.6647, -0.0314, -0.1917, 0.5306, 0.0561, 0.0482, 0.4558, -0.1564, 0.3127, 0.5727, -0.0939, 0.0656, 0.4157, -0.0064, 0.2912, 0.3153, -0.2189, 0.5471, 0.4558, -0.1564, 0.3127, 0.2775, -0.0689, 0.5218, 0.1525, -0.2814, 0.7666, 0.3153, -0.2189, 0.5471, 0.1174, -0.1314, 0.7377, -0.031, -0.3439, 0.969, 0.1525, -0.2814, 0.7666, -0.0632, -0.1939, 0.9368, -0.2335, -0.4064, 1.1525, -0.031, -0.3439, 0.969, -0.2623, -0.2564, 1.1174, -0.4529, -0.4689, 1.3153, -0.2335, -0.4064, 1.1525, -0.4782, -0.3189, 1.2775, -0.6873, -0.5314, 1.4558, -0.4529, -0.4689, 1.3153, -0.7088, -0.3814, 1.4157, -0.9344, -0.5939, 1.5727, -0.6873, -0.5314, 1.4558, -0.9518, -0.4439, 1.5306, -1.1917, -0.6564, 1.6647, -0.9344, -0.5939, 1.5727, -1.2049, -0.5064, 1.6212, -1.4567, -0.7189, 1.7311, -1.1917, -0.6564, 1.6647, -1.4656, -0.5689, 1.6865, -1.7271, -0.7814, 1.7712, -1.4567, -0.7189, 1.7311, -1.7315, -0.6314, 1.7259, -2, -0.8439, 1.7846, -1.7271, -0.7814, 1.7712, -2, -0.6939, 1.7391, 0.7865, -0.0625, -0.7256, 0.8, 0, -1, 0.7712, 0.0936, -0.7271, 0.7462, -0.125, -0.4537, 0.7865, -0.0625, -0.7256, 0.7311, 0.0311, -0.4567, 0.6794, -0.1875, -0.1872, 0.7462, -0.125, -0.4537, 0.6647, -0.0314, -0.1917, 0.5869, -0.25, 0.0715, 0.6794, -0.1875, -0.1872, 0.5727, -0.0939, 0.0656, 0.4694, -0.3125, 0.3199, 0.5869, -0.25, 0.0715, 0.4558, -0.1564, 0.3127, 0.3281, -0.375, 0.5556, 0.4694, -0.3125, 0.3199, 0.3153, -0.2189, 0.5471, 0.1644, -0.4375, 0.7763, 0.3281, -0.375, 0.5556, 0.1525, -0.2814, 0.7666, -0.0201, -0.5, 0.9799, 0.1644, -0.4375, 0.7763, -0.031, -0.3439, 0.969, -0.2237, -0.5625, 1.1644, -0.0201, -0.5, 0.9799, -0.2335, -0.4064, 1.1525, -0.4444, -0.625, 1.3281, -0.2237, -0.5625, 1.1644, -0.4529, -0.4689, 1.3153, -0.6801, -0.6875, 1.4694, -0.4444, -0.625, 1.3281, -0.6873, -0.5314, 1.4558, -0.9285, -0.75, 1.5869, -0.6801, -0.6875, 1.4694, -0.9344, -0.5939, 1.5727, -1.1872, -0.8125, 1.6794, -0.9285, -0.75, 1.5869, -1.1917, -0.6564, 1.6647, -1.4537, -0.875, 1.7462, -1.1872, -0.8125, 1.6794, -1.4567, -0.7189, 1.7311, -1.7256, -0.9375, 1.7865, -1.4537, -0.875, 1.7462, -1.7271, -0.7814, 1.7712, -2, -1, 1.8, -1.7256, -0.9375, 1.7865, -2, -0.8439, 1.7846, 0.7712, -0.2186, -0.7271, 0.7846, -0.1561, -1, 0.7865, -0.0625, -0.7256, 0.7311, -0.2811, -0.4567, 0.7712, -0.2186, -0.7271, 0.7462, -0.125, -0.4537, 0.6647, -0.3436, -0.1917, 0.7311, -0.2811, -0.4567, 0.6794, -0.1875, -0.1872, 0.5727, -0.4061, 0.0656, 0.6647, -0.3436, -0.1917, 0.5869, -0.25, 0.0715, 0.4558, -0.4686, 0.3127, 0.5727, -0.4061, 0.0656, 0.4694, -0.3125, 0.3199, 0.3153, -0.5311, 0.5471, 0.4558, -0.4686, 0.3127, 0.3281, -0.375, 0.5556, 0.1525, -0.5936, 0.7666, 0.3153, -0.5311, 0.5471, 0.1644, -0.4375, 0.7763, -0.031, -0.6561, 0.969, 0.1525, -0.5936, 0.7666, -0.0201, -0.5, 0.9799, -0.2335, -0.7186, 1.1525, -0.031, -0.6561, 0.969, -0.2237, -0.5625, 1.1644, -0.4529, -0.7811, 1.3153, -0.2335, -0.7186, 1.1525, -0.4444, -0.625, 1.3281, -0.6873, -0.8436, 1.4558, -0.4529, -0.7811, 1.3153, -0.6801, -0.6875, 1.4694, -0.9344, -0.9061, 1.5727, -0.6873, -0.8436, 1.4558, -0.9285, -0.75, 1.5869, -1.1917, -0.9686, 1.6647, -0.9344, -0.9061, 1.5727, -1.1872, -0.8125, 1.6794, -1.4567, -1.0311, 1.7311, -1.1917, -0.9686, 1.6647, -1.4537, -0.875, 1.7462, -1.7271, -1.0936, 1.7712, -1.4567, -1.0311, 1.7311, -1.7256, -0.9375, 1.7865, -2, -1.1561, 1.7846, -1.7271, -1.0936, 1.7712, -2, -1, 1.8, 0.7259, -0.3686, -0.7315, 0.7391, -0.3061, -1, 0.7712, -0.2186, -0.7271, 0.6865, -0.4311, -0.4656, 0.7259, -0.3686, -0.7315, 0.7311, -0.2811, -0.4567, 0.6212, -0.4936, -0.2049, 0.6865, -0.4311, -0.4656, 0.6647, -0.3436, -0.1917, 0.5306, -0.5561, 0.0482, 0.6212, -0.4936, -0.2049, 0.5727, -0.4061, 0.0656, 0.4157, -0.6186, 0.2912, 0.5306, -0.5561, 0.0482, 0.4558, -0.4686, 0.3127, 0.2775, -0.6811, 0.5218, 0.4157, -0.6186, 0.2912, 0.3153, -0.5311, 0.5471, 0.1174, -0.7436, 0.7377, 0.2775, -0.6811, 0.5218, 0.1525, -0.5936, 0.7666, -0.0632, -0.8061, 0.9368, 0.1174, -0.7436, 0.7377, -0.031, -0.6561, 0.969, -0.2623, -0.8686, 1.1174, -0.0632, -0.8061, 0.9368, -0.2335, -0.7186, 1.1525, -0.4782, -0.9311, 1.2775, -0.2623, -0.8686, 1.1174, -0.4529, -0.7811, 1.3153, -0.7088, -0.9936, 1.4157, -0.4782, -0.9311, 1.2775, -0.6873, -0.8436, 1.4558, -0.9518, -1.0561, 1.5306, -0.7088, -0.9936, 1.4157, -0.9344, -0.9061, 1.5727, -1.2049, -1.1186, 1.6212, -0.9518, -1.0561, 1.5306, -1.1917, -0.9686, 1.6647, -1.4656, -1.1811, 1.6865, -1.2049, -1.1186, 1.6212, -1.4567, -1.0311, 1.7311, -1.7315, -1.2436, 1.7259, -1.4656, -1.1811, 1.6865, -1.7271, -1.0936, 1.7712, -2, -1.3061, 1.7391, -1.7315, -1.2436, 1.7259, -2, -1.1561, 1.7846, 0.6523, -0.507, -0.7388, 0.6652, -0.4445, -1, 0.7259, -0.3686, -0.7315, 0.614, -0.5695, -0.4801, 0.6523, -0.507, -0.7388, 0.6865, -0.4311, -0.4656, 0.5504, -0.632, -0.2263, 0.614, -0.5695, -0.4801, 0.6212, -0.4936, -0.2049, 0.4623, -0.6945, 0.0199, 0.5504, -0.632, -0.2263, 0.5306, -0.5561, 0.0482, 0.3505, -0.757, 0.2564, 0.4623, -0.6945, 0.0199, 0.4157, -0.6186, 0.2912, 0.216, -0.8195, 0.4807, 0.3505, -0.757, 0.2564, 0.2775, -0.6811, 0.5218, 0.0602, -0.882, 0.6908, 0.216, -0.8195, 0.4807, 0.1174, -0.7436, 0.7377, -0.1154, -0.9445, 0.8846, 0.0602, -0.882, 0.6908, -0.0632, -0.8061, 0.9368, -0.3092, -1.007, 1.0602, -0.1154, -0.9445, 0.8846, -0.2623, -0.8686, 1.1174, -0.5193, -1.0695, 1.216, -0.3092, -1.007, 1.0602, -0.4782, -0.9311, 1.2775, -0.7436, -1.132, 1.3505, -0.5193, -1.0695, 1.216, -0.7088, -0.9936, 1.4157, -0.9801, -1.1945, 1.4623, -0.7436, -1.132, 1.3505, -0.9518, -1.0561, 1.5306, -1.2263, -1.257, 1.5504, -0.9801, -1.1945, 1.4623, -1.2049, -1.1186, 1.6212, -1.4801, -1.3195, 1.614, -1.2263, -1.257, 1.5504, -1.4656, -1.1811, 1.6865, -1.7388, -1.382, 1.6523, -1.4801, -1.3195, 1.614, -1.7315, -1.2436, 1.7259, -2, -1.4445, 1.6652, -1.7388, -1.382, 1.6523, -2, -1.3061, 1.7391, 0.5533, -0.6282, -0.7485, 0.5657, -0.5657, -1, 0.6523, -0.507, -0.7388, 0.5164, -0.6907, -0.4995, 0.5533, -0.6282, -0.7485, 0.614, -0.5695, -0.4801, 0.4552, -0.7532, -0.2552, 0.5164, -0.6907, -0.4995, 0.5504, -0.632, -0.2263, 0.3704, -0.8157, -0.0182, 0.4552, -0.7532, -0.2552, 0.4623, -0.6945, 0.0199, 0.2627, -0.8782, 0.2095, 0.3704, -0.8157, -0.0182, 0.3505, -0.757, 0.2564, 0.1333, -0.9407, 0.4254, 0.2627, -0.8782, 0.2095, 0.216, -0.8195, 0.4807, -0.0167, -1.0032, 0.6277, 0.1333, -0.9407, 0.4254, 0.0602, -0.882, 0.6908, -0.1858, -1.0657, 0.8142, -0.0167, -1.0032, 0.6277, -0.1154, -0.9445, 0.8846, -0.3723, -1.1282, 0.9833, -0.1858, -1.0657, 0.8142, -0.3092, -1.007, 1.0602, -0.5746, -1.1907, 1.1333, -0.3723, -1.1282, 0.9833, -0.5193, -1.0695, 1.216, -0.7905, -1.2532, 1.2627, -0.5746, -1.1907, 1.1333, -0.7436, -1.132, 1.3505, -1.0182, -1.3157, 1.3704, -0.7905, -1.2532, 1.2627, -0.9801, -1.1945, 1.4623, -1.2552, -1.3782, 1.4552, -1.0182, -1.3157, 1.3704, -1.2263, -1.257, 1.5504, -1.4995, -1.4407, 1.5164, -1.2552, -1.3782, 1.4552, -1.4801, -1.3195, 1.614, -1.7485, -1.5032, 1.5533, -1.4995, -1.4407, 1.5164, -1.7388, -1.382, 1.6523, -2, -1.5657, 1.5657, -1.7485, -1.5032, 1.5533, -2, -1.4445, 1.6652, 0.4327, -0.7277, -0.7604, 0.4445, -0.6652, -1, 0.5533, -0.6282, -0.7485, 0.3975, -0.7902, -0.5231, 0.4327, -0.7277, -0.7604, 0.5164, -0.6907, -0.4995, 0.3392, -0.8527, -0.2904, 0.3975, -0.7902, -0.5231, 0.4552, -0.7532, -0.2552, 0.2584, -0.9152, -0.0645, 0.3392, -0.8527, -0.2904, 0.3704, -0.8157, -0.0182, 0.1558, -0.9777, 0.1523, 0.2584, -0.9152, -0.0645, 0.2627, -0.8782, 0.2095, 0.0325, -1.0402, 0.3581, 0.1558, -0.9777, 0.1523, 0.1333, -0.9407, 0.4254, -0.1104, -1.1027, 0.5507, 0.0325, -1.0402, 0.3581, -0.0167, -1.0032, 0.6277, -0.2715, -1.1652, 0.7285, -0.1104, -1.1027, 0.5507, -0.1858, -1.0657, 0.8142, -0.4493, -1.2277, 0.8896, -0.2715, -1.1652, 0.7285, -0.3723, -1.1282, 0.9833, -0.6419, -1.2902, 1.0325, -0.4493, -1.2277, 0.8896, -0.5746, -1.1907, 1.1333, -0.8477, -1.3527, 1.1558, -0.6419, -1.2902, 1.0325, -0.7905, -1.2532, 1.2627, -1.0645, -1.4152, 1.2584, -0.8477, -1.3527, 1.1558, -1.0182, -1.3157, 1.3704, -1.2904, -1.4777, 1.3392, -1.0645, -1.4152, 1.2584, -1.2552, -1.3782, 1.4552, -1.5231, -1.5402, 1.3975, -1.2904, -1.4777, 1.3392, -1.4995, -1.4407, 1.5164, -1.7604, -1.6027, 1.4327, -1.5231, -1.5402, 1.3975, -1.7485, -1.5032, 1.5533, -2, -1.6652, 1.4445, -1.7604, -1.6027, 1.4327, -2, -1.5657, 1.5657, 0.295, -0.8016, -0.774, 0.3061, -0.7391, -1, 0.4327, -0.7277, -0.7604, 0.2618, -0.8641, -0.5501, 0.295, -0.8016, -0.774, 0.3975, -0.7902, -0.5231, 0.2068, -0.9266, -0.3306, 0.2618, -0.8641, -0.5501, 0.3392, -0.8527, -0.2904, 0.1306, -0.9891, -0.1175, 0.2068, -0.9266, -0.3306, 0.2584, -0.9152, -0.0645, 0.0338, -1.0516, 0.0871, 0.1306, -0.9891, -0.1175, 0.1558, -0.9777, 0.1523, -0.0825, -1.1141, 0.2812, 0.0338, -1.0516, 0.0871, 0.0325, -1.0402, 0.3581, -0.2173, -1.1766, 0.463, -0.0825, -1.1141, 0.2812, -0.1104, -1.1027, 0.5507, -0.3693, -1.2391, 0.6307, -0.2173, -1.1766, 0.463, -0.2715, -1.1652, 0.7285, -0.537, -1.3016, 0.7827, -0.3693, -1.2391, 0.6307, -0.4493, -1.2277, 0.8896, -0.7188, -1.3641, 0.9175, -0.537, -1.3016, 0.7827, -0.6419, -1.2902, 1.0325, -0.9129, -1.4266, 1.0338, -0.7188, -1.3641, 0.9175, -0.8477, -1.3527, 1.1558, -1.1175, -1.4891, 1.1306, -0.9129, -1.4266, 1.0338, -1.0645, -1.4152, 1.2584, -1.3306, -1.5516, 1.2068, -1.1175, -1.4891, 1.1306, -1.2904, -1.4777, 1.3392, -1.5501, -1.6141, 1.2618, -1.3306, -1.5516, 1.2068, -1.5231, -1.5402, 1.3975, -1.774, -1.6766, 1.295, -1.5501, -1.6141, 1.2618, -1.7604, -1.6027, 1.4327, -2, -1.7391, 1.3061, -1.774, -1.6766, 1.295, -2, -1.6652, 1.4445, 0.1457, -0.8471, -0.7887, 0.1561, -0.7846, -1, 0.295, -0.8016, -0.774, 0.1146, -0.9096, -0.5794, 0.1457, -0.8471, -0.7887, 0.2618, -0.8641, -0.5501, 0.0632, -0.9721, -0.3741, 0.1146, -0.9096, -0.5794, 0.2068, -0.9266, -0.3306, -0.008, -1.0346, -0.1749, 0.0632, -0.9721, -0.3741, 0.1306, -0.9891, -0.1175, -0.0985, -1.0971, 0.0164, -0.008, -1.0346, -0.1749, 0.0338, -1.0516, 0.0871, -0.2073, -1.1596, 0.1979, -0.0985, -1.0971, 0.0164, -0.0825, -1.1141, 0.2812, -0.3333, -1.2221, 0.3678, -0.2073, -1.1596, 0.1979, -0.2173, -1.1766, 0.463, -0.4754, -1.2846, 0.5246, -0.3333, -1.2221, 0.3678, -0.3693, -1.2391, 0.6307, -0.6322, -1.3471, 0.6667, -0.4754, -1.2846, 0.5246, -0.537, -1.3016, 0.7827, -0.8022, -1.4096, 0.7927, -0.6322, -1.3471, 0.6667, -0.7188, -1.3641, 0.9175, -0.9836, -1.4721, 0.9015, -0.8022, -1.4096, 0.7927, -0.9129, -1.4266, 1.0338, -1.1749, -1.5346, 0.992, -0.9836, -1.4721, 0.9015, -1.1175, -1.4891, 1.1306, -1.3741, -1.5971, 1.0632, -1.1749, -1.5346, 0.992, -1.3306, -1.5516, 1.2068, -1.5794, -1.6596, 1.1146, -1.3741, -1.5971, 1.0632, -1.5501, -1.6141, 1.2618, -1.7887, -1.7221, 1.1457, -1.5794, -1.6596, 1.1146, -1.774, -1.6766, 1.295, -2, -1.7846, 1.1561, -1.7887, -1.7221, 1.1457, -2, -1.7391, 1.3061, -0.0096, -0.8625, -0.804, 0, -0.8, -1, 0.1457, -0.8471, -0.7887, -0.0384, -0.925, -0.6098, -0.0096, -0.8625, -0.804, 0.1146, -0.9096, -0.5794, -0.0861, -0.9875, -0.4194, -0.0384, -0.925, -0.6098, 0.0632, -0.9721, -0.3741, -0.1522, -1.05, -0.2346, -0.0861, -0.9875, -0.4194, -0.008, -1.0346, -0.1749, -0.2362, -1.1125, -0.0572, -0.1522, -1.05, -0.2346, -0.0985, -1.0971, 0.0164, -0.3371, -1.175, 0.1111, -0.2362, -1.1125, -0.0572, -0.2073, -1.1596, 0.1979, -0.454, -1.2375, 0.2688, -0.3371, -1.175, 0.1111, -0.3333, -1.2221, 0.3678, -0.5858, -1.3, 0.4142, -0.454, -1.2375, 0.2688, -0.4754, -1.2846, 0.5246, -0.7312, -1.3625, 0.546, -0.5858, -1.3, 0.4142, -0.6322, -1.3471, 0.6667, -0.8889, -1.425, 0.6629, -0.7312, -1.3625, 0.546, -0.8022, -1.4096, 0.7927, -1.0572, -1.4875, 0.7638, -0.8889, -1.425, 0.6629, -0.9836, -1.4721, 0.9015, -1.2346, -1.55, 0.8478, -1.0572, -1.4875, 0.7638, -1.1749, -1.5346, 0.992, -1.4194, -1.6125, 0.9139, -1.2346, -1.55, 0.8478, -1.3741, -1.5971, 1.0632, -1.6098, -1.675, 0.9616, -1.4194, -1.6125, 0.9139, -1.5794, -1.6596, 1.1146, -1.804, -1.7375, 0.9904, -1.6098, -1.675, 0.9616, -1.7887, -1.7221, 1.1457, -2, -1.8, 1, -1.804, -1.7375, 0.9904, -2, -1.7846, 1.1561, -0.0096, -0.8625, -0.804, -0.165, -0.8471, -0.8193, 0, -0.8, -1, -0.0384, -0.925, -0.6098, -0.1915, -0.9096, -0.6403, -0.0096, -0.8625, -0.804, -0.0861, -0.9875, -0.4194, -0.2355, -0.9721, -0.4647, -0.0384, -0.925, -0.6098, -0.1522, -1.05, -0.2346, -0.2964, -1.0346, -0.2944, -0.0861, -0.9875, -0.4194, -0.2362, -1.1125, -0.0572, -0.3738, -1.0971, -0.1308, -0.1522, -1.05, -0.2346, -0.3371, -1.175, 0.1111, -0.4668, -1.1596, 0.0244, -0.2362, -1.1125, -0.0572, -0.454, -1.2375, 0.2688, -0.5746, -1.2221, 0.1698, -0.3371, -1.175, 0.1111, -0.5858, -1.3, 0.4142, -0.6961, -1.2846, 0.3039, -0.454, -1.2375, 0.2688, -0.7312, -1.3625, 0.546, -0.8302, -1.3471, 0.4254, -0.5858, -1.3, 0.4142, -0.8889, -1.425, 0.6629, -0.9756, -1.4096, 0.5332, -0.7312, -1.3625, 0.546, -1.0572, -1.4875, 0.7638, -1.1308, -1.4721, 0.6262, -0.8889, -1.425, 0.6629, -1.2346, -1.55, 0.8478, -1.2944, -1.5346, 0.7036, -1.0572, -1.4875, 0.7638, -1.4194, -1.6125, 0.9139, -1.4647, -1.5971, 0.7645, -1.2346, -1.55, 0.8478, -1.6098, -1.675, 0.9616, -1.6403, -1.6596, 0.8085, -1.4194, -1.6125, 0.9139, -1.804, -1.7375, 0.9904, -1.8193, -1.7221, 0.835, -1.6098, -1.675, 0.9616, -2, -1.8, 1, -2, -1.7846, 0.8439, -1.804, -1.7375, 0.9904, -0.165, -0.8471, -0.8193, -0.3143, -0.8016, -0.834, -0.1561, -0.7846, -1, -0.1915, -0.9096, -0.6403, -0.3387, -0.8641, -0.6695, -0.165, -0.8471, -0.8193, -0.2355, -0.9721, -0.4647, -0.3791, -0.9266, -0.5083, -0.1915, -0.9096, -0.6403, -0.2964, -1.0346, -0.2944, -0.4351, -0.9891, -0.3518, -0.2355, -0.9721, -0.4647, -0.3738, -1.0971, -0.1308, -0.5062, -1.0516, -0.2015, -0.2964, -1.0346, -0.2944, -0.4668, -1.1596, 0.0244, -0.5916, -1.1141, -0.0589, -0.3738, -1.0971, -0.1308, -0.5746, -1.2221, 0.1698, -0.6906, -1.1766, 0.0746, -0.4668, -1.1596, 0.0244, -0.6961, -1.2846, 0.3039, -0.8023, -1.2391, 0.1977, -0.5746, -1.2221, 0.1698, -0.8302, -1.3471, 0.4254, -0.9254, -1.3016, 0.3094, -0.6961, -1.2846, 0.3039, -0.9756, -1.4096, 0.5332, -1.0589, -1.3641, 0.4084, -0.8302, -1.3471, 0.4254, -1.1308, -1.4721, 0.6262, -1.2015, -1.4266, 0.4938, -0.9756, -1.4096, 0.5332, -1.2944, -1.5346, 0.7036, -1.3518, -1.4891, 0.5649, -1.1308, -1.4721, 0.6262, -1.4647, -1.5971, 0.7645, -1.5083, -1.5516, 0.6209, -1.2944, -1.5346, 0.7036, -1.6403, -1.6596, 0.8085, -1.6695, -1.6141, 0.6613, -1.4647, -1.5971, 0.7645, -1.8193, -1.7221, 0.835, -1.834, -1.6766, 0.6857, -1.6403, -1.6596, 0.8085, -2, -1.7846, 0.8439, -2, -1.7391, 0.6939, -1.8193, -1.7221, 0.835, -0.3143, -0.8016, -0.834, -0.4519, -0.7277, -0.8475, -0.3061, -0.7391, -1, -0.3387, -0.8641, -0.6695, -0.4743, -0.7902, -0.6965, -0.3143, -0.8016, -0.834, -0.3791, -0.9266, -0.5083, -0.5114, -0.8527, -0.5485, -0.3387, -0.8641, -0.6695, -0.4351, -0.9891, -0.3518, -0.5629, -0.9152, -0.4047, -0.3791, -0.9266, -0.5083, -0.5062, -1.0516, -0.2015, -0.6281, -0.9777, -0.2667, -0.4351, -0.9891, -0.3518, -0.5916, -1.1141, -0.0589, -0.7066, -1.0402, -0.1358, -0.5062, -1.0516, -0.2015, -0.6906, -1.1766, 0.0746, -0.7975, -1.1027, -0.0132, -0.5916, -1.1141, -0.0589, -0.8023, -1.2391, 0.1977, -0.9001, -1.1652, 0.0999, -0.6906, -1.1766, 0.0746, -0.9254, -1.3016, 0.3094, -1.0132, -1.2277, 0.2025, -0.8023, -1.2391, 0.1977, -1.0589, -1.3641, 0.4084, -1.1358, -1.2902, 0.2934, -0.9254, -1.3016, 0.3094, -1.2015, -1.4266, 0.4938, -1.2667, -1.3527, 0.3719, -1.0589, -1.3641, 0.4084, -1.3518, -1.4891, 0.5649, -1.4047, -1.4152, 0.4371, -1.2015, -1.4266, 0.4938, -1.5083, -1.5516, 0.6209, -1.5485, -1.4777, 0.4886, -1.3518, -1.4891, 0.5649, -1.6695, -1.6141, 0.6613, -1.6965, -1.5402, 0.5257, -1.5083, -1.5516, 0.6209, -1.834, -1.6766, 0.6857, -1.8475, -1.6027, 0.5481, -1.6695, -1.6141, 0.6613, -2, -1.7391, 0.6939, -2, -1.6652, 0.5555, -1.834, -1.6766, 0.6857, -0.4519, -0.7277, -0.8475, -0.5726, -0.6282, -0.8594, -0.4445, -0.6652, -1, -0.4743, -0.7902, -0.6965, -0.5932, -0.6907, -0.7202, -0.4519, -0.7277, -0.8475, -0.5114, -0.8527, -0.5485, -0.6274, -0.7532, -0.5836, -0.4743, -0.7902, -0.6965, -0.5629, -0.9152, -0.4047, -0.6749, -0.8157, -0.4511, -0.5114, -0.8527, -0.5485, -0.6281, -0.9777, -0.2667, -0.735, -0.8782, -0.3239, -0.5629, -0.9152, -0.4047, -0.7066, -1.0402, -0.1358, -0.8074, -0.9407, -0.2031, -0.6281, -0.9777, -0.2667, -0.7975, -1.1027, -0.0132, -0.8913, -1.0032, -0.0901, -0.7066, -1.0402, -0.1358, -0.9001, -1.1652, 0.0999, -0.9858, -1.0657, 0.0142, -0.7975, -1.1027, -0.0132, -1.0132, -1.2277, 0.2025, -1.0901, -1.1282, 0.1087, -0.9001, -1.1652, 0.0999, -1.1358, -1.2902, 0.2934, -1.2031, -1.1907, 0.1926, -1.0132, -1.2277, 0.2025, -1.2667, -1.3527, 0.3719, -1.3239, -1.2532, 0.265, -1.1358, -1.2902, 0.2934, -1.4047, -1.4152, 0.4371, -1.4511, -1.3157, 0.3251, -1.2667, -1.3527, 0.3719, -1.5485, -1.4777, 0.4886, -1.5836, -1.3782, 0.3726, -1.4047, -1.4152, 0.4371, -1.6965, -1.5402, 0.5257, -1.7202, -1.4407, 0.4068, -1.5485, -1.4777, 0.4886, -1.8475, -1.6027, 0.5481, -1.8594, -1.5032, 0.4274, -1.6965, -1.5402, 0.5257, -2, -1.6652, 0.5555, -2, -1.5657, 0.4343, -1.8475, -1.6027, 0.5481, -0.5726, -0.6282, -0.8594, -0.6716, -0.507, -0.8692, -0.5657, -0.5657, -1, -0.5932, -0.6907, -0.7202, -0.6908, -0.5695, -0.7396, -0.5726, -0.6282, -0.8594, -0.6274, -0.7532, -0.5836, -0.7227, -0.632, -0.6125, -0.5932, -0.6907, -0.7202, -0.6749, -0.8157, -0.4511, -0.7668, -0.6945, -0.4892, -0.6274, -0.7532, -0.5836, -0.735, -0.8782, -0.3239, -0.8228, -0.757, -0.3708, -0.6749, -0.8157, -0.4511, -0.8074, -0.9407, -0.2031, -0.8901, -0.8195, -0.2584, -0.735, -0.8782, -0.3239, -0.8913, -1.0032, -0.0901, -0.9682, -0.882, -0.1532, -0.8074, -0.9407, -0.2031, -0.9858, -1.0657, 0.0142, -1.0561, -0.9445, -0.0561, -0.8913, -1.0032, -0.0901, -1.0901, -1.1282, 0.1087, -1.1532, -1.007, 0.0318, -0.9858, -1.0657, 0.0142, -1.2031, -1.1907, 0.1926, -1.2584, -1.0695, 0.1099, -1.0901, -1.1282, 0.1087, -1.3239, -1.2532, 0.265, -1.3708, -1.132, 0.1772, -1.2031, -1.1907, 0.1926, -1.4511, -1.3157, 0.3251, -1.4892, -1.1945, 0.2332, -1.3239, -1.2532, 0.265, -1.5836, -1.3782, 0.3726, -1.6125, -1.257, 0.2773, -1.4511, -1.3157, 0.3251, -1.7202, -1.4407, 0.4068, -1.7396, -1.3195, 0.3092, -1.5836, -1.3782, 0.3726, -1.8594, -1.5032, 0.4274, -1.8692, -1.382, 0.3284, -1.7202, -1.4407, 0.4068, -2, -1.5657, 0.4343, -2, -1.4445, 0.3348, -1.8594, -1.5032, 0.4274, -0.6716, -0.507, -0.8692, -0.7452, -0.3686, -0.8764, -0.6652, -0.4445, -1, -0.6908, -0.5695, -0.7396, -0.7633, -0.4311, -0.754, -0.6716, -0.507, -0.8692, -0.7227, -0.632, -0.6125, -0.7934, -0.4936, -0.634, -0.6908, -0.5695, -0.7396, -0.7668, -0.6945, -0.4892, -0.8351, -0.5561, -0.5175, -0.7227, -0.632, -0.6125, -0.8228, -0.757, -0.3708, -0.888, -0.6186, -0.4056, -0.7668, -0.6945, -0.4892, -0.8901, -0.8195, -0.2584, -0.9516, -0.6811, -0.2995, -0.8228, -0.757, -0.3708, -0.9682, -0.882, -0.1532, -1.0253, -0.7436, -0.2001, -0.8901, -0.8195, -0.2584, -1.0561, -0.9445, -0.0561, -1.1084, -0.8061, -0.1084, -0.9682, -0.882, -0.1532, -1.1532, -1.007, 0.0318, -1.2001, -0.8686, -0.0253, -1.0561, -0.9445, -0.0561, -1.2584, -1.0695, 0.1099, -1.2995, -0.9311, 0.0484, -1.1532, -1.007, 0.0318, -1.3708, -1.132, 0.1772, -1.4056, -0.9936, 0.112, -1.2584, -1.0695, 0.1099, -1.4892, -1.1945, 0.2332, -1.5175, -1.0561, 0.1649, -1.3708, -1.132, 0.1772, -1.6125, -1.257, 0.2773, -1.634, -1.1186, 0.2066, -1.4892, -1.1945, 0.2332, -1.7396, -1.3195, 0.3092, -1.754, -1.1811, 0.2367, -1.6125, -1.257, 0.2773, -1.8692, -1.382, 0.3284, -1.8764, -1.2436, 0.2548, -1.7396, -1.3195, 0.3092, -2, -1.4445, 0.3348, -2, -1.3061, 0.2609, -1.8692, -1.382, 0.3284, -0.7452, -0.3686, -0.8764, -0.7905, -0.2186, -0.8809, -0.7391, -0.3061, -1, -0.7633, -0.4311, -0.754, -0.808, -0.2811, -0.7629, -0.7452, -0.3686, -0.8764, -0.7934, -0.4936, -0.634, -0.837, -0.3436, -0.6472, -0.7633, -0.4311, -0.754, -0.8351, -0.5561, -0.5175, -0.8771, -0.4061, -0.5349, -0.7934, -0.4936, -0.634, -0.888, -0.6186, -0.4056, -0.9281, -0.4686, -0.4271, -0.8351, -0.5561, -0.5175, -0.9516, -0.6811, -0.2995, -0.9895, -0.5311, -0.3248, -0.888, -0.6186, -0.4056, -1.0253, -0.7436, -0.2001, -1.0605, -0.5936, -0.229, -0.9516, -0.6811, -0.2995, -1.1084, -0.8061, -0.1084, -1.1406, -0.6561, -0.1406, -1.0253, -0.7436, -0.2001, -1.2001, -0.8686, -0.0253, -1.229, -0.7186, -0.0605, -1.1084, -0.8061, -0.1084, -1.2995, -0.9311, 0.0484, -1.3248, -0.7811, 0.0105, -1.2001, -0.8686, -0.0253, -1.4056, -0.9936, 0.112, -1.4271, -0.8436, 0.0719, -1.2995, -0.9311, 0.0484, -1.5175, -1.0561, 0.1649, -1.5349, -0.9061, 0.1229, -1.4056, -0.9936, 0.112, -1.634, -1.1186, 0.2066, -1.6472, -0.9686, 0.163, -1.5175, -1.0561, 0.1649, -1.754, -1.1811, 0.2367, -1.7629, -1.0311, 0.192, -1.634, -1.1186, 0.2066, -1.8764, -1.2436, 0.2548, -1.8809, -1.0936, 0.2095, -1.754, -1.1811, 0.2367, -2, -1.3061, 0.2609, -2, -1.1561, 0.2154, -1.8764, -1.2436, 0.2548, -0.7905, -0.2186, -0.8809, -0.8058, -0.0625, -0.8824, -0.7846, -0.1561, -1, -0.808, -0.2811, -0.7629, -0.8231, -0.125, -0.7659, -0.7905, -0.2186, -0.8809, -0.837, -0.3436, -0.6472, -0.8517, -0.1875, -0.6517, -0.808, -0.2811, -0.7629, -0.8771, -0.4061, -0.5349, -0.8913, -0.25, -0.5408, -0.837, -0.3436, -0.6472, -0.9281, -0.4686, -0.4271, -0.9417, -0.3125, -0.4343, -0.8771, -0.4061, -0.5349, -0.9895, -0.5311, -0.3248, -1.0022, -0.375, -0.3333, -0.9281, -0.4686, -0.4271, -1.0605, -0.5936, -0.229, -1.0724, -0.4375, -0.2387, -0.9895, -0.5311, -0.3248, -1.1406, -0.6561, -0.1406, -1.1515, -0.5, -0.1515, -1.0605, -0.5936, -0.229, -1.229, -0.7186, -0.0605, -1.2387, -0.5625, -0.0724, -1.1406, -0.6561, -0.1406, -1.3248, -0.7811, 0.0105, -1.3333, -0.625, -0.0022, -1.229, -0.7186, -0.0605, -1.4271, -0.8436, 0.0719, -1.4343, -0.6875, 0.0583, -1.3248, -0.7811, 0.0105, -1.5349, -0.9061, 0.1229, -1.5408, -0.75, 0.1087, -1.4271, -0.8436, 0.0719, -1.6472, -0.9686, 0.163, -1.6517, -0.8125, 0.1483, -1.5349, -0.9061, 0.1229, -1.7629, -1.0311, 0.192, -1.7659, -0.875, 0.1769, -1.6472, -0.9686, 0.163, -1.8809, -1.0936, 0.2095, -1.8824, -0.9375, 0.1942, -1.7629, -1.0311, 0.192, -2, -1.1561, 0.2154, -2, -1, 0.2, -1.8809, -1.0936, 0.2095, 0.4327, 0.6027, -0.7604, 0.4445, 0.6652, -1, 0.5433, 0.769, -0.7495, 0.3975, 0.5402, -0.5231, 0.4327, 0.6027, -0.7604, 0.5065, 0.7065, -0.5014, 0.3392, 0.4777, -0.2904, 0.3975, 0.5402, -0.5231, 0.4455, 0.644, -0.2582, 0.2584, 0.4152, -0.0645, 0.3392, 0.4777, -0.2904, 0.361, 0.5815, -0.022, 0.1558, 0.3527, 0.1523, 0.2584, 0.4152, -0.0645, 0.2538, 0.519, 0.2047, 0.0325, 0.2902, 0.3581, 0.1558, 0.3527, 0.1523, 0.1249, 0.4565, 0.4198, -0.1104, 0.2277, 0.5507, 0.0325, 0.2902, 0.3581, -0.0245, 0.394, 0.6212, -0.2715, 0.1652, 0.7285, -0.1104, 0.2277, 0.5507, -0.1929, 0.3315, 0.8071, -0.4493, 0.1027, 0.8896, -0.2715, 0.1652, 0.7285, -0.3788, 0.269, 0.9755, -0.6419, 0.0402, 1.0325, -0.4493, 0.1027, 0.8896, -0.5802, 0.2065, 1.1249, -0.8477, -0.0223, 1.1558, -0.6419, 0.0402, 1.0325, -0.7953, 0.144, 1.2538, -1.0645, -0.0848, 1.2584, -0.8477, -0.0223, 1.1558, -1.022, 0.0815, 1.361, -1.2904, -0.1473, 1.3392, -1.0645, -0.0848, 1.2584, -1.2582, 0.019, 1.4455, -1.5231, -0.2098, 1.3975, -1.2904, -0.1473, 1.3392, -1.5014, -0.0435, 1.5065, -1.7604, -0.2723, 1.4327, -1.5231, -0.2098, 1.3975, -1.7495, -0.106, 1.5433, -2, -0.3348, 1.4445, -1.7604, -0.2723, 1.4327, -2, -0.1685, 1.5556, -1, 0, -1, -0.8, 0, -1, -1.0048, -0.0625, -0.902, -1.0048, -0.0625, -0.902, -0.8058, -0.0625, -0.8824, -1.0192, -0.125, -0.8049, -1.0192, -0.125, -0.8049, -0.8231, -0.125, -0.7659, -1.0431, -0.1875, -0.7097, -1.0431, -0.1875, -0.7097, -0.8517, -0.1875, -0.6517, -1.0761, -0.25, -0.6173, -1.0761, -0.25, -0.6173, -0.8913, -0.25, -0.5408, -1.1181, -0.3125, -0.5286, -1.1181, -0.3125, -0.5286, -0.9417, -0.3125, -0.4343, -1.1685, -0.375, -0.4444, -1.1685, -0.375, -0.4444, -1.0022, -0.375, -0.3333, -1.227, -0.4375, -0.3656, -1.2929, -0.5, -0.2929, -1.227, -0.4375, -0.3656, -1.1515, -0.5, -0.1515, -1.3656, -0.5625, -0.227, -1.2929, -0.5, -0.2929, -1.2387, -0.5625, -0.0724, -1.3656, -0.5625, -0.227, -1.2387, -0.5625, -0.0724, -1.4444, -0.625, -0.1685, -1.4444, -0.625, -0.1685, -1.3333, -0.625, -0.0022, -1.5286, -0.6875, -0.1181, -1.6173, -0.75, -0.0761, -1.5286, -0.6875, -0.1181, -1.5408, -0.75, 0.1087, -1.7097, -0.8125, -0.0431, -1.6173, -0.75, -0.0761, -1.6517, -0.8125, 0.1483, -1.7097, -0.8125, -0.0431, -1.6517, -0.8125, 0.1483, -1.8049, -0.875, -0.0192, -1.902, -0.9375, -0.0048, -1.8049, -0.875, -0.0192, -1.8824, -0.9375, 0.1942, -2, -1, 0, -1.902, -0.9375, -0.0048, -2, -1, 0.2, 0.5556, 0.8315, -1, 0.4445, 0.6652, -1, 0.5657, 0.5657, -1, 0.8315, 0.5556, -1, 0.7071, 0.7071, -1, 0.6652, 0.4445, -1, 0.9808, 0.1951, -1, 0.9239, 0.3827, -1, 0.7391, 0.3061, -1, 0.9808, -0.1951, -1, 1, 0, -1, 0.7846, -0.1561, -1, 0.8315, -0.5556, -1, 0.9239, -0.3827, -1, 0.7391, -0.3061, -1, 0.5556, -0.8315, -1, 0.7071, -0.7071, -1, 0.4445, -0.6652, -1, 0.1951, -0.9808, -1, 0.3827, -0.9239, -1, 0.3061, -0.7391, -1, -0.1951, -0.9808, -1, 0, -1, -1, -0.1561, -0.7846, -1, -0.5556, -0.8315, -1, -0.3827, -0.9239, -1, -0.4445, -0.6652, -1, -0.8315, -0.5556, -1, -0.7071, -0.7071, -1, -0.6652, -0.4445, -1, -0.9808, -0.1951, -1, -0.9239, -0.3827, -1, -0.7391, -0.3061, -1, -0.8, 0, -1, -1, 0, -1, -0.7846, -0.1561, -1, -0.7846, -0.1561, -1, -1, 0, -1, -0.9808, -0.1951, -1, -0.9239, -0.3827, -1, -0.8315, -0.5556, -1, -0.7391, -0.3061, -1, -0.3827, -0.9239, -1, -0.1951, -0.9808, -1, -0.3061, -0.7391, -1, 0.3827, -0.9239, -1, 0.5556, -0.8315, -1, 0.4445, -0.6652, -1, 0.9239, -0.3827, -1, 0.9808, -0.1951, -1, 0.7391, -0.3061, -1, 0.9239, 0.3827, -1, 0.8315, 0.5556, -1, 0.6652, 0.4445, -1, 0.5556, 0.8315, -1, 0.5657, 0.5657, -1, 0.7071, 0.7071, -1, 0.5657, 0.5657, -1, 0.6652, 0.4445, -1, 0.7071, 0.7071, -1, -0.7846, -0.1561, -1, -0.9808, -0.1951, -1, -0.7391, -0.3061, -1, -0.7391, -0.3061, -1, -0.8315, -0.5556, -1, -0.6652, -0.4445, -1, 0.9239, 0.3827, -1, 0.6652, 0.4445, -1, 0.7391, 0.3061, -1, 0.9808, 0.1951, -1, 0.7391, 0.3061, -1, 0.7846, 0.1561, -1, -0.6652, -0.4445, -1, -0.7071, -0.7071, -1, -0.5657, -0.5657, -1, -0.5657, -0.5657, -1, -0.7071, -0.7071, -1, -0.4445, -0.6652, -1, 0.9808, 0.1951, -1, 0.7846, 0.1561, -1, 1, 0, -1, 0.7846, 0.1561, -1, 0.8, 0, -1, 1, 0, -1, -0.7071, -0.7071, -1, -0.5556, -0.8315, -1, -0.4445, -0.6652, -1, -0.4445, -0.6652, -1, -0.3827, -0.9239, -1, -0.3061, -0.7391, -1, 0.8, 0, -1, 0.7846, -0.1561, -1, 1, 0, -1, 0.7846, -0.1561, -1, 0.7391, -0.3061, -1, 0.9808, -0.1951, -1, -0.3061, -0.7391, -1, -0.1951, -0.9808, -1, -0.1561, -0.7846, -1, -0.1561, -0.7846, -1, 0, -1, -1, 0, -0.8, -1, 0.8315, -0.5556, -1, 0.7391, -0.3061, -1, 0.6652, -0.4445, -1, 0.8315, -0.5556, -1, 0.6652, -0.4445, -1, 0.7071, -0.7071, -1, 0, -0.8, -1, 0, -1, -1, 0.1561, -0.7846, -1, 0.1561, -0.7846, -1, 0, -1, -1, 0.1951, -0.9808, -1, 0.6652, -0.4445, -1, 0.5657, -0.5657, -1, 0.7071, -0.7071, -1, 0.3061, -0.7391, -1, 0.1561, -0.7846, -1, 0.1951, -0.9808, -1, 0.5657, -0.5657, -1, 0.4445, -0.6652, -1, 0.7071, -0.7071, -1, -2, -0.1685, 1.5556, -2, -0.2929, 1.7071, -2, -0.4343, 1.5657, -2, -0.3348, 1.4445, -2, -0.1685, 1.5556, -2, -0.4343, 1.5657, -2, -0.4444, 1.8315, -2, -0.6173, 1.9239, -2, -0.6939, 1.7391, -2, -0.8049, 1.9808, -2, -1, 2, -2, -0.8439, 1.7846, -2, -1.1951, 1.9808, -2, -1.3827, 1.9239, -2, -1.1561, 1.7846, -2, -1.5556, 1.8315, -2, -1.7071, 1.7071, -2, -1.4445, 1.6652, -2, -1.8315, 1.5556, -2, -1.9239, 1.3827, -2, -1.6652, 1.4445, -2, -1.9808, 1.1951, -2, -2, 1, -2, -1.7846, 1.1561, -2, -1.9808, 0.8049, -2, -1.9239, 0.6173, -2, -1.7391, 0.6939, -2, -1.8315, 0.4444, -2, -1.7071, 0.2929, -2, -1.6652, 0.5555, -2, -1.5556, 0.1685, -2, -1.3827, 0.0761, -2, -1.3061, 0.2609, -2, -1.1951, 0.0192, -2, -1, 0, -2, -1.1561, 0.2154, -2, -1, 0.2, -2, -1.1561, 0.2154, -2, -1, 0, -2, -1.1561, 0.2154, -2, -1.3061, 0.2609, -2, -1.1951, 0.0192, -2, -1.3827, 0.0761, -2, -1.1951, 0.0192, -2, -1.3061, 0.2609, -2, -1.9239, 0.6173, -2, -1.8315, 0.4444, -2, -1.6652, 0.5555, -2, -1.9239, 1.3827, -2, -1.9808, 1.1951, -2, -1.7391, 1.3061, -2, -1.3827, 1.9239, -2, -1.5556, 1.8315, -2, -1.3061, 1.7391, -2, -0.6173, 1.9239, -2, -0.8049, 1.9808, -2, -0.6939, 1.7391, -2, -0.4343, 1.5657, -2, -0.2929, 1.7071, -2, -0.5555, 1.6652, -2, -0.5555, 1.6652, -2, -0.2929, 1.7071, -2, -0.4444, 1.8315, -2, -1.5556, 0.1685, -2, -1.3061, 0.2609, -2, -1.4445, 0.3348, -2, -1.5556, 0.1685, -2, -1.4445, 0.3348, -2, -1.7071, 0.2929, -2, -0.5555, 1.6652, -2, -0.4444, 1.8315, -2, -0.6939, 1.7391, -2, -0.6939, 1.7391, -2, -0.8049, 1.9808, -2, -0.8439, 1.7846, -2, -1.4445, 0.3348, -2, -1.5657, 0.4343, -2, -1.7071, 0.2929, -2, -1.5657, 0.4343, -2, -1.6652, 0.5555, -2, -1.7071, 0.2929, -2, -0.8439, 1.7846, -2, -1, 2, -2, -1, 1.8, -2, -1, 1.8, -2, -1, 2, -2, -1.1561, 1.7846, -2, -1.9239, 0.6173, -2, -1.6652, 0.5555, -2, -1.7391, 0.6939, -2, -1.9808, 0.8049, -2, -1.7391, 0.6939, -2, -1.7846, 0.8439, -2, -1, 2, -2, -1.1951, 1.9808, -2, -1.1561, 1.7846, -2, -1.1561, 1.7846, -2, -1.3827, 1.9239, -2, -1.3061, 1.7391, -2, -1.9808, 0.8049, -2, -1.7846, 0.8439, -2, -2, 1, -2, -1.7846, 0.8439, -2, -1.8, 1, -2, -2, 1, -2, -1.3061, 1.7391, -2, -1.5556, 1.8315, -2, -1.4445, 1.6652, -2, -1.4445, 1.6652, -2, -1.7071, 1.7071, -2, -1.5657, 1.5657, -2, -1.8, 1, -2, -1.7846, 1.1561, -2, -2, 1, -2, -1.7846, 1.1561, -2, -1.7391, 1.3061, -2, -1.9808, 1.1951, -2, -1.5657, 1.5657, -2, -1.7071, 1.7071, -2, -1.6652, 1.4445, -2, -1.7391, 1.3061, -2, -1.6652, 1.4445, -2, -1.9239, 1.3827 ) +[sub_resource type="BoxShape3D" id="2"] -[sub_resource type="BoxShape" id=2] +[node name="TurnRightCovered" type="StaticBody3D"] +collision_mask = 4 +script = ExtResource("1") -[node name="TurnRightCovered" type="StaticBody"] -script = ExtResource( 1 ) - -[node name="Mesh" type="MeshInstance" parent="."] -material_override = ExtResource( 2 ) -mesh = ExtResource( 3 ) +[node name="Mesh" type="MeshInstance3D" parent="."] +material_override = ExtResource("2") +mesh = ExtResource("3") skeleton = NodePath("") -[node name="CollisionShape" type="CollisionShape" parent="."] -shape = SubResource( 1 ) +[node name="CollisionShape" type="CollisionShape3D" parent="."] +shape = SubResource("1") -[node name="BeginArea" type="Area" parent="."] +[node name="BeginArea" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1 ) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1) collision_layer = 2 -collision_mask = 0 +collision_mask = 4 -[node name="CollisionShape" type="CollisionShape" parent="BeginArea"] -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="BeginArea"] +shape = SubResource("2") -[node name="EndArea" type="Area" parent="."] +[node name="EndArea" type="Area3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -2, -1, 1 ) -collision_layer = 3 -collision_mask = 0 -script = ExtResource( 4 ) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, -1, 1) +collision_layer = 2 +collision_mask = 4 +script = ExtResource("4") -[node name="CollisionShape" type="CollisionShape" parent="EndArea"] -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="EndArea"] +shape = SubResource("2") -[node name="Positions" type="Spatial" parent="."] +[node name="Positions" type="Node3D" parent="."] -[node name="Position3D" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -1.62488, 0.555063, -1.4334 ) +[node name="Position3D" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.62488, 0.555063, -1.4334) -[node name="Position3D2" type="Position3D" parent="Positions"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -2.69717, 0.555063, 0.200831 ) +[node name="Position3D2" type="Marker3D" parent="Positions"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.69717, 0.555063, 0.200831) diff --git a/scenes/camera/cinematic_camera.tscn b/scenes/camera/cinematic_camera.tscn index 0987738..3004a18 100644 --- a/scenes/camera/cinematic_camera.tscn +++ b/scenes/camera/cinematic_camera.tscn @@ -1,13 +1,9 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=2 format=3 uid="uid://c1yn8okktqnyx"] -[gd_scene load_steps=2 format=2] +[ext_resource type="Script" path="res://scripts/camera/cinematic_camera.gd" id="1"] -[ext_resource path="res://scripts/camera/cinematic_camera.gd" type="Script" id=1] +[node name="MarbleCamera" type="Node3D"] +script = ExtResource("1") -[node name="MarbleCamera" type="Spatial"] -script = ExtResource( 1 ) - -[node name="Camera" type="Camera" parent="."] +[node name="Camera" type="Camera3D" parent="."] unique_name_in_owner = true diff --git a/scenes/camera/marble_camera.tscn b/scenes/camera/marble_camera.tscn index 8deff16..75d29e9 100644 --- a/scenes/camera/marble_camera.tscn +++ b/scenes/camera/marble_camera.tscn @@ -1,6 +1,3 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT [gd_scene load_steps=2 format=2] diff --git a/scenes/camera/rotation_camera.tscn b/scenes/camera/rotation_camera.tscn index 0dfb815..33a15ee 100644 --- a/scenes/camera/rotation_camera.tscn +++ b/scenes/camera/rotation_camera.tscn @@ -1,14 +1,10 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=2 format=3 uid="uid://bs35wqe5iaxda"] -[gd_scene load_steps=2 format=2] +[ext_resource type="Script" path="res://scripts/camera/rotation_camera.gd" id="1"] -[ext_resource path="res://scripts/camera/rotation_camera.gd" type="Script" id=1] - -[node name="RotationCamera" type="Spatial"] -script = ExtResource( 1 ) +[node name="RotationCamera" type="Node3D"] +script = ExtResource("1") rotation_speed = 0.25 -[node name="Camera" type="Camera" parent="."] +[node name="Camera" type="Camera3D" parent="."] unique_name_in_owner = true diff --git a/scenes/camera/spectator_camera.tscn b/scenes/camera/spectator_camera.tscn index abb62ad..00c0ee7 100644 --- a/scenes/camera/spectator_camera.tscn +++ b/scenes/camera/spectator_camera.tscn @@ -1,18 +1,14 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=3 format=3 uid="uid://8dghon6ie77m"] -[gd_scene load_steps=3 format=2] +[ext_resource type="Script" path="res://scripts/mouse_look.gd" id="1"] +[ext_resource type="Script" path="res://scripts/camera/spectator_camera.gd" id="2"] -[ext_resource path="res://scripts/mouse_look.gd" type="Script" id=1] -[ext_resource path="res://scripts/camera/spectator_camera.gd" type="Script" id=2] - -[node name="SpectatorCamera" type="Spatial"] -script = ExtResource( 2 ) +[node name="SpectatorCamera" type="Node3D"] +script = ExtResource("2") speed = 8.0 -[node name="Camera" type="Camera" parent="."] +[node name="Camera" type="Camera3D" parent="."] unique_name_in_owner = true -script = ExtResource( 1 ) +script = ExtResource("1") sensitivity = 0.2 distance = 0.0 diff --git a/scenes/card.tscn b/scenes/card.tscn index f446a70..c408891 100644 --- a/scenes/card.tscn +++ b/scenes/card.tscn @@ -1,51 +1,46 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=7 format=3 uid="uid://nudyvmrpgty1"] -[gd_scene load_steps=7 format=2] +[sub_resource type="BoxMesh" id="1"] +size = Vector3(1.25, 2, 0.1) -[sub_resource type="CubeMesh" id=1] -size = Vector3( 1.25, 2, 0.1 ) - -[sub_resource type="ViewportTexture" id=2] +[sub_resource type="ViewportTexture" id="2"] viewport_path = NodePath("Window/Viewport") -[sub_resource type="SpatialMaterial" id=3] +[sub_resource type="StandardMaterial3D" id="3"] resource_local_to_scene = true -albedo_texture = SubResource( 2 ) +albedo_texture = SubResource("2") -[sub_resource type="QuadMesh" id=4] +[sub_resource type="QuadMesh" id="4"] resource_local_to_scene = true -material = SubResource( 3 ) +material = SubResource("3") -[sub_resource type="CubeMesh" id=5] +[sub_resource type="BoxMesh" id="5"] flip_faces = true -size = Vector3( 1, 1, 1 ) -[sub_resource type="SphereMesh" id=6] +[sub_resource type="SphereMesh" id="6"] radius = 0.25 height = 0.5 -[node name="Card" type="MeshInstance"] -mesh = SubResource( 1 ) +[node name="Card" type="MeshInstance3D"] +mesh = SubResource("1") -[node name="Window" type="MeshInstance" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.42, 0.051 ) -mesh = SubResource( 4 ) +[node name="Window" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.42, 0.051) +mesh = SubResource("4") -[node name="Viewport" type="Viewport" parent="Window"] -size = Vector2( 600, 600 ) +[node name="Viewport" type="SubViewport" parent="Window"] +size = Vector2i(600, 600) -[node name="Camera" type="Camera" parent="Window/Viewport"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.370214, 0.588491 ) +[node name="Camera" type="Camera3D" parent="Window/Viewport"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.370214, 0.588491) cull_mask = 1024 -[node name="Room" type="MeshInstance" parent="Window"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.465 ) +[node name="Room" type="MeshInstance3D" parent="Window"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.465) layers = 1024 -mesh = SubResource( 5 ) +mesh = SubResource("5") skeleton = NodePath("../..") -[node name="MeshInstance" type="MeshInstance" parent="Window/Room"] +[node name="MeshInstance" type="MeshInstance3D" parent="Window/Room"] layers = 1024 -mesh = SubResource( 6 ) +mesh = SubResource("6") diff --git a/scenes/explosion.tscn b/scenes/explosion.tscn index 908268c..97fc1ef 100644 --- a/scenes/explosion.tscn +++ b/scenes/explosion.tscn @@ -1,41 +1,28 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=5 format=3 uid="uid://do5uv5bqridi0"] -[gd_scene load_steps=6 format=2] +[sub_resource type="Curve" id="5"] +_data = [Vector2(0, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), 0.0, 0.0, 0, 0] +point_count = 2 -[ext_resource path="res://addons/lod/lod_particles.gd" type="Script" id=1] +[sub_resource type="CurveTexture" id="2"] +curve = SubResource("5") -[sub_resource type="Curve" id=5] -_data = [ Vector2( 0, 1 ), 0.0, 0.0, 0, 0, Vector2( 1, 0 ), 0.0, 0.0, 0, 0 ] - -[sub_resource type="CurveTexture" id=2] -curve = SubResource( 5 ) - -[sub_resource type="ParticlesMaterial" id=6] -direction = Vector3( 0, 10, 0 ) +[sub_resource type="ParticleProcessMaterial" id="6"] +direction = Vector3(0, 10, 0) spread = 180.0 -gravity = Vector3( 0, -2, 0 ) -initial_velocity = 10.0 -initial_velocity_random = 1.0 -damping = 1.0 -damping_random = 0.16 -scale = 4.0 -scale_random = 1.0 -scale_curve = SubResource( 2 ) +gravity = Vector3(0, -2, 0) +scale_curve = SubResource("2") -[sub_resource type="SphereMesh" id=4] +[sub_resource type="SphereMesh" id="4"] radius = 0.1 height = 0.2 -[node name="Explosion" type="Particles"] +[node name="Explosion" type="GPUParticles3D"] unique_name_in_owner = true emitting = false amount = 50 lifetime = 0.61 one_shot = true explosiveness = 1.0 -process_material = SubResource( 6 ) -draw_pass_1 = SubResource( 4 ) -script = ExtResource( 1 ) -max_emit_distance = 100.0 +process_material = SubResource("6") +draw_pass_1 = SubResource("4") diff --git a/scenes/gui/countdown.tscn b/scenes/gui/countdown.tscn index 2a60ea3..9660e30 100644 --- a/scenes/gui/countdown.tscn +++ b/scenes/gui/countdown.tscn @@ -1,43 +1,43 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=6 format=3 uid="uid://cr0ipqbbhw6fv"] -[gd_scene load_steps=6 format=2] +[ext_resource type="Script" path="res://scripts/gui/countdown.gd" id="1"] +[ext_resource type="FontFile" uid="uid://cpxtqija5l465" path="res://assets/fonts/box_pixies.ttf" id="2_5qytn"] +[ext_resource type="AudioStream" uid="uid://nau0cerdcaga" path="res://assets/sounds/countdown/countdown-b.ogg" id="3"] +[ext_resource type="AudioStream" uid="uid://c8qsejp3fxb6y" path="res://assets/sounds/countdown/countdown-a.ogg" id="4"] -[ext_resource path="res://scripts/gui/countdown.gd" type="Script" id=1] -[ext_resource path="res://assets/fonts/box_pixies.ttf" type="DynamicFontData" id=2] -[ext_resource path="res://assets/sounds/countdown/countdown-b.ogg" type="AudioStream" id=3] -[ext_resource path="res://assets/sounds/countdown/countdown-a.ogg" type="AudioStream" id=4] - -[sub_resource type="DynamicFont" id=1] -size = 60 -font_data = ExtResource( 2 ) +[sub_resource type="LabelSettings" id="LabelSettings_42o2s"] +font = ExtResource("2_5qytn") +font_size = 50 [node name="Countdown" type="Control"] +layout_mode = 3 +anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 -script = ExtResource( 1 ) +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1") [node name="CenterContainer" type="CenterContainer" parent="."] +custom_minimum_size = Vector2(0, 100) +layout_mode = 1 +anchors_preset = 10 anchor_right = 1.0 -margin_bottom = 355.0 +offset_bottom = 26.0 +grow_horizontal = 2 [node name="LabelTimer" type="Label" parent="CenterContainer"] unique_name_in_owner = true -margin_left = 540.0 -margin_top = 77.0 -margin_right = 740.0 -margin_bottom = 277.0 -rect_min_size = Vector2( 200, 200 ) -custom_fonts/font = SubResource( 1 ) +layout_mode = 2 text = "3" -align = 1 -valign = 1 +label_settings = SubResource("LabelSettings_42o2s") +horizontal_alignment = 1 +vertical_alignment = 1 [node name="Countdown1" type="AudioStreamPlayer" parent="."] -stream = ExtResource( 4 ) +stream = ExtResource("4") volume_db = -20.0 [node name="Countdown2" type="AudioStreamPlayer" parent="."] -stream = ExtResource( 3 ) +stream = ExtResource("3") volume_db = -20.0 diff --git a/scenes/gui/menu.tscn b/scenes/gui/menu.tscn index 0f33a72..b0c487b 100644 --- a/scenes/gui/menu.tscn +++ b/scenes/gui/menu.tscn @@ -1,182 +1,167 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=6 format=3 uid="uid://bh0nd3c40wf75"] -[gd_scene load_steps=6 format=2] +[ext_resource type="Script" path="res://scripts/gui/menu.gd" id="1"] +[ext_resource type="FontFile" uid="uid://cpxtqija5l465" path="res://assets/fonts/box_pixies.ttf" id="2"] +[ext_resource type="AudioStream" uid="uid://befsdykgrnt25" path="res://assets/sounds/ui_open.wav" id="3"] +[ext_resource type="Script" path="res://scripts/gui/build_info.gd" id="4"] -[ext_resource path="res://scripts/gui/menu.gd" type="Script" id=1] -[ext_resource path="res://assets/fonts/box_pixies.ttf" type="DynamicFontData" id=2] -[ext_resource path="res://assets/sounds/ui_open.wav" type="AudioStream" id=3] -[ext_resource path="res://scripts/gui/build_info.gd" type="Script" id=4] - -[sub_resource type="DynamicFont" id=1] -size = 35 -font_data = ExtResource( 2 ) +[sub_resource type="LabelSettings" id="LabelSettings_wpgwf"] +font = ExtResource("2") +font_size = 50 [node name="Menu" type="Control"] +layout_mode = 3 +anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 -script = ExtResource( 1 ) +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1") [node name="ColorRect" type="ColorRect" parent="."] +layout_mode = 0 anchor_right = 1.0 anchor_bottom = 1.0 -color = Color( 0, 0, 0, 0.352941 ) +color = Color(0, 0, 0, 0.352941) [node name="StartMenu" type="ColorRect" parent="."] unique_name_in_owner = true +custom_minimum_size = Vector2(440, 440) +layout_mode = 1 +anchors_preset = 8 anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -margin_left = -200.0 -margin_top = -178.0 -margin_right = 200.0 -margin_bottom = 178.0 -color = Color( 0.109804, 0.109804, 0.109804, 0.45098 ) +offset_left = -200.0 +offset_top = -200.0 +offset_right = 200.0 +offset_bottom = 200.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0.109804, 0.109804, 0.109804, 0.45098) [node name="VBoxContainer" type="VBoxContainer" parent="StartMenu"] +custom_minimum_size = Vector2(400, 400) +layout_mode = 1 +anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = 16.0 -margin_top = 16.0 -margin_right = -16.0 -margin_bottom = -16.0 +offset_left = 20.0 +offset_top = 20.0 +offset_right = -20.0 +offset_bottom = -20.0 +grow_horizontal = 2 +grow_vertical = 2 [node name="Label" type="Label" parent="StartMenu/VBoxContainer"] -margin_right = 368.0 -margin_bottom = 32.0 -custom_fonts/font = SubResource( 1 ) +custom_minimum_size = Vector2(0, 50) +layout_mode = 2 text = "Marble" -align = 1 +label_settings = SubResource("LabelSettings_wpgwf") +horizontal_alignment = 1 +vertical_alignment = 1 uppercase = true [node name="Spacer" type="Control" parent="StartMenu/VBoxContainer"] -margin_top = 36.0 -margin_right = 368.0 -margin_bottom = 44.0 -rect_min_size = Vector2( 0, 8 ) +layout_mode = 2 [node name="Input" type="LineEdit" parent="StartMenu/VBoxContainer"] unique_name_in_owner = true -margin_top = 48.0 -margin_right = 368.0 -margin_bottom = 72.0 +layout_mode = 2 placeholder_text = "Write one or more names separated by commas." [node name="CollisionToggle" type="CheckButton" parent="StartMenu/VBoxContainer"] unique_name_in_owner = true -margin_top = 76.0 -margin_right = 368.0 -margin_bottom = 116.0 -pressed = true +layout_mode = 2 text = "Enable collision between marbles" [node name="ExplosionToggle" type="CheckButton" parent="StartMenu/VBoxContainer"] unique_name_in_owner = true -margin_top = 120.0 -margin_right = 368.0 -margin_bottom = 160.0 +layout_mode = 2 text = "Explosion mode" [node name="Spacer2" type="Control" parent="StartMenu/VBoxContainer"] -margin_top = 164.0 -margin_right = 368.0 -margin_bottom = 172.0 -rect_min_size = Vector2( 0, 8 ) +layout_mode = 2 [node name="StartButton" type="Button" parent="StartMenu/VBoxContainer"] -margin_top = 176.0 -margin_right = 368.0 -margin_bottom = 208.0 -rect_min_size = Vector2( 0, 32 ) +layout_mode = 2 text = "Start" [node name="QuitButton" type="Button" parent="StartMenu/VBoxContainer"] -margin_top = 212.0 -margin_right = 368.0 -margin_bottom = 244.0 -rect_min_size = Vector2( 0, 32 ) +layout_mode = 2 text = "Quit" [node name="Spacer3" type="Control" parent="StartMenu/VBoxContainer"] -margin_top = 248.0 -margin_right = 368.0 -margin_bottom = 308.0 -rect_min_size = Vector2( 0, 60 ) +layout_mode = 2 [node name="CenterContainer" type="CenterContainer" parent="StartMenu/VBoxContainer"] -margin_top = 312.0 -margin_right = 368.0 -margin_bottom = 326.0 +layout_mode = 2 [node name="BuildInfo" type="Label" parent="StartMenu/VBoxContainer/CenterContainer"] -modulate = Color( 1, 1, 1, 0.498039 ) -margin_left = 184.0 -margin_right = 184.0 -margin_bottom = 14.0 -align = 1 -script = ExtResource( 4 ) +modulate = Color(1, 1, 1, 0.498039) +layout_mode = 2 +script = ExtResource("4") [node name="PauseMenu" type="ColorRect" parent="."] unique_name_in_owner = true visible = false +custom_minimum_size = Vector2(440, 440) +layout_mode = 1 +anchors_preset = 8 anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -margin_left = -200.0 -margin_top = -178.0 -margin_right = 200.0 -margin_bottom = 178.0 -color = Color( 0.109804, 0.109804, 0.109804, 0.45098 ) +offset_left = -220.0 +offset_top = -220.0 +offset_right = 220.0 +offset_bottom = 220.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0.109804, 0.109804, 0.109804, 0.45098) [node name="VBoxContainer" type="VBoxContainer" parent="PauseMenu"] -anchor_right = 1.0 -anchor_bottom = 1.0 -margin_left = 16.0 -margin_top = 16.0 -margin_right = -16.0 -margin_bottom = -16.0 +custom_minimum_size = Vector2(400, 400) +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -200.0 +offset_top = -200.0 +offset_right = 200.0 +offset_bottom = 200.0 +grow_horizontal = 2 +grow_vertical = 2 [node name="Label" type="Label" parent="PauseMenu/VBoxContainer"] -margin_right = 368.0 -margin_bottom = 32.0 -custom_fonts/font = SubResource( 1 ) +layout_mode = 2 text = "Marble" -align = 1 +label_settings = SubResource("LabelSettings_wpgwf") +horizontal_alignment = 1 +vertical_alignment = 1 uppercase = true [node name="Spacer" type="Control" parent="PauseMenu/VBoxContainer"] -margin_top = 36.0 -margin_right = 368.0 -margin_bottom = 44.0 -rect_min_size = Vector2( 0, 8 ) +layout_mode = 2 [node name="ResumeButton" type="Button" parent="PauseMenu/VBoxContainer"] -margin_top = 48.0 -margin_right = 368.0 -margin_bottom = 80.0 -rect_min_size = Vector2( 0, 32 ) +layout_mode = 2 text = "Resume" [node name="RestartButton" type="Button" parent="PauseMenu/VBoxContainer"] -margin_top = 84.0 -margin_right = 368.0 -margin_bottom = 116.0 -rect_min_size = Vector2( 0, 32 ) +layout_mode = 2 text = "Restart" [node name="QuitButton" type="Button" parent="PauseMenu/VBoxContainer"] -margin_top = 120.0 -margin_right = 368.0 -margin_bottom = 152.0 -rect_min_size = Vector2( 0, 32 ) +layout_mode = 2 text = "Quit" [node name="OpenSound" type="AudioStreamPlayer" parent="."] unique_name_in_owner = true -stream = ExtResource( 3 ) +stream = ExtResource("3") [connection signal="text_changed" from="StartMenu/VBoxContainer/Input" to="." method="_on_Input_text_changed"] [connection signal="toggled" from="StartMenu/VBoxContainer/CollisionToggle" to="." method="_on_CollisionToggle_toggled"] diff --git a/scenes/gui/overlay.tscn b/scenes/gui/overlay.tscn index d9168ad..6fecb52 100644 --- a/scenes/gui/overlay.tscn +++ b/scenes/gui/overlay.tscn @@ -1,110 +1,98 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=6 format=3 uid="uid://1ni00kklpf4b"] -[gd_scene load_steps=6 format=2] +[ext_resource type="Script" path="res://scripts/gui/ranking.gd" id="1"] +[ext_resource type="FontFile" uid="uid://cpxtqija5l465" path="res://assets/fonts/box_pixies.ttf" id="2_8us2t"] +[ext_resource type="Script" path="res://scripts/gui/overlay.gd" id="3"] +[ext_resource type="Texture2D" uid="uid://bph3mheo28yg4" path="res://assets/icons/icons8-dynamite-100.png" id="4"] -[ext_resource path="res://scripts/gui/ranking.gd" type="Script" id=1] -[ext_resource path="res://assets/fonts/box_pixies.ttf" type="DynamicFontData" id=2] -[ext_resource path="res://scripts/gui/overlay.gd" type="Script" id=3] -[ext_resource path="res://assets/icons/icons8-dynamite-100.png" type="Texture" id=4] - -[sub_resource type="DynamicFont" id=1] -size = 35 -font_data = ExtResource( 2 ) +[sub_resource type="LabelSettings" id="LabelSettings_ecb06"] +font = ExtResource("2_8us2t") +font_size = 50 [node name="Overlay" type="Control"] +layout_mode = 3 +anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 -script = ExtResource( 3 ) +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("3") [node name="Panel" type="ColorRect" parent="."] unique_name_in_owner = true -margin_left = 16.0 -margin_top = 16.0 -margin_right = 216.0 -margin_bottom = 704.0 -color = Color( 0.109804, 0.109804, 0.109804, 0.45098 ) -__meta__ = { -"_edit_group_": true -} +custom_minimum_size = Vector2(228, 608) +layout_mode = 1 +offset_left = 20.0 +offset_top = 20.0 +offset_right = 270.0 +offset_bottom = 520.0 +color = Color(0.109804, 0.109804, 0.109804, 0.45098) [node name="VBoxContainer" type="VBoxContainer" parent="Panel"] +layout_mode = 1 +anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = 16.0 -margin_top = 16.0 -margin_right = -16.0 -margin_bottom = -16.0 +offset_left = 20.0 +offset_top = 20.0 +offset_right = -22.0 +offset_bottom = -20.0 +grow_horizontal = 2 +grow_vertical = 2 [node name="Label" type="Label" parent="Panel/VBoxContainer"] -margin_right = 168.0 -margin_bottom = 32.0 -custom_fonts/font = SubResource( 1 ) +layout_mode = 2 text = "Ranking" -align = 1 +label_settings = SubResource("LabelSettings_ecb06") uppercase = true [node name="Spacer" type="Control" parent="Panel/VBoxContainer"] -margin_top = 36.0 -margin_right = 168.0 -margin_bottom = 44.0 -rect_min_size = Vector2( 0, 8 ) +layout_mode = 2 [node name="Ranking" type="VBoxContainer" parent="Panel/VBoxContainer" groups=["Ranking"]] unique_name_in_owner = true -margin_top = 48.0 -margin_right = 168.0 -margin_bottom = 48.0 +layout_mode = 2 alignment = 1 -script = ExtResource( 1 ) +script = ExtResource("1") [node name="Spacer2" type="Control" parent="Panel/VBoxContainer"] -margin_top = 52.0 -margin_right = 168.0 -margin_bottom = 60.0 -rect_min_size = Vector2( 0, 8 ) +layout_mode = 2 [node name="Panel2" type="ColorRect" parent="."] -margin_left = 1164.0 -margin_top = 16.0 -margin_right = 1264.0 -margin_bottom = 66.0 -color = Color( 0.109804, 0.109804, 0.109804, 0.45098 ) -__meta__ = { -"_edit_group_": true -} +custom_minimum_size = Vector2(150, 75) +layout_mode = 1 +anchors_preset = 1 +anchor_left = 1.0 +anchor_right = 1.0 +offset_left = -145.0 +offset_top = 20.0 +offset_right = -20.0 +offset_bottom = 95.0 +grow_horizontal = 0 +color = Color(0.109804, 0.109804, 0.109804, 0.45098) [node name="CenterContainer3" type="CenterContainer" parent="Panel2"] +layout_mode = 0 anchor_right = 1.0 anchor_bottom = 1.0 size_flags_horizontal = 6 [node name="VBoxContainer" type="HBoxContainer" parent="Panel2/CenterContainer3"] -margin_left = 12.0 -margin_top = 10.0 -margin_right = 87.0 -margin_bottom = 40.0 -rect_min_size = Vector2( 75, 25 ) +layout_mode = 2 alignment = 1 [node name="Clock" type="NinePatchRect" parent="Panel2/CenterContainer3/VBoxContainer"] -margin_left = 3.0 -margin_right = 33.0 -margin_bottom = 30.0 -rect_min_size = Vector2( 30, 30 ) -texture = ExtResource( 4 ) +custom_minimum_size = Vector2(50, 50) +layout_mode = 2 +texture = ExtResource("4") +region_rect = Rect2(0, 0, 100, 100) [node name="Control" type="Control" parent="Panel2/CenterContainer3/VBoxContainer"] -margin_left = 37.0 -margin_right = 37.0 -margin_bottom = 30.0 +layout_mode = 2 [node name="LabelTimer" type="Label" parent="Panel2/CenterContainer3/VBoxContainer"] -margin_left = 41.0 -margin_right = 71.0 -margin_bottom = 30.0 -rect_min_size = Vector2( 30, 30 ) +custom_minimum_size = Vector2(50, 50) +layout_mode = 2 text = "0:00" -align = 1 -valign = 1 +horizontal_alignment = 1 +vertical_alignment = 1 diff --git a/scenes/gui/participant.tscn b/scenes/gui/participant.tscn index d0f5c62..b913d26 100644 --- a/scenes/gui/participant.tscn +++ b/scenes/gui/participant.tscn @@ -1,58 +1,32 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=2 format=3 uid="uid://cbh7t8fgh2gnu"] -[gd_scene load_steps=2 format=2] - -[ext_resource path="res://scripts/gui/participant.gd" type="Script" id=1] +[ext_resource type="Script" path="res://scripts/gui/participant.gd" id="1"] [node name="Participant" type="HBoxContainer"] -margin_right = 160.0 -margin_bottom = 25.0 -rect_min_size = Vector2( 161, 0 ) -script = ExtResource( 1 ) +custom_minimum_size = Vector2(150, 0) +script = ExtResource("1") [node name="CenterContainer" type="CenterContainer" parent="."] -margin_left = 7.0 -margin_right = 32.0 -margin_bottom = 25.0 -size_flags_horizontal = 6 +custom_minimum_size = Vector2(25, 25) +layout_mode = 2 [node name="Rank" type="Label" parent="CenterContainer"] unique_name_in_owner = true -margin_top = 1.0 -margin_right = 25.0 -margin_bottom = 24.0 -rect_min_size = Vector2( 25, 23 ) -text = "1" -align = 1 -valign = 1 - -[node name="CenterContainer2" type="CenterContainer" parent="."] -margin_left = 43.0 -margin_right = 118.0 -margin_bottom = 25.0 -size_flags_horizontal = 6 +layout_mode = 2 +horizontal_alignment = 1 +vertical_alignment = 1 -[node name="Name" type="Label" parent="CenterContainer2"] +[node name="Name" type="Label" parent="."] unique_name_in_owner = true -margin_top = 1.0 -margin_right = 75.0 -margin_bottom = 24.0 -rect_min_size = Vector2( 75, 23 ) +layout_mode = 2 text = "Toto" -align = 1 -valign = 1 [node name="CenterContainer3" type="CenterContainer" parent="."] -margin_left = 130.0 -margin_right = 153.0 -margin_bottom = 25.0 -size_flags_horizontal = 6 +custom_minimum_size = Vector2(25, 25) +layout_mode = 2 +size_flags_horizontal = 10 [node name="State" type="NinePatchRect" parent="CenterContainer3"] unique_name_in_owner = true -margin_top = 1.0 -margin_right = 23.0 -margin_bottom = 24.0 -rect_min_size = Vector2( 23, 23 ) +custom_minimum_size = Vector2(25, 25) +layout_mode = 2 diff --git a/scenes/main.tscn b/scenes/main.tscn index b783d16..3d89f55 100644 --- a/scenes/main.tscn +++ b/scenes/main.tscn @@ -1,134 +1,84 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT - -[gd_scene load_steps=11 format=2] - -[ext_resource path="res://scripts/main.gd" type="Script" id=1] -[ext_resource path="res://scenes/gui/overlay.tscn" type="PackedScene" id=2] -[ext_resource path="res://scenes/race.tscn" type="PackedScene" id=3] -[ext_resource path="res://scenes/marble.tscn" type="PackedScene" id=5] -[ext_resource path="res://scenes/explosion.tscn" type="PackedScene" id=6] -[ext_resource path="res://scenes/gui/menu.tscn" type="PackedScene" id=7] -[ext_resource path="res://scripts/gui/transition.gd" type="Script" id=8] -[ext_resource path="res://scenes/gui/countdown.tscn" type="PackedScene" id=9] - -[sub_resource type="Shader" id=2] -code = "shader_type canvas_item; - -// Ranges from 0 to 1 over the course of the transition. -// We use this to actually animate the shader. -uniform float progress : hint_range(0, 1); - -// Size of each diamond, in pixels. -uniform float diamondPixelSize = 10.0; - -void fragment() { - float xFraction = fract(FRAGCOORD.x / diamondPixelSize); - float yFraction = fract(FRAGCOORD.y / diamondPixelSize); - float xDistance = abs(xFraction - 0.5); - float yDistance = abs(yFraction - 0.5); - if (xDistance + yDistance + UV.x + UV.y > progress * 4.0) { - discard; - } -}" - -[sub_resource type="ShaderMaterial" id=3] -shader = SubResource( 2 ) -shader_param/progress = 0.0 -shader_param/diamondPixelSize = 10.0 +[gd_scene load_steps=8 format=3 uid="uid://bxmtpk5gebd06"] + +[ext_resource type="Script" path="res://scripts/main.gd" id="1"] +[ext_resource type="PackedScene" uid="uid://1ni00kklpf4b" path="res://scenes/gui/overlay.tscn" id="2"] +[ext_resource type="PackedScene" uid="uid://b8obdevmnmamd" path="res://scenes/race.tscn" id="3"] +[ext_resource type="PackedScene" uid="uid://4g5aorgnd1hu" path="res://scenes/marble.tscn" id="5"] +[ext_resource type="PackedScene" uid="uid://do5uv5bqridi0" path="res://scenes/explosion.tscn" id="6"] +[ext_resource type="PackedScene" uid="uid://bh0nd3c40wf75" path="res://scenes/gui/menu.tscn" id="7"] +[ext_resource type="PackedScene" uid="uid://cr0ipqbbhw6fv" path="res://scenes/gui/countdown.tscn" id="9"] [node name="Main" type="Node"] -pause_mode = 2 -script = ExtResource( 1 ) +script = ExtResource("1") -[node name="DirectionalLight" type="DirectionalLight" parent="."] -transform = Transform( 1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 5.23546, 1.26289, 0 ) +[node name="DirectionalLight" type="DirectionalLight3D" parent="."] +transform = Transform3D(0.803353, 0.52654, 0.27817, -0.327201, -3.15539e-08, 0.944955, 0.497557, -0.85015, 0.172285, 5.23546, 1.26289, 0) shadow_enabled = true -[node name="PlayerSpawn" type="Spatial" parent="."] -unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 26.2655, 0 ) - -[node name="Overlay" parent="." instance=ExtResource( 2 )] +[node name="Overlay" parent="." instance=ExtResource("2")] unique_name_in_owner = true visible = false -margin_right = 1024.0 -margin_bottom = 600.0 mouse_filter = 2 -input_pass_on_modal_close_click = false -[node name="Menu" parent="." instance=ExtResource( 7 )] +[node name="Menu" parent="." instance=ExtResource("7")] unique_name_in_owner = true -[node name="Countdown" parent="." instance=ExtResource( 9 )] +[node name="Countdown" parent="." instance=ExtResource("9")] unique_name_in_owner = true +visible = false -[node name="Race" parent="." instance=ExtResource( 3 )] +[node name="Race" parent="." instance=ExtResource("3")] unique_name_in_owner = true -[node name="MarblePool" type="Spatial" parent="." groups=["marble_pool"]] +[node name="MarblePool" type="Node3D" parent="." groups=["marble_pool"]] unique_name_in_owner = true -[node name="Marble1" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble1" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble2" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble2" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble3" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble3" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble4" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble4" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble5" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble5" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble6" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble6" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble7" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble7" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble8" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble8" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble9" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble9" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble10" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble10" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble11" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble11" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble12" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble12" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble13" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble13" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Marble14" parent="MarblePool" instance=ExtResource( 5 )] +[node name="Marble14" parent="MarblePool" instance=ExtResource("5")] visible = false -[node name="Explosion" parent="." instance=ExtResource( 6 )] +[node name="Explosion" parent="." instance=ExtResource("6")] visible = false [node name="Timer" type="Timer" parent="."] unique_name_in_owner = true wait_time = 10.0 one_shot = true - -[node name="Transition" type="CanvasLayer" parent="."] -unique_name_in_owner = true - -[node name="ColorRect" type="ColorRect" parent="Transition"] -material = SubResource( 3 ) -anchor_right = 1.0 -anchor_bottom = 1.0 -mouse_filter = 2 -color = Color( 0, 0, 0, 1 ) -script = ExtResource( 8 ) - -[node name="Tween" type="Tween" parent="Transition/ColorRect"] diff --git a/scenes/marble.tscn b/scenes/marble.tscn index 3fcc649..fc571bc 100644 --- a/scenes/marble.tscn +++ b/scenes/marble.tscn @@ -1,85 +1,79 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=12 format=3 uid="uid://4g5aorgnd1hu"] -[gd_scene load_steps=12 format=2] +[ext_resource type="Script" path="res://scripts/marble.gd" id="1"] +[ext_resource type="Material" uid="uid://5gxm1ehx7waa" path="res://resources/materials/xray_marble.tres" id="2"] +[ext_resource type="Script" path="res://scripts/lod/lod_spatial.gd" id="2_5e2c6"] +[ext_resource type="AudioStream" uid="uid://3hc6gfblh3gf" path="res://assets/sounds/roll.wav" id="3"] +[ext_resource type="Script" path="res://scripts/roll_sound.gd" id="4"] +[ext_resource type="AudioStream" uid="uid://b7ga03rbxi6qs" path="res://assets/sounds/hit.wav" id="5"] +[ext_resource type="AudioStream" uid="uid://c44julexev4dj" path="res://assets/sounds/bomb.ogg" id="6"] -[ext_resource path="res://scripts/marble.gd" type="Script" id=1] -[ext_resource path="res://resources/materials/xray_marble.tres" type="Material" id=2] -[ext_resource path="res://assets/sounds/roll.wav" type="AudioStream" id=3] -[ext_resource path="res://scripts/roll_sound.gd" type="Script" id=4] -[ext_resource path="res://assets/sounds/hit.wav" type="AudioStream" id=5] -[ext_resource path="res://assets/sounds/bomb.ogg" type="AudioStream" id=6] -[ext_resource path="res://addons/lod/lod_spatial.gd" type="Script" id=7] - -[sub_resource type="SphereMesh" id=1] +[sub_resource type="SphereMesh" id="1"] radius = 0.3 height = 0.6 -[sub_resource type="SphereMesh" id=5] +[sub_resource type="SphereMesh" id="5"] radius = 0.3 height = 0.6 radial_segments = 32 rings = 16 -[sub_resource type="SphereMesh" id=4] +[sub_resource type="SphereMesh" id="4"] radius = 0.3 height = 0.6 radial_segments = 16 rings = 8 -[sub_resource type="SphereShape" id=3] +[sub_resource type="SphereShape3D" id="3"] radius = 0.3 -[node name="Marble" type="RigidBody"] +[node name="Marble" type="RigidBody3D" groups=["marbles"]] collision_layer = 4 -contacts_reported = 2 +max_contacts_reported = 10000 contact_monitor = true -script = ExtResource( 1 ) +script = ExtResource("1") -[node name="LODSpatial" type="Spatial" parent="."] -script = ExtResource( 7 ) -lod_0_max_distance = 5.0 +[node name="LODSpatial" type="Node3D" parent="."] +script = ExtResource("2_5e2c6") -[node name="Ball-0" type="MeshInstance" parent="LODSpatial"] -mesh = SubResource( 1 ) +[node name="Ball-0" type="MeshInstance3D" parent="LODSpatial"] +mesh = SubResource("1") skeleton = NodePath("../..") -material/0 = ExtResource( 2 ) +surface_material_override/0 = ExtResource("2") -[node name="Ball-1" type="MeshInstance" parent="LODSpatial"] +[node name="Ball-1" type="MeshInstance3D" parent="LODSpatial"] visible = false -mesh = SubResource( 5 ) +mesh = SubResource("5") skeleton = NodePath("../..") -material/0 = ExtResource( 2 ) +surface_material_override/0 = ExtResource("2") -[node name="Ball-2" type="MeshInstance" parent="LODSpatial"] +[node name="Ball-2" type="MeshInstance3D" parent="LODSpatial"] visible = false -mesh = SubResource( 4 ) +mesh = SubResource("4") skeleton = NodePath("../..") -material/0 = ExtResource( 2 ) +surface_material_override/0 = ExtResource("2") -[node name="CollisionShape" type="CollisionShape" parent="."] -shape = SubResource( 3 ) +[node name="CollisionShape" type="CollisionShape3D" parent="."] +shape = SubResource("3") [node name="RollSound" type="AudioStreamPlayer3D" parent="."] -stream = ExtResource( 3 ) +stream = ExtResource("3") unit_size = 3.0 attenuation_filter_cutoff_hz = 20500.0 -script = ExtResource( 4 ) +script = ExtResource("4") [node name="HitSound" type="AudioStreamPlayer3D" parent="RollSound"] -stream = ExtResource( 5 ) +stream = ExtResource("5") unit_size = 3.0 attenuation_filter_cutoff_hz = 20500.0 [node name="BombSound" type="AudioStreamPlayer3D" parent="."] unique_name_in_owner = true -stream = ExtResource( 6 ) -unit_db = 20.0 +stream = ExtResource("6") [node name="Name" type="Label3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0 ) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0) billboard = 1 no_depth_test = true text = "toto" @@ -87,12 +81,9 @@ uppercase = true [node name="Score" type="Label3D" parent="."] unique_name_in_owner = true -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -0.39882, 0.37798, 0 ) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.39882, 0.37798, 0) visible = false billboard = 1 no_depth_test = true text = "0" uppercase = true - -[connection signal="body_entered" from="." to="RollSound" method="_on_Marble_body_entered"] -[connection signal="body_exited" from="." to="RollSound" method="_on_Marble_body_exited"] diff --git a/scenes/race.tscn b/scenes/race.tscn index b775bb6..1195526 100644 --- a/scenes/race.tscn +++ b/scenes/race.tscn @@ -1,13 +1,11 @@ -; SPDX-FileCopyrightText: 2023 Florian Vazelle -; -; SPDX-License-Identifier: MIT +[gd_scene load_steps=3 format=3 uid="uid://b8obdevmnmamd"] -[gd_scene load_steps=2 format=2] +[ext_resource type="Script" path="res://scripts/race.gd" id="1"] -[ext_resource path="res://scripts/race.gd" type="Script" id=1] +[sub_resource type="Curve3D" id="Curve3D_gm3tl"] -[node name="Race" type="Spatial"] -script = ExtResource( 1 ) +[node name="Race" type="Node3D"] +script = ExtResource("1") -[node name="Path" type="Path" parent="."] -curve = null +[node name="Path" type="Path3D" parent="."] +curve = SubResource("Curve3D_gm3tl") diff --git a/scripts/blocks/bumper.gd b/scripts/blocks/bumper.gd index 6844bc7..2fd9542 100644 --- a/scripts/blocks/bumper.gd +++ b/scripts/blocks/bumper.gd @@ -1,19 +1,15 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name Bumper -extends Area +extends Area3D var Group := load("res://scripts/constants/groups.gd") -onready var _animation_player := get_node("%AnimationPlayer") as AnimationPlayer -onready var _bump_sound := get_node("%BumpSound") as AudioStreamPlayer3D +@onready var _animation_player := get_node(^"%AnimationPlayer") as AnimationPlayer +@onready var _bump_sound := get_node(^"%BumpSound") as AudioStreamPlayer3D -func _on_Area_body_entered(body: PhysicsBody) -> void: +func _on_Area_body_entered(body: PhysicsBody3D) -> void: if body.is_in_group(Group.MARBLES): - _animation_player.play("bump") + _animation_player.play(&"bump") body.apply_central_impulse(Vector3(0, 10, 0)) _bump_sound.play() diff --git a/scripts/blocks/checkpoint.gd b/scripts/blocks/checkpoint.gd index 2754ecf..fc159fd 100644 --- a/scripts/blocks/checkpoint.gd +++ b/scripts/blocks/checkpoint.gd @@ -1,24 +1,20 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name Checkpoint -extends Area +extends Area3D var Group := load("res://scripts/constants/groups.gd") -var _marbles: PoolStringArray = [] +var _marbles: PackedStringArray = [] func _ready() -> void: - connect("body_entered", self, "_on_EndArea_body_entered") + connect(&"body_entered", _on_EndArea_body_entered) -func _on_EndArea_body_entered(body: PhysicsBody) -> void: +func _on_EndArea_body_entered(body: PhysicsBody3D) -> void: # If a marble collide if body.is_in_group(Group.MARBLES): - var marble_name = body.get_name() + var marble_name = body.get_marble_name() if not _marbles.has(marble_name): _marbles.push_back(marble_name) body.incr_checkpoint_count() diff --git a/scripts/blocks/finish_line.gd b/scripts/blocks/finish_line.gd index 09be898..d8451f9 100644 --- a/scripts/blocks/finish_line.gd +++ b/scripts/blocks/finish_line.gd @@ -1,17 +1,13 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name FinishLine -extends Area +extends Area3D var Group := load("res://scripts/constants/groups.gd") -onready var _player := get_node("%Sound") as AudioStreamPlayer3D +@onready var _player := get_node(^"%Sound") as AudioStreamPlayer3D -func _on_Area_body_entered(body: PhysicsBody) -> void: +func _on_Area_body_entered(body: PhysicsBody3D) -> void: # If a marble collide if body.is_in_group(Group.MARBLES): # Play the final sound diff --git a/scripts/blocks/piece.gd b/scripts/blocks/piece.gd index fd092ec..00c9e52 100644 --- a/scripts/blocks/piece.gd +++ b/scripts/blocks/piece.gd @@ -1,22 +1,18 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - -tool +@tool class_name Piece -extends StaticBody +extends StaticBody3D const CollisionLayers := preload("res://scripts/constants/collision_layers.gd") const DefaultPieceMaterial := preload("res://resources/materials/piece.tres") -export var empty_material_override := false +@export var empty_material_override := false var Group := load("res://scripts/constants/groups.gd") -onready var _begin_area := get_node("%BeginArea") as Area -onready var _end_area := get_node("%EndArea") as Area +@onready var _begin_area := get_node(^"%BeginArea") as Area3D +@onready var _end_area := get_node(^"%EndArea") as Area3D func _init() -> void: @@ -26,8 +22,13 @@ func _init() -> void: func _ready() -> void: # Setup collision layers collision_layer = 1 << CollisionLayers.PROPS + collision_mask = 0 + _begin_area.collision_layer = 1 << CollisionLayers.CONNECTION_AREAS - _end_area.collision_layer = 1 << CollisionLayers.CONNECTION_AREAS | 1 << CollisionLayers.PROPS + _begin_area.collision_mask = 1 << CollisionLayers.MARBLES + + _end_area.collision_layer = 1 << CollisionLayers.CONNECTION_AREAS + _end_area.collision_mask = 1 << CollisionLayers.MARBLES set_material() @@ -40,13 +41,13 @@ func set_material() -> void: for i in get_child_count(): var child = get_child(i) - if child is MeshInstance: + if child is MeshInstance3D: child.material_override = mat -func get_begin() -> Area: +func get_begin() -> Area3D: return _begin_area -func get_end() -> Area: +func get_end() -> Area3D: return _end_area diff --git a/scripts/camera/cinematic_camera.gd b/scripts/camera/cinematic_camera.gd index 3e73b35..c8a9c7b 100644 --- a/scripts/camera/cinematic_camera.gd +++ b/scripts/camera/cinematic_camera.gd @@ -1,14 +1,10 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name CinematicCamera -extends Spatial +extends Node3D const AVG_AMOUNT := 16 -var _target: Spatial = null +var _target: Node3D = null var _prev_pos := Vector3.ZERO var _prev_up := Vector3.UP var _curve: Curve3D @@ -18,10 +14,10 @@ func set_curve(curve: Curve3D) -> void: _curve = curve -func set_target(target: Spatial) -> void: +func set_target(target: Node3D) -> void: _target = target if _target != null: - translation = _target.translation + Vector3(0.1, 1, 0.1) + position = _target.position + Vector3(0.1, 1, 0.1) set_physics_process(_target != null) @@ -29,7 +25,7 @@ func has_target() -> bool: return _target != null and is_instance_valid(_target) -func get_target() -> Spatial: +func get_target() -> Node3D: return _target @@ -42,6 +38,6 @@ func _physics_process(delta: float) -> void: func process_ccd(delta: float) -> void: - var target_pos = _target.global_translation - translation = lerp(translation, _curve.get_closest_point(target_pos), 5 * delta) + var target_pos = _target.global_position + position = lerp(position, _curve.get_closest_point(target_pos), 5 * delta) look_at(target_pos, Vector3.UP) diff --git a/scripts/camera/marble_camera.gd b/scripts/camera/marble_camera.gd index bb6c124..241fbdf 100644 --- a/scripts/camera/marble_camera.gd +++ b/scripts/camera/marble_camera.gd @@ -1,22 +1,16 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name MarbleCamera -extends Spatial +extends Node3D const AVG_AMOUNT := 16 -var _target: Spatial = null -var _prev_pos := Vector3.ZERO -var _prev_up := Vector3.UP +var _target: Node3D = null -func set_target(target: Spatial) -> void: +func set_target(target: Node3D) -> void: _target = target if _target != null: - translation = _target.translation + Vector3(0.1, 1, 0.1) + position = _target.position + Vector3(0.1, 1, 0.1) set_physics_process(_target != null) @@ -24,7 +18,7 @@ func has_target() -> bool: return _target != null and is_instance_valid(_target) -func get_target() -> Spatial: +func get_target() -> Node3D: return _target @@ -38,10 +32,10 @@ func _physics_process(_delta: float) -> void: func process_ccd() -> void: var distance := 4.0 - var target_pos = _target.translation + var target_pos = _target.position var normal = Vector3.UP look_at(target_pos, normal) var forward = -transform.basis.z - var d = target_pos.distance_to(translation) + var d = target_pos.distance_to(position) if d > distance: - translation = target_pos - forward * distance + position = target_pos - forward * distance diff --git a/scripts/camera/rotation_camera.gd b/scripts/camera/rotation_camera.gd index ac3b7a7..db80ad1 100644 --- a/scripts/camera/rotation_camera.gd +++ b/scripts/camera/rotation_camera.gd @@ -1,18 +1,14 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name RotationCamera -extends Spatial +extends Node3D const RADIUS := 50.0 -export var rotation_speed := 0.5 +@export var rotation_speed := 0.5 var _current_angle := 0.0 -onready var _camera := get_node("%Camera") as Camera +@onready var _camera := get_node(^"%Camera") as Camera3D func _process(delta: float) -> void: diff --git a/scripts/camera/spectator_camera.gd b/scripts/camera/spectator_camera.gd index e0f8243..e9c7072 100644 --- a/scripts/camera/spectator_camera.gd +++ b/scripts/camera/spectator_camera.gd @@ -1,14 +1,10 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name SpectatorCamera -extends Spatial +extends Node3D -export var speed := 10.0 +@export var speed := 10.0 -onready var _camera := get_node("%Camera") as Camera +@onready var _camera := get_node(^"%Camera") as Camera3D func _physics_process(delta: float) -> void: diff --git a/scripts/constants/collision_layers.gd b/scripts/constants/collision_layers.gd index f8551d4..ec49a83 100644 --- a/scripts/constants/collision_layers.gd +++ b/scripts/constants/collision_layers.gd @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - const PROPS := 0 const CONNECTION_AREAS := 1 const MARBLES := 2 diff --git a/scripts/constants/groups.gd b/scripts/constants/groups.gd index e8d41bc..17c32bd 100644 --- a/scripts/constants/groups.gd +++ b/scripts/constants/groups.gd @@ -1,6 +1,2 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - -const MARBLES := "marbles" -const PIECES := "pieces" +const MARBLES := &"marbles" +const PIECES := &"pieces" diff --git a/scripts/constants/piece_list.gd b/scripts/constants/piece_list.gd index cecb27a..e0df0fb 100644 --- a/scripts/constants/piece_list.gd +++ b/scripts/constants/piece_list.gd @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - const FORWARD := 1 const TURN_LEFT := 2 const TURN_RIGHT := 3 @@ -9,50 +5,53 @@ const TURN_RIGHT := 3 const PIECES := [ # forward { - "resource": preload("res://scenes/blocks/forward_down.tscn"), - "next_piece_orientation": FORWARD + &"resource": preload("res://scenes/blocks/forward_down.tscn"), + &"next_piece_orientation": FORWARD }, # {"resource": preload("res://scenes/blocks/forward.tscn"), "next_piece_orientation": FORWARD}, # {"resource": preload("res://scenes/blocks/forward_up.tscn"), "next_piece_orientation": FORWARD}, # turn { - "resource": preload("res://scenes/blocks/turn_left_covered.tscn"), - "next_piece_orientation": TURN_LEFT + &"resource": preload("res://scenes/blocks/turn_left_covered.tscn"), + &"next_piece_orientation": TURN_LEFT }, { - "resource": preload("res://scenes/blocks/turn_left_2.tscn"), - "next_piece_orientation": TURN_LEFT + &"resource": preload("res://scenes/blocks/turn_left_2.tscn"), + &"next_piece_orientation": TURN_LEFT }, { - "resource": preload("res://scenes/blocks/turn_left_3.tscn"), - "next_piece_orientation": TURN_LEFT + &"resource": preload("res://scenes/blocks/turn_left_3.tscn"), + &"next_piece_orientation": TURN_LEFT }, { - "resource": preload("res://scenes/blocks/turn_right_covered.tscn"), - "next_piece_orientation": TURN_RIGHT + &"resource": preload("res://scenes/blocks/turn_right_covered.tscn"), + &"next_piece_orientation": TURN_RIGHT }, { - "resource": preload("res://scenes/blocks/turn_right_2.tscn"), - "next_piece_orientation": TURN_RIGHT + &"resource": preload("res://scenes/blocks/turn_right_2.tscn"), + &"next_piece_orientation": TURN_RIGHT }, { - "resource": preload("res://scenes/blocks/turn_right_3.tscn"), - "next_piece_orientation": TURN_RIGHT + &"resource": preload("res://scenes/blocks/turn_right_3.tscn"), + &"next_piece_orientation": TURN_RIGHT }, # hopper - {"resource": preload("res://scenes/blocks/hopper.tscn"), "next_piece_orientation": FORWARD}, - {"resource": preload("res://scenes/blocks/hopper2.tscn"), "next_piece_orientation": FORWARD}, - {"resource": preload("res://scenes/blocks/hopper3.tscn"), "next_piece_orientation": FORWARD}, + {&"resource": preload("res://scenes/blocks/hopper.tscn"), &"next_piece_orientation": FORWARD}, + {&"resource": preload("res://scenes/blocks/hopper2.tscn"), &"next_piece_orientation": FORWARD}, + {&"resource": preload("res://scenes/blocks/hopper3.tscn"), &"next_piece_orientation": FORWARD}, # other # {"resource": preload("res://scenes/blocks/looping.tscn"), "next_piece_orientation": FORWARD}, # { # "resource": preload("res://scenes/blocks/tube_vertical_to_horizontal.tscn"), # "next_piece_orientation": FORWARD # }, - {"resource": preload("res://scenes/blocks/bumper.tscn"), "next_piece_orientation": FORWARD}, - {"resource": preload("res://scenes/blocks/start_line.tscn"), "next_piece_orientation": FORWARD}, + {&"resource": preload("res://scenes/blocks/bumper.tscn"), &"next_piece_orientation": FORWARD}, + { + &"resource": preload("res://scenes/blocks/start_line.tscn"), + &"next_piece_orientation": FORWARD + }, { - "resource": preload("res://scenes/blocks/finish_line.tscn"), - "next_piece_orientation": FORWARD + &"resource": preload("res://scenes/blocks/finish_line.tscn"), + &"next_piece_orientation": FORWARD }, ] diff --git a/scripts/framework/settings_manager.gd b/scripts/framework/settings_manager.gd index 50c54c9..b4b8904 100644 --- a/scripts/framework/settings_manager.gd +++ b/scripts/framework/settings_manager.gd @@ -1,9 +1,5 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - # Helps with handling Godot Engine settings relevant to GOAT. -tool +@tool extends Node @@ -13,9 +9,9 @@ const SETTINGS_FILE_NAME := "user://settings.cfg" # Each entry contains: section name, key name, default value var default_values := [ - ["marbles", "marble_names", ""], - ["marbles", "collision_enabled", true], - ["marbles", "explosion_enabled", false], + [&"marbles", &"marble_names", ""], + [&"marbles", &"collision_enabled", true], + [&"marbles", &"explosion_enabled", false], ] # If enabled, settings will be saved to file when changed @@ -41,19 +37,19 @@ func _ready(): _settings_file.save(SETTINGS_FILE_NAME) -func get_value(section: String, key: String): +func get_value(section: StringName, key: StringName): var value = _settings_file.get_value(section, key) assert(value != null) return value -func set_value(section: String, key: String, value) -> void: +func set_value(section: StringName, key: StringName, value) -> void: var previous_value = _settings_file.get_value(section, key) if previous_value != value: _settings_file.set_value(section, key, value) if autosave: _settings_file.save(SETTINGS_FILE_NAME) - emit_signal("value_changed", section, key) + emit_signal(&"value_changed", section, key) emit_signal("value_changed_{}_{}".format([section, key], "{}")) @@ -68,7 +64,7 @@ func find_matching_loaded_locale() -> String: """ var current_locale = TranslationServer.get_locale() var loaded_locales = TranslationServer.get_loaded_locales() - var fallback_locale = ProjectSettings.get("locale/fallback") + var fallback_locale = ProjectSettings.get(&"locale/fallback") # If no translations are provided, return "" if not loaded_locales: @@ -85,5 +81,5 @@ func find_matching_loaded_locale() -> String: if locale.substr(0, 2) == loaded_locale.substr(0, 2): return loaded_locale - # If nothing matches, return first provided translation + # If nothing matches, return first provided position return loaded_locales[0] diff --git a/scripts/gui/build_info.gd b/scripts/gui/build_info.gd index 903da0d..a2d8152 100644 --- a/scripts/gui/build_info.gd +++ b/scripts/gui/build_info.gd @@ -1,8 +1,4 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - -tool +@tool extends Label diff --git a/scripts/gui/countdown.gd b/scripts/gui/countdown.gd index 92a8669..f1f25a2 100644 --- a/scripts/gui/countdown.gd +++ b/scripts/gui/countdown.gd @@ -1,18 +1,8 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - extends Control -signal start - -onready var _label_timer = get_node("%LabelTimer") -onready var _countdown_1 = get_node("Countdown1") -onready var _countdown_2 = get_node("Countdown2") - - -func _ready(): - hide() +@onready var _label_timer = get_node(^"%LabelTimer") +@onready var _countdown_1 = get_node(^"Countdown1") +@onready var _countdown_2 = get_node(^"Countdown2") func start(): @@ -21,19 +11,18 @@ func start(): _countdown_1.play() _label_timer.set_text("3") - yield(get_tree().create_timer(1.0), "timeout") + await get_tree().create_timer(1.0).timeout _countdown_1.play() _label_timer.set_text("2") - yield(get_tree().create_timer(1.0), "timeout") + await get_tree().create_timer(1.0).timeout _countdown_1.play() _label_timer.set_text("1") - yield(get_tree().create_timer(1.0), "timeout") + await get_tree().create_timer(1.0).timeout _countdown_2.play() _label_timer.set_text("start") - emit_signal("start") - yield(get_tree().create_timer(1.0), "timeout") + await get_tree().create_timer(1.0).timeout hide() diff --git a/scripts/gui/menu.gd b/scripts/gui/menu.gd index 32812ec..377c371 100644 --- a/scripts/gui/menu.gd +++ b/scripts/gui/menu.gd @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name Menu extends Control @@ -13,19 +9,19 @@ var _mode: int = State.MODE_START var _last_action: int = Action.ACTION_NOOP var _is_web_export := false -onready var _open_sound := get_node("%OpenSound") as AudioStreamPlayer -onready var _input := get_node("%Input") as LineEdit -onready var _start_button := get_node("%StartMenu") as Control -onready var _pause_menu := get_node("%PauseMenu") as Control -onready var _quit_button := _start_button.get_node("VBoxContainer/QuitButton") as Button -onready var _collision_toggle := get_node("%CollisionToggle") as CheckButton -onready var _explosion_toggle := get_node("%ExplosionToggle") as CheckButton +@onready var _open_sound := get_node(^"%OpenSound") as AudioStreamPlayer +@onready var _input := get_node(^"%Input") as LineEdit +@onready var _start_button := get_node(^"%StartMenu") as Control +@onready var _pause_menu := get_node(^"%PauseMenu") as Control +@onready var _quit_button := _start_button.get_node(^"VBoxContainer/QuitButton") as Button +@onready var _collision_toggle := get_node(^"%CollisionToggle") as CheckButton +@onready var _explosion_toggle := get_node(^"%ExplosionToggle") as CheckButton func _ready() -> void: - _input.set_text(SettingsManager.get_value("marbles", "marble_names")) - _collision_toggle.pressed = SettingsManager.get_value("marbles", "collision_enabled") - _explosion_toggle.pressed = SettingsManager.get_value("marbles", "explosion_enabled") + _input.set_text(SettingsManager.get_value(&"marbles", &"marble_names")) + _collision_toggle.button_pressed = SettingsManager.get_value(&"marbles", &"collision_enabled") + _explosion_toggle.button_pressed = SettingsManager.get_value(&"marbles", &"explosion_enabled") _is_web_export = OS.get_name() == "HTML5" set_mode(_mode) @@ -50,27 +46,27 @@ func _on_QuitButton_pressed() -> void: func _on_CollisionToggle_toggled(pressed: bool): - _collision_toggle.pressed = pressed - SettingsManager.set_value("marbles", "collision_enabled", pressed) + _collision_toggle.button_pressed = pressed + SettingsManager.set_value(&"marbles", &"collision_enabled", pressed) func _on_ExplosionToggle_toggled(pressed: bool): - _explosion_toggle.pressed = pressed - SettingsManager.set_value("marbles", "explosion_enabled", pressed) + _explosion_toggle.button_pressed = pressed + SettingsManager.set_value(&"marbles", &"explosion_enabled", pressed) func _notification(what: int) -> void: match what: NOTIFICATION_VISIBILITY_CHANGED: - if visible: + if visible and _open_sound: _open_sound.play() -func get_names() -> PoolStringArray: +func get_names() -> PackedStringArray: var input_text = _input.get_text() if input_text: return input_text.split(",") - return PoolStringArray() + return PackedStringArray() func set_mode(mode: int) -> void: @@ -122,4 +118,4 @@ func is_quit() -> bool: func _on_Input_text_changed(new_text): - SettingsManager.set_value("marbles", "marble_names", new_text) + SettingsManager.set_value(&"marbles", &"marble_names", new_text) diff --git a/scripts/gui/overlay.gd b/scripts/gui/overlay.gd index 0bf5c83..aaadf58 100644 --- a/scripts/gui/overlay.gd +++ b/scripts/gui/overlay.gd @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name Overlay extends Control @@ -10,8 +6,8 @@ const Participant := preload("res://scenes/gui/participant.tscn") var Group := load("res://scripts/constants/groups.gd") -onready var _ranking := get_node("%Ranking") as Ranking -onready var _marble_pool = get_tree().get_nodes_in_group("marble_pool")[0] +@onready var _ranking := get_node(^"%Ranking") as Ranking +@onready var _marble_pool = get_tree().get_nodes_in_group(&"marble_pool")[0] func _process(_delta): @@ -23,14 +19,15 @@ func _process(_delta): func add_marble_rank(marble: Marble) -> void: # Add the marble to the list of participants - var participant = Participant.instance() + var participant = Participant.instantiate() participant.set_marble(marble) _ranking.add_child(participant) _ranking.add_child(HSeparator.new()) func reset() -> void: - _ranking.reset() + if _ranking: + _ranking.reset() func _notification(what: int) -> void: diff --git a/scripts/gui/participant.gd b/scripts/gui/participant.gd index 1debda4..217ad0f 100644 --- a/scripts/gui/participant.gd +++ b/scripts/gui/participant.gd @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name Participant extends HBoxContainer @@ -16,18 +12,18 @@ var Group := load("res://scripts/constants/groups.gd") var _marble: Marble = null var _last_rank := -1 -onready var _rank_label := get_node("%Rank") as Label -onready var _name_label := get_node("%Name") as Label -onready var _state := get_node("%State") as NinePatchRect +@onready var _rank_label := get_node(^"%Rank") as Label +@onready var _name_label := get_node(^"%Name") as Label +@onready var _state := get_node(^"%State") as NinePatchRect func _ready() -> void: - _name_label.set_text(_marble.get_name().to_upper()) + _name_label.set_text(_marble.get_marble_name().to_upper()) func set_rank(rank: int) -> void: _last_rank = rank - _rank_label.set_text(String(rank)) + _rank_label.set_text(String.num_int64(rank)) if _marble.has_finish(): if rank == 1: diff --git a/scripts/gui/ranking.gd b/scripts/gui/ranking.gd index 108a8d6..90695ce 100644 --- a/scripts/gui/ranking.gd +++ b/scripts/gui/ranking.gd @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - # List of participants, which is updated every frame until the end of the race class_name Ranking @@ -19,7 +15,7 @@ func update() -> void: if child is Participant: arr.append(child) - arr.sort_custom(self, "more_checkpoint") + arr.sort_custom(more_checkpoint) if len(arr) > 0: _first_marble = arr[0].get_marble() @@ -63,4 +59,4 @@ func more_checkpoint(a: Participant, b: Participant) -> bool: func reset() -> void: for child in get_children(): - child.call_deferred("queue_free") + child.call_deferred(&"queue_free") diff --git a/scripts/gui/transition.gd b/scripts/gui/transition.gd index 3646eec..093a0fd 100644 --- a/scripts/gui/transition.gd +++ b/scripts/gui/transition.gd @@ -1,21 +1,15 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - extends ColorRect -onready var tween := get_node("Tween") as Tween - - -func show(): - tween.interpolate_property( - material, "shader_param/progress", 0, 1, 1.5, Tween.TRANS_CUBIC, Tween.EASE_OUT - ) - tween.start() - - -func hide(): - tween.interpolate_property( - material, "shader_param/progress", 1, 0, 1.5, Tween.TRANS_CUBIC, Tween.EASE_OUT - ) - tween.start() +# +#func show() -> void: +# var tween: Tween = get_tree().create_tween() +# tween.interpolate_property( +# material, "shader_param/progress", 0, 1, 1.5, Tween.TRANS_CUBIC, Tween.EASE_OUT +# ) +# +# +#func hide() -> void: +# var tween: Tween = get_tree().create_tween() +# tween.interpolate_property( +# material, "shader_param/progress", 1, 0, 1.5, Tween.TRANS_CUBIC, Tween.EASE_OUT +# ) diff --git a/scripts/lod/lod_particles.gd b/scripts/lod/lod_particles.gd new file mode 100644 index 0000000..7a8d7fc --- /dev/null +++ b/scripts/lod/lod_particles.gd @@ -0,0 +1,51 @@ +class_name LODParticles +extends GPUParticles3D + +# If `false`, LOD won't update anymore. This can be used for performance comparison +# purposes. +@export var enable_lod := true + +# The maximum particle emitting distance in units. +# Past this distance, particles will no longer emit. +@export_range(0.0, 1000.0, 0.1) var max_emit_distance := 50 + +# The rate at which LODs will be updated (in seconds). Lower values are more reactive +# but use more CPU, which is especially noticeable with large amounts of LOD-enabled nodes. +# Set this accordingly depending on your camera movement speed. +# The default value should suit most projects already. +# Note: Slow cameras don't need to have LOD-enabled objects update their status often. +# This can overridden by setting the project setting `lod/_refresh_rate`. +var _refresh_rate := 0.25 + +# The internal refresh timer. +var _timer := 0.0 + + +func _ready() -> void: + if ProjectSettings.has_setting("lod/_refresh_rate"): + _refresh_rate = ProjectSettings.get_setting("lod/_refresh_rate") + + # Add random jitter to the timer to ensure LODs don't all swap at the same time. + randomize() + _timer += randf_range(0, _refresh_rate) + + +# Despite LOD not being related to physics, we chose to run in `_physics_process()` +# to minimize the amount of method calls per second (and therefore decrease CPU usage). +func _physics_process(delta: float) -> void: + if not enable_lod: + return + + # We need a camera to do the rest. + var camera := get_viewport().get_camera_3d() as Camera3D + if camera == null: + return + + if _timer <= _refresh_rate: + _timer += delta + return + + _timer = 0.0 + + var distance := camera.global_transform.origin.distance_to(global_transform.origin) + lod_bias + emitting = distance < max_emit_distance diff --git a/addons/lod/lod_spatial.gd b/scripts/lod/lod_spatial.gd similarity index 69% rename from addons/lod/lod_spatial.gd rename to scripts/lod/lod_spatial.gd index 3919391..03ad58b 100644 --- a/addons/lod/lod_spatial.gd +++ b/scripts/lod/lod_spatial.gd @@ -1,25 +1,19 @@ -# SPDX-FileCopyrightText: 2020 Hugo Locurcio and contributors -# -# SPDX-License-Identifier: MIT -# -# Source: https://github.com/godot-extended-libraries/godot-lod - +class_name LODSpatial extends Spatial -class_name LODSpatial, "lod_spatial.svg" # If `false`, LOD won't update anymore. This can be used for performance comparison # purposes. -export var enable_lod := true +@export var enable_lod := true # The maximum LOD 0 (high quality) distance in units. -export(float, 0.0, 1000.0, 0.1) var lod_0_max_distance := 10 +@export_range(0.0, 1000.0, 0.1) var lod_0_max_distance := 10 # The maximum LOD 1 (medium quality) distance in units. -export(float, 0.0, 1000.0, 0.1) var lod_1_max_distance := 25 +@export_range(0.0, 1000.0, 0.1) var lod_1_max_distance := 25 # The maximum LOD 2 (low quality) distance in units. # Past this distance, all LOD variants are hidden. -export(float, 0.0, 1000.0, 0.1) var lod_2_max_distance := 100 +@export_range(0.0, 1000.0, 0.1) var lod_2_max_distance := 100 # The rate at which LODs will be updated (in seconds). Lower values are more reactive # but use more CPU, which is especially noticeable with large amounts of LOD-enabled nodes. @@ -27,27 +21,27 @@ export(float, 0.0, 1000.0, 0.1) var lod_2_max_distance := 100 # The default value should suit most projects already. # Note: Slow cameras don't need to have LOD-enabled objects update their status often. # This can overridden by setting the project setting `lod/refresh_rate`. -var refresh_rate := 0.25 +var _refresh_rate := 0.25 # The LOD bias in units. # Positive values will decrease the detail level and improve performance. # Negative values will improve visual appearance at the cost of performance. # This can overridden by setting the project setting `lod/bias`. -var lod_bias := 0.0 +var _lod_bias := 0.0 # The internal refresh timer. -var timer := 0.0 +var _timer := 0.0 func _ready() -> void: - if ProjectSettings.has_setting("lod/spatial_bias"): - lod_bias = ProjectSettings.get_setting("lod/spatial_bias") - if ProjectSettings.has_setting("lod/refresh_rate"): - refresh_rate = ProjectSettings.get_setting("lod/refresh_rate") + if ProjectSettings.has_setting(&"lod/spatial_bias"): + _lod_bias = ProjectSettings.get_setting(&"lod/spatial_bias") + if ProjectSettings.has_setting(&"lod/refresh_rate"): + _refresh_rate = ProjectSettings.get_setting(&"lod/refresh_rate") # Add random jitter to the timer to ensure LODs don't all swap at the same time. randomize() - timer += rand_range(0, refresh_rate) + _timer += rand_range(0, _refresh_rate) # Despite LOD not being related to physics, we chose to run in `_physics_process()` @@ -57,17 +51,17 @@ func _physics_process(delta: float) -> void: return # We need a camera to do the rest. - var camera := get_viewport().get_camera() + var camera := get_viewport().get_camera_3d() if camera == null: return - if timer <= refresh_rate: - timer += delta + if _timer <= _refresh_rate: + _timer += delta return - timer = 0.0 + _timer = 0.0 - var distance := camera.global_transform.origin.distance_to(global_transform.origin) + lod_bias + var distance := camera.global_transform.origin.distance_to(global_transform.origin) + _lod_bias # The LOD level to choose (lower is more detailed). var lod: int if distance < lod_0_max_distance: @@ -82,7 +76,7 @@ func _physics_process(delta: float) -> void: for node in get_children(): # `-lod` also matches `-lod0`, `-lod1`, `-lod2`, … - if node.has_method("set_visible"): + if node.has_method(&"set_visible"): if "-lod0" in node.name: node.visible = lod == 0 if "-lod1" in node.name: diff --git a/scripts/main.gd b/scripts/main.gd index 6d7c10f..9a42f7a 100644 --- a/scripts/main.gd +++ b/scripts/main.gd @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name Main extends Node @@ -30,25 +26,22 @@ var _race_has_started := false # TODO : remove this limit var _positions := [] -onready var _pause_menu := get_node("%Menu") as Menu -onready var _race := get_node("%Race") as Race -onready var _overlay := get_node("%Overlay") as Overlay -onready var _marble_pool := get_node("%MarblePool") as Spatial -onready var _timer := get_node("%Timer") as Timer -onready var _ranking := get_tree().get_nodes_in_group("Ranking")[0] as Ranking -onready var _explosion := get_node("%Explosion") as Particles -onready var _marbles = _marble_pool.get_children() -onready var _panel_timer := _overlay.get_node("Panel2") as ColorRect -onready var _label_timer = _overlay.get_node("Panel2/CenterContainer3/VBoxContainer/LabelTimer") -onready var _transition := get_node("%Transition/ColorRect") as ColorRect -onready var _countdown := get_node("%Countdown") +@onready var _pause_menu := get_node(^"%Menu") as Menu +@onready var _race := get_node(^"%Race") as Race +@onready var _overlay := get_node(^"%Overlay") as Overlay +@onready var _marble_pool := get_node(^"%MarblePool") as Node3D +@onready var _timer := get_node(^"%Timer") as Timer +@onready var _ranking := get_tree().get_nodes_in_group(&"Ranking")[0] as Ranking +@onready var _explosion := get_node(^"%Explosion") as GPUParticles3D +@onready var _marbles = _marble_pool.get_children() +@onready var _panel_timer := _overlay.get_node(^"Panel2") as ColorRect +@onready var _label_timer = _overlay.get_node(^"Panel2/CenterContainer3/VBoxContainer/LabelTimer") +@onready var _countdown := get_node(^"%Countdown") func _ready() -> void: - _countdown.connect("start", self, "_start_race") - - _rotation_camera = RotationCamera.instance() - _cinematic_camera = CinematicCamera.instance() + _rotation_camera = RotationCamera.instantiate() + _cinematic_camera = CinematicCamera.instantiate() reset_position() @@ -65,7 +58,7 @@ func _exit_tree(): func _unhandled_input(event): if event is InputEventKey: if event.pressed: - match event.scancode: + match event.keycode: KEY_TAB: if _mode == State.MODE_MARBLE: var visible_marbles := [] @@ -93,10 +86,8 @@ func _unhandled_input(event): # Debug command to spawn a new marble KEY_T: if _mode == State.MODE_MARBLE: - var marbles = _marble_pool.get_children() - var all_marble_has_finish = true - for marble in marbles: + for marble in _marbles: all_marble_has_finish = marble.has_finish() if not all_marble_has_finish: break @@ -107,18 +98,18 @@ func _unhandled_input(event): var marble = try_place_start_marble() if marble != null: - marble.set_name(NameGenerator.generate()) + marble.set_marble_name(NameGenerator.generate()) _overlay.add_marble_rank(marble) # Debug command to generate a new race KEY_R: if _mode == State.MODE_MARBLE: - _race.call_deferred("generate_race", !_explosion_enabled) + _race.call_deferred(&"generate_race", !_explosion_enabled) KEY_SPACE: for marble in _marbles: - var marble_name = marble.get_name().to_lower() - if marble_name == "maxime" or marble_name == "max": + var marble_name = marble.get_marble_name().to_lower() + if marble_name == &"maxime" or marble_name == &"max": marble.set_linear_velocity(-marble.linear_velocity * 2) break @@ -139,10 +130,9 @@ func try_place_start_marble() -> Marble: return null randomize() var position = _positions.pop_at(randi() % len(_positions)) - var marbles = _marble_pool.get_children() var new_marble = null - for marble in marbles: + for marble in _marbles: if not marble.visible: new_marble = marble break @@ -150,9 +140,9 @@ func try_place_start_marble() -> Marble: if new_marble == null: return null - new_marble.translation = ( - piece.translation - + Vector3.UP * 5.0 + new_marble.position = ( + piece.position + + Vector3.UP * 5 + Vector3.FORWARD * (position[0] - 3) + Vector3.RIGHT * (position[1] - 1) ) @@ -166,7 +156,7 @@ func get_highest_piece() -> Piece: return null var highest_piece = pieces[0] for piece in pieces: - if piece.translation.y > highest_piece.translation.y: + if piece.position.y > highest_piece.position.y: highest_piece = piece return highest_piece @@ -183,20 +173,14 @@ func replace_camera(new_camera, old_cameras) -> void: func set_mode(mode): var start_a_new_race = false - var marbles = _marble_pool.get_children() - var marble_count = 0 - for marble in marbles: - if marble.visible: - marble_count += 1 if mode != _mode: if _mode == State.MODE_PAUSE or _mode == State.MODE_START: # For each start action, delete all marbles if _pause_menu.is_start() or _pause_menu.is_quit(): start_a_new_race = true - for marble in marbles: + for marble in _marbles: marble.pause() - marble_count = 0 # Ensure timer is reset _race_has_started = false @@ -212,11 +196,10 @@ func set_mode(mode): if _mode == State.MODE_MARBLE: # If no marbles exists if start_a_new_race: - _transition.show() - yield(_transition.tween, "tween_completed") + await Fade.fade_out(1, Color.BLACK, "Diamond", false, false).finished - _explosion_enabled = SettingsManager.get_value("marbles", "explosion_enabled") as bool - _race.call_deferred("generate_race", !_explosion_enabled) + _explosion_enabled = SettingsManager.get_value(&"marbles", &"explosion_enabled") as bool + _race.call_deferred(&"generate_race", !_explosion_enabled) _overlay.reset() reset_position() @@ -225,8 +208,7 @@ func set_mode(mode): _overlay.show() # Put the camera at the right place for the start -# _cinematic_camera.set_curve(_race._curve) - replace_camera(_cinematic_camera, [_rotation_camera]) + replace_camera(_rotation_camera, [_cinematic_camera]) var names = _pause_menu.get_names() if len(names) > 0: @@ -234,18 +216,24 @@ func set_mode(mode): get_tree().set_pause(true) # Create one marble for each name - for name in _pause_menu.get_names(): + for marble_name in _pause_menu.get_names(): var marble = try_place_start_marble() if marble == null: break - marble.set_name(name) + marble.set_marble_name(marble_name) _overlay.add_marble_rank(marble) _cinematic_camera.set_target(marble) - _transition.hide() - yield(_transition.tween, "tween_completed") + await Fade.fade_in(1, Color.BLACK, "Diamond", false, false).finished + await _countdown.start() - _countdown.start() + # Release SceneTree + get_tree().set_pause(false) + _timer.start() + _race_has_started = true + + # Put the camera at the right place for the start + replace_camera(_cinematic_camera, [_rotation_camera]) else: _overlay.show() @@ -262,13 +250,6 @@ func set_mode(mode): replace_camera(_rotation_camera, [_cinematic_camera]) -func _start_race(): - # Release SceneTree - get_tree().set_pause(false) - _timer.start() - _race_has_started = true - - static func remove_from_tree(node): node.get_parent().remove_child(node) @@ -278,7 +259,7 @@ func _process(delta): if _time > TIME_PERIOD: if _mode == State.MODE_START: - _race.call_deferred("generate_race", true) + _race.call_deferred(&"generate_race", true) # Reset timer _time = 0 @@ -297,7 +278,7 @@ func _process(delta): if !skip: _ranking._last_marble.explode() - _explosion.global_translation = _ranking._last_marble.global_translation + _explosion.global_position = _ranking._last_marble.global_position _explosion.set_emitting(true) if _ranking._first_marble: @@ -333,9 +314,8 @@ func _process(delta): func explosion_victory(_last_marble: Marble) -> bool: var marble_exploded_count := 0 var tmp_marble = null - var marbles = _marble_pool.get_children() - for marble in marbles: + for marble in _marbles: if !marble.has_explode() and marble.visible: marble_exploded_count += 1 if _last_marble != marble: diff --git a/scripts/marble.gd b/scripts/marble.gd index 5c6a7ad..6477486 100644 --- a/scripts/marble.gd +++ b/scripts/marble.gd @@ -1,10 +1,6 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name Marble -extends RigidBody +extends RigidBody3D enum State { PAUSED, ROLL, EXPLODED, FINISH, OOB } @@ -15,9 +11,9 @@ var Group = load("res://scripts/constants/groups.gd") var _state = State.PAUSED var _checkpoint_count := 0 -onready var _name := get_node("%Name") as Label3D -onready var _bomb_sound = get_node("%BombSound") -onready var _score = get_node("%Score") +@onready var _name := get_node(^"%Name") as Label3D +@onready var _bomb_sound = get_node(^"%BombSound") +@onready var _score = get_node(^"%Score") func _ready() -> void: @@ -27,15 +23,19 @@ func _ready() -> void: # Set material color var color = Color(randf(), randf(), randf()) - var x_ray_material = get_node("LODSpatial/Ball-0").get_active_material(0) - x_ray_material.set_albedo(color) - var toon_material = x_ray_material.get_next_pass() - toon_material.set_shader_param("albedo", color) - x_ray_material.set_next_pass(toon_material) - get_node("LODSpatial/Ball-0").set_surface_material(0, x_ray_material) + for i in range(3): + var x_ray_material: StandardMaterial3D = ( + get_node("LODSpatial/Ball-%d" % i).get_active_material(0) + ) + x_ray_material.set_albedo(color) + var toon_material: StandardMaterial3D = x_ray_material.get_next_pass() + toon_material.set_albedo(color) +# toon_material.set_shader_parameter(&"albedo", color) + x_ray_material.set_next_pass(toon_material) + get_node("LODSpatial/Ball-%d" % i).set_surface_override_material(0, x_ray_material) # Set collision mask - var collision_enabled = SettingsManager.get_value("marbles", "collision_enabled") as bool + var collision_enabled = SettingsManager.get_value(&"marbles", &"collision_enabled") as bool if collision_enabled: collision_mask = 1 << CollisionLayers.PROPS | 1 << CollisionLayers.MARBLES else: @@ -48,7 +48,7 @@ func _unhandled_input(event): if OS.is_debug_build(): if event is InputEventKey: if event.pressed: - match event.scancode: + match event.keycode: KEY_F1: if _score.visible: _score.hide() @@ -56,11 +56,11 @@ func _unhandled_input(event): _score.show() -func set_name(name: String) -> void: - _name.set_text(name) +func set_marble_name(marble_name: StringName) -> void: + _name.set_text(marble_name) -func get_name() -> String: +func get_marble_name() -> StringName: return _name.get_text() @@ -136,6 +136,7 @@ func _start() -> void: set_physics_process(true) set_sleeping(false) set_linear_velocity(Vector3.ZERO) + collision_layer = 1 << CollisionLayers.MARBLES func _stop() -> void: @@ -144,3 +145,4 @@ func _stop() -> void: set_physics_process(false) set_sleeping(true) set_linear_velocity(Vector3.ZERO) + collision_layer = 0 diff --git a/scripts/mouse_look.gd b/scripts/mouse_look.gd index 9d7ff84..f290857 100644 --- a/scripts/mouse_look.gd +++ b/scripts/mouse_look.gd @@ -1,16 +1,12 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name MouseLook -extends Spatial +extends Node3D -export var sensitivity := 0.4 -export var min_angle := -90 -export var max_angle := 90 -export var capture_mouse := true -export var distance := 5.0 +@export var sensitivity := 0.4 +@export var min_angle := -90 +@export var max_angle := 90 +@export var capture_mouse := true +@export var distance := 5.0 var _yaw := 0.0 var _pitch := 0.0 @@ -49,7 +45,7 @@ func _unhandled_input(event: InputEvent) -> void: func update_rotations() -> void: - set_translation(Vector3.ZERO) - set_rotation(Vector3(0, deg2rad(_yaw), 0)) - rotate(get_transform().basis.x.normalized(), -deg2rad(_pitch)) - set_translation(get_transform().basis.z * distance) + set_position(Vector3.ZERO) + set_rotation(Vector3(0, deg_to_rad(_yaw), 0)) + rotate(get_transform().basis.x.normalized(), -deg_to_rad(_pitch)) + set_position(get_transform().basis.z * distance) diff --git a/scripts/race.gd b/scripts/race.gd index 18770ca..9483446 100644 --- a/scripts/race.gd +++ b/scripts/race.gd @@ -1,11 +1,6 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - -tool +@tool class_name Race - extends Node var PieceList = load("res://scripts/constants/piece_list.gd") @@ -17,7 +12,7 @@ var _piece_orientation = null var _previous_rotation_index := 0 var _curve: Curve3D -onready var path := get_node("Path") as Path +@onready var path := get_node(^"Path") as Path3D static func umod(x: int, d: int) -> int: @@ -30,8 +25,8 @@ func _ready() -> void: _curve = Curve3D.new() path.set_curve(_curve) - var explosion_enabled = SettingsManager.get_value("marbles", "explosion_enabled") as bool - call_deferred("generate_race", !explosion_enabled) + var explosion_enabled = SettingsManager.get_value(&"marbles", &"explosion_enabled") as bool + generate_race(!explosion_enabled) func generate_race(with_end: bool = true) -> void: @@ -39,7 +34,7 @@ func generate_race(with_end: bool = true) -> void: for piece in get_children(): if piece.is_in_group(Group.PIECES): - piece.call_deferred("queue_free") + piece.queue_free() randomize() @@ -67,7 +62,7 @@ func generate_chunk(): func place_piece(piece_index: int) -> void: var piece_data = PieceList.PIECES[piece_index] - var piece = piece_data["resource"].instance() + var piece = piece_data[&"resource"].instantiate() # Add the piece to the main Node add_child(piece) @@ -91,10 +86,10 @@ func place_piece(piece_index: int) -> void: # Store data for next piece _previous_piece = piece - _piece_orientation = piece_data["next_piece_orientation"] + _piece_orientation = piece_data[&"next_piece_orientation"] _previous_rotation_index = rotation_index - var positions = piece.get_node("Positions") + var positions := piece.get_node(^"Positions") as Marker3D if positions: for pos in positions.get_children(): - _curve.add_point(pos.global_translation) + _curve.add_point(pos.global_position) diff --git a/scripts/roll_sound.gd b/scripts/roll_sound.gd index c23206f..6cfae69 100644 --- a/scripts/roll_sound.gd +++ b/scripts/roll_sound.gd @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - class_name RollSound extends AudioStreamPlayer3D @@ -14,12 +10,15 @@ var _last_hit_time := 0.0 var _last_body_enter_time := 0.0 var _last_body_exit_time := 0.0 -onready var _marble := get_parent() as Marble -onready var _hit_sound := get_node("HitSound") as AudioStreamPlayer3D +@onready var _marble := get_parent() as Marble +@onready var _hit_sound := get_node(^"HitSound") as AudioStreamPlayer3D func _ready(): - var now := OS.get_ticks_msec() + _marble.connect(&"body_entered", _on_Marble_body_entered) + _marble.connect(&"body_exited", _on_Marble_body_exited) + + var now := Time.get_ticks_msec() _last_body_exit_time = now + 500.0 @@ -37,13 +36,13 @@ func _physics_process(delta: float) -> void: # TODO : dicked around for 10min, needs improvements pitch_scale = clamp(_speed * 0.5, 0.1, 10.0) - var linear_vol := clamp(_speed * 0.5 - 2.0, 0.0, 1.0) - unit_db = linear2db(linear_vol) + var linear_vol := clamp(_speed * 0.5 - 2.0, 0.0, 1.0) as float + volume_db = linear_to_db(linear_vol) -func _on_Marble_body_entered(_body: Node) -> void: +func _on_Marble_body_entered(_body: PhysicsBody3D) -> void: if _marble.in_race(): - var now := OS.get_ticks_msec() + var now := Time.get_ticks_msec() _last_body_enter_time = now if now - _last_body_exit_time > 500.0: if now - _last_hit_time > 500.0: @@ -51,6 +50,6 @@ func _on_Marble_body_entered(_body: Node) -> void: _last_hit_time = now -func _on_Marble_body_exited(_body: Node) -> void: - var now := OS.get_ticks_msec() +func _on_Marble_body_exited(_body: PhysicsBody3D) -> void: + var now := Time.get_ticks_msec() _last_body_exit_time = now diff --git a/scripts/shake.gd b/scripts/shake.gd index b253157..d612120 100644 --- a/scripts/shake.gd +++ b/scripts/shake.gd @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - extends Node enum Type { RANDOM, SINE, NOISE } @@ -11,7 +7,7 @@ var camera_shake_duration = 0.0 var camera_shake_type = Type.RANDOM -var noise: OpenSimplexNoise +var noise: FastNoiseLite func _ready(): @@ -22,11 +18,11 @@ func _ready(): # # These parameters change the shape of the noise # and the feel of the shake6 - noise = OpenSimplexNoise.new() + noise = FastNoiseLite.new() noise.seed = randi() - noise.octaves = 4 - noise.period = 20 - noise.persistence = 0.8 + noise.domain_warp_fractal_octaves = 4 + noise.domain_warp_frequency = 20 + noise.domain_warp_fractal_lacunarity = 0.8 func shake(intensity, duration, type = Type.RANDOM): @@ -52,7 +48,7 @@ func _process(delta): # # Maybe your game has two cameras, maybe it has 10, who knows? # Do what you like - var camera := get_viewport().get_camera() as Camera + var camera := get_viewport().get_camera_3d() as Camera3D # Stop shaking if the camera_shake_duration timer is down to zero if camera_shake_duration <= 0: @@ -91,7 +87,7 @@ func _process(delta): # Basing the sine wave off of get_ticks_msec ensures that # the returned value is continuous and smooth offset = ( - Vector2(sin(OS.get_ticks_msec() * 0.03), sin(OS.get_ticks_msec() * 0.07)) + Vector2(sin(Time.get_ticks_msec() * 0.03), sin(Time.get_ticks_msec() * 0.07)) * camera_shake_intensity * 0.5 ) @@ -101,8 +97,8 @@ func _process(delta): # # Accessing the noise based on get_ticks_msec ensures that # the returned value is continuous and smooth - var noise_value_x = noise.get_noise_1d(OS.get_ticks_msec() * 0.1) - var noise_value_y = noise.get_noise_1d(OS.get_ticks_msec() * 0.1 + 100.0) + var noise_value_x = noise.get_noise_1d(Time.get_ticks_msec() * 0.1) + var noise_value_y = noise.get_noise_1d(Time.get_ticks_msec() * 0.1 + 100.0) offset = Vector2(noise_value_x, noise_value_y) * camera_shake_intensity * 2.0 camera.h_offset = offset.x diff --git a/scripts/utils/name_generator.gd b/scripts/utils/name_generator.gd index 2a2ab6b..db99e26 100644 --- a/scripts/utils/name_generator.gd +++ b/scripts/utils/name_generator.gd @@ -1,11 +1,7 @@ -# SPDX-FileCopyrightText: 2023 Florian Vazelle -# -# SPDX-License-Identifier: MIT - const MIN_LENGTH = 3 const MAX_LENGTH = 7 const LETTERS = { - "VOYELLE": + &"VOYELLE": [ "a", "e", @@ -33,8 +29,8 @@ const LETTERS = { "i", "y" ], - "DOUBLE_VOYELLE": ["oi", "ai", "ou", "ei", "ae", "eu", "ie", "ea"], - "CONSONNE": + &"DOUBLE_VOYELLE": ["oi", "ai", "ou", "ei", "ae", "eu", "ie", "ea"], + &"CONSONNE": [ "b", "c", @@ -80,21 +76,21 @@ const LETTERS = { "x", "z" ], - "DOUBLE_CONSONNE": ["mm", "nn", "st", "ch", "ll", "tt", "ss"], - "COMPOSE": ["qu", "gu", "cc", "sc", "tr", "fr", "pr", "br", "cr", "ch", "ll", "tt", "ss", "gn"] + &"DOUBLE_CONSONNE": ["mm", "nn", "st", "ch", "ll", "tt", "ss"], + &"COMPOSE": ["qu", "gu", "cc", "sc", "tr", "fr", "pr", "br", "cr", "ch", "ll", "tt", "ss", "gn"] } const TRANSITION = { - "INITIAL": ["VOYELLE", "CONSONNE", "COMPOSE"], - "VOYELLE": ["CONSONNE", "DOUBLE_CONSONNE", "COMPOSE"], - "DOUBLE_VOYELLE": ["CONSONNE", "DOUBLE_CONSONNE", "COMPOSE"], - "CONSONNE": ["VOYELLE", "DOUBLE_VOYELLE"], - "DOUBLE_CONSONNE": ["VOYELLE", "DOUBLE_VOYELLE"], - "COMPOSE": ["VOYELLE"] + &"INITIAL": [&"VOYELLE", &"CONSONNE", &"COMPOSE"], + &"VOYELLE": [&"CONSONNE", &"DOUBLE_CONSONNE", &"COMPOSE"], + &"DOUBLE_VOYELLE": [&"CONSONNE", &"DOUBLE_CONSONNE", &"COMPOSE"], + &"CONSONNE": [&"VOYELLE", &"DOUBLE_VOYELLE"], + &"DOUBLE_CONSONNE": [&"VOYELLE", &"DOUBLE_VOYELLE"], + &"COMPOSE": [&"VOYELLE"] } -static func pick_random_number(max_value, min_value = 0): +static func pick_random_number(max_value: int, min_value: int = 0): randomize() return round(randi() % (max_value - min_value) + min_value) @@ -113,9 +109,9 @@ static func get_letter(state, _last_letter, max_length): var transitions = clone_array(TRANSITION[state]) if max_length < 3: - transitions.erase("COMPOSE") - transitions.erase("DOUBLE_CONSONNE") - transitions.erase("DOUBLE_VOYELLE") + transitions.erase(&"COMPOSE") + transitions.erase(&"DOUBLE_CONSONNE") + transitions.erase(&"DOUBLE_VOYELLE") var state_index = pick_random_number(transitions.size()) @@ -127,12 +123,12 @@ static func get_letter(state, _last_letter, max_length): return [state, letters_list[letter_index]] -static func generate(min_length = MIN_LENGTH, max_length = MAX_LENGTH): +static func generate(min_length: int = MIN_LENGTH, max_length: int = MAX_LENGTH): var length = pick_random_number(max_length, min_length) var name = "" var last_letter = "" var index = 0 - var state = "INITIAL" + var state = &"INITIAL" while index < length: var obj = get_letter(state, last_letter, length - index) diff --git a/shaders/explosion.shader b/shaders/explosion.gdshader similarity index 63% rename from shaders/explosion.shader rename to shaders/explosion.gdshader index b2038ff..b916b81 100644 --- a/shaders/explosion.shader +++ b/shaders/explosion.gdshader @@ -1,18 +1,15 @@ -// SPDX-FileCopyrightText: 2023 Florian Vazelle -// -// SPDX-License-Identifier: MIT shader_type spatial; render_mode blend_mix,depth_draw_opaque,cull_disabled,diffuse_burley,specular_schlick_ggx,unshaded; -uniform vec4 fire_color : hint_color = vec4(0.99, 0.31, 0.01, 1.0); +uniform vec4 fire_color : source_color = vec4(0.99, 0.31, 0.01, 1.0); uniform float fire_strength = 4.3; uniform float warble_strength = 0.2; uniform float time_scale = 1.0; uniform float alpha_scissor = 0.23; -uniform sampler2D red_texture : hint_albedo; -uniform sampler2D green_texture : hint_albedo; -uniform sampler2D blue_texture : hint_albedo; -uniform sampler2D noise_texture : hint_albedo; +uniform sampler2D red_texture : source_color; +uniform sampler2D green_texture : source_color; +uniform sampler2D blue_texture : source_color; +uniform sampler2D noise_texture : source_color; vec3 lerp(vec3 a, vec3 b, float t){ return a * (1.0 - t) + b * t; @@ -25,9 +22,9 @@ float fresnel(float amount, vec3 normal, vec3 view) void vertex() { - mat4 mat_world = mat4(normalize(CAMERA_MATRIX[0])*length(WORLD_MATRIX[0]),normalize(CAMERA_MATRIX[1])*length(WORLD_MATRIX[0]),normalize(CAMERA_MATRIX[2])*length(WORLD_MATRIX[2]),WORLD_MATRIX[3]); + mat4 mat_world = mat4(normalize(VIEW_MATRIX[0])*length(MODEL_MATRIX[0]),normalize(VIEW_MATRIX[1])*length(MODEL_MATRIX[0]),normalize(VIEW_MATRIX[2])*length(MODEL_MATRIX[2]),MODEL_MATRIX[3]); mat_world = mat_world * mat4( vec4(cos(INSTANCE_CUSTOM.x),-sin(INSTANCE_CUSTOM.x), 0.0, 0.0), vec4(sin(INSTANCE_CUSTOM.x), cos(INSTANCE_CUSTOM.x), 0.0, 0.0),vec4(0.0, 0.0, 1.0, 0.0),vec4(0.0, 0.0, 0.0, 1.0)); - MODELVIEW_MATRIX = INV_CAMERA_MATRIX * mat_world; + MODELVIEW_MATRIX = INV_VIEW_MATRIX * mat_world; } @@ -39,7 +36,7 @@ void fragment() { vec3 g = texture(green_texture, base_uv).rgb; vec3 b = texture(blue_texture, base_uv).rgb; ALPHA = clamp(b.b * COLOR.a, 0.0, 1.0) + texture(noise_texture, UV + TIME * time_scale).r * warble_strength; - ALPHA_SCISSOR = alpha_scissor; + ALPHA_SCISSOR_THRESHOLD = alpha_scissor; vec3 fragment_world_pos = (PROJECTION_MATRIX * vec4(VERTEX, 1.0)).xyz; ALBEDO = lerp(g * fire_color.rgb * fire_strength, r, COLOR.r); } diff --git a/shaders/sky.gdshader b/shaders/sky.gdshader new file mode 100644 index 0000000..277ed14 --- /dev/null +++ b/shaders/sky.gdshader @@ -0,0 +1,290 @@ +shader_type sky; +render_mode use_quarter_res_pass; + +// Originally based on https://godotshaders.com/shader/stylized-sky-shader-with-clouds/ but there's not much left + +group_uniforms sky; + uniform vec3 day_top_color : source_color = vec3( 0.1, 0.6, 1.0 ); + uniform vec3 day_bottom_color : source_color = vec3( 0.4, 0.8, 1.0 ); + uniform vec3 sunset_top_color : source_color = vec3( 0.7, 0.75, 1.0 ); + uniform vec3 sunset_bottom_color : source_color = vec3( 1.0, 0.5, 0.7 ); + uniform vec3 night_top_color : source_color = vec3( 0.02, 0.0, 0.04 ); + uniform vec3 night_bottom_color : source_color = vec3( 0.1, 0.0, 0.2 ); + +group_uniforms horizon; + uniform vec3 horizon_color : source_color = vec3( 0.0, 0.7, 0.8 ); + uniform float horizon_blur : hint_range( 0.0, 1.0, 0.01 ) = 0.05; + +group_uniforms sun; // First DirectionalLight3D will be the sun + uniform vec3 sun_color : source_color = vec3( 10.0, 8.0, 1.0 ); + uniform vec3 sun_sunset_color : source_color = vec3( 10.0, 0.0, 0.0 ); + uniform float sun_size : hint_range( 0.01, 1.0 ) = 0.2; + uniform float sun_blur : hint_range( 0.01, 20.0 ) = 10.0; + +group_uniforms moon; // Second DirectionalLight3D will be the moon + uniform vec3 moon_color : source_color = vec3( 1.0, 0.95, 0.7 ); + uniform float moon_size : hint_range( 0.01, 1.0 ) = 0.06; + uniform float moon_blur : hint_range( 0.01, 10.0 ) = 0.1; + +group_uniforms clouds; + // Replaced by noise functions, unncomment if you want to use graphical textures +// uniform sampler2D clouds_top_texture : filter_linear_mipmap, hint_default_black; +// uniform sampler2D clouds_middle_texture : filter_linear_mipmap, hint_default_black; +// uniform sampler2D clouds_bottom_texture : filter_linear_mipmap, hint_default_black; + uniform vec3 clouds_edge_color : source_color = vec3( 0.8, 0.8, 0.98 ); + uniform vec3 clouds_top_color : source_color = vec3( 1.0, 1.0, 1.00 ); + uniform vec3 clouds_middle_color : source_color = vec3( 0.92, 0.92, 0.98 ); + uniform vec3 clouds_bottom_color : source_color = vec3( 0.83, 0.83, 0.94 ); + uniform float clouds_speed : hint_range( 0.0, 20.0, 0.01 ) = 2.0; + uniform float clouds_direction : hint_range( -0.5, 0.5, 0.0 ) = 0.2; + uniform float clouds_scale : hint_range( 0.0, 4.0, 0.01 ) = 1.0; + uniform float clouds_cutoff : hint_range( 0.0, 1.0, 0.01 ) = 0.3; + uniform float clouds_fuzziness : hint_range( 0.0, 2.0, 0.01 ) = 0.5; + // More weight is simply a darker color, useful for rain/storm + uniform float clouds_weight : hint_range( 0.0, 1.0, 0.01 ) = 0.0; + uniform float clouds_blur : hint_range( 0.0, 1.0, 0.01 ) = 0.25; + +group_uniforms stars; + // Stars should be at black background + uniform sampler2D stars_texture : filter_linear_mipmap, hint_default_black; + uniform float stars_speed : hint_range( 0.0, 20.0, 0.01 ) = 1.0; + +group_uniforms settings; + uniform float overwritten_time = 0.0; + +//////////////////////////////////////////////////////////////////////////////////////////////////// + // Function for clouds noises. You can replace using "gen_fractal_ping_pong" with a simple texture reading. + // I was frustrated with the repeating texture that's why I included the algorithm in the code. + // Source: https://github.com/Auburn/FastNoiseLite/tree/master + const int PRIME_X = 501125321; + const int PRIME_Y = 1136930381; + float lerp( float a, float b, float t ) + { + return a + t * ( b - a ); + } + float cubic_lerp( float a, float b, float c, float d, float t ) + { + float p = d - c - ( a - b ); + return t * t * t * p + t * t * ( a - b - p ) + t * ( c - a ) + b; + } + float ping_pong( float t ) + { + t -= trunc( t * 0.5 ) * 2.0; + return t < 1.0 ? t : 2.0 - t; + } + int hash( int seed, int x_primed, int y_primed ) + { + return ( seed ^ x_primed ^ y_primed ) * 0x27d4eb2d; + } + float val_coord( int seed, int x_primed, int y_primed ) + { + int hash = hash( seed, x_primed, y_primed ); + hash *= hash; + hash ^= hash << 19; + return float( hash ) * ( 1.0 / 2147483648.0 ); + } + float single_value_cubic( int seed, float x, float y ) + { + int x1 = int( floor( x )); + int y1 = int( floor( y )); + + float xs = x - float( x1 ); + float ys = y - float( y1 ); + + x1 *= PRIME_X; + y1 *= PRIME_Y; + int x0 = x1 - PRIME_X; + int y0 = y1 - PRIME_Y; + int x2 = x1 + PRIME_X; + int y2 = y1 + PRIME_Y; + int x3 = x1 + ( PRIME_X << 1 ); + int y3 = y1 + ( PRIME_Y << 1 ); + + return cubic_lerp( + cubic_lerp( val_coord( seed, x0, y0 ), val_coord( seed, x1, y0 ), val_coord( seed, x2, y0 ), val_coord( seed, x3, y0 ), xs ), + cubic_lerp( val_coord( seed, x0, y1 ), val_coord( seed, x1, y1 ), val_coord( seed, x2, y1 ), val_coord( seed, x3, y1 ), xs ), + cubic_lerp( val_coord( seed, x0, y2 ), val_coord( seed, x1, y2 ), val_coord( seed, x2, y2 ), val_coord( seed, x3, y2 ), xs ), + cubic_lerp( val_coord( seed, x0, y3 ), val_coord( seed, x1, y3 ), val_coord( seed, x2, y3 ), val_coord( seed, x3, y3 ), xs ), + ys ) * ( 1.0 / ( 1.5 * 1.5 )); + } + // Params can be change in the same way as in noise settings in Godot + const float FRACTAL_BOUNDING = 1.0 / 1.75; + const int OCTAVES = 5; + const float PING_PONG_STRENGTH = 2.0; + const float WEIGHTED_STRENGTH = 0.0; + const float GAIN = 0.5; + const float LACUNARITY = 2.0; + float gen_fractal_ping_pong( vec2 pos, int seed, float frequency ) + { + float x = pos.x * frequency; + float y = pos.y * frequency; + float sum = 0.0; + float amp = FRACTAL_BOUNDING; + for( int i = 0; i < OCTAVES; i++ ) + { + float noise = ping_pong(( single_value_cubic( seed++, x, y ) + 1.0 ) * PING_PONG_STRENGTH ); + sum += ( noise - 0.5 ) * 2.0 * amp; + amp *= lerp( 1.0, noise, WEIGHTED_STRENGTH ); + x *= LACUNARITY; + y *= LACUNARITY; + amp *= GAIN; + } + return sum * 0.5 + 0.5; + } +//////////////////////////////////////////////////////////////////////////////////////////////////// + +// Function needed to calculate the phase of the moon +// Source: https://kelvinvanhoorn.com/2022/03/17/skybox-tutorial-part-1/ +float sphere_intersect( vec3 view_dir, vec3 sphere_pos, float radius ) +{ + float b = dot( -sphere_pos, view_dir ); + float c = dot( -sphere_pos, -sphere_pos ) - pow( radius, 2 ); + float h = pow( b, 2 ) - c; + return h < 0.0 ? -1.0 : -b - sqrt( h ); +} + +void sky() +{ + float time = overwritten_time != 0.0 ? overwritten_time : TIME; + + //////////////////// SKY /////////////////////////////////////////////////////////////////////// + float _eyedir_y = abs( sin( EYEDIR.y * PI * 0.5 )); + + // The day color will be our base color + vec3 _sky_color = mix( day_bottom_color, day_top_color, _eyedir_y ); + _sky_color = mix( _sky_color, vec3( 0.0 ), clamp(( 0.7 - clouds_cutoff ) * clouds_weight, 0.0, 1.0 )); + + float _sunset_amount = clamp( 0.5 - abs( LIGHT0_DIRECTION.y ), 0.0, 0.5 ) * 2.0; + // The sky should be more red around the west, on the opposite side you don't see it as much + float _sunset_distance = clamp( 1.0 - pow( distance( EYEDIR, LIGHT0_DIRECTION ), 2 ), 0.0, 1.0 ); + vec3 _sky_sunset_color = mix( sunset_bottom_color, sunset_top_color, _eyedir_y + 0.5 ); + _sky_sunset_color = mix( _sky_sunset_color, sunset_bottom_color, _sunset_amount * _sunset_distance ); + _sky_color = mix( _sky_color, _sky_sunset_color, _sunset_amount ); + + float _night_amount = clamp( -LIGHT0_DIRECTION.y + 0.7, 0.0, 1.0 ); + vec3 _sky_night_color = mix( night_bottom_color, night_top_color, _eyedir_y ); + _sky_color = mix( _sky_color, _sky_night_color, _night_amount ); + + // Final sky color + COLOR = _sky_color; + + //////////////////// HORIZON /////////////////////////////////////////////////////////////////// + float _horizon_amount = 0.0; + if( EYEDIR.y < 0.0 ) + { + _horizon_amount = clamp( abs( EYEDIR.y ) / horizon_blur, 0.0, 1.0 ); + // Mixing with the color of the night sky to make the horizon darker + vec3 _horizon_color = mix( horizon_color, _sky_color, _night_amount * 0.9 ); + // And if there are many dark clouds, we also make the horizon darker + _horizon_color = mix( _horizon_color, vec3( 0.0 ), ( 1.0 - clouds_cutoff ) * clouds_weight * 0.7 ); + COLOR = mix( COLOR, _horizon_color, _horizon_amount ); + } + + //////////////////// MOON ////////////////////////////////////////////////////////////////////// + float _moon_amount = 0.0; + if( LIGHT1_ENABLED ) + { + // Bigger moon near the horizon + float _moon_size = moon_size + cos( LIGHT1_DIRECTION.y * PI ) * moon_size * 0.25; + float _moon_distance = distance( EYEDIR, LIGHT1_DIRECTION ) / _moon_size; + // Finding moon disc and edge blur + _moon_amount = clamp(( 1.0 - _moon_distance ) / moon_blur, 0.0, 1.0 ); + if( _moon_amount > 0.0 ) + { + // Moon illumination depending on the position of the sun + float _moon_intersect = sphere_intersect( EYEDIR, LIGHT1_DIRECTION, _moon_size ); + vec3 _moon_normal = normalize( LIGHT1_DIRECTION - EYEDIR * _moon_intersect ); + // Power on the result gives a better effect + float _moon_n_dot_l = pow( clamp( dot( _moon_normal, -LIGHT0_DIRECTION ), 0.05, 1.0 ), 2 ); + // Hiding the moon behind the horizon + _moon_amount *= 1.0 - _horizon_amount; + COLOR = mix( COLOR, moon_color, _moon_n_dot_l * _moon_amount ); + } + } + + //////////////////// SUN /////////////////////////////////////////////////////////////////////// + float _sun_distance = 0.0; + if( LIGHT0_ENABLED ) + { + _sun_distance = distance( EYEDIR, LIGHT0_DIRECTION ); + // Bigger sun near the horizon + float _sun_size = sun_size + cos( LIGHT0_DIRECTION.y * PI ) * sun_size * 0.25; + // Finding sun disc and edge blur + float _sun_amount = clamp(( 1.0 - _sun_distance / _sun_size ) / sun_blur, 0.0, 1.0 ); + if( _sun_amount > 0.0 ) + { + // Changing color of the sun during sunset + float _sunset_amount = 1.0; + if( LIGHT0_DIRECTION.y > 0.0 ) + _sunset_amount = clamp( cos( LIGHT0_DIRECTION.y * PI ), 0.0, 1.0 ); + vec3 _sun_color = mix( sun_color, sun_sunset_color, _sunset_amount ); + // Hiding the sun behind the moon + _sun_amount = clamp( _sun_amount * ( 1.0 - _moon_amount ), 0.0, 1.0 ); + // Hiding the sun behind the horizon + _sun_amount *= 1.0 - _horizon_amount; + // Leveling the "glow" in color + if( _sun_color.r > 1.0 || _sun_color.g > 1.0 || _sun_color.b > 1.0 ) + _sun_color *= _sun_amount; + COLOR = mix( COLOR, _sun_color, _sun_amount ); + } + } + + //////////////////// STARS ///////////////////////////////////////////////////////////////// + vec2 _sky_uv = EYEDIR.xz / sqrt( EYEDIR.y ); + if( EYEDIR.y > -0.01 && LIGHT0_DIRECTION.y < 0.0 ) + { + // Stars UV rotation + float _stars_speed_cos = cos( stars_speed * time * 0.005 ); + float _stars_speed_sin = sin( stars_speed * time * 0.005 ); + vec2 _stars_uv = vec2( + _sky_uv.x * _stars_speed_cos - _sky_uv.y * _stars_speed_sin, + _sky_uv.x * _stars_speed_sin + _sky_uv.y * _stars_speed_cos + ); + // Stars texture + vec3 _stars_color = texture( stars_texture, _stars_uv ).rgb * -LIGHT0_DIRECTION.y; + // Hiding stars behind the moon + _stars_color *= 1.0 - _moon_amount; + COLOR += _stars_color; + } + + //////////////////// CLOUDS //////////////////////////////////////////////////////////////// + if( EYEDIR.y > 0.0 ) + { + // Clouds UV movement direction + float _clouds_speed = time * clouds_speed * 0.01; + float _sin_x = sin( clouds_direction * PI * 2.0 ); + float _cos_y = cos( clouds_direction * PI * 2.0 ); + // I using 3 levels of clouds. Top is the lightes and botom the darkest. + // The speed of movement (and direction a little) is different for the illusion of the changing shape of the clouds. + vec2 _clouds_movement = vec2( _sin_x, _cos_y ) * _clouds_speed; +// float _noise_top = texture( clouds_top_texture, ( _sky_uv + _clouds_movement ) * clouds_scale ).r; + float _noise_top = gen_fractal_ping_pong( ( _sky_uv + _clouds_movement ) * clouds_scale, 0, 0.5 ); + _clouds_movement = vec2( _sin_x * 0.97, _cos_y * 1.07 ) * _clouds_speed * 0.89; +// float _noise_middle = texture( clouds_middle_texture, ( _sky_uv + _clouds_movement ) * clouds_scale ).r; + float _noise_middle = gen_fractal_ping_pong( ( _sky_uv + _clouds_movement ) * clouds_scale, 1, 0.75 ); + _clouds_movement = vec2( _sin_x * 1.01, _cos_y * 0.89 ) * _clouds_speed * 0.79; +// float _noise_bottom = texture( clouds_bottom_texture, ( _sky_uv + _clouds_movement ) * clouds_scale ).r; + float _noise_bottom = gen_fractal_ping_pong( ( _sky_uv + _clouds_movement ) * clouds_scale, 2, 1.0 ); + // Smoothstep with the addition of a noise value from a lower level gives a nice, deep result + _noise_bottom = smoothstep( clouds_cutoff, clouds_cutoff + clouds_fuzziness, _noise_bottom ); + _noise_middle = smoothstep( clouds_cutoff, clouds_cutoff + clouds_fuzziness, _noise_middle + _noise_bottom * 0.2 ) * 1.1; + _noise_top = smoothstep( clouds_cutoff, clouds_cutoff + clouds_fuzziness, _noise_top + _noise_middle * 0.4 ) * 1.2; + float _clouds_amount = clamp( _noise_top + _noise_middle + _noise_bottom, 0.0, 1.0 ); + // Fading clouds near the horizon + _clouds_amount *= clamp( abs( EYEDIR.y ) / clouds_blur, 0.0, 1.0 ); + + vec3 _clouds_color = mix( vec3( 0.0 ), clouds_top_color, _noise_top ); + _clouds_color = mix( _clouds_color, clouds_middle_color, _noise_middle ); + _clouds_color = mix( _clouds_color, clouds_bottom_color, _noise_bottom ); + // The edge color gives a nice smooth edge, you can try turning this off if you need sharper edges + _clouds_color = mix( clouds_edge_color, _clouds_color, _noise_top ); + // The sun passing through the clouds effect + _clouds_color = mix( _clouds_color, clamp( sun_color, 0.0, 1.0 ), pow( 1.0 - clamp( _sun_distance, 0.0, 1.0 ), 5 )); + // Color combined with sunset condition + _clouds_color = mix( _clouds_color, sunset_bottom_color, _sunset_amount * 0.75 ); + // Color depending on the "progress" of the night. + _clouds_color = mix( _clouds_color, _sky_color, clamp( _night_amount, 0.0, 0.98 )); + _clouds_color = mix( _clouds_color, vec3( 0.0 ), clouds_weight * 0.9 ); + COLOR = mix( COLOR, _clouds_color, _clouds_amount ); + } +}