diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..3216685 --- /dev/null +++ b/.env.example @@ -0,0 +1,8 @@ +GESTURAI_GESTURE_ACTION_MAP_PATH = 'gesture_map.json' +GESTURAI_DEFAULT_GESTURE_ACTION_MAP_PATH = 'default_gesture_map.json' +GESTURAI_GESTURE_INDEX_MAP_PATH = 'gesture_index_map.json' +GESTURAI_DEFAULT_GESTURE_INDEX_MAP_PATH = 'default_gesture_index_map.json' +GESTURAI_GESTURE_DATA_PATH = 'gesture_data/' +GESTURAI_DEFAULT_GESTURE_DATA_PATH = 'gesture_data/default/' +GESTURAI_GESTURE_MODEL_PATH = 'models/gesture_model.pth' +GESTURAI_DEFAULT_GESTURE_MODEL_PATH = 'models/gesture_model_default.pth' \ No newline at end of file diff --git a/.gitignore b/.gitignore index 02014fc..374c7db 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ gesture_data.pkl gesture_model.pth label_map.pkl __pycache__/ -venv/ \ No newline at end of file +venv/ +.env diff --git a/README.md b/README.md index fdeafe2..4f3fb57 100644 --- a/README.md +++ b/README.md @@ -7,14 +7,15 @@ A real-time hand gesture recognition system using MediaPipe and PyTorch to contr ## šŸ”§ Features - āœ… Real-time gesture recognition using webcam -- āœ… Context-aware gesture modes (`media_mode`, `word_mode`, `presentation_mode`) +- āœ… Context-specific gesture modes 🧠 (`media_mode`, `word_mode`, `presentation_mode`) - switch between modes using gestures! - āœ… Customizable gesture-to-action mappings -- āœ… Streamlit UI for editing gesture mappings +- āœ… Create your own gestures! +- āœ… Streamlit UI for editing gestures and mappings - āœ… Cross-platform (macOS, Linux, Windows) --- -## šŸ“‚ Project Structure + --- ## šŸš€ Getting Started -### 1. Install Dependencies +### 1. 🧰 Install Dependencies ```bash pip install -r requirements.txt ``` -### 2. Collect Gesture Data - -```bash -python collect_data.py -``` +--- -### 3. Train the Model +### 2. āš™ļø Customize Your Gestures and Map Gestures to Actions ```bash -python training.py +python -m streamlit run config.py ``` -### 4. Map Gestures to Actions +Use the configuration app to: +- Add, rename, relearn, or delete gestures: the app will walk you through the process of collecting data for the new gesture and automatically retrains the gesture recognition model! +- Change the way gestures trigger system actions or context changes: add or remove mappings, and add, remove, or rename contexts! -```bash -# Option A: Streamlit UI -streamlit run gesture_ui_mapper.py - -# Option B: CLI -python gesture_cli_mapper.py -``` +--- -### 5. Run Gesture Controller +### 3. šŸ” Run Gesture Controller ```bash -python run_gesture_control.py +python gesturai.py ``` --- @@ -89,32 +82,9 @@ python run_gesture_control.py --- -## 🧠 Context Modes - -- `default` -- `word_mode` -- `media_mode` -- `presentation_mode` - -You can switch between modes using trigger gestures like `three_fingers`, `peace_sign`, or `ok_sign`. - ---- - -## šŸ” Customize Your Mappings - -Use `gesture_ui_mapper.py` to: - -- Add new gestures -- Map gestures to system actions -- Delete or reset mappings -- Save to `gesture_config.json` - ---- - ## šŸ“Œ Future Ideas -- Record your own custom gestures -- Add voice feedback or sound effects -- Integrate with specific apps (Zoom, PowerPoint, etc.) +- Extend to take voice commands +- Add sound effects or feedback +- Integrate with popular apps (Zoom, PowerPoint, etc.) - Cloud-hosted UI for remote gesture mapping - diff --git a/actions.py b/actions.py deleted file mode 100644 index 73d78b0..0000000 --- a/actions.py +++ /dev/null @@ -1,265 +0,0 @@ -import os -import webbrowser -import platform -import subprocess -from datetime import datetime -import time - -OS = platform.system() - -# -------------------------------------------- -# System Control Functions -# -------------------------------------------- - -def open_terminal(): - """Opens the terminal window based on OS.""" - try: - if OS == "Darwin": - os.system("open -a Terminal") # macOS - elif OS == "Linux": - os.system("gnome-terminal") # Linux (change if needed) - elif OS == "Windows": - os.system("start cmd") - except Exception as e: - print(f"Error opening terminal: {e}") - -def open_browser(): - """Opens the default web browser.""" - try: - webbrowser.open("https://www.google.com") - except Exception as e: - print(f"Error opening browser: {e}") - -def increase_volume(): - """Increases system volume based on OS.""" - try: - if OS == "Darwin": - os.system("osascript -e 'set volume output volume (output volume of (get volume settings) + 10)'") - elif OS == "Linux": - os.system("pactl set-sink-volume @DEFAULT_SINK@ +10%") - except Exception as e: - print(f"Error increasing volume: {e}") - -def decrease_volume(): - """Decreases system volume based on OS.""" - try: - if OS == "Darwin": - os.system("osascript -e 'set volume output volume (output volume of (get volume settings) - 10)'") - elif OS == "Linux": - os.system("pactl set-sink-volume @DEFAULT_SINK@ -10%") - except Exception as e: - print(f"Error decreasing volume: {e}") - -def take_screenshot(): - """Takes a screenshot with timestamped filename.""" - filename = f"screenshot_{datetime.now().strftime('%Y%m%d_%H%M%S')}.png" - try: - if OS == "Darwin": - os.system(f"screencapture {filename}") - elif OS == "Linux": - os.system(f"gnome-screenshot -f {filename}") - elif OS == "Windows": - os.system(f"nircmd.exe savescreenshot {filename}") # Requires nircmd.exe in PATH - except Exception as e: - print(f"Error taking screenshot: {e}") - -def lock_computer(): - """Locks the computer.""" - try: - if OS == "Windows": - os.system("rundll32.exe user32.dll,LockWorkStation") - elif OS == "Darwin": - os.system("/System/Library/CoreServices/Menu\\ Extras/User.menu/Contents/Resources/CGSession -suspend") - except Exception as e: - print(f"Error locking computer: {e}") - -def open_file_explorer(): - """Opens the file explorer.""" - try: - if OS == "Windows": - os.system("explorer") - elif OS == "Darwin": - os.system("open .") - except Exception as e: - print(f"Error opening file explorer: {e}") - -def minimize_all_windows(): - """Minimizes all windows.""" - _send_keyboard_shortcut(["win", "d"] if OS == "Windows" else ["fn", "f11"]) - -# -------------------------------------------- -# Clipboard & Editing Functions -# -------------------------------------------- - -def copy(): - _send_keyboard_shortcut(["ctrl", "c"] if OS == "Windows" else ["cmd", "c"]) - -def paste(): - _send_keyboard_shortcut(["ctrl", "v"] if OS == "Windows" else ["cmd", "v"]) - -def cut(): - _send_keyboard_shortcut(["ctrl", "x"] if OS == "Windows" else ["cmd", "x"]) - -def undo(): - _send_keyboard_shortcut(["ctrl", "z"] if OS == "Windows" else ["cmd", "z"]) - -def redo(): - _send_keyboard_shortcut(["ctrl", "y"] if OS == "Windows" else ["cmd", "shift", "z"]) - -def select_all(): - _send_keyboard_shortcut(["ctrl", "a"] if OS == "Windows" else ["cmd", "a"]) - -def save(): - _send_keyboard_shortcut(["ctrl", "s"] if OS == "Windows" else ["cmd", "s"]) - -def print_file(): - _send_keyboard_shortcut(["ctrl", "p"] if OS == "Windows" else ["cmd", "p"]) - -def find(): - _send_keyboard_shortcut(["ctrl", "f"] if OS == "Windows" else ["cmd", "f"]) - -# -------------------------------------------- -# Helper Function for Simulating Keypresses -# -------------------------------------------- - -def _send_keyboard_shortcut(keys): - try: - import pyautogui - - # macOS fix: replace 'cmd' with 'command' for pyautogui - fixed_keys = ['command' if k == 'cmd' else k for k in keys] - pyautogui.hotkey(*fixed_keys) - - except ImportError: - print("pyautogui not installed. Run: pip install pyautogui") - except Exception as e: - print(f"Error sending keyboard shortcut {keys}: {e}") - -def pause_video(): - """Click center and press Space to pause/play video.""" - try: - import pyautogui - screen_width, screen_height = pyautogui.size() - x = screen_width // 2 - y = screen_height // 2 - pyautogui.moveTo(x, y, duration=0.3) - pyautogui.click() # Focus player - time.sleep(0.2) - pyautogui.press("space") # Use spacebar instead of 'k' - print("āÆļø Sent 'space' to pause/play video") - except Exception as e: - print(f"āš ļø pause_video error: {e}") - - - - -def _send_single_key(key): - try: - import pyautogui - pyautogui.press(key) - except ImportError: - print("pyautogui not installed. Run: pip install pyautogui") - except Exception as e: - print(f"Error sending key '{key}': {e}") - -def swipe_left_tab(): - """Three-finger swipe left = switch to previous tab (Mac).""" - if OS == "Darwin": - os.system("""osascript -e 'tell application "System Events" to key code 123 using control down'""") # Left arrow - -def swipe_right_tab(): - """Three-finger swipe right = switch to next tab (Mac).""" - if OS == "Darwin": - os.system("""osascript -e 'tell application "System Events" to key code 124 using control down'""") # Right arrow - -import pyautogui - -def start_presentation(): - """Start PowerPoint presentation (equivalent to pressing F5).""" - try: - pyautogui.press("f5") - print("šŸ“½ Started presentation") - except Exception as e: - print(f"āš ļø Error starting presentation: {e}") - -def next_slide(): - """Go to the next PowerPoint slide.""" - try: - pyautogui.press("right") - print("āž”ļø Next slide") - except Exception as e: - print(f"āš ļø Error moving to next slide: {e}") - -def previous_slide(): - """Go to the previous PowerPoint slide.""" - try: - pyautogui.press("left") - print("ā¬…ļø Previous slide") - except Exception as e: - print(f"āš ļø Error moving to previous slide: {e}") - -def exit_presentation(): - """Exits PowerPoint slideshow by bringing it to front and sending ESC.""" - try: - import pyautogui - import os - import time - - # Step 1: Bring PowerPoint to the foreground - os.system('osascript -e \'tell application "Microsoft PowerPoint" to activate\'') - time.sleep(0.5) # Let the window come to front - - # Step 2: Send ESC key to exit slideshow - pyautogui.press("esc") - print("šŸ›‘ Exited PowerPoint presentation") - - except Exception as e: - print(f"āš ļø Error exiting PowerPoint: {e}") - - - - - - - -# -------------------------------------------- -# Gesture to Action Mapping -# -------------------------------------------- - -contexts = { - "default": { - "open_palm": paste, - "fist": open_terminal, - "thumbs_up": open_browser, - "ok_sign": lock_computer, - "thumbs_down": open_file_explorer, - "three_fingers": None, - "rock_on": None, - "pinch": pause_video, - "swipe_left": swipe_left_tab, - "swipe_right": swipe_right_tab - }, - "word_mode": { - "pointing_finger": select_all, - "open_palm": paste, - "peace_sign": copy, - "fist": cut, - "thumbs_up": undo, - "thumbs_down": redo, - "three_fingers": None, - "rock_on": None - }, - "media_mode": { - "pinch": pause_video, - "swipe_left": decrease_volume, - "swipe_right": increase_volume, - "three_fingers": None, - "rock_on": None - }, - "presentation_mode": { - "open_palm": start_presentation, - "swipe_right": next_slide, - "swipe_left": previous_slide, - "three_fingers": exit_presentation - } -} diff --git a/config.py b/config.py new file mode 100644 index 0000000..b16a3ae --- /dev/null +++ b/config.py @@ -0,0 +1,109 @@ +import streamlit as st +import json +import os +import inspect +import src.actions as actions +import src.crud as crud +import sys +import pandas as pd +from dotenv import load_dotenv +load_dotenv() + +GESTURE_INDEX_MAP_PATH = os.environ["GESTURAI_GESTURE_INDEX_MAP_PATH"] +GESTURE_ACTION_MAP_PATH = os.environ["GESTURAI_GESTURE_ACTION_MAP_PATH"] +GESTURE_DATA_PATH = os.environ["GESTURAI_GESTURE_DATA_PATH"] +GESTURE_MODEL_PATH = os.environ["GESTURAI_GESTURE_MODEL_PATH"] + +DEFAULT_GESTURE_INDEX_MAP_PATH = os.environ["GESTURAI_DEFAULT_GESTURE_INDEX_MAP_PATH"] +DEFAULT_GESTURE_ACTION_MAP_PATH = os.environ["GESTURAI_DEFAULT_GESTURE_ACTION_MAP_PATH"] +DEFAULT_GESTURE_DATA_PATH = os.environ["GESTURAI_DEFAULT_GESTURE_DATA_PATH"] +DEFAULT_GESTURE_MODEL_PATH = os.environ["GESTURAI_DEFAULT_GESTURE_MODEL_PATH"] + + +# Load current and default values for gesture-action maps and gesture-index maps +default_gesture_action_map, dga_load_success = crud.load_json_mapping(DEFAULT_GESTURE_ACTION_MAP_PATH) +if dga_load_success != True: + print(f'Error loading default gesture action map from {DEFAULT_GESTURE_ACTION_MAP_PATH}.') + sys.exit(-1) + +gesture_action_map, ga_load_success = crud.load_json_mapping(GESTURE_ACTION_MAP_PATH) +if ga_load_success != True: + print(f'Error loading gesture action map from {GESTURE_ACTION_MAP_PATH}.') + sys.exit(-1) + +default_gesture_index_map, dgi_load_success = crud.load_json_mapping(DEFAULT_GESTURE_INDEX_MAP_PATH) +if dgi_load_success != True: + print(f'Error loading default gesture index map from {DEFAULT_GESTURE_INDEX_MAP_PATH}.') + sys.exit(-1) + +gesture_index_map, gi_load_success = crud.load_json_mapping(GESTURE_INDEX_MAP_PATH) +if gi_load_success != True: + print(f'Error loading gesture index map from {GESTURE_INDEX_MAP_PATH}.') + sys.exit(-1) + +# TODO check for existence of data and model files + + + +# List available action functions +def list_actions(): + return [name for name, obj in inspect.getmembers(actions, inspect.isfunction) + if not name.startswith("_")] + +# UI starts here +st.set_page_config(page_title="Gesture Mapper UI", layout="centered") +st.title("šŸ–ļø Gesture-to-Action Mapper") + +modes = list(gesture_action_map.keys()) +actions_list = list_actions() + +st.sidebar.header("Select Mode") +selected_mode = st.sidebar.selectbox("Context Mode", modes) + +st.subheader(f"Mappings in `{selected_mode}` mode") +if gesture_action_map[selected_mode]: + for gesture, action in list(gesture_action_map[selected_mode].items()): + col1, col2, col3 = st.columns([3, 3, 1]) + with col1: + st.text(gesture) + with col2: + st.text(action) + with col3: + if st.button("āŒ", key=f"del-{selected_mode}-{gesture}"): + # TODO fix this + del gesture_action_map[selected_mode][gesture] + # save_mapping(gesture_action_map) + st.rerun() +else: + st.info("No gestures mapped yet in this mode.") + +st.markdown("---") +st.subheader("āž• Add / Update Mapping") +gesture_input = st.text_input("Gesture Name (e.g., fist, peace_sign)") +action_input = st.selectbox("Select Action", actions_list) + +if st.button("Save Mapping"): + if gesture_input: + gesture_action_map[selected_mode][gesture_input.strip()] = action_input + # save_mapping(gesture_action_map) + st.success(f"Mapped '{gesture_input}' → '{action_input}' in {selected_mode} mode") + st.rerun() + else: + st.warning("Please enter a gesture name.") + +st.markdown("---") +if st.button("šŸ” Reset to Default Mappings, Data, and Model"): + # TODO spin this out to a crud restore-defaults function + # TODO Confirm data and model exist before deleting + + # TODO Delete current gesture data, model, and mapping files + + # Save default gesture data, model, and mapping files as current + crud.save_json_mapping(GESTURE_ACTION_MAP_PATH, default_gesture_action_map) + crud.save_json_mapping(GESTURE_INDEX_MAP_PATH, default_gesture_index_map) + + + + + + diff --git a/gesture_config.json b/configs/archive/default_gesture_action_map.json similarity index 63% rename from gesture_config.json rename to configs/archive/default_gesture_action_map.json index 401516e..d206c8a 100644 --- a/gesture_config.json +++ b/configs/archive/default_gesture_action_map.json @@ -1,35 +1,46 @@ -{ - "default": { +{ + "mode_context_selection" : { + "three_fingers": "mode_word", + "peace_sign": "mode_media", + "ok_sign": "mode_presentation", + "rock_on": "mode_default" + }, + + "mode_default": { "open_palm": "paste", "fist": "open_terminal", "thumbs_up": "open_browser", "ok_sign": "lock_computer", "thumbs_down": "open_file_explorer", "three_fingers": "None", - "rock_on": "None", + "rock_on": "mode_context_selection", "pinch": "pause_video", "swipe_left": "swipe_left_tab", "swipe_right": "swipe_right_tab" }, - "word_mode": { + + "mode_word": { + "rock_on": "mode_context_selection", "pointing_finger": "select_all", "open_palm": "paste", "peace_sign": "copy", "fist": "cut", "thumbs_up": "undo", "thumbs_down": "redo", - "three_fingers": "None", - "rock_on": "None" + "three_fingers": "None" }, - "media_mode": { + + "mode_media": { + "rock_on": "mode_context_selection", "swipe_left": "decrease_volume", "swipe_right": "increase_volume", "three_fingers": "None", - "rock_on": "None", "pinch": "pause_video", "open_palm": "pause_video" }, - "presentation_mode": { + + "mode_presentation": { + "rock_on": "mode_context_selection", "open_palm": "start_presentation", "swipe_right": "next_slide", "swipe_left": "previous_slide", diff --git a/configs/archive/default_gesture_index_map.json b/configs/archive/default_gesture_index_map.json new file mode 100644 index 0000000..ef84fdd --- /dev/null +++ b/configs/archive/default_gesture_index_map.json @@ -0,0 +1,14 @@ +{ + "open_palm": 0, + "fist": 1, + "peace_sign": 2, + "thumbs_up": 3, + "pointing_finger": 4, + "ok_sign": 5, + "thumbs_down": 6, + "three_fingers": 7, + "rock_on": 8, + "pinch": 9, + "swipe_left": 10, + "swipe_right": 11 +} \ No newline at end of file diff --git a/configs/archive/gesture_action_map.json b/configs/archive/gesture_action_map.json new file mode 100644 index 0000000..d206c8a --- /dev/null +++ b/configs/archive/gesture_action_map.json @@ -0,0 +1,49 @@ +{ + "mode_context_selection" : { + "three_fingers": "mode_word", + "peace_sign": "mode_media", + "ok_sign": "mode_presentation", + "rock_on": "mode_default" + }, + + "mode_default": { + "open_palm": "paste", + "fist": "open_terminal", + "thumbs_up": "open_browser", + "ok_sign": "lock_computer", + "thumbs_down": "open_file_explorer", + "three_fingers": "None", + "rock_on": "mode_context_selection", + "pinch": "pause_video", + "swipe_left": "swipe_left_tab", + "swipe_right": "swipe_right_tab" + }, + + "mode_word": { + "rock_on": "mode_context_selection", + "pointing_finger": "select_all", + "open_palm": "paste", + "peace_sign": "copy", + "fist": "cut", + "thumbs_up": "undo", + "thumbs_down": "redo", + "three_fingers": "None" + }, + + "mode_media": { + "rock_on": "mode_context_selection", + "swipe_left": "decrease_volume", + "swipe_right": "increase_volume", + "three_fingers": "None", + "pinch": "pause_video", + "open_palm": "pause_video" + }, + + "mode_presentation": { + "rock_on": "mode_context_selection", + "open_palm": "start_presentation", + "swipe_right": "next_slide", + "swipe_left": "previous_slide", + "three_fingers": "exit_presentation" + } +} \ No newline at end of file diff --git a/configs/archive/gesture_index_map.json b/configs/archive/gesture_index_map.json new file mode 100644 index 0000000..ef84fdd --- /dev/null +++ b/configs/archive/gesture_index_map.json @@ -0,0 +1,14 @@ +{ + "open_palm": 0, + "fist": 1, + "peace_sign": 2, + "thumbs_up": 3, + "pointing_finger": 4, + "ok_sign": 5, + "thumbs_down": 6, + "three_fingers": 7, + "rock_on": 8, + "pinch": 9, + "swipe_left": 10, + "swipe_right": 11 +} \ No newline at end of file diff --git a/configs/default_gesture_action_map.json b/configs/default_gesture_action_map.json new file mode 100644 index 0000000..fc7c980 --- /dev/null +++ b/configs/default_gesture_action_map.json @@ -0,0 +1,34 @@ +{ + "mode_context_selection" : { + "fist": "mode_word", + "peace_sign": "mode_media", + "ok_sign": "mode_presentation", + "pointing": "mode_default" + }, + + "mode_default": { + "pointing": "mode_context_selection", + "open_palm": "paste", + "fist": "open_terminal", + "thumbs_up": "open_browser", + "ok_sign": "lock_computer" + }, + + "mode_word": { + "pointing": "mode_context_selection", + "open_palm": "paste", + "peace_sign": "copy", + "fist": "cut", + "thumbs_up": "undo" + }, + + "mode_media": { + "pointing": "mode_context_selection", + "open_palm": "pause_video" + }, + + "mode_presentation": { + "pointing": "mode_context_selection", + "open_palm": "start_presentation" + } +} \ No newline at end of file diff --git a/configs/default_gesture_index_map.json b/configs/default_gesture_index_map.json new file mode 100644 index 0000000..7ed1dfa --- /dev/null +++ b/configs/default_gesture_index_map.json @@ -0,0 +1,9 @@ +{ + "open_palm": 0, + "fist": 1, + "peace_sign": 2, + "thumbs_up": 3, + "ok_sign": 4, + "pointing": 5, + "other_gesture": 6 +} \ No newline at end of file diff --git a/configs/gesture_action_map.json b/configs/gesture_action_map.json new file mode 100644 index 0000000..84dc510 --- /dev/null +++ b/configs/gesture_action_map.json @@ -0,0 +1,30 @@ +{ + "mode_context_selection": { + "fist": "mode_word", + "peace_sign": "mode_media", + "ok_sign": "mode_presentation", + "pointing": "mode_default" + }, + "mode_default": { + "pointing": "mode_context_selection", + "open_palm": "paste", + "fist": "open_terminal", + "thumbs_up": "open_browser", + "ok_sign": "lock_computer" + }, + "mode_word": { + "pointing": "mode_context_selection", + "open_palm": "paste", + "peace_sign": "copy", + "fist": "cut", + "thumbs_up": "undo" + }, + "mode_media": { + "pointing": "mode_context_selection", + "open_palm": "pause_video" + }, + "mode_presentation": { + "pointing": "mode_context_selection", + "open_palm": "start_presentation" + } +} \ No newline at end of file diff --git a/configs/gesture_index_map.json b/configs/gesture_index_map.json new file mode 100644 index 0000000..c4d3b74 --- /dev/null +++ b/configs/gesture_index_map.json @@ -0,0 +1,10 @@ +{ + "other_gesture": 0, + "fist": 1, + "peace_sign": 2, + "thumbs_up": 3, + "ok_sign": 4, + "pointing": 5, + "open_palm": 6, + "rock_on": 7 +} \ No newline at end of file diff --git a/gesture_data_backup.pkl b/data/archive/gesture_data_backup.pkl similarity index 100% rename from gesture_data_backup.pkl rename to data/archive/gesture_data_backup.pkl diff --git a/data/fist.csv b/data/fist.csv new file mode 100644 index 0000000..c47db7d --- /dev/null +++ b/data/fist.csv @@ -0,0 +1,245 @@ +handedness,0_x,0_y,0_z,1_x,1_y,1_z,2_x,2_y,2_z,3_x,3_y,3_z,4_x,4_y,4_z,5_x,5_y,5_z,6_x,6_y,6_z,7_x,7_y,7_z,8_x,8_y,8_z,9_x,9_y,9_z,10_x,10_y,10_z,11_x,11_y,11_z,12_x,12_y,12_z,13_x,13_y,13_z,14_x,14_y,14_z,15_x,15_y,15_z,16_x,16_y,16_z,17_x,17_y,17_z,18_x,18_y,18_z,19_x,19_y,19_z,20_x,20_y,20_z +Right,0.802533507,0.697950363,-4.89E-07,0.754039526,0.660036922,-0.037238274,0.706285417,0.60677886,-0.060743093,0.691485643,0.547928691,-0.080510847,0.733547688,0.530300975,-0.093142994,0.743475318,0.40815717,-0.024833674,0.715234816,0.442855954,-0.058709774,0.725352108,0.53265959,-0.074952804,0.738364458,0.542829692,-0.083205707,0.789251864,0.400316536,-0.021958664,0.758813739,0.460263968,-0.053858347,0.76162523,0.561538041,-0.055334114,0.768689632,0.565027714,-0.049912605,0.831173778,0.423472524,-0.026094161,0.802959561,0.493914098,-0.06048093,0.799879491,0.583681524,-0.049842209,0.807097256,0.586452127,-0.034276981,0.870288134,0.462943941,-0.034257736,0.844917357,0.511876643,-0.052024372,0.8361516,0.575773716,-0.043428022,0.839184225,0.584792912,-0.031529438 +Right,0.80041337,0.647500634,-4.36E-07,0.748377264,0.617657423,-0.036219627,0.696985841,0.571371973,-0.060123678,0.691523433,0.516400218,-0.079907387,0.73690021,0.490149856,-0.09321592,0.721713185,0.375198424,-0.02857824,0.707554579,0.410839587,-0.062383641,0.719291866,0.496872336,-0.078826569,0.726703525,0.507461727,-0.087248772,0.767932057,0.358302444,-0.026028844,0.751432955,0.41801998,-0.057518162,0.757402718,0.520985305,-0.059047926,0.760954559,0.530578732,-0.053987522,0.811609149,0.370633364,-0.029852726,0.797899663,0.438695282,-0.065034255,0.797108412,0.537340462,-0.053238355,0.798085868,0.553358972,-0.036816582,0.852883697,0.401056886,-0.037363268,0.8386994,0.449021131,-0.058028687,0.831711948,0.526345909,-0.048038762,0.829144418,0.548835218,-0.03449126 +Right,0.803335905,0.594065309,-4.56E-07,0.749145031,0.571408689,-0.035566304,0.696715832,0.520581663,-0.056681093,0.690749288,0.458109558,-0.074639283,0.737276912,0.426855326,-0.0855814,0.722720623,0.334058315,-0.019315826,0.705331445,0.358513683,-0.053030204,0.719523072,0.444377035,-0.068917058,0.728762209,0.450245947,-0.077574149,0.765869498,0.30844456,-0.017824598,0.748250902,0.361653566,-0.052630022,0.759354234,0.464477092,-0.055131152,0.766142786,0.463236541,-0.049242828,0.808538318,0.313916445,-0.023815677,0.794045806,0.381314456,-0.059254128,0.797369063,0.473705292,-0.047734063,0.802359462,0.467990071,-0.031448789,0.850898445,0.33710444,-0.033944689,0.834600985,0.393143147,-0.052560996,0.832701921,0.45921126,-0.044194601,0.836252689,0.458108217,-0.032686614 +Right,0.798644602,0.566919684,-4.86E-07,0.745723724,0.526347101,-0.027678214,0.698211968,0.466458976,-0.045508303,0.683678329,0.398964167,-0.06233805,0.721604168,0.378755987,-0.072899319,0.740425408,0.292776436,-0.009031167,0.710888445,0.30320242,-0.039141051,0.718095779,0.387469143,-0.054110289,0.730521083,0.394981861,-0.062370814,0.780657291,0.279864311,-0.009693011,0.7481879,0.320201844,-0.040172841,0.755464971,0.415306509,-0.040829163,0.767715335,0.413101941,-0.034346182,0.819004953,0.292457193,-0.017310258,0.787386119,0.344009817,-0.046987679,0.790059209,0.428021699,-0.034884598,0.803324461,0.423423827,-0.019492244,0.855841994,0.322026879,-0.028599104,0.824246347,0.363078237,-0.042255953,0.822147608,0.421620518,-0.033567641,0.833539069,0.42173788,-0.022783918 +Right,0.799153149,0.53236866,-5.11E-07,0.743358016,0.479878366,-0.020661205,0.70108968,0.418753386,-0.037201528,0.684418797,0.353432953,-0.054689493,0.719069183,0.333384186,-0.066263653,0.755649328,0.253932774,-0.002825218,0.715996802,0.255499721,-0.033103839,0.71944505,0.339537203,-0.048229042,0.733285606,0.354382515,-0.056045264,0.791037858,0.249979764,-0.006852473,0.744064748,0.276854426,-0.037087612,0.749484897,0.371373862,-0.037394591,0.766356289,0.373110741,-0.030911447,0.824889123,0.266188204,-0.017505832,0.778565884,0.299724668,-0.046497781,0.77987349,0.384701014,-0.033814214,0.797059834,0.385495216,-0.018240267,0.855873108,0.300631642,-0.031223046,0.813315272,0.322010398,-0.044491991,0.809850216,0.378005773,-0.035199676,0.824464738,0.38382569,-0.023952803 +Right,0.796081424,0.521173656,-5.39E-07,0.742469072,0.473094195,-0.018334707,0.698452055,0.408402354,-0.032606315,0.684469342,0.343309462,-0.047988247,0.718159378,0.32471925,-0.057465892,0.756600142,0.246160582,-0.001789271,0.715159655,0.24572441,-0.03087407,0.71895057,0.330603927,-0.045206182,0.733251691,0.343613029,-0.052802149,0.791476011,0.241906822,-0.006522281,0.743385315,0.26687637,-0.035936933,0.749624968,0.363501519,-0.035271991,0.766922176,0.362900078,-0.028193288,0.824341118,0.256736547,-0.017573291,0.775726438,0.287916332,-0.045726635,0.778300643,0.375259757,-0.031997744,0.796340525,0.374828935,-0.015927041,0.854567945,0.289650887,-0.031593911,0.809081495,0.310009211,-0.045625202,0.807004929,0.366761178,-0.036554854,0.822711706,0.370789737,-0.025291072 +Right,0.786747038,0.497936368,-4.70E-07,0.734285951,0.437990278,-0.014003776,0.700883746,0.372983545,-0.028575435,0.683839083,0.320550054,-0.044645283,0.708910525,0.314456344,-0.055683088,0.776011407,0.223955631,-0.00119036,0.717987239,0.231015921,-0.027639195,0.721992314,0.304269731,-0.044050395,0.741730809,0.313831747,-0.054172151,0.801804066,0.221168175,-0.007273535,0.733082891,0.249913216,-0.034664504,0.740866423,0.332521617,-0.037577339,0.763744771,0.334057212,-0.034542602,0.823347151,0.237543553,-0.018061467,0.755249143,0.269841224,-0.042494472,0.761568844,0.345435649,-0.032081049,0.783756375,0.352586865,-0.019775445,0.838687718,0.269712716,-0.031684518,0.780477643,0.290925771,-0.046578031,0.782025814,0.339740455,-0.040767618,0.800121844,0.351275891,-0.031785645 +Right,0.780371606,0.484505117,-4.48E-07,0.728280008,0.424298525,-0.011982325,0.704497218,0.358785093,-0.026521368,0.689731896,0.312020987,-0.042644385,0.705281675,0.301513374,-0.053836565,0.788683593,0.218441337,-0.000122865,0.722942889,0.219444931,-0.026643166,0.721816778,0.286486715,-0.044281919,0.740421951,0.303616047,-0.05494985,0.806048095,0.218499959,-0.00677446,0.727530599,0.237035155,-0.032405376,0.732321262,0.313836664,-0.036262885,0.757798254,0.316585273,-0.03464812,0.817684472,0.236255288,-0.017760914,0.739879072,0.256961584,-0.039311811,0.743915796,0.328410089,-0.029622423,0.768296599,0.332647592,-0.019420138,0.821229458,0.268796563,-0.031533502,0.757638097,0.285151392,-0.045805853,0.760588765,0.335717201,-0.040750127,0.78213191,0.346692979,-0.03278657 +Right,0.785633862,0.464206219,-4.37E-07,0.733657837,0.392906249,-0.004251432,0.716954947,0.333511949,-0.016849037,0.70265013,0.291366577,-0.032209255,0.708860517,0.262008131,-0.043315377,0.813667417,0.203205645,0.005651431,0.738929331,0.189798623,-0.016081363,0.733121336,0.257590264,-0.032702565,0.749337375,0.286116362,-0.043337159,0.820744574,0.2074285,-0.003941163,0.728977799,0.20551765,-0.025995888,0.72872448,0.280326009,-0.032980379,0.753417134,0.297623068,-0.035534073,0.815687597,0.224651188,-0.016425304,0.727164268,0.232612729,-0.031947475,0.72751379,0.301687062,-0.02502935,0.750738025,0.315328151,-0.019750964,0.800321579,0.24919048,-0.031260237,0.729426265,0.268922716,-0.043454576,0.732425451,0.321874648,-0.041845575,0.75527066,0.335456103,-0.038223706 +Right,0.787521541,0.466834426,-4.13E-07,0.75486809,0.381117404,-0.006901316,0.74954772,0.302659333,-0.017009174,0.744006634,0.254754692,-0.028699955,0.738257766,0.22205928,-0.036580704,0.832413197,0.208173424,0.00025066,0.752409458,0.173658341,-0.023056814,0.740905464,0.234177649,-0.041182689,0.754650891,0.264102191,-0.052454446,0.82708782,0.210310236,-0.006668654,0.736338258,0.189093783,-0.030656211,0.730435491,0.255868405,-0.039638709,0.749236405,0.280774176,-0.043256946,0.81158489,0.224776357,-0.016469341,0.726267576,0.218050241,-0.031778004,0.722315192,0.284173757,-0.027562857,0.740442753,0.30357635,-0.024284849,0.789967835,0.24863182,-0.028972903,0.72194618,0.268631577,-0.041824047,0.722003937,0.318345487,-0.043576173,0.742091954,0.329208493,-0.042684749 +Right,0.786646485,0.466985404,-3.23E-07,0.806078136,0.375100166,0.002908623,0.807295561,0.284046054,-0.003713832,0.784103751,0.232774287,-0.012815156,0.754461169,0.2185314,-0.019870864,0.837430775,0.215602666,-0.001950087,0.759862185,0.17285499,-0.020774201,0.75124377,0.230356023,-0.032511905,0.765960932,0.256773651,-0.039822377,0.820809126,0.219961196,-0.012570015,0.735458732,0.192276329,-0.030297482,0.734221041,0.254705489,-0.033799045,0.753124654,0.277026296,-0.035597228,0.796650112,0.238168404,-0.024205284,0.717635989,0.223336354,-0.036005381,0.720058441,0.288620114,-0.030376362,0.740868568,0.308816344,-0.027575156,0.768655121,0.265160739,-0.03686187,0.708891034,0.275460124,-0.048497085,0.714547575,0.325566858,-0.049025867,0.735826671,0.337356329,-0.048217699 +Right,0.785850286,0.471935868,-2.45E-07,0.817822754,0.370526582,0.007729641,0.818517447,0.276898742,0.002429409,0.791668236,0.231138065,-0.005431571,0.756315231,0.231447697,-0.013413111,0.843606651,0.228640139,-0.007075987,0.774665177,0.172095388,-0.019368768,0.763000488,0.224694893,-0.026849471,0.773990333,0.260479331,-0.031712171,0.817175508,0.230925769,-0.018420303,0.748290718,0.189627588,-0.025297629,0.742323935,0.242400721,-0.024999812,0.75622195,0.274501145,-0.02655592,0.784386754,0.247163206,-0.028929168,0.719790995,0.21882841,-0.031145286,0.717292368,0.277053833,-0.024567032,0.73395741,0.307084799,-0.023653828,0.747864306,0.27373603,-0.039635036,0.697239041,0.27173537,-0.045005195,0.698879898,0.321542561,-0.041908465,0.715492427,0.34314245,-0.039692041 +Right,0.773907542,0.491887748,-2.34E-07,0.812916458,0.388148367,0.018137692,0.816667199,0.294950396,0.01759303,0.795459926,0.239291936,0.014171625,0.764141142,0.228502154,0.009300139,0.834863186,0.23866111,-0.007690396,0.781942904,0.176769197,-0.008854342,0.774568379,0.21738869,-0.008623106,0.782657444,0.245657295,-0.009214091,0.797800899,0.243384972,-0.02080206,0.751743495,0.192505062,-0.013792778,0.745147467,0.233251035,-0.007298287,0.753582299,0.266054004,-0.006749761,0.75818795,0.261516035,-0.030440604,0.720024109,0.221844375,-0.019282712,0.716426015,0.264648497,-0.009293091,0.726526856,0.294611782,-0.008560339,0.718450427,0.290182233,-0.038896389,0.691167176,0.271126032,-0.03161433,0.692512214,0.311554641,-0.021549834,0.702144921,0.33593154,-0.015736859 +Right,0.74944514,0.522088766,-2.07E-07,0.796158373,0.43232131,0.012755402,0.808516145,0.343085349,0.010514126,0.791187942,0.264752388,0.007424869,0.762485147,0.234985709,0.003292956,0.815612495,0.297361881,-0.017871376,0.774935365,0.219290599,-0.019229142,0.767251849,0.25193423,-0.016939748,0.772753477,0.278808624,-0.015357868,0.772641242,0.302708924,-0.026625825,0.740094066,0.236006886,-0.019631876,0.73277545,0.268622637,-0.010578212,0.737632513,0.2979877,-0.008258393,0.729721725,0.314825207,-0.032058842,0.708586395,0.260910094,-0.020921178,0.705023348,0.28889215,-0.00900969,0.710136175,0.316410422,-0.006513099,0.689391255,0.334612429,-0.03617879,0.6787135,0.286110878,-0.024981033,0.679112971,0.309950888,-0.01158173,0.682635069,0.331298858,-0.003986473 +Right,0.727118969,0.548345625,-1.24E-07,0.777177334,0.462620288,0.015409661,0.789046943,0.381153584,0.017020706,0.773142457,0.312653333,0.016938401,0.744526684,0.2908746,0.0161166,0.793958604,0.329102904,-0.004656098,0.768363595,0.251639754,-1.06E-05,0.761047006,0.28394857,0.00469161,0.763741434,0.314580351,0.007451478,0.751448989,0.32353282,-0.012364809,0.73493892,0.259607494,-3.85E-05,0.729038715,0.289901823,0.008838804,0.730495155,0.320041358,0.011077132,0.70992434,0.328159153,-0.0167761,0.70276612,0.280883789,-0.00086015,0.700070322,0.309100598,0.009373378,0.700679958,0.337281764,0.010359529,0.671809435,0.342042834,-0.019838298,0.67403537,0.304389298,-0.00508389,0.674859345,0.333484083,0.007928515,0.675852537,0.358731091,0.014970134 +Right,0.72009474,0.546883106,-1.84E-07,0.767892241,0.461593628,0.017944543,0.77945137,0.378719121,0.020603256,0.763131738,0.31327039,0.021039153,0.735082805,0.290180802,0.019983932,0.784864426,0.321473271,-0.003938125,0.752186298,0.249430865,0.001199759,0.742536306,0.282499164,0.006508371,0.745079041,0.315108925,0.00965381,0.744756103,0.314687014,-0.012910529,0.718826592,0.262212723,0.000293147,0.7105757,0.294536233,0.009171872,0.71355015,0.326767534,0.010967383,0.704067409,0.322296143,-0.018187497,0.686032832,0.285059094,-0.001778008,0.681874156,0.316059083,0.008353597,0.685388088,0.345139831,0.008774566,0.665418684,0.340483516,-0.021932364,0.658680081,0.310571551,-0.007727332,0.658574224,0.343052357,0.004900107,0.661779344,0.369603425,0.011685588 +Right,0.734981835,0.532062173,-1.93E-07,0.775694728,0.436305642,0.017712561,0.780606329,0.354140937,0.017801913,0.760252059,0.300182641,0.015046106,0.730150044,0.287443459,0.01047176,0.790425122,0.296880484,-0.005106843,0.746837199,0.235270172,-0.003769318,0.73875916,0.27187115,-0.002102335,0.74442786,0.301961482,-0.001384297,0.752488732,0.298082203,-0.015928976,0.715958655,0.252131462,-0.005956281,0.708616436,0.287628412,0.001120525,0.71425581,0.320890248,0.001946634,0.713511467,0.312099487,-0.023315931,0.684683263,0.280950129,-0.009047427,0.680980027,0.316572338,0.000596555,0.687896967,0.346880376,0.00088947,0.676172256,0.336122632,-0.029497772,0.658392191,0.315310776,-0.018245123,0.658648908,0.352095991,-0.006932875,0.664843619,0.379771978,-0.000660316 +Right,0.736795843,0.522046626,-2.45E-07,0.773583472,0.422746867,0.017465156,0.776961505,0.340956867,0.016858995,0.755891621,0.290548623,0.012906034,0.726891875,0.278604537,0.007144381,0.792042077,0.286966175,-0.004243516,0.743876278,0.225568101,-0.005856626,0.733612895,0.263369083,-0.006118434,0.739285469,0.295212716,-0.006599792,0.758407354,0.286976606,-0.016407967,0.715452909,0.240753382,-0.009812174,0.706291735,0.27852419,-0.004288819,0.712792218,0.312933356,-0.003989949,0.722246945,0.300465047,-0.025550509,0.684296787,0.268225372,-0.01480238,0.67854768,0.309706628,-0.006325946,0.686955512,0.341776878,-0.006343518,0.686208248,0.324821919,-0.0336136,0.656245887,0.31023258,-0.027471496,0.655009985,0.352106959,-0.01906411,0.663331985,0.3806912,-0.014195074 +Right,0.751254797,0.522753537,-4.30E-07,0.777898192,0.408126712,0.01816684,0.77314055,0.327144861,0.014169869,0.745805919,0.285684168,0.004897757,0.713322818,0.280444831,-0.006129674,0.797121406,0.277589202,-0.0068766,0.733082294,0.222197145,-0.016472381,0.716945052,0.279011667,-0.018682962,0.724258304,0.318153352,-0.019440215,0.773868442,0.281130224,-0.023112666,0.703934729,0.249068975,-0.032017771,0.690302789,0.3221609,-0.030040687,0.699083149,0.373194098,-0.028243529,0.744663358,0.297564477,-0.036750138,0.676433504,0.292136848,-0.041205283,0.669589162,0.3722381,-0.035508703,0.681093812,0.424025208,-0.032787301,0.713291824,0.323537707,-0.048937108,0.658194244,0.328140825,-0.055036265,0.656831622,0.386174381,-0.051678393,0.670844078,0.421670735,-0.047803253 +Right,0.753186047,0.523443222,-3.52E-07,0.774292111,0.41908142,0.008260306,0.770466983,0.337300628,0.000638528,0.743422449,0.291090339,-0.010062404,0.711130798,0.283903897,-0.020503901,0.797114372,0.281681895,-0.010912429,0.727493942,0.226678506,-0.025799815,0.712992907,0.280561179,-0.032525018,0.721962452,0.314047128,-0.036226556,0.779955387,0.286366701,-0.023123201,0.702344537,0.252052248,-0.035183113,0.69484657,0.310650468,-0.034766831,0.70822829,0.343675882,-0.035037868,0.754757643,0.304261804,-0.034510881,0.68067795,0.291976154,-0.041231651,0.679504514,0.353447586,-0.036110453,0.695490181,0.385570943,-0.03488861,0.726134419,0.328626156,-0.045814272,0.668959618,0.340292692,-0.053734001,0.670358777,0.388973147,-0.053365011,0.685920358,0.410077989,-0.052678399 +Right,0.765217364,0.524697721,-3.91E-07,0.717966139,0.449492157,-0.009437031,0.709097624,0.3740004,-0.020456256,0.705065072,0.323794216,-0.032429494,0.704600453,0.288305342,-0.040382303,0.792291284,0.258773178,-0.003323896,0.712402523,0.237839252,-0.02858812,0.706872046,0.298185736,-0.047999486,0.723981321,0.323769361,-0.060306598,0.792072892,0.262782395,-0.009770051,0.698421001,0.253054202,-0.034318849,0.696684062,0.318945229,-0.042530075,0.718048692,0.338682652,-0.045956187,0.780681014,0.281825334,-0.019543087,0.691025078,0.285479903,-0.036230944,0.69085145,0.350946665,-0.030893918,0.711001635,0.367467672,-0.027073504,0.761240959,0.312071949,-0.032344006,0.690176845,0.342867672,-0.048310392,0.693252504,0.392761797,-0.051265314,0.715157986,0.402020186,-0.050882749 +Right,0.76885426,0.513081193,-4.50E-07,0.71346724,0.44954142,-0.006160507,0.694504619,0.389432222,-0.017800698,0.681008756,0.343346447,-0.031559482,0.683119595,0.315204263,-0.04096619,0.783632517,0.248610169,0.003242822,0.713282228,0.239844635,-0.019824455,0.708915293,0.303816646,-0.0371405,0.72405529,0.332291931,-0.048272155,0.79259479,0.251936615,-0.005849912,0.703977525,0.255154371,-0.028713856,0.704472601,0.326552689,-0.035404783,0.726424098,0.34449321,-0.037636969,0.790230036,0.272137642,-0.018357625,0.702748895,0.291167408,-0.035062406,0.705241501,0.358238101,-0.028743679,0.726776719,0.371026963,-0.02377231,0.777776837,0.303597093,-0.033448577,0.707962275,0.336286604,-0.047435578,0.712742388,0.386930346,-0.047819514,0.734799623,0.397053987,-0.045760579 +Right,0.781272233,0.51590538,-4.50E-07,0.7318483,0.461070418,-0.014065994,0.700099945,0.394193023,-0.029136915,0.68280381,0.343541175,-0.045301277,0.705594003,0.334937781,-0.056237299,0.77210629,0.253281832,-0.004697033,0.715209663,0.245884269,-0.033836748,0.716292739,0.317364216,-0.052160066,0.733950019,0.33378154,-0.062877283,0.795930386,0.253803432,-0.010186956,0.728520453,0.271444798,-0.036446676,0.735000372,0.350528657,-0.039101418,0.756163359,0.352895737,-0.036348406,0.814727604,0.271559685,-0.020494685,0.745969057,0.302480608,-0.042004466,0.752564669,0.373942733,-0.03132008,0.774474561,0.376872301,-0.020079125,0.826358914,0.304444849,-0.033773609,0.767806292,0.325261354,-0.046504725,0.771613061,0.375062704,-0.040297512,0.790111601,0.383791715,-0.031738359 +Right,0.791609645,0.514823556,-4.42E-07,0.738587022,0.462428749,-0.01464192,0.703873694,0.395032436,-0.028488826,0.690146983,0.344900131,-0.043157797,0.716756523,0.335442036,-0.052447677,0.775540352,0.248010755,-0.001235262,0.721749425,0.252546221,-0.029285805,0.724262655,0.326473504,-0.047208376,0.744319558,0.33675459,-0.058337461,0.802642584,0.247598752,-0.006760912,0.73751986,0.273631811,-0.033906806,0.743651748,0.35389325,-0.036910221,0.766530216,0.353065372,-0.034158733,0.8242504,0.266173363,-0.017447244,0.758341849,0.301301062,-0.041131642,0.763103783,0.374397278,-0.030626206,0.785015702,0.374243617,-0.018946076,0.8391276,0.299933583,-0.031050397,0.780641377,0.325280309,-0.045515798,0.783403814,0.376400471,-0.039728116,0.802358508,0.381817579,-0.031225119 +Right,0.810622454,0.535057545,-5.17E-07,0.753617644,0.491390854,-0.017513039,0.706586361,0.42401886,-0.030000722,0.692342877,0.351957202,-0.043381386,0.725819409,0.332812935,-0.050998915,0.760103464,0.271147609,0.000986572,0.723669291,0.265675575,-0.026582422,0.728701532,0.347614497,-0.040223382,0.74273771,0.35801509,-0.047931436,0.796067357,0.262483209,-0.003417219,0.750697136,0.282548666,-0.032625239,0.758792281,0.37435028,-0.032157309,0.77630347,0.37311393,-0.025229981,0.828996778,0.271331608,-0.014150196,0.782292306,0.298205703,-0.042177312,0.787550926,0.383142471,-0.02962365,0.805193007,0.382243812,-0.014614175,0.85928756,0.297017366,-0.027690569,0.812914729,0.320207745,-0.043083455,0.815309584,0.377448738,-0.036018386,0.832447469,0.378680259,-0.026391374 +Right,0.819269836,0.54511857,-4.79E-07,0.759987593,0.510052621,-0.022952627,0.706840813,0.452465296,-0.037184343,0.69155103,0.380271971,-0.051817581,0.730473697,0.354004443,-0.059849184,0.744934559,0.308412075,-0.00372555,0.718281329,0.289275914,-0.034593634,0.7269063,0.374166578,-0.047590628,0.73672986,0.377673,-0.054122325,0.782730699,0.29543969,-0.006324264,0.75278008,0.293707818,-0.040310744,0.763554513,0.392139673,-0.039735366,0.7755723,0.385351807,-0.030934451,0.820156574,0.295185149,-0.016141241,0.791139543,0.304259658,-0.04894628,0.798369408,0.395048022,-0.035515465,0.812185824,0.38681531,-0.01782353,0.858646154,0.308559835,-0.028874703,0.828194797,0.319967836,-0.043558702,0.830132544,0.379262149,-0.033981048,0.843467236,0.374110967,-0.022380425 +Right,0.823794484,0.538276672,-4.68E-07,0.765798748,0.510098696,-0.020848179,0.710463166,0.455590844,-0.032852702,0.697214067,0.381091118,-0.045512881,0.73750335,0.347347707,-0.052113678,0.741731465,0.328995317,-0.004287682,0.71808821,0.294293642,-0.03440069,0.729423225,0.376114219,-0.045507744,0.738430202,0.379183084,-0.050536137,0.78059864,0.312621653,-0.00757658,0.755520999,0.293057919,-0.040441185,0.767421901,0.390729964,-0.038902801,0.777735472,0.383562237,-0.029445231,0.819213271,0.306875348,-0.017760988,0.795350492,0.299794614,-0.050655629,0.803253651,0.391647935,-0.036824692,0.814956188,0.383795917,-0.018529914,0.860602081,0.312169701,-0.030427242,0.834582627,0.30860123,-0.045365315,0.836229682,0.369740546,-0.034722824,0.847186804,0.36828953,-0.022254614 +Right,0.834268212,0.52513361,-4.56E-07,0.775487125,0.506198645,-0.026115753,0.718188643,0.453800678,-0.040225621,0.712061942,0.375355333,-0.054083668,0.758770406,0.339102656,-0.061551429,0.743011296,0.319981813,-0.006570306,0.726540148,0.285871655,-0.038857371,0.741560817,0.370405167,-0.051440507,0.74827975,0.37160176,-0.057650417,0.78346175,0.296773821,-0.008624346,0.766651034,0.27688849,-0.044152476,0.781313479,0.380021632,-0.043952264,0.787388384,0.371766001,-0.03482461,0.82362926,0.286532402,-0.018441802,0.810845852,0.281886041,-0.05391198,0.819720685,0.376380414,-0.040718291,0.825669169,0.36617294,-0.02245428,0.866749287,0.287045181,-0.03130633,0.850494921,0.285375535,-0.047555603,0.853522301,0.350928485,-0.037075918,0.860233784,0.347897142,-0.024753455 +Right,0.847520769,0.517636299,-4.40E-07,0.790534496,0.515159667,-0.028497769,0.733645141,0.465037823,-0.043090817,0.734528422,0.380898207,-0.056403689,0.782132804,0.339577824,-0.063519135,0.748506308,0.333648384,-0.012546194,0.737095475,0.292818725,-0.047485776,0.755110085,0.372013539,-0.061089061,0.760945261,0.378223211,-0.066982351,0.789350212,0.310527295,-0.013932928,0.780098855,0.274551839,-0.051823419,0.795845628,0.375705451,-0.053175822,0.796306729,0.371027172,-0.044590496,0.830127537,0.299856186,-0.022871755,0.82755965,0.279674709,-0.061263584,0.834715366,0.373016477,-0.049592584,0.830698192,0.366245598,-0.031759396,0.873345077,0.298221648,-0.034680542,0.865946114,0.280442446,-0.05395316,0.869136155,0.349635899,-0.043301404,0.868018627,0.354031086,-0.03010278 +Right,0.853630543,0.517261147,-4.03E-07,0.80054462,0.52012229,-0.034881905,0.748332143,0.476589203,-0.054221127,0.752851486,0.392647237,-0.070766255,0.79884249,0.344229847,-0.080323584,0.750310361,0.344566673,-0.023635253,0.744167924,0.303342193,-0.060813274,0.766449213,0.380456775,-0.073955089,0.770808339,0.388404131,-0.079260841,0.7908957,0.316972911,-0.022562144,0.790003896,0.285444915,-0.06233212,0.807514727,0.387139261,-0.063701481,0.800075889,0.380305648,-0.055661049,0.831575215,0.303100049,-0.029178232,0.838667691,0.284522206,-0.069645248,0.847006738,0.376667053,-0.059154354,0.836103678,0.369211674,-0.042614635,0.874365747,0.298255593,-0.039118089,0.877120376,0.28304249,-0.061378274,0.881335378,0.350018144,-0.053230863,0.875751495,0.354562044,-0.04179794 +Right,0.856142521,0.523711681,-3.91E-07,0.802542925,0.525766611,-0.037010726,0.750481069,0.481413096,-0.057998911,0.75641036,0.399299234,-0.075613558,0.803803802,0.350292593,-0.086020097,0.751543462,0.343580067,-0.026196426,0.748341918,0.311593026,-0.063454643,0.769330978,0.3890948,-0.076482505,0.771850407,0.391327769,-0.082041331,0.79331398,0.31643343,-0.024443798,0.793973029,0.292559624,-0.064931691,0.810828567,0.394966245,-0.066099837,0.803639889,0.384688228,-0.057816982,0.835126758,0.303829551,-0.030408189,0.843155146,0.29139635,-0.071645871,0.850844085,0.383556902,-0.060667358,0.840199947,0.372628421,-0.043691877,0.878872097,0.300018132,-0.039853591,0.882015884,0.288754642,-0.062572338,0.885078669,0.357057571,-0.054211494,0.878424168,0.360205352,-0.042500466 +Right,0.853201568,0.536859274,-4.88E-07,0.793806791,0.511226773,-0.020803906,0.738307118,0.450196564,-0.031346165,0.73438859,0.370936453,-0.042477343,0.781260192,0.336626351,-0.047975428,0.772661328,0.317704976,-0.002032588,0.754266441,0.284454226,-0.033068474,0.764236689,0.365638912,-0.04595907,0.771398187,0.371067971,-0.052335676,0.812756419,0.297486782,-0.006281927,0.793376625,0.275723636,-0.040110897,0.803211808,0.378136605,-0.04044304,0.811773181,0.372158229,-0.031595949,0.853020012,0.292411804,-0.017629899,0.836873353,0.287264794,-0.052100752,0.84227252,0.38252905,-0.039291188,0.850639403,0.373015851,-0.02109416,0.896508396,0.299398035,-0.031516254,0.877099276,0.294438481,-0.04803583,0.87692821,0.362278551,-0.037040778,0.885481358,0.361259401,-0.023858612 +Right,0.850959182,0.546127021,-5.06E-07,0.792441428,0.50139457,-0.020584986,0.740702808,0.435731918,-0.033133134,0.731249809,0.35545218,-0.046553195,0.775189996,0.326144874,-0.053627282,0.785827994,0.299905002,-0.0016374,0.760458708,0.274919122,-0.033299848,0.767582715,0.360895514,-0.047238104,0.777895868,0.362325549,-0.054632749,0.825974703,0.290029347,-0.005558081,0.797499061,0.275543153,-0.038772933,0.804890215,0.379891604,-0.038222779,0.81705147,0.370319963,-0.029924197,0.865632176,0.292502224,-0.01661646,0.838060439,0.28482303,-0.050000239,0.84088701,0.382131517,-0.035604626,0.855031848,0.374696314,-0.017332045,0.906296909,0.30921331,-0.030299041,0.8772645,0.301258087,-0.045969449,0.874239922,0.364749223,-0.035201371,0.887002051,0.36437574,-0.022648869 +Right,0.848754227,0.557170689,-5.58E-07,0.790545523,0.497274995,-0.014656871,0.746617317,0.42761907,-0.0267641,0.734126925,0.352930993,-0.041342668,0.770666361,0.330620557,-0.050023787,0.807154298,0.288304806,0.003787087,0.770606697,0.264699757,-0.026831623,0.774724841,0.3527987,-0.04117848,0.789153159,0.35877946,-0.04870512,0.842639625,0.286741078,-0.003129664,0.803490996,0.276038677,-0.035764337,0.806896687,0.38026318,-0.035778422,0.823003948,0.375786036,-0.02792827,0.877602041,0.295521587,-0.016525123,0.838539124,0.292437881,-0.047588792,0.8383798,0.390512794,-0.032430351,0.856909513,0.387658566,-0.014103997,0.912107825,0.32056132,-0.032375347,0.873668671,0.316517532,-0.04630838,0.869621575,0.379930466,-0.034865838,0.886556745,0.383300096,-0.021798965 +Right,0.8412233,0.54869175,-5.17E-07,0.786285818,0.475503802,-0.014417984,0.751358211,0.403201938,-0.029858425,0.738985479,0.338237137,-0.047543563,0.770720541,0.322588205,-0.059315424,0.830964565,0.266180694,0.001743214,0.780885577,0.250614107,-0.028687375,0.778481781,0.335817546,-0.045368802,0.796114028,0.350553185,-0.05469786,0.862655282,0.268497288,-0.005120174,0.804257393,0.272213042,-0.036833376,0.804305673,0.369054556,-0.03891854,0.826877117,0.370864034,-0.03351156,0.890260518,0.285653174,-0.017843047,0.831445634,0.29713127,-0.045741301,0.82937777,0.384355426,-0.033095751,0.852251768,0.387413651,-0.017946336,0.912918806,0.317143679,-0.03337362,0.85889858,0.323005587,-0.046630513,0.855216622,0.378607154,-0.037911665,0.874730885,0.386256516,-0.026989138 +Right,0.837103307,0.534704924,-5.13E-07,0.785361886,0.465679079,-0.015355359,0.758055866,0.39103204,-0.030572219,0.746857941,0.332630396,-0.04710348,0.772088468,0.320198715,-0.057757784,0.848462164,0.253508627,0.000832378,0.788827538,0.240513772,-0.028839448,0.783218503,0.322093874,-0.047248378,0.801325381,0.342097431,-0.058383048,0.874819934,0.258567303,-0.004915058,0.803006768,0.260791034,-0.035980493,0.799909711,0.35801366,-0.039721247,0.824527025,0.365536332,-0.035947327,0.894758165,0.281804264,-0.016059574,0.822884321,0.289886385,-0.043449979,0.818950117,0.375588119,-0.031700376,0.843072712,0.38468802,-0.017455084,0.907056212,0.320254356,-0.030167745,0.845641613,0.326076627,-0.047277216,0.842889726,0.379584193,-0.041386988,0.863972485,0.390450776,-0.031659123 +Right,0.838848174,0.533678114,-4.70E-07,0.787758827,0.458947539,-0.015355787,0.764160693,0.381641746,-0.031435858,0.751814306,0.327410996,-0.04869359,0.771161139,0.315737009,-0.059902456,0.860838294,0.245925128,-0.00172131,0.792262614,0.233374834,-0.032755584,0.786772251,0.308486104,-0.052811399,0.806249022,0.330005616,-0.064949609,0.882085562,0.253935337,-0.007990319,0.797687709,0.250477374,-0.038804527,0.794747114,0.340606719,-0.043305766,0.82124114,0.350303739,-0.040946759,0.894799888,0.279507607,-0.019404402,0.810768962,0.285593599,-0.045348477,0.806778371,0.365401387,-0.033959396,0.830897927,0.374633849,-0.02136817,0.897314131,0.318352163,-0.034061663,0.830564976,0.325851142,-0.050645914,0.82816267,0.377725065,-0.0453698,0.849284112,0.38901788,-0.036689531 +Right,0.841342568,0.530286372,-4.88E-07,0.788353741,0.439123452,-0.006269536,0.773587763,0.365901142,-0.018833246,0.761158466,0.310036212,-0.033550486,0.767732084,0.2936351,-0.043543793,0.882562757,0.249054879,0.003096202,0.803261876,0.224745676,-0.020897733,0.793868482,0.294867009,-0.037578415,0.808621705,0.327685416,-0.048228417,0.894181013,0.258119136,-0.007123297,0.795321345,0.235989511,-0.030780239,0.788987339,0.314038903,-0.036395825,0.810102701,0.338705271,-0.037847105,0.890663564,0.281904668,-0.020764517,0.792407036,0.275900841,-0.038536336,0.787901103,0.349533021,-0.030518372,0.808841109,0.368259966,-0.024221126,0.874274492,0.313356876,-0.037056129,0.795719922,0.323801726,-0.050170667,0.794339418,0.378563434,-0.048426889,0.815147042,0.394410312,-0.044860084 +Right,0.831601858,0.525651157,-4.45E-07,0.820511818,0.426132172,0.001647114,0.823022783,0.33292523,-0.005979446,0.81627655,0.274727762,-0.016383341,0.80299437,0.243088007,-0.023478365,0.893217981,0.256011546,0.001499127,0.808039844,0.211567968,-0.022262897,0.794971347,0.269298822,-0.038654864,0.809561312,0.300968349,-0.048614122,0.885434151,0.260177374,-0.011129882,0.78513217,0.227703124,-0.032541934,0.778589547,0.295401573,-0.037548754,0.799427867,0.321477592,-0.039593223,0.866458774,0.277741551,-0.025956579,0.771059155,0.261606306,-0.040328778,0.767837822,0.332589567,-0.033333417,0.789851069,0.353187799,-0.029393239,0.841708183,0.305532485,-0.04261503,0.766036749,0.313676983,-0.055827405,0.765665054,0.368356794,-0.055510625,0.787456989,0.382031262,-0.053529654 +Right,0.823738992,0.500602126,-3.27E-07,0.851076484,0.401658565,0.007639583,0.853366077,0.310515553,0.000725052,0.828093171,0.258410901,-0.008862445,0.794620395,0.246880472,-0.017496245,0.88545692,0.252686977,-0.009678035,0.809588969,0.200025558,-0.024764528,0.794882357,0.252988756,-0.031554267,0.806026816,0.280755579,-0.036253609,0.867876232,0.258200645,-0.022930784,0.783543766,0.217185274,-0.035956118,0.775362313,0.274668425,-0.035327479,0.790256917,0.303944439,-0.035879571,0.840921342,0.277519703,-0.035621092,0.76027,0.255159616,-0.042823046,0.757330537,0.315835655,-0.035603248,0.775526762,0.341792077,-0.03363324,0.810014904,0.305145085,-0.048682392,0.74711442,0.308315337,-0.056966458,0.7473526,0.355291247,-0.055618133,0.764581442,0.371442497,-0.05476648 +Right,0.812546551,0.495239675,-2.57E-07,0.849267662,0.396419168,0.012103284,0.855469406,0.304686129,0.005875518,0.832910478,0.254894614,-0.003321683,0.798058867,0.24999854,-0.012998939,0.881257415,0.258150548,-0.013355929,0.817081213,0.187316209,-0.024766482,0.804958582,0.236611873,-0.029486608,0.815085828,0.267765552,-0.032945108,0.852351964,0.26305598,-0.02760257,0.784428537,0.20334737,-0.033786729,0.776702225,0.255176336,-0.029787499,0.789417028,0.288551718,-0.029283505,0.817223668,0.27913335,-0.040068258,0.752570212,0.240450412,-0.039739005,0.749496996,0.296021402,-0.029393297,0.765910685,0.326033056,-0.026946761,0.78002888,0.304478049,-0.05228696,0.729099631,0.292115629,-0.053905528,0.730590105,0.339960903,-0.047495484,0.746855795,0.362807244,-0.043792505 +Right,0.799572587,0.48668772,-1.48E-07,0.844882071,0.399491847,0.015858958,0.859173536,0.315705508,0.012199991,0.843121588,0.254386693,0.006419946,0.811342597,0.236792445,-0.001064145,0.876564682,0.265367389,-0.01497267,0.836639345,0.189016208,-0.016903007,0.828181922,0.223310873,-0.016409179,0.832462192,0.255234092,-0.016519729,0.83536911,0.26548937,-0.027277492,0.803756356,0.19575958,-0.020549195,0.795625925,0.229355663,-0.013291012,0.798389614,0.265492916,-0.012520839,0.792959213,0.27581197,-0.035858337,0.768274188,0.217615142,-0.024062723,0.762640655,0.254941344,-0.012051329,0.767554224,0.289246529,-0.010390974,0.75189513,0.296764016,-0.043191917,0.734374583,0.260887474,-0.033766307,0.733552516,0.296602219,-0.021004938,0.739699364,0.323524594,-0.013974127 +Right,0.76958245,0.493509591,-2.25E-07,0.817222059,0.407497168,0.015973853,0.831132472,0.321460098,0.015664475,0.81604141,0.261965454,0.012589579,0.784643471,0.243222803,0.008157898,0.850042582,0.271060854,-0.002614242,0.807242334,0.198695481,-0.003284573,0.795859754,0.232732773,-0.003704823,0.80061543,0.263374895,-0.004453764,0.812546074,0.263606668,-0.013971061,0.772949815,0.205780491,-0.007382731,0.763005316,0.241870791,-0.002347598,0.768711388,0.274399757,-0.00203344,0.772197485,0.268755525,-0.022497106,0.739447951,0.226035655,-0.011528323,0.732959747,0.263123095,-0.002342908,0.740407288,0.290462464,-0.00146929,0.731838644,0.28556186,-0.030040264,0.710797966,0.254782736,-0.0208351,0.708383858,0.292035878,-0.009493641,0.714521468,0.317862839,-0.002775283 +Right,0.750901401,0.48664701,-1.72E-07,0.801295698,0.414620221,0.011469698,0.818942487,0.330522716,0.010050902,0.804059148,0.263705969,0.007316326,0.773931801,0.238425136,0.003469485,0.83000505,0.278237492,-0.010588819,0.797129512,0.207051098,-0.011068834,0.786055088,0.238924295,-0.009833599,0.788166106,0.271631181,-0.009195304,0.790493906,0.269854575,-0.01908762,0.761782587,0.21221894,-0.012681293,0.752803028,0.246594205,-0.006159741,0.755868495,0.279609025,-0.004836331,0.749566913,0.273307383,-0.024755534,0.72968775,0.230886757,-0.015459259,0.724571705,0.26456666,-0.005773775,0.728524029,0.294383049,-0.003946178,0.710086405,0.286242276,-0.029427692,0.7014938,0.256174982,-0.02082398,0.699565709,0.289479852,-0.009210605,0.702202499,0.314881951,-0.002278583 +Right,0.733010411,0.495575041,-1.52E-07,0.784719467,0.42693615,0.013743514,0.803281367,0.346904546,0.01506715,0.790377855,0.275178134,0.015277999,0.763061702,0.246659666,0.014623025,0.807460129,0.291002542,-0.008078296,0.782277226,0.216350317,-0.003804037,0.772909403,0.248411924,0.001456006,0.774181306,0.280130029,0.004496812,0.767705858,0.281769842,-0.015563542,0.749815643,0.220759436,-0.004684563,0.742610693,0.253193289,0.004178246,0.743453562,0.28466323,0.006659422,0.728556275,0.284455001,-0.019670598,0.719305634,0.241265863,-0.006207924,0.716087043,0.271063417,0.004232551,0.717030823,0.298542708,0.005924951,0.691937804,0.296685278,-0.022447152,0.694042385,0.261690468,-0.010052375,0.693773746,0.291487485,0.002622964,0.693734825,0.315342665,0.009753309 +Right,0.741035819,0.503563821,-1.99E-07,0.789800167,0.431034029,0.016005373,0.806905687,0.348689675,0.016611231,0.794082642,0.274124056,0.015982965,0.767227113,0.242975503,0.014110913,0.814941764,0.294055909,-0.01287184,0.781840503,0.215637818,-0.009661659,0.772896647,0.248210073,-0.004069161,0.774972498,0.279389143,-0.000508381,0.775473475,0.286919326,-0.021832416,0.750146031,0.223160207,-0.010840156,0.742713332,0.257792801,-0.00050578,0.744368315,0.290293157,0.002546893,0.736119628,0.29086116,-0.026820831,0.719125926,0.246191174,-0.011732289,0.715639353,0.278120518,0.000652288,0.717768908,0.306854665,0.002711767,0.697695196,0.304352283,-0.030415196,0.6922158,0.270632178,-0.016940443,0.691712976,0.302634537,-0.003492265,0.692608893,0.326996505,0.00376642 +Right,0.750006378,0.50793469,-2.25E-07,0.795207977,0.427535802,0.012760753,0.808431923,0.342282832,0.009847337,0.792570531,0.281775504,0.005221807,0.762949824,0.26173836,-0.000633227,0.82853961,0.287271738,-0.014060833,0.78281641,0.215000272,-0.016754463,0.772213578,0.252344429,-0.016293626,0.776885927,0.283022463,-0.016345233,0.7935884,0.282897085,-0.024548056,0.752257705,0.222377524,-0.020178558,0.742763102,0.261033416,-0.013398998,0.747880101,0.294816732,-0.012097975,0.75537324,0.289842904,-0.03199872,0.720201194,0.244050294,-0.022975991,0.71391654,0.282803565,-0.012434489,0.720788956,0.313570738,-0.010744871,0.716622114,0.306335568,-0.038660858,0.691256642,0.27690962,-0.031928476,0.688827872,0.314475775,-0.021605212,0.694688559,0.340507954,-0.015637327 +Right,0.765520215,0.500896096,-2.29E-07,0.807664335,0.406952053,0.015927032,0.814641953,0.318230987,0.013419325,0.793014109,0.267039657,0.007874804,0.761262774,0.254848033,0.001058756,0.838116288,0.272654206,-0.00760672,0.787696004,0.20446685,-0.01226942,0.775310695,0.247208327,-0.015011454,0.781952262,0.278897792,-0.017875481,0.806014836,0.269407958,-0.021045271,0.759556115,0.208858833,-0.018914362,0.748515546,0.251338273,-0.014781231,0.755351841,0.287440836,-0.015263746,0.769448698,0.277768433,-0.031662662,0.725451648,0.232143298,-0.024700781,0.717329919,0.279816628,-0.015896548,0.728133738,0.313231945,-0.015482385,0.731400192,0.295560658,-0.041448236,0.69526279,0.273434699,-0.038318846,0.69158262,0.317884654,-0.030476933,0.702388525,0.344682425,-0.026177799 +Right,0.77075094,0.496925712,-2.61E-07,0.810499191,0.402223498,0.010803743,0.816843867,0.307724535,0.006388844,0.792171896,0.25461939,-0.000390618,0.757147312,0.245416611,-0.007861021,0.842894912,0.262060314,-0.00956173,0.783605158,0.192797035,-0.017566662,0.769824684,0.240612328,-0.021888293,0.778135896,0.273814082,-0.0254099,0.814492226,0.259978145,-0.021193678,0.756470442,0.200947136,-0.023376491,0.74510473,0.24930796,-0.020336775,0.754361153,0.285828888,-0.020899208,0.780275583,0.269900829,-0.030898018,0.725122452,0.226327196,-0.028652027,0.717106462,0.280811101,-0.020426571,0.730101287,0.316134214,-0.019336063,0.743551195,0.288580567,-0.040288605,0.699506879,0.269914389,-0.04156249,0.695453107,0.318764985,-0.035783328,0.707852364,0.34679836,-0.032261714 +Right,0.770100176,0.480884314,-2.92E-07,0.803203225,0.387027353,0.007636156,0.808209062,0.298504353,0.002654949,0.782600522,0.247582257,-0.005071628,0.748856246,0.238948867,-0.012202902,0.836318374,0.250632048,-0.003074995,0.769885898,0.187032461,-0.015574125,0.756690145,0.237091184,-0.023518926,0.766762793,0.271708786,-0.028859749,0.814842761,0.248273075,-0.013935652,0.744458437,0.199497908,-0.022478517,0.737440467,0.250323653,-0.02360251,0.751763761,0.281330526,-0.025867313,0.785902977,0.257940412,-0.024274684,0.719213843,0.223323286,-0.02804232,0.715237737,0.278581947,-0.022644728,0.731994569,0.306864709,-0.022148037,0.752587974,0.274950951,-0.034939129,0.700364351,0.267924517,-0.041489497,0.700321972,0.315182716,-0.040154625,0.716324925,0.336508572,-0.03912086 +Right,0.780135155,0.470625192,-2.70E-07,0.807967424,0.379405439,0.004537234,0.811205685,0.29125461,-0.00133964,0.785779357,0.239689738,-0.009587874,0.753221214,0.22883518,-0.01643225,0.83960855,0.239338666,-0.004043409,0.769080281,0.183021307,-0.018691551,0.757748246,0.234512672,-0.027325969,0.769944131,0.264508456,-0.033045955,0.820320904,0.238223508,-0.014588204,0.745839477,0.196377203,-0.026565334,0.741306663,0.249487534,-0.028272437,0.757126808,0.276026398,-0.030358626,0.79373306,0.250291467,-0.025333343,0.723332942,0.218610331,-0.032290775,0.721088886,0.277317703,-0.026484655,0.739234626,0.302093387,-0.025078677,0.762471676,0.270952076,-0.036804959,0.707207024,0.264407277,-0.045286965,0.707924783,0.311156392,-0.044384632,0.725410104,0.328332961,-0.043467294 +Right,0.785418868,0.471700042,-3.41E-07,0.785642087,0.386064947,-0.001898672,0.786556482,0.300927639,-0.009472571,0.774847806,0.249194041,-0.01880585,0.758067787,0.222654268,-0.025027098,0.843821585,0.235285714,0.000715216,0.767396331,0.18517144,-0.019624062,0.756901264,0.240749016,-0.034229293,0.771356404,0.265999943,-0.043251399,0.832215965,0.237490982,-0.00719636,0.749608397,0.196154594,-0.027303645,0.74423635,0.256790578,-0.033295218,0.761835635,0.278496861,-0.035664022,0.811415136,0.2478856,-0.017089088,0.735055506,0.219416007,-0.029176978,0.730566621,0.281458259,-0.02378786,0.748253286,0.300854117,-0.020440642,0.785621107,0.265729725,-0.028879257,0.724508643,0.267306715,-0.039368965,0.725033224,0.314841598,-0.039886303,0.744499564,0.327623427,-0.038641904 +Right,0.787526667,0.47598058,-4.08E-07,0.74700588,0.388096541,-0.007028438,0.73789227,0.322768539,-0.018269729,0.729921579,0.285978884,-0.031791206,0.730447948,0.25383541,-0.041430105,0.836844027,0.222471148,0.002451007,0.761598468,0.185187206,-0.022722434,0.75018698,0.245411858,-0.04275744,0.766259253,0.272228867,-0.055135734,0.837491572,0.228174075,-0.005787738,0.749069989,0.193703294,-0.031853683,0.741223335,0.262034655,-0.041765604,0.7614972,0.287094444,-0.044934083,0.827424526,0.242003098,-0.017263295,0.740978718,0.222831458,-0.035010774,0.733763158,0.288449258,-0.030448271,0.75084585,0.308674365,-0.025348265,0.8086344,0.264209062,-0.031444296,0.736861646,0.267023206,-0.044652533,0.733475149,0.315939873,-0.044530123,0.75138998,0.332172334,-0.041184906 +Right,0.784146249,0.468500763,-4.56E-07,0.736646652,0.397851348,-0.00996461,0.719122171,0.336810529,-0.021619068,0.709105611,0.295918643,-0.035039179,0.72074002,0.2657004,-0.042948935,0.81227845,0.222772747,0.005585872,0.745099604,0.208149746,-0.021789981,0.740751266,0.27614677,-0.042217631,0.759520411,0.298947662,-0.054408219,0.821121335,0.223312557,-0.000906335,0.738400757,0.2196697,-0.029367898,0.738826156,0.294570357,-0.038764041,0.764831305,0.307012618,-0.040661193,0.82234931,0.23215656,-0.011622548,0.742821574,0.238868818,-0.034009356,0.741421223,0.307259619,-0.02836208,0.764431953,0.318389177,-0.020734277,0.81551832,0.248544663,-0.025073465,0.751225173,0.261899441,-0.040028039,0.751284003,0.313687354,-0.038092669,0.772074342,0.328256816,-0.032281488 +Right,0.784624577,0.46387279,-4.31E-07,0.735387623,0.406927139,-0.008400179,0.713507175,0.348878086,-0.017783958,0.704332709,0.304450035,-0.028949805,0.720404267,0.28425923,-0.035241265,0.781348825,0.232902393,0.007617961,0.737118661,0.221583605,-0.015194657,0.733295083,0.287165016,-0.031010019,0.750640154,0.303841084,-0.041151758,0.801525116,0.230581984,0.00134826,0.743325889,0.230973512,-0.022537801,0.741670609,0.305430055,-0.026750075,0.765937924,0.311796367,-0.025373189,0.816642702,0.238967121,-0.009303264,0.756807983,0.245967895,-0.030085124,0.753873944,0.314549327,-0.022269731,0.776798129,0.325388789,-0.013043851,0.825894773,0.257891238,-0.022293137,0.771624744,0.267943949,-0.036650646,0.769037008,0.315035343,-0.033761129,0.787656486,0.329891115,-0.027818643 +Right,0.78452903,0.462868541,-4.70E-07,0.737688065,0.419844747,-0.007511469,0.708615959,0.361571848,-0.014651896,0.700742841,0.311132729,-0.023966884,0.721743941,0.288553268,-0.028642692,0.765249133,0.242263675,0.010177496,0.729296684,0.228009522,-0.013114651,0.728076041,0.296789318,-0.027474452,0.742585301,0.313054085,-0.035949931,0.788512349,0.236264735,0.003457219,0.742051303,0.235418916,-0.021949125,0.743851662,0.315843135,-0.025118997,0.765213549,0.32155773,-0.021635151,0.809752941,0.239331156,-0.008117496,0.761128604,0.249348223,-0.030446434,0.761663377,0.322817504,-0.021904457,0.782680809,0.330066442,-0.010995175,0.829071522,0.255167246,-0.021765776,0.780838668,0.265247613,-0.0359786,0.780239582,0.315284491,-0.031930856,0.798342645,0.325342029,-0.024833707 +Right,0.792763948,0.47355929,-4.83E-07,0.743273973,0.437849432,-0.009576865,0.702658057,0.38303116,-0.016912479,0.692272842,0.322056621,-0.026402092,0.720327556,0.293167561,-0.030899912,0.751027882,0.267316401,0.005494404,0.719915569,0.241686732,-0.020169118,0.723345935,0.313921094,-0.03275438,0.737577796,0.319658995,-0.039434206,0.777722538,0.263756603,-0.000663694,0.741306841,0.244612649,-0.028675877,0.746704519,0.329212427,-0.028900718,0.765252233,0.32743299,-0.022448918,0.804274738,0.262157023,-0.012246963,0.767940044,0.251799345,-0.038516689,0.770684958,0.332525969,-0.027009426,0.789976835,0.332757533,-0.012548719,0.832827687,0.270899832,-0.025648206,0.796719968,0.26156944,-0.039096002,0.794675648,0.317658871,-0.031229794,0.81041348,0.325621247,-0.021400597 +Right,0.800563574,0.478521943,-4.74E-07,0.748307407,0.449732721,-0.012892557,0.702400506,0.396055877,-0.021962654,0.691284537,0.328598231,-0.032636661,0.722930431,0.296669453,-0.037561599,0.745444715,0.276556462,0.000739805,0.717232764,0.247417212,-0.027145484,0.725514293,0.322994471,-0.039746933,0.73757261,0.327374816,-0.046074681,0.774902344,0.268995255,-0.004028,0.744428992,0.247496873,-0.033131916,0.754700184,0.336634517,-0.031939529,0.769549012,0.331005245,-0.024203211,0.804691315,0.263888568,-0.014529432,0.77478236,0.252410948,-0.041405525,0.781749785,0.337706149,-0.027047792,0.797895432,0.333987981,-0.010529655,0.83705008,0.269570202,-0.027184408,0.808042288,0.257736206,-0.039935835,0.809228837,0.314183712,-0.02986704,0.82369709,0.316428065,-0.018522486 +Right,0.80615598,0.479813099,-4.55E-07,0.753249168,0.453854471,-0.015166055,0.704835355,0.399019003,-0.024589781,0.692672789,0.328148872,-0.035260759,0.727407336,0.295709312,-0.039982546,0.743664205,0.28117764,-0.001521321,0.718739331,0.24703607,-0.029676344,0.72757709,0.323445708,-0.040908001,0.73706919,0.324545145,-0.046135206,0.776281714,0.272894025,-0.005765178,0.750073612,0.247944906,-0.03603195,0.760399759,0.336693585,-0.034295563,0.772861421,0.327700347,-0.025549421,0.808510602,0.26837486,-0.016006768,0.782821,0.252413809,-0.044517647,0.789550424,0.336837679,-0.029811904,0.803205669,0.329532862,-0.012355134,0.843068838,0.273340404,-0.028455401,0.817396462,0.258567512,-0.041130874,0.818595469,0.314298242,-0.030433707,0.831297994,0.313475162,-0.018602291 +Right,0.823343694,0.484192073,-4.44E-07,0.769480288,0.47738108,-0.019852072,0.712845922,0.421880841,-0.027293796,0.703051865,0.339285523,-0.035160832,0.744679391,0.304963112,-0.037560556,0.735931039,0.31385079,0.000535456,0.721285522,0.265739202,-0.026771231,0.733577192,0.33906278,-0.037000977,0.738625288,0.343658447,-0.041455079,0.771064997,0.292484343,-0.002092358,0.757739663,0.252607763,-0.031805646,0.769886374,0.344096392,-0.031290401,0.773832262,0.33954823,-0.022498881,0.806895673,0.281752199,-0.011446216,0.795736313,0.24930115,-0.042139068,0.803547144,0.337796926,-0.029666852,0.807501316,0.33537662,-0.012451008,0.846490145,0.279011756,-0.023197984,0.832739711,0.253306299,-0.037581474,0.834947526,0.317107528,-0.026965812,0.83964622,0.323146164,-0.01469142 +Right,0.835848987,0.494285852,-4.30E-07,0.781567812,0.488960177,-0.021384064,0.726650834,0.437879086,-0.031504571,0.724218845,0.356815636,-0.041506846,0.767341852,0.316997975,-0.045969903,0.744018614,0.326553464,-0.006702151,0.730386615,0.276830286,-0.037651885,0.746668279,0.350529313,-0.049888443,0.752883494,0.357045829,-0.055171382,0.780746996,0.304573447,-0.009500178,0.770120263,0.259647459,-0.041896984,0.783705056,0.352594852,-0.04234913,0.785139263,0.349072427,-0.034323797,0.817566991,0.293115854,-0.018880114,0.81038028,0.259739131,-0.051074084,0.817684829,0.348279536,-0.038560253,0.817597926,0.344600946,-0.021498868,0.857366621,0.289414883,-0.030676074,0.846080124,0.264519334,-0.045438629,0.848962247,0.327973992,-0.033970572,0.85144943,0.332805544,-0.02113002 +Right,0.843542635,0.497822523,-4.31E-07,0.790660918,0.499756485,-0.024780104,0.735035419,0.452999681,-0.036537968,0.732532561,0.3687087,-0.04703683,0.775486171,0.325034916,-0.051805362,0.749545753,0.33330676,-0.012441301,0.736558795,0.285919815,-0.044777587,0.753548801,0.360260129,-0.057636578,0.758946061,0.36491251,-0.063609079,0.786496162,0.309477925,-0.014001511,0.778120458,0.267161518,-0.047763057,0.792103171,0.363380104,-0.048208199,0.790894091,0.358230591,-0.040273834,0.823335648,0.296505362,-0.022283468,0.820319176,0.266128123,-0.056229349,0.8278597,0.356212378,-0.044135004,0.825321913,0.350913525,-0.02747412,0.863346934,0.291148454,-0.033197928,0.856703401,0.26834476,-0.05086099,0.860634089,0.33395195,-0.040768337,0.861607254,0.338209569,-0.02861133 +Right,0.83677876,0.515008509,-4.77E-07,0.781129718,0.482205868,-0.020037664,0.728888333,0.423765868,-0.0308968,0.718652785,0.350227416,-0.042467989,0.759867728,0.319811553,-0.047895208,0.766784906,0.301511198,-0.000806524,0.746959925,0.265190274,-0.030214539,0.753263056,0.346927702,-0.042029329,0.760284305,0.349006534,-0.047822244,0.803737998,0.290648401,-0.004098655,0.782923043,0.265423387,-0.036620453,0.789700985,0.363938451,-0.036471315,0.798843801,0.355870098,-0.028000942,0.84028393,0.288416147,-0.014321956,0.821111023,0.270745903,-0.046328142,0.823922455,0.362251431,-0.033494122,0.834236741,0.354444593,-0.016079141,0.879359722,0.296140969,-0.027007392,0.857831597,0.282681108,-0.041240327,0.855936825,0.344551861,-0.031044694,0.865149975,0.344183385,-0.019080564 +Right,0.833512068,0.523626089,-5.29E-07,0.778692424,0.47393918,-0.011677502,0.736380398,0.40634346,-0.02141205,0.72518748,0.334442288,-0.033854093,0.759130955,0.309415549,-0.04095741,0.794108391,0.274959117,0.004714035,0.75997138,0.250802189,-0.024023771,0.763145924,0.331738323,-0.037173182,0.777175069,0.338678151,-0.043883465,0.826334298,0.273793221,-0.002746252,0.78919661,0.260242373,-0.033627544,0.792555273,0.35670653,-0.032978501,0.809697986,0.353402585,-0.024905061,0.857667089,0.280941367,-0.016212389,0.820171893,0.277234137,-0.046181425,0.820664942,0.368248343,-0.032117929,0.839594185,0.365906447,-0.014679158,0.888876557,0.303066105,-0.031737708,0.852795422,0.296641052,-0.046171743,0.849159956,0.356484771,-0.035942025,0.865575075,0.362160712,-0.023754794 +Right,0.831629038,0.523273826,-5.13E-07,0.778785765,0.45628199,-0.009983514,0.747614026,0.38517198,-0.021207599,0.74013716,0.324389637,-0.034900505,0.769679666,0.30904454,-0.043092266,0.823504567,0.258678675,0.005514596,0.774855852,0.242745399,-0.022686383,0.77308321,0.322643459,-0.03906627,0.790968478,0.335739672,-0.048679296,0.851319909,0.261447489,-0.002329928,0.795368552,0.260207176,-0.032010276,0.794699073,0.35274756,-0.034107525,0.817799509,0.355341643,-0.02911824,0.87505126,0.277428687,-0.015482936,0.819435418,0.284568936,-0.041862268,0.815299749,0.367786169,-0.029331334,0.83822602,0.372331947,-0.014443795,0.89398551,0.306908965,-0.030998424,0.843039513,0.308720678,-0.045177534,0.837861598,0.361515641,-0.037184153,0.856805444,0.371159226,-0.026667051 +Right,0.832809925,0.522583365,-4.49E-07,0.783860505,0.452490658,-0.012701659,0.764998257,0.3818717,-0.026928972,0.753949523,0.334125966,-0.042619634,0.77073431,0.316508442,-0.053007387,0.856333315,0.259313524,-0.001155113,0.794403791,0.240186393,-0.030402118,0.787442744,0.311209977,-0.049991,0.804673254,0.332230359,-0.062037531,0.876902938,0.264196277,-0.007503142,0.798655748,0.253489047,-0.037259948,0.794431329,0.33907786,-0.042623278,0.820495069,0.348847449,-0.04127948,0.888909817,0.286584467,-0.018393524,0.81127876,0.282509148,-0.043585416,0.805181324,0.358939141,-0.033178482,0.82997036,0.370232821,-0.02147764,0.89023602,0.320562959,-0.03204019,0.826672494,0.324942023,-0.049247459,0.821925938,0.373711944,-0.045231104,0.842982531,0.387600631,-0.037664343 +Right,0.839153349,0.547391891,-4.55E-07,0.79205215,0.461219251,-0.012939469,0.778392076,0.390254945,-0.027467633,0.769634366,0.338766426,-0.042959314,0.7800349,0.318581939,-0.053373341,0.883535087,0.281055182,-0.001419333,0.814198077,0.254616171,-0.027871132,0.803488076,0.321475983,-0.045808069,0.817668021,0.349487692,-0.056767631,0.897323608,0.290519685,-0.007290862,0.810233235,0.269494981,-0.035050545,0.803130329,0.347390473,-0.041959316,0.82503438,0.367002547,-0.042540774,0.89858371,0.312905967,-0.017182259,0.811554134,0.304670393,-0.040040899,0.804977596,0.376235336,-0.033604782,0.826233387,0.393082023,-0.025872687,0.887714505,0.342681468,-0.02972175,0.816727638,0.347174883,-0.045557328,0.81363219,0.399935037,-0.044128399,0.834391475,0.416848034,-0.039268743 +Right,0.849417746,0.570072711,-5.03E-07,0.804326057,0.467875242,0.002583832,0.795213699,0.392681688,-0.007933285,0.787756085,0.334926277,-0.022731386,0.787994921,0.308607161,-0.034221854,0.90674448,0.303475529,0.008008013,0.827974558,0.260391384,-0.012789033,0.812592745,0.324567109,-0.028021928,0.824114501,0.359806359,-0.037916481,0.912335098,0.313962638,-0.00641401,0.814061522,0.276625037,-0.026997741,0.804248214,0.345935583,-0.031399842,0.822568655,0.377519518,-0.032835931,0.902168155,0.335014731,-0.023464546,0.806743205,0.310922831,-0.036624707,0.799786627,0.377368212,-0.028491713,0.818626463,0.402190417,-0.023749856,0.882171214,0.360736966,-0.042646535,0.804319859,0.358274132,-0.053613048,0.798202634,0.409721911,-0.0525514,0.814862669,0.431487232,-0.050310701 +Right,0.83681041,0.601402998,-3.96E-07,0.863676965,0.503337145,0.013654155,0.867087126,0.403882176,0.00896847,0.844393551,0.337002635,0.000280868,0.814487517,0.315083325,-0.007966139,0.896978557,0.344799817,-0.005274787,0.829681754,0.272497773,-0.022189416,0.816180885,0.322030157,-0.031034082,0.827925563,0.352963299,-0.036362518,0.877399027,0.359217346,-0.022405855,0.801294982,0.294215977,-0.034167923,0.793894172,0.348551035,-0.032268409,0.807953179,0.3801938,-0.032142438,0.850306749,0.384099722,-0.039027512,0.775483489,0.336289942,-0.044751078,0.771608114,0.393774301,-0.034706667,0.788384259,0.420955777,-0.031204805,0.821051419,0.416386098,-0.055547517,0.758907557,0.398150802,-0.062385723,0.760135293,0.444307566,-0.058105636,0.777200222,0.464880466,-0.055124249 +Right,0.81495589,0.600654483,-2.90E-07,0.844662488,0.512193143,0.003697292,0.845314443,0.414684981,-0.005893963,0.816493213,0.348026752,-0.016788123,0.782307029,0.325306326,-0.026959417,0.872718811,0.364365816,-0.020249091,0.801285505,0.294129908,-0.03889,0.789889038,0.341699421,-0.046351377,0.802974582,0.368074656,-0.050217856,0.847116947,0.380161881,-0.031371504,0.765559316,0.323934764,-0.045855619,0.761610329,0.374663621,-0.042402457,0.778399587,0.398650587,-0.04073789,0.81378597,0.404741377,-0.042267408,0.738502026,0.365168244,-0.05106638,0.739015102,0.413637042,-0.040339753,0.757451952,0.43256551,-0.03523311,0.778786004,0.435089201,-0.053333346,0.721817076,0.414835006,-0.059961852,0.724798739,0.454883933,-0.054266039,0.741792321,0.469760209,-0.050034009 +Right,0.790687978,0.616678894,-1.71E-07,0.820682883,0.517080069,0.002030281,0.81986922,0.422139257,-0.008602072,0.786167443,0.366320431,-0.019352827,0.747706831,0.364117026,-0.030348597,0.832012296,0.377699316,-0.029349677,0.772288322,0.312050819,-0.043060943,0.768800676,0.35225305,-0.047681335,0.779810131,0.378687769,-0.049804181,0.795688868,0.403906316,-0.037789732,0.739744782,0.344307303,-0.045836266,0.738510251,0.38336432,-0.04110571,0.749977052,0.410015762,-0.039542779,0.758390367,0.434336185,-0.044687666,0.710788369,0.385839999,-0.047651362,0.71311605,0.422700703,-0.035820868,0.725937784,0.445768237,-0.03064632,0.722637534,0.468297809,-0.051280186,0.688538611,0.42934683,-0.050968282,0.693099618,0.462957203,-0.039780188,0.704227746,0.4834598,-0.032527037 +Right,0.792972147,0.632992625,-3.46E-07,0.811160564,0.53025198,0.012916652,0.804649115,0.445559323,0.009177182,0.777965009,0.399336606,0.002210277,0.747226357,0.39571175,-0.00531733,0.816495955,0.385994464,-0.01059707,0.743344188,0.34667486,-0.021131782,0.735426545,0.396240294,-0.024378154,0.747597456,0.420539886,-0.026452407,0.794452369,0.403688848,-0.024284175,0.717165947,0.381341726,-0.030676018,0.715816498,0.432031989,-0.025980581,0.73215133,0.454882771,-0.02494557,0.767423809,0.435149342,-0.036443792,0.696406305,0.423909426,-0.038419943,0.700100958,0.474114299,-0.027855508,0.718686104,0.492807567,-0.024548773,0.738677382,0.476228774,-0.048030294,0.685678542,0.474180162,-0.051502157,0.691849649,0.516140997,-0.045199767,0.709376335,0.531019568,-0.041271269 +Right,0.770470619,0.655741453,-3.90E-07,0.717496455,0.609404206,-0.010582369,0.686618924,0.550173342,-0.022892019,0.66449976,0.505478024,-0.036369268,0.670388281,0.492111266,-0.045272306,0.740052521,0.405572146,-0.002535047,0.682820737,0.415330768,-0.027009018,0.687855065,0.469905555,-0.04255623,0.704911053,0.481779933,-0.051943459,0.75909555,0.409434646,-0.009103096,0.689643621,0.443225682,-0.032766439,0.699386477,0.503257394,-0.037425,0.718936861,0.505100846,-0.037411291,0.772512734,0.43332532,-0.019515149,0.703483105,0.477714807,-0.037812337,0.712644339,0.533577561,-0.02956396,0.731203198,0.534056067,-0.021585517,0.779015064,0.472105682,-0.032561228,0.721431851,0.513505042,-0.044205118,0.728659451,0.550943851,-0.040991452,0.746272266,0.551677406,-0.035854474 +Right,0.776845694,0.66486156,-4.16E-07,0.724980533,0.627765536,-0.015549535,0.683928609,0.569990516,-0.028442957,0.658257127,0.52463311,-0.041483562,0.678575695,0.518617392,-0.049378227,0.732666314,0.418345869,-0.004123996,0.68165338,0.441294283,-0.02957855,0.691524148,0.505881429,-0.044067025,0.709114671,0.509948075,-0.052418098,0.758679748,0.414242148,-0.008299855,0.700635552,0.459716618,-0.032698963,0.713164985,0.532067239,-0.033929694,0.730853081,0.528873205,-0.029813094,0.782102466,0.432444215,-0.017296448,0.724853337,0.487142354,-0.039063953,0.735408902,0.551173925,-0.029226007,0.753073454,0.547396064,-0.017773842,0.800750613,0.467133582,-0.029174054,0.7519871,0.51545918,-0.041275583,0.757595479,0.558798075,-0.036204733,0.772817492,0.558218837,-0.028557505 +Right,0.788858831,0.678090334,-4.17E-07,0.738237858,0.652165413,-0.023234317,0.695606887,0.607670844,-0.040406566,0.666907132,0.569155097,-0.056426428,0.68326211,0.5535568,-0.066884041,0.725182772,0.432979286,-0.011835324,0.681529462,0.468258858,-0.040514201,0.695191801,0.537722945,-0.057061329,0.712296963,0.540797949,-0.066357628,0.756172299,0.423982441,-0.012561046,0.709685206,0.488236636,-0.038730338,0.724624991,0.56212455,-0.040810339,0.740227044,0.554460347,-0.037211977,0.786504745,0.441035002,-0.01872771,0.741356909,0.510974705,-0.042211059,0.752444863,0.573869169,-0.032398723,0.768692076,0.565175354,-0.020624423,0.812911928,0.474621385,-0.028322158,0.774865091,0.530751526,-0.04126839,0.781085849,0.570434511,-0.035998862,0.796057701,0.564244211,-0.027787326 +Right,0.809657454,0.687915564,-4.21E-07,0.756380737,0.67185539,-0.025720447,0.708570659,0.639225423,-0.044495523,0.680606723,0.602457821,-0.061550293,0.703398705,0.582767963,-0.07297606,0.722509325,0.45250386,-0.016658418,0.6889534,0.500554025,-0.045504589,0.70701611,0.570419431,-0.060730185,0.720935345,0.568508625,-0.069158569,0.757195532,0.435880721,-0.017360829,0.724294305,0.510899067,-0.043953609,0.74155736,0.586933494,-0.044615097,0.75336802,0.57701546,-0.039988574,0.793455064,0.448135674,-0.023615954,0.762421489,0.528935015,-0.048181932,0.774944425,0.592774093,-0.03711791,0.788252711,0.579594851,-0.024305649,0.827952385,0.476649076,-0.033378951,0.80002147,0.541036129,-0.045017388,0.806716502,0.580503523,-0.037842512,0.819246769,0.569595277,-0.028693056 +Right,0.830063641,0.689407766,-4.16E-07,0.777287722,0.677300274,-0.031798929,0.728734076,0.654255927,-0.05472688,0.70013082,0.623007119,-0.074859731,0.727491558,0.601290762,-0.088962696,0.730862141,0.454446882,-0.022790818,0.703627169,0.519073665,-0.052476909,0.725226104,0.586576819,-0.066972643,0.739351213,0.583164871,-0.074510105,0.767402589,0.434251875,-0.020975124,0.742766798,0.525124252,-0.048151247,0.762751937,0.599022329,-0.048939634,0.772889435,0.588020265,-0.044348389,0.807056665,0.442342401,-0.024968293,0.785615504,0.538690388,-0.050997242,0.79951781,0.601502359,-0.0403504,0.81084466,0.589448571,-0.027241679,0.845845759,0.466561258,-0.032869302,0.825209916,0.534855604,-0.044375941,0.831812501,0.576893866,-0.036516219,0.84216249,0.569346726,-0.026604477 +Right,0.846303344,0.691806257,-4.82E-07,0.795928478,0.689874291,-0.029830275,0.74330008,0.671246052,-0.050678149,0.720998049,0.63997221,-0.06888444,0.754299104,0.61460948,-0.081419215,0.741487086,0.465959787,-0.022738524,0.721307814,0.528966486,-0.053552676,0.74307543,0.60190475,-0.069386527,0.755255938,0.600223243,-0.077844821,0.779448211,0.440076828,-0.022344204,0.763357341,0.531623363,-0.050620586,0.782144308,0.608026266,-0.052395642,0.790827394,0.59918648,-0.048432421,0.820597112,0.443150908,-0.027702607,0.807514906,0.539671481,-0.054079358,0.819416642,0.606278539,-0.044201761,0.827306151,0.594655037,-0.031884782,0.861746013,0.460532576,-0.036914319,0.848599374,0.534628987,-0.048727989,0.853915036,0.583773255,-0.041353162,0.861204684,0.576309323,-0.031998198 +Right,0.86912775,0.706919193,-4.36E-07,0.82085669,0.716700613,-0.036080446,0.769808292,0.700794578,-0.061278928,0.759837151,0.676781893,-0.082351379,0.79948616,0.641448081,-0.096802689,0.747612715,0.493310124,-0.036273036,0.746096015,0.562648535,-0.074066073,0.771685421,0.627563179,-0.0942825,0.780382216,0.616685688,-0.106502369,0.790221214,0.453299344,-0.035609324,0.797027409,0.558575451,-0.069892183,0.816234291,0.638359666,-0.074130885,0.817616582,0.618077695,-0.072333641,0.836796105,0.450384021,-0.040906396,0.847218454,0.562406719,-0.071516439,0.855271876,0.635622323,-0.060493123,0.853532374,0.616045356,-0.048424479,0.883508265,0.466442198,-0.05107227,0.890463412,0.564509988,-0.068592332,0.889025748,0.624822497,-0.062726319,0.884449601,0.618195355,-0.054481599 +Right,0.871134639,0.712950706,-4.08E-07,0.822935283,0.719999969,-0.044025168,0.774633288,0.701886058,-0.073484167,0.772312224,0.674346745,-0.097197302,0.81612128,0.641498744,-0.114767417,0.762887955,0.486082822,-0.046360657,0.764143884,0.567272305,-0.085936442,0.785515785,0.641083419,-0.107446276,0.793294549,0.635686398,-0.12020693,0.809053123,0.451348037,-0.042531468,0.81316942,0.55885613,-0.079590768,0.82625252,0.653474689,-0.085359484,0.829084277,0.644296467,-0.08422146,0.856548607,0.4549582,-0.044934861,0.864044547,0.567576885,-0.080631994,0.863880694,0.653087795,-0.072513722,0.860603034,0.64518106,-0.060855057,0.902053893,0.477438033,-0.052174989,0.908264875,0.56329751,-0.073700815,0.90028739,0.628810585,-0.068603091,0.892563045,0.632773459,-0.059850581 +Right,0.867997468,0.71588254,-4.93E-07,0.815390527,0.697458565,-0.034197636,0.766573548,0.654943228,-0.056493703,0.754455805,0.611520886,-0.075064637,0.794130921,0.595898747,-0.087169223,0.792670488,0.445958495,-0.027247561,0.76676333,0.504514456,-0.057987127,0.779830456,0.585067213,-0.071953967,0.792741179,0.585847557,-0.079469994,0.836284876,0.433466583,-0.025401825,0.810743392,0.521235168,-0.053428967,0.818410516,0.612998247,-0.053444363,0.827274144,0.60253036,-0.048390374,0.878614783,0.453951478,-0.029645719,0.856289744,0.548778236,-0.056610562,0.855789244,0.626059175,-0.044795219,0.863915384,0.613008022,-0.031364188,0.918959618,0.490382612,-0.038192287,0.89719516,0.563643038,-0.050653834,0.890136838,0.619736433,-0.042515654,0.89458406,0.613860488,-0.032743074 +Right,0.857193291,0.713211536,-4.74E-07,0.806960702,0.666344166,-0.030616483,0.762263,0.612347364,-0.05228335,0.73977381,0.563252568,-0.07183627,0.771859825,0.557934105,-0.08530882,0.806303144,0.424402863,-0.020848742,0.767395139,0.470492661,-0.051933486,0.774412632,0.553999662,-0.066967249,0.788445115,0.560870707,-0.074658193,0.84632194,0.424762487,-0.020763015,0.804323316,0.497936159,-0.050246626,0.809476018,0.586409509,-0.051566564,0.82220155,0.582667291,-0.04640016,0.883816063,0.456171721,-0.026650526,0.843455791,0.535797119,-0.054943461,0.844481826,0.608424664,-0.044727698,0.858268857,0.60054332,-0.03116774,0.918045104,0.502383947,-0.036333136,0.883123517,0.560933113,-0.048361436,0.880471587,0.607443035,-0.040378265,0.892410338,0.603230715,-0.030184912 +Right,0.84655112,0.724845648,-4.31E-07,0.794885278,0.660907507,-0.024409283,0.754930675,0.58264786,-0.042843491,0.731387258,0.523627043,-0.059965495,0.757498145,0.53527838,-0.070990749,0.826914072,0.416847736,-0.01447057,0.763549685,0.4447653,-0.044465806,0.767250836,0.518208444,-0.061011434,0.788320363,0.525834799,-0.070090227,0.859629393,0.432170153,-0.01611786,0.789899766,0.491111875,-0.044156082,0.794947147,0.563634872,-0.046291903,0.814683735,0.561090171,-0.042536136,0.885259688,0.475011796,-0.023336614,0.818141937,0.538118958,-0.047542732,0.821819186,0.599286675,-0.038419515,0.840061903,0.595955729,-0.027264008,0.904675722,0.531784117,-0.034410544,0.848502874,0.585729182,-0.046856724,0.850273192,0.626293302,-0.042492215,0.866568863,0.624743581,-0.035021853 +Right,0.844928503,0.751793444,-3.66E-07,0.786259055,0.663202882,-0.023529736,0.757013917,0.576997161,-0.044563469,0.736796916,0.517729402,-0.063666247,0.7452932,0.527918875,-0.077108607,0.850001216,0.434425473,-0.02066515,0.769980431,0.447886407,-0.048671693,0.769468129,0.51305151,-0.064056426,0.789795339,0.521826565,-0.073151439,0.871223509,0.463419765,-0.023251081,0.777435839,0.498839259,-0.050386176,0.781468511,0.562670708,-0.053048152,0.803047776,0.565185785,-0.051508456,0.879455566,0.511009097,-0.030362407,0.790035188,0.548536301,-0.052197292,0.793862581,0.606840193,-0.043561667,0.813675642,0.608110726,-0.03515422,0.878893197,0.567870498,-0.041189466,0.808587849,0.608909547,-0.05454611,0.812481165,0.650976896,-0.052168936,0.83110553,0.651842475,-0.047390882 +Right,0.848644674,0.74037838,-3.82E-07,0.796214581,0.639366329,-0.012502705,0.774396956,0.542976499,-0.027405458,0.755007982,0.495729715,-0.041919664,0.741702616,0.510434985,-0.052871659,0.868250549,0.44207418,-0.020647468,0.776936054,0.431402087,-0.045332938,0.77275002,0.491041571,-0.057922229,0.791383564,0.514742315,-0.065117709,0.878234625,0.473459959,-0.027622793,0.771331251,0.483190507,-0.05054763,0.773753345,0.542535186,-0.052459132,0.79547745,0.554436207,-0.052765664,0.874796093,0.520521045,-0.037021358,0.772343695,0.53530848,-0.054140545,0.776933789,0.592626631,-0.045189571,0.798505843,0.601868868,-0.039093263,0.862265587,0.576726556,-0.048783217,0.782723308,0.595671177,-0.060815122,0.788011372,0.639635146,-0.056967583,0.810048401,0.64791429,-0.052504908 +Right,0.849391103,0.726494551,-3.80E-07,0.86017561,0.623993933,0.008051902,0.841084182,0.522483587,-0.003562466,0.792530894,0.463488966,-0.01777312,0.751620591,0.447605789,-0.030047733,0.884915173,0.439750135,-0.017593963,0.791539252,0.388999164,-0.037149914,0.783609211,0.44831726,-0.044334631,0.803947747,0.468637764,-0.048830383,0.873590767,0.465207696,-0.033144377,0.766489446,0.428445816,-0.048806679,0.767472267,0.489040285,-0.044777978,0.790689588,0.507914305,-0.04380006,0.850469112,0.504031599,-0.048330866,0.749653101,0.478731841,-0.056693021,0.755678535,0.538873374,-0.045376949,0.781032145,0.554335713,-0.041729663,0.822221637,0.54796052,-0.063790955,0.743439674,0.547963202,-0.072798617,0.749223411,0.592575669,-0.070649572,0.772008836,0.604321301,-0.069778062 +Right,0.817185462,0.757448554,-3.58E-07,0.851750374,0.667841554,0.004823654,0.861028731,0.564165831,-0.003492758,0.841912985,0.488534153,-0.012803057,0.814004004,0.462750375,-0.022087626,0.882377326,0.504871309,-0.024924947,0.81285423,0.417174518,-0.042542532,0.800160646,0.465568244,-0.048731655,0.813133359,0.499584615,-0.051290333,0.851985633,0.530329287,-0.035757631,0.776779354,0.450145721,-0.047268353,0.770564616,0.498099953,-0.041304205,0.786630213,0.528640151,-0.038509063,0.814796507,0.561521232,-0.045805451,0.745684922,0.49121204,-0.053034905,0.743492842,0.538649082,-0.040007565,0.762050629,0.565542221,-0.033421919,0.775427759,0.598460674,-0.055513822,0.720480621,0.544431031,-0.061350435,0.723340154,0.584333062,-0.052746754,0.741241634,0.608775377,-0.046308715 +Right,0.792521358,0.804254055,-2.87E-07,0.838855743,0.718757868,0.008377589,0.854091942,0.620604932,-0.001578149,0.83082068,0.537305355,-0.011856838,0.797845423,0.507171392,-0.023096459,0.872603059,0.578465641,-0.037672963,0.822020352,0.46967566,-0.050047789,0.809111059,0.508698404,-0.051018097,0.815692544,0.547050834,-0.050446894,0.828698754,0.596472919,-0.049638577,0.779970884,0.490378231,-0.05482699,0.772149682,0.528031528,-0.045275025,0.781285167,0.564312518,-0.041538134,0.783738315,0.615553737,-0.058451779,0.742405474,0.524095893,-0.058627337,0.739607096,0.56162113,-0.043218818,0.74977994,0.594243228,-0.036901627,0.739963472,0.640014708,-0.065981723,0.71013546,0.564126968,-0.064181142,0.712580085,0.596832275,-0.050011303,0.722717226,0.625866532,-0.041072689 +Right,0.75009954,0.880348265,-2.16E-07,0.799799919,0.798952997,0.00663321,0.820601285,0.697801709,-0.002208878,0.803737342,0.609971404,-0.011222207,0.768920481,0.57552582,-0.021089267,0.818289101,0.680775523,-0.038145889,0.778625607,0.562117815,-0.051209204,0.771938205,0.597322345,-0.053525336,0.779994547,0.637014389,-0.05353738,0.771159232,0.700644851,-0.048735376,0.737030268,0.581469238,-0.055122145,0.732482016,0.61340487,-0.046919301,0.741009176,0.653014779,-0.043557547,0.725212991,0.714755476,-0.056227855,0.701222301,0.611677289,-0.057836689,0.699641228,0.642531395,-0.041370265,0.707648396,0.677549422,-0.033258643,0.682311416,0.728836894,-0.06257654,0.670297742,0.637809515,-0.05922902,0.672342598,0.666463852,-0.041763145,0.677964151,0.699809849,-0.030687435 +Right,0.745758832,0.871373653,-1.80E-07,0.794744253,0.803596258,0.004204666,0.819101691,0.706836402,-0.00194749,0.810047865,0.614884555,-0.007016148,0.785458624,0.571123302,-0.012531472,0.811590672,0.680802047,-0.036819931,0.776746511,0.5671978,-0.047185775,0.77054143,0.596761227,-0.046922684,0.776211739,0.635266423,-0.044986978,0.767373979,0.694360256,-0.044050608,0.735170782,0.579495966,-0.048546031,0.73024559,0.608464003,-0.039723229,0.737771749,0.643791139,-0.035570774,0.7232728,0.705039978,-0.048458084,0.699968457,0.606640041,-0.050083689,0.697846293,0.633676887,-0.035642356,0.705392361,0.664740801,-0.028309686,0.680994391,0.718057811,-0.051660053,0.667673409,0.629698038,-0.050499812,0.668287158,0.656218529,-0.036483716,0.67433697,0.686833143,-0.027153326 +Right,0.736853838,0.835456908,-1.93E-07,0.788354635,0.763823748,0.007680911,0.809401095,0.669406295,0.003124563,0.796371222,0.580142021,-0.000936138,0.775141954,0.534409642,-0.005612407,0.805267632,0.635083616,-0.03305478,0.769149244,0.5267784,-0.041380432,0.764427185,0.558422327,-0.040257294,0.771490753,0.595234275,-0.038186677,0.76015687,0.647873104,-0.040982913,0.728835762,0.542503893,-0.042851601,0.724824846,0.573334932,-0.033292774,0.732561588,0.608725727,-0.029226542,0.716534376,0.659132481,-0.04569969,0.692987204,0.570090234,-0.044107027,0.691273093,0.600662351,-0.028797815,0.698997617,0.633278251,-0.021761434,0.675435364,0.675569773,-0.049080629,0.663273931,0.596158266,-0.045441475,0.664059818,0.626697421,-0.030348154,0.669872224,0.657055557,-0.020541865 +Right,0.749485672,0.821523011,-2.53E-07,0.792526364,0.741711736,0.006377979,0.81023109,0.639067769,0.000150097,0.791617692,0.54786098,-0.005678005,0.76394701,0.511927605,-0.011987944,0.814897358,0.602363288,-0.030187307,0.767988205,0.503688276,-0.040459272,0.75661099,0.536599159,-0.040552337,0.763737857,0.566243827,-0.039537694,0.774449646,0.620290577,-0.039206807,0.727101088,0.525034785,-0.044217914,0.719742119,0.561884463,-0.034867194,0.730064332,0.594850123,-0.030355446,0.732701004,0.639053345,-0.045849543,0.692736268,0.555717111,-0.048060618,0.690218449,0.592794716,-0.033420712,0.701627195,0.624678195,-0.026041863,0.69119519,0.663356423,-0.051362425,0.663030982,0.592324853,-0.051768545,0.66499126,0.625080943,-0.039649017,0.675567269,0.652513027,-0.031337049 +Right,0.765524089,0.804445624,-3.26E-07,0.794523716,0.718237281,0.004052279,0.801895499,0.618477762,-0.005470983,0.778177381,0.538599312,-0.015358878,0.748933613,0.507338166,-0.025028355,0.824270368,0.563888609,-0.030715479,0.754829288,0.475034237,-0.046000376,0.740652502,0.517446935,-0.047976561,0.752122462,0.546198428,-0.047931783,0.794838548,0.589759946,-0.041391611,0.718916178,0.507210433,-0.052591939,0.712247849,0.55436486,-0.044295114,0.728535235,0.582333028,-0.040036786,0.758745134,0.619376302,-0.050761592,0.689660788,0.544701517,-0.057704985,0.687923312,0.591361582,-0.043251701,0.705960155,0.617597699,-0.036129706,0.719406962,0.653617263,-0.059697442,0.666391253,0.597511888,-0.066207811,0.669764638,0.634875119,-0.058055032,0.68681705,0.657810152,-0.052107394 +Right,0.773123384,0.777505875,-3.97E-07,0.795744777,0.681339443,0.002668959,0.792197168,0.576305211,-0.007490893,0.76382035,0.492305875,-0.018102748,0.737552404,0.452704966,-0.027257092,0.822318435,0.520810485,-0.030678065,0.735520422,0.448862791,-0.04859788,0.722038031,0.501639068,-0.05031883,0.736320138,0.527562737,-0.050614931,0.805141211,0.548504114,-0.042040676,0.706540585,0.482633024,-0.058562469,0.701742291,0.540157735,-0.051374063,0.720054984,0.566114545,-0.047780681,0.777671397,0.584816337,-0.052679554,0.68578279,0.537428379,-0.063862242,0.687281311,0.590812325,-0.050581269,0.70837003,0.612278819,-0.04456877,0.745805562,0.624236465,-0.063370131,0.674227536,0.601552069,-0.074663132,0.67802912,0.640284777,-0.072038077,0.69799298,0.654498577,-0.070361465 +Right,0.790831387,0.735636115,-2.89E-07,0.795313001,0.635795951,0.000929399,0.77501899,0.537174582,-0.012251721,0.730429292,0.482428193,-0.026887201,0.692411542,0.480573148,-0.039512239,0.814775825,0.45968163,-0.020847499,0.723553002,0.421674252,-0.042496763,0.717771709,0.477364838,-0.051755548,0.7373541,0.495490491,-0.057201892,0.806745768,0.489089817,-0.033057872,0.702188611,0.466149509,-0.051507544,0.704609632,0.52173239,-0.049869362,0.726290941,0.537946939,-0.049543213,0.787362397,0.531779826,-0.045705825,0.691146135,0.520133436,-0.057151109,0.698608041,0.572921693,-0.047835603,0.72227478,0.586168826,-0.043824416,0.763282657,0.57860148,-0.059232589,0.690452158,0.584246695,-0.068606094,0.697344303,0.622768879,-0.066516541,0.717754066,0.63105607,-0.065076567 +Right,0.797964454,0.713316679,-3.58E-07,0.74293232,0.63340646,-0.013734894,0.713734984,0.541802585,-0.027909802,0.692728758,0.486061722,-0.04133556,0.684623361,0.498420089,-0.05074928,0.805031419,0.423586488,-0.018866213,0.717431903,0.412163675,-0.043170914,0.716456294,0.470002592,-0.056342222,0.736106038,0.488638788,-0.064521879,0.815017998,0.448392153,-0.024686128,0.71243155,0.456080317,-0.049110163,0.71605736,0.515609443,-0.05169607,0.737644851,0.528558791,-0.05175614,0.810639441,0.489188761,-0.0333548,0.712966204,0.509754181,-0.052589547,0.719388545,0.56616205,-0.045180429,0.741981804,0.574472308,-0.039142493,0.796096563,0.539296031,-0.044555899,0.720801592,0.570282042,-0.059375592,0.727237225,0.613062263,-0.058844082,0.749141693,0.617994487,-0.056337465 +Right,0.782836318,0.704780817,-4.41E-07,0.719919562,0.639650464,-0.019558573,0.682305098,0.561168373,-0.036617734,0.659317553,0.501958251,-0.053410217,0.676148713,0.507000506,-0.064175546,0.764496148,0.397319138,-0.009441011,0.694049954,0.412812829,-0.038686689,0.69770354,0.486589193,-0.055990431,0.717804313,0.500579476,-0.06631124,0.791831315,0.412179649,-0.0140092,0.7092067,0.453725517,-0.042018145,0.715613246,0.529541731,-0.045067284,0.73718673,0.533050001,-0.042715836,0.809228003,0.451077521,-0.023875199,0.728235066,0.500888109,-0.046576943,0.734398007,0.568274856,-0.035862982,0.755323231,0.568612397,-0.024869898,0.818400085,0.504918575,-0.037469558,0.752388179,0.555202425,-0.051075108,0.757474005,0.599657655,-0.047166727,0.777138174,0.599184394,-0.040420137 +Right,0.780509472,0.694601536,-4.76E-07,0.725386322,0.635672212,-0.019251591,0.68528229,0.561764479,-0.035564486,0.660170794,0.505417824,-0.051668521,0.683540404,0.506650925,-0.061707597,0.756034255,0.396226525,-0.010241536,0.69276768,0.414702773,-0.040071551,0.69782275,0.490026772,-0.055924583,0.717592835,0.504420877,-0.064353988,0.786456347,0.405582547,-0.014208018,0.714367807,0.452506453,-0.0423926,0.721339464,0.534120083,-0.043631501,0.741285741,0.538020849,-0.038968544,0.811176658,0.440406054,-0.023448443,0.740612864,0.494194061,-0.047327835,0.745492995,0.564140797,-0.03621332,0.764658272,0.566033185,-0.023587091,0.828777552,0.49187845,-0.036177527,0.772020876,0.538830817,-0.049100008,0.773304105,0.583909273,-0.043786615,0.789761901,0.586120188,-0.035381757 +Right,0.797092676,0.673821509,-4.86E-07,0.742983639,0.630115986,-0.027867502,0.693225145,0.566617727,-0.047086913,0.672420323,0.507908344,-0.064628817,0.709502995,0.499416351,-0.075416185,0.745603681,0.379267097,-0.015635042,0.703866005,0.403107882,-0.047985174,0.711626232,0.490781516,-0.064697675,0.72717768,0.498922318,-0.07390628,0.785270214,0.374726176,-0.016231118,0.740786016,0.432612926,-0.046401285,0.74807018,0.526980698,-0.047450639,0.761652172,0.522101104,-0.041884281,0.821728289,0.400167465,-0.023215616,0.777814746,0.476242363,-0.050893575,0.780131459,0.556689143,-0.039118856,0.794101119,0.546430409,-0.024826966,0.854500413,0.442305952,-0.034080166,0.814685762,0.501996577,-0.04661436,0.813718975,0.556289554,-0.038720347,0.826400816,0.550506294,-0.028551301 +Right,0.800853252,0.650233209,-4.80E-07,0.746360421,0.627647102,-0.035604063,0.69219774,0.578703463,-0.056253031,0.673935831,0.518971205,-0.073661968,0.713078201,0.496159643,-0.083506539,0.717313945,0.387140334,-0.021480266,0.690023959,0.414396107,-0.054931775,0.705841303,0.504252076,-0.070335962,0.718854129,0.50602001,-0.079102457,0.7592507,0.363677114,-0.01931042,0.733012259,0.42289257,-0.052292228,0.745496273,0.522081971,-0.053184036,0.754025817,0.513026774,-0.047410756,0.800494254,0.373302996,-0.024475813,0.778322637,0.446219593,-0.056424785,0.784131885,0.531268358,-0.044487286,0.793156207,0.516413987,-0.029737063,0.840648293,0.399763703,-0.034076944,0.818844497,0.463181674,-0.049940918,0.819307446,0.519419432,-0.043296214,0.826889157,0.507112861,-0.034339696 +Right,0.818801582,0.661002755,-4.78E-07,0.765290201,0.652489543,-0.037588127,0.712262154,0.626755416,-0.062055618,0.692232132,0.597741961,-0.082403801,0.727143466,0.561780334,-0.096238278,0.710148573,0.411310673,-0.031574048,0.690785408,0.474292368,-0.066718236,0.715604842,0.553999603,-0.084603004,0.730312765,0.557425678,-0.094280705,0.752390504,0.380665243,-0.029253369,0.738342464,0.472968459,-0.062326953,0.756566763,0.568218112,-0.065644495,0.763940632,0.566881597,-0.062051408,0.797551453,0.385934293,-0.033332128,0.789120793,0.48744458,-0.067254782,0.79832375,0.576737106,-0.057503741,0.803804457,0.574240386,-0.043725099,0.841985822,0.409014523,-0.041710537,0.834560633,0.493116707,-0.060578741,0.833279252,0.565145254,-0.053758413,0.833814025,0.57145381,-0.043536957 +Right,0.839120686,0.669604301,-4.49E-07,0.787600935,0.683915257,-0.038786955,0.735714138,0.675778508,-0.064884767,0.709270656,0.660808265,-0.086824417,0.732869864,0.629308701,-0.102014408,0.706596732,0.456692785,-0.035408262,0.693458438,0.538245022,-0.072073564,0.725001693,0.608054519,-0.090768814,0.738724113,0.604578972,-0.101381749,0.747102261,0.419848144,-0.033221059,0.739205837,0.536117673,-0.066944972,0.764817178,0.616828561,-0.071029395,0.77087903,0.601212144,-0.06876643,0.793516695,0.418826163,-0.037327789,0.790557563,0.539128542,-0.067702346,0.805545628,0.611951351,-0.056579273,0.809724867,0.592480123,-0.044162203,0.839286625,0.43664068,-0.046320833,0.837529182,0.537910342,-0.06233871,0.843945086,0.590611398,-0.055812623,0.847638786,0.574515581,-0.047163121 +Right,0.841196299,0.670790076,-4.59E-07,0.788782299,0.681448102,-0.036564916,0.736768603,0.671351075,-0.061952151,0.70789361,0.658524215,-0.083943896,0.732931197,0.631113589,-0.099420451,0.713423908,0.454215318,-0.03360137,0.696577549,0.53521961,-0.070241421,0.727498651,0.605962038,-0.088133134,0.742985606,0.602569282,-0.097736821,0.754882038,0.422645092,-0.032365829,0.743101835,0.537238121,-0.065459311,0.768192589,0.621492207,-0.067840561,0.775939167,0.604189873,-0.064066462,0.802056968,0.425791502,-0.037412174,0.796247363,0.543763399,-0.067910425,0.809963942,0.61820519,-0.055832468,0.81671387,0.596866667,-0.04210145,0.84796375,0.447107375,-0.047036171,0.843639851,0.540609598,-0.062085383,0.847202659,0.594569147,-0.054121431,0.852270246,0.580506563,-0.044218641 +Right,0.849188566,0.696935296,-4.87E-07,0.795228183,0.684857428,-0.03694978,0.747000813,0.663873434,-0.06393601,0.717272997,0.645885289,-0.087064877,0.74204123,0.624988675,-0.10382168,0.742794991,0.433689028,-0.037341878,0.715172589,0.523157775,-0.07447277,0.738401353,0.599578142,-0.093221568,0.755490541,0.595619082,-0.103451788,0.788319886,0.420056611,-0.035982322,0.76281184,0.541209579,-0.069024295,0.778906584,0.62661314,-0.07211183,0.788921177,0.611705065,-0.069460995,0.835128248,0.442172408,-0.040499277,0.813767433,0.570057034,-0.070967101,0.820101023,0.640817642,-0.060455576,0.829049885,0.620061278,-0.047951002,0.878323734,0.481220722,-0.049444403,0.859608591,0.579682887,-0.064646579,0.857839048,0.630534291,-0.057508104,0.864069223,0.618510067,-0.048118427 +Right,0.840834856,0.767073691,-4.44E-07,0.788700283,0.722289622,-0.027438547,0.747679353,0.672865033,-0.051243018,0.71568799,0.641101003,-0.072558179,0.725169182,0.629575074,-0.088699996,0.793708324,0.457095921,-0.031693615,0.73427546,0.531132519,-0.065116666,0.744425535,0.6019153,-0.08448755,0.765317142,0.598365486,-0.095799528,0.831590235,0.477641702,-0.033580512,0.764781952,0.585654199,-0.061556306,0.774330199,0.651455402,-0.065391868,0.793585777,0.63679719,-0.064859435,0.863236845,0.530385375,-0.039891653,0.799896896,0.645106912,-0.063165121,0.806099057,0.694122672,-0.052750293,0.824173391,0.677666187,-0.04238398,0.887988746,0.598372221,-0.050112717,0.836778283,0.689696252,-0.063110352,0.839976907,0.718919396,-0.057129841,0.856344581,0.704412818,-0.048935499 +Right,0.870969832,0.858624101,-2.96E-07,0.851786852,0.746418476,-0.010931891,0.803578496,0.6362831,-0.03206959,0.742880046,0.587740302,-0.051519137,0.717814326,0.604104996,-0.068255641,0.861843884,0.551595569,-0.047981407,0.754937351,0.539706826,-0.072801121,0.748548925,0.604123533,-0.075090766,0.770431757,0.620498657,-0.075350285,0.860123813,0.620485783,-0.057184707,0.736464918,0.618756056,-0.085642569,0.743561745,0.675882876,-0.079228513,0.77071768,0.684163988,-0.073704787,0.84499675,0.697572708,-0.066667043,0.730253577,0.698137343,-0.090597197,0.745575845,0.744066715,-0.076463938,0.777648926,0.746805549,-0.065848224,0.823507726,0.772613287,-0.076480225,0.733928084,0.766462028,-0.094579481,0.749220788,0.796905875,-0.089814119,0.779833555,0.80033648,-0.084512681 +Right,0.879874647,0.808558643,-4.06E-07,0.884805262,0.702261865,-0.007244452,0.852920711,0.588527203,-0.02640998,0.793780565,0.523091614,-0.044225451,0.753559768,0.49639529,-0.060236633,0.89810878,0.50926137,-0.047396168,0.795641005,0.459483355,-0.071992368,0.780557573,0.515612304,-0.074241854,0.79588604,0.54864186,-0.073120244,0.883562565,0.564419568,-0.056485973,0.764239192,0.529913306,-0.080658302,0.7645244,0.587449789,-0.073736452,0.789311886,0.605732679,-0.06896051,0.858163536,0.627349675,-0.065409251,0.748378873,0.592920423,-0.08607541,0.756691992,0.643631577,-0.07163702,0.785468102,0.657384157,-0.062415045,0.827642977,0.690672219,-0.074145332,0.742400646,0.659802735,-0.092485093,0.751789451,0.698143244,-0.087252535,0.778349578,0.712787032,-0.081707001 +Right,0.836761177,0.779921472,-3.41E-07,0.86322403,0.686910152,-0.003040497,0.869979978,0.579993486,-0.018614221,0.846489906,0.501439452,-0.033474591,0.816761553,0.476918966,-0.04795415,0.889858544,0.516829073,-0.047007769,0.802372575,0.430885911,-0.071084417,0.789251685,0.483964056,-0.075430065,0.80582875,0.518080831,-0.075610653,0.861861229,0.55971092,-0.057204489,0.765776992,0.478581935,-0.078290612,0.762530267,0.532242894,-0.070317075,0.786052704,0.559546709,-0.064824201,0.826849639,0.605951071,-0.066686511,0.738532305,0.529750109,-0.08347331,0.741172016,0.580091774,-0.067605525,0.767181158,0.605449319,-0.05740701,0.789440095,0.65349108,-0.07608667,0.721839011,0.597233057,-0.090344936,0.729873002,0.637411892,-0.082660913,0.754765034,0.660964131,-0.075463347 +Right,0.820344031,0.824474573,-3.81E-07,0.849891722,0.731404066,-0.005015063,0.858528674,0.604513228,-0.021942602,0.825312376,0.505935133,-0.03754333,0.792516589,0.471874714,-0.052561041,0.899174452,0.601335585,-0.054991972,0.821382105,0.484907508,-0.077930972,0.801979005,0.524504483,-0.078935698,0.811817586,0.560963631,-0.077129163,0.862938941,0.648673773,-0.065278158,0.770574093,0.528010249,-0.088188,0.766729891,0.57403332,-0.07948558,0.788202226,0.607757449,-0.073684305,0.820292413,0.691165268,-0.074133977,0.737708032,0.572613597,-0.095652685,0.742974341,0.620613396,-0.079253703,0.768551886,0.656588078,-0.067585893,0.774080575,0.728746474,-0.082174264,0.716883659,0.630631566,-0.099691018,0.723310173,0.666318297,-0.091418825,0.74436754,0.700353742,-0.083685763 +Right,0.807343245,0.823192358,-2.96E-07,0.84887737,0.736659825,-0.00960719,0.869321346,0.624205172,-0.027846713,0.842787564,0.522545934,-0.044246439,0.808504462,0.48181951,-0.059867077,0.901801467,0.625319004,-0.055009916,0.838725865,0.490905672,-0.07971742,0.811597288,0.523683906,-0.082581282,0.816823125,0.565492153,-0.082058251,0.862708151,0.660194159,-0.063241199,0.783155918,0.522129595,-0.088531464,0.771541536,0.568344593,-0.081518911,0.790556908,0.608866751,-0.076009877,0.818144083,0.690453351,-0.070866831,0.746628582,0.558773756,-0.093505979,0.742979348,0.604471803,-0.07788118,0.765363872,0.644749522,-0.066296831,0.770074546,0.714841783,-0.078346945,0.718582928,0.606209457,-0.096304901,0.719179809,0.636850357,-0.088977478,0.737926364,0.672413945,-0.081569716 +Right,0.793282628,0.825948238,-2.98E-07,0.837551594,0.753904581,-0.003369869,0.868886411,0.655918896,-0.018032705,0.864826739,0.561445713,-0.031918518,0.837081194,0.516342044,-0.046216208,0.888040364,0.626569211,-0.049669415,0.832553744,0.487880111,-0.074514166,0.81033051,0.525663972,-0.079607375,0.817786574,0.568205416,-0.079882599,0.848227382,0.64643842,-0.059544902,0.786222458,0.512987018,-0.081504405,0.774415553,0.558122873,-0.074157715,0.789653897,0.601683676,-0.068532206,0.803122818,0.665627122,-0.068464503,0.748278737,0.543280959,-0.087116607,0.741512299,0.588418484,-0.072062142,0.757973433,0.630873084,-0.061217491,0.756399333,0.684009075,-0.076902688,0.71567291,0.588217854,-0.090983503,0.715806007,0.62440294,-0.082592115,0.73151052,0.662022412,-0.074539371 +Right,0.787575364,0.836689234,-2.78E-07,0.833220422,0.763579845,-0.002121772,0.865656257,0.666031659,-0.017223019,0.860125899,0.567503512,-0.030900089,0.831573188,0.519385636,-0.04492477,0.883303285,0.63556999,-0.05333177,0.83125174,0.506230593,-0.072018594,0.809809923,0.537206352,-0.071820438,0.815647662,0.571318984,-0.069904178,0.843550324,0.652668357,-0.063527919,0.783905089,0.527043402,-0.081124656,0.771633625,0.566553116,-0.071653835,0.785090089,0.605670452,-0.065920427,0.798696935,0.667470098,-0.071728915,0.744674504,0.551644325,-0.084574014,0.738085091,0.592493773,-0.067847267,0.754325688,0.629621446,-0.0583141,0.751889169,0.682857215,-0.079456478,0.71152401,0.59124583,-0.089460745,0.710790873,0.624590218,-0.079782873,0.725599349,0.656036913,-0.072488248 +Right,0.784906387,0.82748872,-2.95E-07,0.828012645,0.75123632,0.000182382,0.858810782,0.654533565,-0.012274938,0.854032516,0.563084185,-0.023844877,0.828915536,0.515565693,-0.036108654,0.877313673,0.610116005,-0.045359228,0.826535463,0.49019593,-0.061282441,0.804021239,0.517971098,-0.062214069,0.806613863,0.551888943,-0.061533991,0.839128554,0.623209,-0.054877065,0.77808851,0.510863781,-0.067650743,0.76606524,0.55207777,-0.058703251,0.778565347,0.590743959,-0.054355424,0.795328736,0.638442218,-0.062397067,0.740231156,0.536205769,-0.070811525,0.733941555,0.579702437,-0.05617702,0.748361886,0.617344201,-0.049167678,0.748740911,0.657218099,-0.069350325,0.706681848,0.577272475,-0.076462574,0.706664562,0.612629473,-0.067442112,0.721463084,0.644720316,-0.061050531 +Right,0.793170273,0.798240662,-3.20E-07,0.831542611,0.716710031,0.00010284,0.853153646,0.619553208,-0.011811641,0.845887661,0.534192026,-0.023118107,0.823571742,0.49246347,-0.034107707,0.879140198,0.563248158,-0.039533202,0.816488743,0.451830626,-0.056709982,0.796126425,0.492856801,-0.059083413,0.80449599,0.527433097,-0.059288323,0.846697748,0.581287205,-0.048985764,0.775479436,0.473401517,-0.062219121,0.762436032,0.522373199,-0.053579576,0.776190579,0.558717787,-0.049018946,0.806528509,0.602477551,-0.057178549,0.739207208,0.510800898,-0.06531436,0.732763469,0.558627129,-0.05094919,0.749562681,0.592524469,-0.044015639,0.763019621,0.628164649,-0.065212004,0.709392786,0.55952549,-0.072322078,0.709296644,0.597928286,-0.064340152,0.726359785,0.627440214,-0.058526017 +Right,0.799503803,0.757876217,-3.87E-07,0.835312545,0.675101519,0.007539796,0.857987523,0.587903738,-0.001601327,0.864111185,0.51957351,-0.012802262,0.856352031,0.486667752,-0.023509532,0.881829023,0.509022295,-0.025819475,0.810675383,0.409686208,-0.041206639,0.791355908,0.45800221,-0.043784816,0.802116215,0.493272543,-0.044837601,0.858621895,0.525526702,-0.039407231,0.774420798,0.435627699,-0.050532464,0.764150321,0.48890999,-0.042729851,0.780135214,0.522840261,-0.039719757,0.823789299,0.550634146,-0.051908039,0.742443025,0.474079221,-0.057307683,0.737115443,0.526305318,-0.044014655,0.755864859,0.556317627,-0.039388001,0.783794105,0.581301689,-0.064334869,0.716569006,0.53061831,-0.071670771,0.714826941,0.572148502,-0.066658616,0.732300997,0.598298252,-0.063585803 +Right,0.801620424,0.7349509,-4.08E-07,0.836211443,0.65286839,0.005814644,0.85930872,0.56367439,-0.003234441,0.872348189,0.503743887,-0.014119579,0.881523788,0.476902127,-0.024464626,0.880292833,0.488403112,-0.028929982,0.802284658,0.393287987,-0.045323309,0.784123957,0.443902194,-0.047480762,0.797271729,0.479652673,-0.048566084,0.859753311,0.505467117,-0.041682735,0.766055167,0.424438655,-0.055435695,0.757857323,0.480166465,-0.048581801,0.776423335,0.512860119,-0.046267629,0.827948868,0.532582045,-0.053541064,0.737786829,0.466222376,-0.061830524,0.734885991,0.519944906,-0.049427677,0.754937589,0.549221158,-0.045201346,0.789961636,0.564860523,-0.06546279,0.716426492,0.523757577,-0.07575573,0.716515958,0.567048788,-0.073102131,0.736209512,0.590651929,-0.071540914 +Right,0.813530862,0.722578585,-3.69E-07,0.822302222,0.615672171,0.007640489,0.813558459,0.51027894,-0.004988591,0.774684131,0.44032532,-0.020944379,0.737147093,0.432423651,-0.034983404,0.879218698,0.4399454,-0.015321238,0.788164139,0.367987424,-0.03375145,0.774210036,0.42743203,-0.041241806,0.792506874,0.454214096,-0.046701647,0.869516671,0.464302063,-0.031667557,0.761796951,0.406041056,-0.047409602,0.755912304,0.467673331,-0.0446788,0.775391281,0.494358569,-0.044909291,0.844771028,0.499437451,-0.047721431,0.743158579,0.454344064,-0.055397261,0.742427826,0.516796649,-0.045089621,0.764268517,0.542288005,-0.042462409,0.81352222,0.537338376,-0.064474531,0.733109832,0.517864048,-0.071587615,0.732748806,0.561969101,-0.069702938,0.752054155,0.581000388,-0.069744863 +Right,0.803684294,0.710198641,-5.08E-07,0.753684521,0.596766174,-0.009439173,0.742326319,0.510047853,-0.024947803,0.7342695,0.443994164,-0.042416062,0.732647538,0.433260739,-0.055515796,0.863452435,0.414788455,-0.006038123,0.777165771,0.356465399,-0.032926906,0.759176791,0.422284126,-0.049234886,0.771439433,0.462365776,-0.058606721,0.871395826,0.435111821,-0.015675535,0.764606237,0.392643809,-0.042928576,0.750756145,0.464601606,-0.048325051,0.767455876,0.498495191,-0.049125087,0.862690389,0.467953533,-0.028804479,0.757798612,0.43715933,-0.050725009,0.749058068,0.508780539,-0.04300499,0.7675488,0.539185226,-0.03579447,0.841623366,0.507818162,-0.044518091,0.757956982,0.498099923,-0.060420148,0.751881599,0.552362502,-0.058877327,0.77016753,0.577670932,-0.054749884 +Right,0.799350381,0.692795515,-4.93E-07,0.749632895,0.599763513,-0.017852183,0.731509268,0.520164609,-0.037063226,0.721230924,0.461672425,-0.056520022,0.735914409,0.428996921,-0.070289135,0.848374605,0.391627908,-0.008915644,0.770572066,0.349443376,-0.040605534,0.757129908,0.419793785,-0.062038474,0.770428538,0.457737952,-0.074379735,0.864899874,0.407280266,-0.013551511,0.768292606,0.376688123,-0.044966608,0.758707583,0.463480741,-0.053559162,0.779552698,0.491893619,-0.054516878,0.867625833,0.438404292,-0.022554617,0.771838665,0.42489329,-0.04646473,0.764192343,0.502524972,-0.039024614,0.784357369,0.523337483,-0.030487113,0.857421339,0.478949636,-0.034821179,0.780922055,0.483464241,-0.050940301,0.776965559,0.538734555,-0.048967481,0.797754645,0.555122077,-0.043244511 +Right,0.785148978,0.67244786,-5.12E-07,0.737867475,0.585383058,-0.020909594,0.713957727,0.495590657,-0.040306777,0.700606346,0.432291478,-0.059998576,0.726321101,0.426620126,-0.072744839,0.821484864,0.368870556,-0.00728376,0.751750529,0.34461841,-0.042039268,0.742602766,0.427074492,-0.063190587,0.761523843,0.456726789,-0.075362556,0.847121239,0.383539289,-0.012007274,0.761377633,0.374306738,-0.045721836,0.754745185,0.472753495,-0.050562818,0.779806852,0.488111645,-0.047646526,0.863588512,0.417952478,-0.022684326,0.776729345,0.416536003,-0.051176131,0.770402312,0.503325939,-0.039373677,0.794461846,0.516943693,-0.025689786,0.869429708,0.466711402,-0.037210047,0.79915458,0.466682881,-0.054523785,0.794555247,0.52199018,-0.049071644,0.81515336,0.535628855,-0.039823178 +Right,0.787254274,0.661457658,-5.47E-07,0.732634008,0.589052081,-0.016909657,0.694788516,0.506341457,-0.031513814,0.684719622,0.435958922,-0.047796529,0.720263839,0.423208356,-0.057558358,0.77851975,0.361557424,0.002360816,0.72817719,0.343890548,-0.029810222,0.724771142,0.433671564,-0.047088776,0.741189063,0.452032328,-0.056409508,0.812802434,0.368049294,-0.003507779,0.753858447,0.370566189,-0.035411615,0.75206852,0.474084109,-0.035814423,0.774325967,0.477169514,-0.02891379,0.842624426,0.391649663,-0.016115487,0.783376336,0.400293171,-0.045822714,0.779457986,0.491883159,-0.031384356,0.802401066,0.496765584,-0.014338631,0.866071343,0.432773769,-0.031835143,0.811541677,0.435869843,-0.047862049,0.80686909,0.494879127,-0.039349228,0.826867282,0.50414598,-0.027841173 +Right,0.797092557,0.654786289,-5.28E-07,0.736476123,0.597719014,-0.019531572,0.685298204,0.521676481,-0.032546572,0.673721433,0.439881206,-0.047050197,0.716376543,0.418207318,-0.054447636,0.739445567,0.385136008,0.000330915,0.711062908,0.348905593,-0.032788012,0.715045273,0.442441642,-0.047333136,0.727067769,0.447535634,-0.054748338,0.778205037,0.382780194,-0.004250668,0.747364819,0.35918209,-0.040300578,0.751356184,0.470652193,-0.039849129,0.765120566,0.466341197,-0.030479893,0.816988587,0.38906908,-0.016151454,0.786084771,0.377351463,-0.049914166,0.786758006,0.480302334,-0.034344435,0.803333342,0.477006942,-0.014732664,0.856316209,0.409899265,-0.030816855,0.823117793,0.402793169,-0.045164865,0.820689082,0.468465835,-0.033700012,0.836986125,0.468560517,-0.020481084 +Right,0.80301857,0.64317584,-5.31E-07,0.744648457,0.604653299,-0.02245917,0.688120782,0.533528686,-0.034194436,0.680366933,0.453021199,-0.046277709,0.726798713,0.427765369,-0.051687825,0.729334474,0.397430807,-0.003449233,0.707257748,0.364763558,-0.033674184,0.713558197,0.456541449,-0.045128137,0.722732186,0.458841026,-0.051147703,0.7709589,0.384981811,-0.006657189,0.747021437,0.366401255,-0.039646592,0.752858996,0.476904392,-0.037707631,0.763822854,0.469886154,-0.02824438,0.812291205,0.386971176,-0.017157495,0.789323211,0.373361975,-0.050547149,0.791239202,0.476088077,-0.034857951,0.803917348,0.471362829,-0.015649833,0.855364442,0.402488023,-0.030480975,0.829470992,0.391948014,-0.046328656,0.826207995,0.460140467,-0.034911055,0.83731246,0.460995913,-0.021905556 +Right,0.81332469,0.646033406,-5.19E-07,0.754880667,0.623044491,-0.028649565,0.694832385,0.554029286,-0.042352047,0.690898478,0.471230894,-0.055216301,0.742269695,0.442593575,-0.061017334,0.725898147,0.406688929,-0.006655962,0.709436238,0.378804028,-0.039576776,0.721740425,0.474638581,-0.052647892,0.728927851,0.475375772,-0.059578899,0.769407988,0.386839241,-0.007937313,0.751862943,0.371840894,-0.043959059,0.762767136,0.486996114,-0.042831637,0.769894719,0.479658574,-0.033030782,0.812236309,0.3836959,-0.017526239,0.798069298,0.381024212,-0.053972967,0.802989125,0.486689985,-0.038816731,0.809860587,0.47857663,-0.019113841,0.857577205,0.391868204,-0.030546024,0.839944422,0.388802558,-0.047773287,0.840516627,0.461125225,-0.036322322,0.847805262,0.458985031,-0.023112306 +Left,0.256477177,0.566267252,-2.00E-07,0.205849424,0.451593548,0.003838546,0.201734483,0.341349304,-0.002064086,0.241542891,0.283496827,-0.009924523,0.286123246,0.28537485,-0.015782079,0.192648262,0.284079015,-0.008417308,0.243632764,0.205564693,-0.01818371,0.251524329,0.247130409,-0.023749571,0.241271421,0.284800678,-0.02698634,0.242459223,0.295080423,-0.017429544,0.285196513,0.229594752,-0.018646589,0.289743036,0.268910587,-0.017812891,0.280124247,0.304890096,-0.018434519,0.293207675,0.318567961,-0.025703913,0.324069083,0.265357077,-0.023572324,0.324665904,0.304324001,-0.016011892,0.313653708,0.338276118,-0.012591183,0.339448482,0.351889431,-0.034086473,0.357740223,0.308796942,-0.027343756,0.354113013,0.347633988,-0.014704451,0.346643299,0.380085737,-0.005916606 +Left,0.289624065,0.556090176,-2.31E-07,0.236950576,0.442650259,0.00937241,0.228553027,0.344348252,0.004706529,0.256978393,0.277641892,-0.001130204,0.295231313,0.264728129,-0.005224146,0.215395555,0.280318201,-0.015101951,0.264263749,0.197422028,-0.014704015,0.277527511,0.236112669,-0.008607186,0.268762201,0.275635958,-0.004578703,0.265616685,0.281438649,-0.024117315,0.304871917,0.218480527,-0.015640531,0.314279109,0.256230414,-0.007908008,0.308123261,0.294741452,-0.005905916,0.317686915,0.29850021,-0.02998361,0.341892242,0.249337748,-0.019398067,0.346323967,0.287814856,-0.007413053,0.339232802,0.326450408,-0.003484795,0.364405245,0.326778382,-0.035068657,0.375289649,0.284377247,-0.022647709,0.374659777,0.320867062,-0.007097883,0.36912334,0.354203671,0.002654769 +Left,0.296024531,0.557373524,-2.45E-07,0.242027134,0.446481347,0.007999148,0.232231289,0.350084484,0.001292315,0.259950846,0.283083826,-0.006111305,0.300728321,0.271106094,-0.011632569,0.220157623,0.28066057,-0.021000063,0.265553236,0.196362376,-0.02038944,0.279984862,0.236459821,-0.013169475,0.272061408,0.277769625,-0.008556574,0.269479394,0.279305488,-0.029880578,0.306559235,0.2184726,-0.021016605,0.316654027,0.257132322,-0.012319284,0.310695589,0.296771705,-0.010038302,0.321657091,0.295683742,-0.035273388,0.343187809,0.248995528,-0.023857059,0.348006427,0.287605733,-0.011080869,0.341862351,0.327541441,-0.007105937,0.369053721,0.324201167,-0.040005982,0.376263529,0.284682184,-0.026935173,0.375402957,0.320718676,-0.010949283,0.370724797,0.354139239,-0.001178714 +Left,0.293870896,0.588698208,-2.46E-07,0.241681516,0.47542727,0.007164371,0.231858462,0.376506388,0.000947799,0.254687428,0.297835708,-0.005944095,0.290530145,0.274071872,-0.010157124,0.220902994,0.321866661,-0.019441299,0.26266849,0.221866012,-0.021057259,0.27537173,0.261054695,-0.015226499,0.268165976,0.302579343,-0.010716151,0.272136211,0.325558037,-0.027749848,0.303906143,0.246294364,-0.020980408,0.312562585,0.281728148,-0.012781762,0.307818651,0.321151286,-0.010019529,0.324716747,0.341783017,-0.033075381,0.342495054,0.279757738,-0.024141997,0.346694469,0.313960701,-0.0112595,0.341633201,0.352315158,-0.00626188,0.371671498,0.368125737,-0.037667345,0.376785189,0.315303415,-0.02650176,0.375866503,0.348681867,-0.010565291,0.372993261,0.382000595,-0.000203497 +Left,0.28184855,0.630990088,-1.68E-07,0.24084194,0.502899408,0.005515772,0.237258956,0.39745757,-0.004511338,0.268165886,0.333869457,-0.016104907,0.307932198,0.331527293,-0.025238158,0.221103385,0.339869738,-0.025195271,0.284492582,0.252140522,-0.033885561,0.297974974,0.300454438,-0.031409506,0.288639456,0.344127566,-0.029052855,0.266425967,0.356642693,-0.036645934,0.321702838,0.286028683,-0.039004728,0.330120325,0.332609475,-0.032586206,0.321483046,0.372547746,-0.029465415,0.315394282,0.384855241,-0.045812286,0.357341051,0.331021011,-0.043673363,0.360556692,0.379392803,-0.030671868,0.349998176,0.416851133,-0.024523197,0.362441719,0.421922922,-0.054826017,0.391471028,0.382416546,-0.048644256,0.389780015,0.428421766,-0.034392517,0.380623639,0.460991532,-0.024765205 +Left,0.261220336,0.622768044,-1.22E-07,0.240416631,0.499408484,0.007127097,0.250107139,0.39157337,-0.003216048,0.29059267,0.334119141,-0.016314488,0.330725521,0.334354579,-0.026598051,0.218590856,0.334192872,-0.021543318,0.299498916,0.26442799,-0.036718599,0.317175955,0.323209971,-0.039412875,0.309163988,0.36321637,-0.041414443,0.243715912,0.35169524,-0.036878053,0.331009686,0.303376675,-0.048089664,0.340030968,0.36226058,-0.04573008,0.325804055,0.393143952,-0.04472192,0.277994484,0.38273862,-0.050765231,0.360917747,0.358029157,-0.056623399,0.361538678,0.416763097,-0.048000794,0.341629952,0.440098435,-0.043945026,0.316543162,0.421358407,-0.064727426,0.380668491,0.422317773,-0.064557575,0.377152652,0.474461645,-0.056641094,0.359146237,0.491502583,-0.05189395 +Left,0.254661739,0.617940068,-1.42E-07,0.23995465,0.501699746,0.006247683,0.254570156,0.391327083,-0.003791013,0.299332827,0.331112653,-0.01675912,0.340489537,0.325508475,-0.027250318,0.221895352,0.323067278,-0.019435834,0.311122745,0.264777899,-0.039201032,0.328823864,0.326217085,-0.04595311,0.318866163,0.362646013,-0.049916141,0.239038393,0.336764038,-0.034257084,0.339422852,0.307379127,-0.049236979,0.345572352,0.374265075,-0.047918845,0.327042818,0.403956115,-0.046917655,0.266499162,0.366350412,-0.048510812,0.36277923,0.370700061,-0.057958666,0.358655035,0.436323315,-0.050820783,0.334290385,0.456545651,-0.046730276,0.299179465,0.405011088,-0.062963299,0.371420056,0.431168884,-0.0640027,0.365625143,0.487285465,-0.057266816,0.344698668,0.502253115,-0.053122073 +Left,0.252488822,0.629800677,-2.51E-07,0.313416123,0.532961786,-0.000486432,0.340265274,0.449056029,-0.011666982,0.361474454,0.399730891,-0.026733894,0.367783487,0.383603454,-0.036852356,0.233283415,0.3042669,-0.002938821,0.325898379,0.274674892,-0.027111426,0.331581235,0.34632799,-0.040171944,0.310744643,0.371670067,-0.048833098,0.231128901,0.320584446,-0.01748801,0.347170681,0.325590432,-0.039992206,0.342718124,0.401478708,-0.043645658,0.317413181,0.412549049,-0.045145638,0.243721798,0.356240779,-0.034145359,0.356130928,0.384881854,-0.051453967,0.34649086,0.45610404,-0.045922525,0.319236487,0.464851707,-0.042181235,0.266800344,0.399374843,-0.052315798,0.352918625,0.43648994,-0.060221754,0.344701976,0.496655285,-0.056543197,0.320194483,0.505692601,-0.054087371 +Left,0.264590323,0.626004934,-3.18E-07,0.319791675,0.555665851,-0.009745714,0.350425661,0.489160627,-0.02698468,0.370204866,0.430036813,-0.046949528,0.359243304,0.39988488,-0.060767431,0.254737675,0.315315306,-0.006736932,0.334793866,0.292393386,-0.040720407,0.339618772,0.379459262,-0.059186853,0.318356276,0.40231058,-0.069511428,0.237909287,0.32079649,-0.018489398,0.335909903,0.328728646,-0.049171276,0.335111529,0.423438102,-0.053547613,0.311166227,0.428323567,-0.053079803,0.233191133,0.350220382,-0.034406852,0.329873383,0.379343331,-0.059504598,0.327000141,0.460268527,-0.051147804,0.301714063,0.46368736,-0.042903025,0.238434106,0.392939597,-0.052635562,0.314547658,0.425121099,-0.064142913,0.310925961,0.482271403,-0.058830231,0.286808431,0.488288611,-0.053574059 +Left,0.279629827,0.646092951,-4.34E-07,0.337321281,0.575134516,-0.013376125,0.379052013,0.487019956,-0.027648415,0.388711631,0.421755493,-0.043647572,0.354617536,0.440153897,-0.054185707,0.291551888,0.308500499,-0.002895028,0.356661588,0.309215397,-0.035643041,0.361159354,0.409908175,-0.054958507,0.343749851,0.439616323,-0.066194758,0.256615579,0.313511848,-0.012821512,0.331837595,0.341362059,-0.042427722,0.335380197,0.45058459,-0.048745714,0.315703094,0.459145665,-0.048739187,0.231693387,0.345631421,-0.027151845,0.307552397,0.389502317,-0.053228639,0.309031516,0.481489092,-0.046282757,0.285171896,0.48440963,-0.037502948,0.215087861,0.392274559,-0.043947823,0.276851892,0.426634252,-0.055511549,0.278926432,0.488996834,-0.048040848,0.257017821,0.497905046,-0.040132113 +Left,0.285617769,0.659238875,-4.28E-07,0.338673025,0.613851786,-0.020296501,0.386492521,0.548684001,-0.0380903,0.396176815,0.481338501,-0.055796899,0.361370206,0.459294975,-0.067110009,0.346258074,0.351062775,-0.01222563,0.385118842,0.353845537,-0.045571145,0.376477838,0.451751649,-0.062138248,0.358428597,0.47184962,-0.071133271,0.302361578,0.340094745,-0.018313121,0.347338676,0.365828007,-0.051169384,0.342426568,0.482437283,-0.057081636,0.325688332,0.480069995,-0.055253547,0.263033569,0.358059615,-0.028737014,0.307359278,0.40211767,-0.060451694,0.307068467,0.503116965,-0.051208053,0.288545668,0.499092281,-0.039135169,0.228346705,0.390953243,-0.041283295,0.267179579,0.431498289,-0.057970416,0.270308137,0.499782085,-0.04871086,0.253476977,0.497435868,-0.037699562 +Left,0.277687609,0.679494739,-4.18E-07,0.332788676,0.650757849,-0.02813529,0.392494321,0.573439956,-0.044231411,0.388314635,0.496622145,-0.057030149,0.340082288,0.476475567,-0.062395338,0.36305809,0.370793253,-0.017106457,0.389189631,0.376730919,-0.047702674,0.373206705,0.481668115,-0.063450068,0.357912868,0.487930059,-0.073608182,0.314647496,0.346071124,-0.017945927,0.343539,0.381327718,-0.04874121,0.331409425,0.496339917,-0.055526357,0.317314625,0.481273919,-0.055771314,0.270394504,0.358527333,-0.023358526,0.295888066,0.404370427,-0.052819874,0.292970151,0.506132364,-0.043914046,0.281477481,0.4916327,-0.033849288,0.230421901,0.384303749,-0.031451002,0.253356457,0.431523979,-0.04739539,0.25627777,0.499584824,-0.039102715,0.247118801,0.485859752,-0.029837172 +Left,0.265074372,0.67754972,-3.34E-07,0.322940409,0.652997851,-0.029545695,0.386907369,0.568604171,-0.042479496,0.371095568,0.487289518,-0.051384427,0.316987932,0.476049602,-0.053307138,0.362034559,0.39002949,-0.013134259,0.382885158,0.384349018,-0.039425805,0.362287849,0.486979783,-0.050902639,0.348671973,0.49229455,-0.057824478,0.314804822,0.360256732,-0.011987465,0.334905088,0.372317255,-0.039954171,0.319874197,0.489492923,-0.043207418,0.310051858,0.479920566,-0.039935358,0.269804835,0.364029914,-0.015807355,0.284734845,0.393038779,-0.045356367,0.281947792,0.49873063,-0.035311475,0.276124805,0.489913225,-0.022994544,0.226216644,0.37936461,-0.021926111,0.241049111,0.409436882,-0.035751201,0.243048027,0.481990308,-0.024066662,0.237994194,0.475185812,-0.012362259 +Left,0.263508976,0.660963178,-2.95E-07,0.31556952,0.627464294,-0.028595231,0.374533087,0.554614663,-0.044905018,0.366602987,0.480850071,-0.05834299,0.318109304,0.466018885,-0.065512396,0.347404778,0.365169466,-0.014786506,0.370709598,0.367608964,-0.045295019,0.357245862,0.466087401,-0.061711449,0.342796981,0.477169752,-0.071604908,0.300205469,0.337481499,-0.01563037,0.325644016,0.366474569,-0.046695735,0.31793803,0.479167134,-0.053823203,0.305660188,0.474677742,-0.053577952,0.255331784,0.346127391,-0.021413475,0.278692633,0.388488561,-0.052900888,0.278972507,0.491260856,-0.044560038,0.268110603,0.485812783,-0.033617739,0.211663306,0.371620595,-0.029642476,0.234719649,0.417756975,-0.046780035,0.240770295,0.488591313,-0.037609044,0.234013185,0.48243472,-0.027125493 +Left,0.249690592,0.659089863,-2.98E-07,0.304070055,0.57559818,-0.013981341,0.342042655,0.489035428,-0.030632414,0.352438062,0.421203345,-0.049341146,0.31980598,0.43137303,-0.062534116,0.25507021,0.312347025,-0.005331278,0.315983742,0.301536798,-0.038680218,0.325632334,0.400462091,-0.056433007,0.309575468,0.432230979,-0.066092446,0.2195272,0.320389688,-0.016079402,0.294748366,0.34363845,-0.047883708,0.303248018,0.460085958,-0.053799547,0.28188169,0.466057271,-0.052472088,0.194633216,0.358213961,-0.031082572,0.272462875,0.399355143,-0.061164968,0.277895182,0.497063696,-0.05330725,0.252766848,0.499113142,-0.042573839,0.17799677,0.412141711,-0.048186552,0.241929427,0.447162062,-0.063526452,0.246909827,0.510954201,-0.055403922,0.224301219,0.517513096,-0.045893043 +Left,0.242945045,0.653624952,-3.35E-07,0.297082752,0.568956077,-0.010715416,0.33162868,0.48990044,-0.026512008,0.349041075,0.425645202,-0.045486968,0.327410936,0.424210787,-0.058883067,0.23682189,0.320146382,-0.002965134,0.307088614,0.296578974,-0.038923796,0.316026121,0.394472837,-0.060050141,0.296856552,0.421394914,-0.07179869,0.209648609,0.331651449,-0.015238958,0.297718108,0.339027345,-0.04889771,0.30179584,0.444963306,-0.056163307,0.278973669,0.455886096,-0.056130089,0.193205878,0.366738677,-0.032039709,0.282672077,0.394289136,-0.061113939,0.283503413,0.483082175,-0.054843586,0.258982331,0.489192128,-0.045651902,0.18614921,0.414659858,-0.051084287,0.25912109,0.44085291,-0.064233676,0.259273291,0.501151681,-0.057699256,0.235801771,0.511238873,-0.050105765 +Left,0.232059985,0.636341274,-2.90E-07,0.292871505,0.546697199,-0.009499842,0.32273522,0.464471996,-0.025764218,0.340121806,0.40299809,-0.044765078,0.326332152,0.397494346,-0.057859074,0.207576871,0.300791144,-0.006853755,0.295362771,0.274302602,-0.041122608,0.30574438,0.364080936,-0.06204946,0.28608501,0.392525971,-0.075099073,0.191261381,0.317379951,-0.01940487,0.298353493,0.318854868,-0.05175025,0.304066747,0.412844718,-0.058746342,0.282958001,0.427610368,-0.060534969,0.18994537,0.35564065,-0.035981461,0.296375811,0.379488856,-0.061860695,0.298431247,0.457971752,-0.05586553,0.274429202,0.468706578,-0.049370863,0.20059967,0.404717267,-0.055022232,0.286429375,0.427652478,-0.066765472,0.285013497,0.484648943,-0.062883429,0.260818988,0.495534331,-0.059166837 +Left,0.219769835,0.625651598,-2.49E-07,0.283188522,0.527885199,-0.002125117,0.308963418,0.435630322,-0.01336864,0.329441726,0.381904334,-0.027564136,0.335840046,0.363993585,-0.036377463,0.19085595,0.292382181,-0.005514794,0.289648533,0.259140491,-0.030759167,0.295120507,0.333859384,-0.044588335,0.27209729,0.358418941,-0.054091625,0.187606931,0.308744967,-0.019376406,0.310457259,0.304540575,-0.043192197,0.307879537,0.382414907,-0.046834283,0.282079577,0.395319819,-0.048859417,0.200772136,0.344986081,-0.035385039,0.320063472,0.360610068,-0.052855924,0.312785029,0.433208644,-0.045649644,0.284782469,0.444449216,-0.041448087,0.225897208,0.388604164,-0.053086437,0.316277802,0.414517999,-0.061145257,0.310486674,0.474767655,-0.056960259,0.285800666,0.482815742,-0.054629162 +Left,0.229030579,0.593302488,-9.69E-08,0.19637385,0.476407528,0.001894289,0.195144862,0.366994232,-0.010845306,0.227389261,0.306874037,-0.025210526,0.263925403,0.299767882,-0.036415748,0.173373103,0.314003766,-0.026787097,0.247349828,0.231531039,-0.044196855,0.259988785,0.278515816,-0.048555978,0.246477351,0.317505628,-0.050941609,0.208304822,0.338051826,-0.039809488,0.280941457,0.26514414,-0.051808212,0.28943032,0.312963009,-0.048819046,0.275073856,0.345549971,-0.047595896,0.248520836,0.370300651,-0.052061923,0.315813392,0.307209074,-0.059377179,0.317943513,0.357350677,-0.048529986,0.29935503,0.386248142,-0.04284779,0.291442543,0.410307884,-0.06454321,0.343321353,0.370107859,-0.066150777,0.339313984,0.417949438,-0.056160912,0.321241051,0.443783402,-0.049678966 +Left,0.246324092,0.614661813,-1.77E-07,0.200249285,0.490886837,0.003072562,0.195623919,0.383946568,-0.006835697,0.231572285,0.319641858,-0.017600078,0.276074171,0.316156268,-0.025453556,0.187615186,0.339477211,-0.024725741,0.242610469,0.238563299,-0.035963111,0.251156479,0.281808615,-0.036514334,0.238949016,0.325634688,-0.034874581,0.239249453,0.36036098,-0.033761539,0.283770859,0.266613603,-0.035687324,0.289390177,0.306385428,-0.028715869,0.280826151,0.348120123,-0.025011953,0.290778011,0.388343662,-0.041275222,0.323047906,0.30800733,-0.039081194,0.324078739,0.346115381,-0.026128227,0.313543886,0.385301799,-0.019342426,0.337861985,0.424098372,-0.048636898,0.35726428,0.357340425,-0.042182475,0.352972865,0.395205468,-0.027079642,0.344843596,0.430367887,-0.01667651 +Left,0.259235471,0.628666282,-2.10E-07,0.211882755,0.505914271,0.008027024,0.206629321,0.404806405,0.001623742,0.236918554,0.330314606,-0.005971954,0.277204961,0.31444484,-0.010812977,0.200861976,0.35694474,-0.020508045,0.251710743,0.252990305,-0.024135394,0.263247997,0.293353558,-0.017664321,0.254452676,0.333680093,-0.012125515,0.25149104,0.370639175,-0.029948156,0.293630719,0.279723674,-0.025525503,0.301503122,0.316612303,-0.015868975,0.294774055,0.353946328,-0.011311492,0.302798599,0.396351337,-0.036644623,0.330602348,0.318840176,-0.029504048,0.334433854,0.35558933,-0.015431004,0.326644778,0.391996264,-0.009198737,0.349119425,0.432325751,-0.042552929,0.365804374,0.364460707,-0.033954084,0.363424093,0.40067485,-0.018274084,0.356565982,0.434847891,-0.007782739 +Left,0.256222278,0.62148875,-1.49E-07,0.217288733,0.496305138,0.00599826,0.217653126,0.389056623,-0.004073187,0.254069895,0.328962982,-0.016119637,0.295409858,0.328110635,-0.025748979,0.198563218,0.3350797,-0.023174385,0.26454097,0.244537652,-0.034871429,0.276821375,0.29113993,-0.036257036,0.266093582,0.332169175,-0.036573727,0.241281569,0.35674566,-0.035692453,0.300106198,0.278016746,-0.040045317,0.307867616,0.322399497,-0.034936979,0.298646957,0.358799964,-0.032838482,0.288465112,0.388887048,-0.046475001,0.335923105,0.317687482,-0.046740729,0.338012397,0.364317954,-0.034275245,0.326451272,0.40002647,-0.028011685,0.335456133,0.429581672,-0.056960899,0.366884649,0.377342552,-0.052419394,0.363408685,0.420772761,-0.038720112,0.35298422,0.451802969,-0.029532241 +Left,0.251339585,0.606727362,-1.27E-07,0.234915555,0.489249766,0.00574823,0.247226149,0.380206198,-0.005254234,0.28791526,0.317476839,-0.018811874,0.324688792,0.309314698,-0.029498205,0.213458151,0.317628175,-0.022447271,0.298021972,0.254346997,-0.042065229,0.317947656,0.310461164,-0.049154397,0.31006369,0.350685537,-0.053860992,0.233017474,0.335902393,-0.037868645,0.326201916,0.293856233,-0.053270672,0.3355757,0.351949036,-0.053368043,0.31948337,0.381113589,-0.054028418,0.263356715,0.368247896,-0.052402265,0.354502201,0.350488454,-0.061542094,0.352633327,0.407993942,-0.054341853,0.328359783,0.425934345,-0.051310174,0.29983747,0.407900363,-0.067197435,0.371727139,0.417431951,-0.069707327,0.3637003,0.467842937,-0.063752547,0.339074403,0.479017317,-0.060583796 +Left,0.267446101,0.616832972,-3.17E-07,0.333534032,0.532590628,0.002307913,0.358414531,0.447449803,-0.004418545,0.375204146,0.396393627,-0.015296209,0.373111278,0.389415294,-0.021508647,0.253296673,0.304223746,0.004418261,0.338538319,0.289418221,-0.019957507,0.343146443,0.364547402,-0.033273529,0.323067278,0.387120456,-0.04190683,0.246331573,0.314835042,-0.010906947,0.351171792,0.32117188,-0.034419883,0.350579709,0.404705524,-0.037058953,0.328385651,0.414632142,-0.036530074,0.253595322,0.345694304,-0.028887682,0.357515424,0.378072828,-0.04833243,0.353049755,0.45397675,-0.042578347,0.327611178,0.460003465,-0.037485953,0.271563202,0.386972815,-0.048124563,0.353218555,0.429394752,-0.057162166,0.348587841,0.489589989,-0.054133665,0.326125056,0.495053142,-0.05185784 +Left,0.283200443,0.612505317,-3.03E-07,0.343276888,0.544078946,-0.0072335,0.374082893,0.463805676,-0.019616919,0.389929712,0.40351513,-0.034782026,0.366286546,0.418125391,-0.044869516,0.276869237,0.297241449,0.000324704,0.353051513,0.291466653,-0.029568564,0.357015491,0.375216722,-0.048498612,0.334207118,0.396123916,-0.060750566,0.258579522,0.30587402,-0.012184714,0.350434095,0.320028067,-0.040627703,0.35024631,0.4098804,-0.047121048,0.327377915,0.416346997,-0.048390776,0.251305431,0.338031024,-0.028408349,0.341085106,0.376115918,-0.05228224,0.338227928,0.453339815,-0.046956498,0.313950688,0.45517844,-0.040666141,0.253633976,0.383490652,-0.046740368,0.32473138,0.420865774,-0.057618666,0.320088208,0.474196732,-0.053478241,0.296473294,0.478241563,-0.049529761 +Left,0.286602467,0.636834621,-3.38E-07,0.340746552,0.568223953,-0.009707306,0.381499022,0.492913008,-0.023314614,0.397884756,0.428236485,-0.039466292,0.366941392,0.42909646,-0.050356206,0.301021338,0.317449719,0.000508815,0.365261436,0.315111428,-0.031261738,0.365984797,0.407068729,-0.050916944,0.347653329,0.43446061,-0.062346656,0.271657109,0.317209482,-0.010462786,0.346692145,0.343242705,-0.040145528,0.345378548,0.443741202,-0.047583714,0.326998502,0.453882396,-0.048135806,0.249971569,0.341567129,-0.025597656,0.326705158,0.38765347,-0.05147646,0.323193341,0.47219786,-0.046140287,0.301491946,0.475061744,-0.038070623,0.235846341,0.38214016,-0.042877845,0.300115317,0.422345936,-0.055020396,0.298184901,0.479226828,-0.049410265,0.276576042,0.485563368,-0.042653486 +Left,0.278094471,0.663046062,-3.64E-07,0.333704412,0.624427319,-0.024762863,0.387425125,0.551002264,-0.042097267,0.390443832,0.484204054,-0.057579257,0.350108951,0.476608247,-0.066748865,0.343624532,0.353566438,-0.016636323,0.38566339,0.372555524,-0.047208048,0.373437345,0.471209526,-0.063432366,0.355573237,0.480445296,-0.073959894,0.301692516,0.33870554,-0.020107418,0.348396808,0.381058663,-0.051299173,0.337921739,0.490168005,-0.058068372,0.320555151,0.48256284,-0.058488816,0.263030142,0.356630743,-0.027795397,0.307827681,0.409303218,-0.057846215,0.303431273,0.505802572,-0.050040912,0.285563946,0.498820424,-0.040532693,0.229786426,0.390362531,-0.038045008,0.269484937,0.439754069,-0.054568835,0.26847142,0.505969763,-0.047659036,0.250658065,0.500817955,-0.039640713 +Left,0.27199775,0.673378885,-3.53E-07,0.326686472,0.644987524,-0.030517016,0.384751081,0.571564257,-0.046699993,0.372192204,0.498587012,-0.058691956,0.322748274,0.480680078,-0.064255364,0.353289187,0.379163533,-0.019270614,0.382335156,0.391680121,-0.048215996,0.363978028,0.486140788,-0.063498504,0.347861469,0.491794527,-0.073261783,0.307529837,0.353422165,-0.018158225,0.336836308,0.392045438,-0.047635414,0.322196603,0.497762978,-0.054670509,0.308686495,0.489576906,-0.054960091,0.265267968,0.362697005,-0.021590918,0.28981027,0.413811147,-0.05121671,0.285644919,0.507515669,-0.044718169,0.276078612,0.497569829,-0.035657875,0.225379676,0.386476904,-0.02752566,0.247964889,0.431138426,-0.043404531,0.2504116,0.497437716,-0.035657737,0.243566781,0.489880741,-0.026697097 +Left,0.247695088,0.661829472,-2.69E-07,0.302796364,0.647079885,-0.039963279,0.363144457,0.5804618,-0.058525752,0.343931019,0.504166663,-0.071059272,0.291155636,0.479168624,-0.07659287,0.353525758,0.40372774,-0.024760606,0.361880749,0.399776876,-0.05721651,0.338697433,0.493813604,-0.072397582,0.326410472,0.50452292,-0.08030849,0.306856692,0.368942052,-0.018748779,0.311360031,0.379627794,-0.051981028,0.297027767,0.488867104,-0.056432333,0.293498874,0.487918258,-0.0525827,0.260287285,0.366561413,-0.019048816,0.257348597,0.399715722,-0.052251726,0.255542219,0.498355895,-0.0429332,0.258173585,0.494339824,-0.029973848,0.214372963,0.377168179,-0.022657201,0.215265527,0.41361022,-0.038831722,0.217488304,0.482035965,-0.028824236,0.220430017,0.478559852,-0.01751521 +Left,0.23320058,0.65711534,-2.12E-07,0.289520413,0.645278752,-0.03990991,0.350153208,0.583148122,-0.058739547,0.32600385,0.506303847,-0.071314625,0.273181468,0.477809221,-0.076907508,0.347150981,0.407896101,-0.027533675,0.349173188,0.400400728,-0.059718452,0.327070117,0.496337533,-0.074254975,0.318438232,0.507650495,-0.081814229,0.30045706,0.369306237,-0.021472694,0.298475087,0.376159668,-0.054131687,0.285470873,0.489565969,-0.057432864,0.285352498,0.489573598,-0.053283542,0.252669007,0.363255262,-0.02153302,0.244000867,0.392293632,-0.054401442,0.242663622,0.495708048,-0.043772992,0.248250127,0.493594646,-0.030364085,0.205091566,0.370293796,-0.024793355,0.20158127,0.403741896,-0.040798917,0.203421891,0.47515884,-0.02991803,0.208673894,0.472727954,-0.018363142 +Left,0.224051088,0.621183515,-2.21E-07,0.283878863,0.616521955,-0.037902441,0.344847679,0.565825105,-0.056908689,0.324513674,0.486452967,-0.070080549,0.273517311,0.445972413,-0.077182434,0.347008884,0.400925308,-0.030936221,0.349963278,0.383824795,-0.06333565,0.322777748,0.47743234,-0.07777755,0.314191461,0.49054879,-0.08525952,0.300899506,0.362120062,-0.026655538,0.301041961,0.349784404,-0.060694613,0.283019036,0.462692082,-0.063459098,0.281249613,0.474378198,-0.058578975,0.252879679,0.352430969,-0.027611172,0.246791348,0.35546574,-0.064204931,0.240806311,0.470384032,-0.050595324,0.244122162,0.488645941,-0.033607066,0.203423619,0.356780976,-0.031090949,0.203095078,0.368075848,-0.051938295,0.203269958,0.45057562,-0.038262784,0.207176745,0.467402875,-0.023009293 +Left,0.222251415,0.614102125,-2.04E-07,0.281618625,0.613681018,-0.039796159,0.342481643,0.568377078,-0.060091365,0.319898635,0.489895821,-0.074358717,0.269067883,0.452618867,-0.082227409,0.352022648,0.406417549,-0.032180838,0.351027817,0.389249802,-0.064799391,0.326537311,0.481765419,-0.079865992,0.320592344,0.494123429,-0.087951072,0.306934953,0.365370989,-0.026845057,0.300867438,0.361427069,-0.060920548,0.284869641,0.470785528,-0.065342382,0.285773754,0.47410351,-0.062449399,0.259367794,0.35318765,-0.02693465,0.250412166,0.360655785,-0.062527373,0.244932741,0.46808067,-0.050544988,0.250734836,0.478296697,-0.035493948,0.209633321,0.352656752,-0.029872412,0.208028525,0.366604716,-0.049237698,0.20777607,0.441036612,-0.036833208,0.21301657,0.450523853,-0.023270139 +Left,0.21696493,0.620954812,-2.06E-07,0.273264736,0.620262384,-0.042012118,0.327341676,0.5862692,-0.06440936,0.308390915,0.511108398,-0.08053416,0.269051224,0.463900387,-0.09009508,0.349386215,0.424031556,-0.033457119,0.34543699,0.406908959,-0.0688577,0.318638116,0.495872706,-0.086173259,0.313634455,0.51071918,-0.095523767,0.306123346,0.379881442,-0.027857944,0.297222435,0.371036887,-0.064783238,0.276454836,0.480866939,-0.070289679,0.277586609,0.48872894,-0.067621589,0.258599997,0.364900053,-0.028273508,0.245133862,0.370486528,-0.066881806,0.234707713,0.475613534,-0.055829506,0.240677983,0.484985203,-0.041112725,0.207691118,0.363902688,-0.031600963,0.201556683,0.379493445,-0.053768165,0.199525476,0.454366565,-0.042695899,0.206422329,0.462913513,-0.029812982 +Left,0.214354545,0.639130294,-1.72E-07,0.27105999,0.63509351,-0.032757748,0.325857639,0.593439817,-0.049562361,0.304009765,0.520078897,-0.061941329,0.257558227,0.487949312,-0.068769783,0.335251272,0.454136372,-0.024830902,0.339245379,0.425199211,-0.05451075,0.315490216,0.51051724,-0.067918584,0.309712291,0.526251078,-0.0750539,0.292523772,0.416174442,-0.022517882,0.292919189,0.395871937,-0.054112002,0.275519609,0.499856204,-0.058341786,0.274132878,0.50765413,-0.055659018,0.247161448,0.401798338,-0.02513469,0.241012141,0.396003962,-0.059449058,0.233413517,0.499355197,-0.0492654,0.235937774,0.511599362,-0.035586346,0.198773101,0.398904383,-0.029747635,0.198555589,0.403325945,-0.048945408,0.197388798,0.478413463,-0.037154917,0.200819254,0.491231203,-0.024402533 +Left,0.244099617,0.668039322,-1.84E-07,0.294887573,0.639717102,-0.028066609,0.345482558,0.576015294,-0.042343628,0.32877332,0.512658179,-0.05291792,0.284624755,0.499069959,-0.059210192,0.320431679,0.399204671,-0.017275048,0.342431605,0.420407027,-0.041268822,0.326800674,0.499494731,-0.055214223,0.314232618,0.506449461,-0.06330622,0.27977246,0.374534965,-0.015072529,0.298123479,0.415834755,-0.036228452,0.289345771,0.50851357,-0.040729005,0.281057775,0.507887721,-0.040586025,0.240002766,0.38011083,-0.016985426,0.253356397,0.42723155,-0.039228104,0.253162116,0.513413846,-0.03274747,0.24780941,0.516659498,-0.024766965,0.200486094,0.399475247,-0.0211761,0.213803947,0.430515528,-0.030705871,0.218146473,0.49284938,-0.020875717,0.215707406,0.499174058,-0.011382334 +Left,0.270588309,0.676795244,-2.86E-07,0.319529653,0.644893467,-0.025172774,0.373036087,0.573126078,-0.040847011,0.364614218,0.508715391,-0.053553939,0.319815934,0.501764059,-0.061320934,0.331375718,0.393115193,-0.018357156,0.369818747,0.408679426,-0.0444909,0.355144262,0.495153069,-0.059082102,0.339705944,0.501021624,-0.068849422,0.291763306,0.379023701,-0.019325059,0.332137167,0.413622886,-0.044284631,0.321036398,0.508072138,-0.049677409,0.307281166,0.50300467,-0.050341759,0.256119728,0.394008487,-0.024065657,0.293796271,0.439213753,-0.048168737,0.290257126,0.522804022,-0.041272711,0.277666301,0.518374562,-0.033738434,0.223200098,0.421704441,-0.03121167,0.258081764,0.458779097,-0.042926047,0.260524929,0.519551754,-0.034961134,0.250898093,0.519795954,-0.027211528 +Left,0.29631561,0.682375133,-2.85E-07,0.344423413,0.638192654,-0.019206278,0.390441507,0.566140473,-0.033299092,0.392876565,0.507994831,-0.046394482,0.35601899,0.509106934,-0.05480865,0.339827836,0.388874799,-0.011612399,0.382078886,0.401111364,-0.036416464,0.37651366,0.486805856,-0.050094318,0.358225703,0.498643845,-0.058566052,0.302266002,0.381641716,-0.015457887,0.34874171,0.415981859,-0.039133891,0.346753448,0.514634788,-0.045043606,0.329522401,0.512642026,-0.045822192,0.269984961,0.404633701,-0.022422675,0.315409631,0.45019111,-0.046394251,0.316793352,0.537286401,-0.040611386,0.299189746,0.534468174,-0.032987203,0.241947457,0.441607594,-0.031218722,0.28169167,0.478346884,-0.0434529,0.285414755,0.537448406,-0.035918809,0.270363986,0.537611127,-0.027847636 +Left,0.290432602,0.689261436,-2.77E-07,0.338626027,0.63348496,-0.012967832,0.377371669,0.563309312,-0.026899379,0.38734439,0.504433751,-0.041854918,0.355972379,0.500092983,-0.052609149,0.321457624,0.387812525,-0.007030308,0.369823545,0.389248967,-0.034776609,0.368517637,0.474970043,-0.050351735,0.351388514,0.498185933,-0.059268307,0.285308868,0.38650018,-0.015544101,0.341631234,0.409442306,-0.042294819,0.342376769,0.512430251,-0.048628282,0.32422328,0.521302164,-0.048566967,0.25469619,0.414013475,-0.027152294,0.311533511,0.450579733,-0.053385995,0.313359737,0.542240441,-0.046686117,0.293591768,0.546414673,-0.037448693,0.230039015,0.457841516,-0.040245831,0.277900219,0.490461797,-0.053535938,0.282552034,0.551875591,-0.045158532,0.266418308,0.555618882,-0.035894021 +Left,0.259711117,0.703792393,-3.15E-07,0.313400716,0.644305706,-0.016205352,0.355337143,0.571431339,-0.032397714,0.367234349,0.511803269,-0.049233831,0.335225433,0.519518912,-0.061425477,0.289677531,0.398438841,-0.013978452,0.344723523,0.398150176,-0.045932353,0.343464553,0.49181509,-0.063564859,0.326682508,0.514442086,-0.073869094,0.252916306,0.400016278,-0.022628106,0.317815125,0.428631902,-0.05223605,0.316967994,0.533109009,-0.058079772,0.298408061,0.539191365,-0.057962857,0.222279072,0.429190814,-0.034997322,0.288508117,0.468161613,-0.062201604,0.288324594,0.558990836,-0.055255257,0.267896652,0.562177181,-0.046433643,0.19866465,0.474251121,-0.049540274,0.253447562,0.511689782,-0.062791422,0.256686032,0.573482156,-0.055457741,0.239950955,0.577592552,-0.047521647 +Left,0.236249313,0.66892314,-3.24E-07,0.288036376,0.619561911,-0.015830126,0.330089837,0.557432175,-0.034267381,0.344036549,0.505819201,-0.053478435,0.312964439,0.508463144,-0.068691172,0.264116466,0.352466702,-0.017614111,0.327268481,0.380154818,-0.051327128,0.322311431,0.467563033,-0.072449915,0.303302795,0.482469082,-0.085909687,0.223682404,0.355735272,-0.027027389,0.298808664,0.418048441,-0.055589166,0.294197112,0.50830394,-0.062657289,0.277016819,0.511607111,-0.065505527,0.191516668,0.392277032,-0.040131845,0.265434653,0.469596744,-0.064095803,0.262749493,0.5451895,-0.0590568,0.244043276,0.543526292,-0.054046996,0.169650763,0.447686255,-0.055892237,0.228659391,0.511569381,-0.067144178,0.22936672,0.567946851,-0.062276393,0.212465316,0.569511414,-0.057688329 +Left,0.198676303,0.614896655,-3.39E-07,0.256739259,0.55450356,-0.01222713,0.298721433,0.481237173,-0.026784346,0.314655274,0.419176102,-0.043047182,0.285657793,0.413285196,-0.054892663,0.225076362,0.269954085,-0.005134935,0.286582947,0.29206863,-0.035959069,0.289365053,0.386317015,-0.055667989,0.275672883,0.418039888,-0.067298248,0.188007787,0.275266975,-0.015624389,0.262237579,0.329295039,-0.042384218,0.264513642,0.435858935,-0.049166199,0.24985531,0.4523471,-0.050190911,0.158705711,0.312879562,-0.02995933,0.234341621,0.383039117,-0.055622585,0.23440282,0.472664505,-0.050329454,0.215763643,0.479657769,-0.042622317,0.13772133,0.370414019,-0.046360452,0.198194802,0.426131934,-0.058876794,0.200549424,0.488250136,-0.051920701,0.182868153,0.494181126,-0.044017632 +Left,0.187131271,0.615293026,-3.64E-07,0.245309904,0.534903705,-0.014220936,0.286968142,0.457010418,-0.032192409,0.303281695,0.39244324,-0.052585393,0.274922341,0.386903286,-0.067233227,0.198205277,0.259346485,-0.004563069,0.268572956,0.259733975,-0.040618364,0.274491191,0.359908044,-0.061358631,0.256948441,0.389422297,-0.072567716,0.163401231,0.266506791,-0.015491737,0.248870999,0.300169438,-0.047981184,0.251711667,0.415240884,-0.054035816,0.230512589,0.422379643,-0.052731864,0.139290795,0.301543802,-0.031260725,0.225970984,0.354786992,-0.061439436,0.226920933,0.450446188,-0.054424018,0.202549353,0.452345848,-0.043948159,0.123719141,0.352889717,-0.049427181,0.194292322,0.394685507,-0.063541584,0.196423814,0.459100485,-0.055833969,0.173947617,0.4671956,-0.046489187 +Left,0.165971786,0.625012159,-4.01E-07,0.228459105,0.523061335,0.000234438,0.254690677,0.426099569,-0.012008582,0.273836106,0.36128974,-0.029507039,0.257203519,0.374168128,-0.041337177,0.135653228,0.262317181,0.007225303,0.22406213,0.244103804,-0.025646619,0.233610332,0.334109485,-0.045455474,0.208744898,0.358517021,-0.058189899,0.117508233,0.272231877,-0.011456817,0.226444662,0.276896536,-0.041592181,0.23196058,0.381420106,-0.045864604,0.203158215,0.388750941,-0.04561986,0.114756912,0.308840573,-0.034127485,0.223256722,0.3336716,-0.059651796,0.226976186,0.424553871,-0.051306166,0.197084993,0.429055959,-0.043400295,0.125199378,0.35935539,-0.05868119,0.211630359,0.389007449,-0.07013604,0.211791098,0.453198493,-0.06446065,0.18430452,0.461505175,-0.059731983 +Left,0.160931289,0.659627676,-3.80E-07,0.228416979,0.537674546,0.002231782,0.247608274,0.435994089,-0.006515571,0.261117041,0.37640813,-0.020217644,0.266244859,0.362960994,-0.028866535,0.116926238,0.297673762,0.005692548,0.219449282,0.259540558,-0.021322919,0.232960314,0.344987035,-0.039058771,0.212019682,0.380026281,-0.051856346,0.109675355,0.311133742,-0.012172263,0.234088868,0.295624495,-0.036138482,0.241342112,0.388084024,-0.040735632,0.216926336,0.411347836,-0.043118767,0.12093243,0.345574379,-0.033170998,0.245668799,0.356178552,-0.050758503,0.247940734,0.440942824,-0.044350203,0.219525918,0.457505107,-0.040710226,0.145801812,0.3902134,-0.056158703,0.243204817,0.419944674,-0.062621124,0.245144755,0.487178922,-0.058568284,0.221840099,0.499141127,-0.057051525 +Left,0.171543255,0.651738524,-2.77E-07,0.226693854,0.542962015,-0.003555321,0.249136239,0.436817646,-0.01455722,0.266498268,0.370728761,-0.027336622,0.267891914,0.33792156,-0.034793559,0.132555962,0.309093088,-0.008787308,0.237855315,0.26951021,-0.032868389,0.245775819,0.340675294,-0.046775386,0.220075279,0.370228738,-0.056986008,0.132480621,0.325617641,-0.020856967,0.26201719,0.309226573,-0.042384993,0.261457324,0.38602972,-0.045635499,0.232881919,0.406276822,-0.048792053,0.148760378,0.362108886,-0.034832597,0.27389431,0.365064561,-0.050739214,0.2684623,0.438505918,-0.043697741,0.238844976,0.455379337,-0.040670913,0.176655158,0.407196134,-0.050542202,0.269888163,0.424246073,-0.058545068,0.264145672,0.487120748,-0.054984443,0.237030238,0.502135515,-0.053620744 +Left,0.203908309,0.614701211,-1.39E-07,0.202603117,0.513115883,-0.001659819,0.215495363,0.403199911,-0.014355178,0.252112627,0.332925975,-0.028677013,0.283827603,0.305735171,-0.038929027,0.156312883,0.316298485,-0.020379599,0.245083719,0.254113615,-0.045532454,0.260688871,0.309409529,-0.057752263,0.247725517,0.345423967,-0.065366648,0.169027954,0.334320337,-0.033008981,0.273736954,0.291040003,-0.053310651,0.280400336,0.350478888,-0.053651556,0.263215125,0.381327987,-0.053713363,0.194272786,0.36624831,-0.046913289,0.295942873,0.353498131,-0.060569484,0.294296175,0.408281595,-0.052676622,0.272685051,0.427981198,-0.048113141,0.228720739,0.405741513,-0.062123306,0.306560427,0.413705885,-0.066323169,0.301180035,0.464422375,-0.060095478,0.279974163,0.478935778,-0.056563459 +Left,0.242157355,0.610648394,-1.04E-07,0.217912868,0.495897114,0.001191578,0.221750274,0.382104665,-0.011867248,0.260019034,0.310080826,-0.027131435,0.296490759,0.291301519,-0.038622003,0.188040748,0.328879327,-0.023808978,0.265608817,0.248352543,-0.045666542,0.285566658,0.299209237,-0.054134902,0.276940703,0.33643043,-0.059972975,0.209601745,0.348878145,-0.038176451,0.294165283,0.282904804,-0.055821884,0.308016837,0.335567504,-0.056009028,0.294683516,0.364949256,-0.056789711,0.241004527,0.37970084,-0.052659344,0.325255752,0.328606904,-0.064894482,0.330775976,0.381579369,-0.056953505,0.310522079,0.404408783,-0.053077798,0.280116767,0.417497963,-0.067866556,0.349467516,0.400445759,-0.074425861,0.346764028,0.446013927,-0.069836624,0.324576586,0.461051583,-0.067263663 +Left,0.284818828,0.614784479,-1.43E-07,0.244617909,0.499536455,0.005968812,0.236391693,0.392878175,-0.003878256,0.26608935,0.329404444,-0.016057914,0.305402935,0.323968172,-0.025546772,0.213625163,0.342398405,-0.021445746,0.277841181,0.244172066,-0.033708345,0.292632431,0.291797906,-0.034487091,0.283097357,0.333126664,-0.034769326,0.25114733,0.358680964,-0.035341669,0.314129829,0.268761903,-0.042020336,0.324903786,0.316678822,-0.036833867,0.316217035,0.353999466,-0.034080643,0.294348806,0.382892132,-0.047865037,0.351358563,0.302298546,-0.051206239,0.357567787,0.351895124,-0.039651819,0.345428765,0.387647569,-0.03325253,0.340197653,0.415693074,-0.060227025,0.385131508,0.356927544,-0.058560036,0.384651542,0.406193554,-0.04654029,0.370664299,0.439386815,-0.0382859 +Left,0.299618572,0.635479689,-2.23E-07,0.254635215,0.521421492,0.00903365,0.245604217,0.41569674,0.002076228,0.27457568,0.347560942,-0.007475926,0.314139754,0.332118124,-0.014639369,0.230120152,0.367200464,-0.018277828,0.280090779,0.257169724,-0.026741359,0.294479787,0.302488238,-0.025120802,0.286127448,0.346511841,-0.023101313,0.273815215,0.379615486,-0.030993095,0.321815521,0.284338146,-0.031868007,0.331328332,0.325917661,-0.025545821,0.323161125,0.364554763,-0.02290909,0.321237326,0.399611205,-0.041662786,0.360374123,0.31946373,-0.038910583,0.365605533,0.362175703,-0.02613066,0.355517417,0.398988038,-0.02027395,0.367313653,0.429427952,-0.051864512,0.395936817,0.36471808,-0.045375071,0.394263059,0.410101056,-0.030496871,0.383226991,0.446984053,-0.020797295 +Left,0.309321642,0.674127162,-2.16E-07,0.260104895,0.569610894,0.008011819,0.246437415,0.47114554,0.00078069,0.267563462,0.390967995,-0.007281864,0.30144453,0.357017934,-0.012257271,0.231173813,0.427773803,-0.028175553,0.274365187,0.307085961,-0.033400618,0.293326944,0.344034106,-0.025520764,0.287088782,0.386496067,-0.018798418,0.27794221,0.433505058,-0.038802054,0.320041448,0.321934938,-0.037088387,0.33341518,0.35941568,-0.026303912,0.325482458,0.398627877,-0.02104771,0.32786414,0.447280824,-0.046295621,0.360627174,0.357181728,-0.041344043,0.369011223,0.395629436,-0.0252256,0.360553503,0.431975335,-0.017956503,0.374100417,0.471955866,-0.053004265,0.397816867,0.394161046,-0.046231862,0.399705231,0.434192657,-0.029780289,0.391485393,0.471423388,-0.019181818 +Left,0.307674408,0.679670274,-2.11E-07,0.254408836,0.582234263,0.003522636,0.239046797,0.48293674,-0.005274376,0.256575614,0.394709826,-0.013536389,0.289443552,0.355290949,-0.018459031,0.226062298,0.44517836,-0.033768669,0.264975011,0.318693042,-0.039629005,0.281972796,0.3548536,-0.031815413,0.276566565,0.397983313,-0.024909882,0.276128143,0.447082877,-0.041563444,0.310798973,0.334280223,-0.039852094,0.322220922,0.368835986,-0.028894885,0.31623587,0.407312691,-0.023589374,0.328106731,0.456312656,-0.04636405,0.352127701,0.366091132,-0.04149751,0.359170586,0.401132882,-0.026001304,0.353293329,0.43723163,-0.019125938,0.375562966,0.474925995,-0.050577562,0.390330553,0.39878726,-0.043786962,0.39162606,0.436890185,-0.02811785,0.386899173,0.472845346,-0.01805081 +Left,0.284208745,0.691273034,-2.16E-07,0.225821942,0.592776418,0.004162992,0.210536271,0.490690649,-0.003598331,0.231520504,0.400968075,-0.011237303,0.268335462,0.366580665,-0.015630221,0.201592684,0.458731264,-0.025553729,0.235490441,0.337877989,-0.031829055,0.250116765,0.37484479,-0.027708154,0.244975418,0.418488026,-0.023303391,0.252975136,0.456233472,-0.033336204,0.281200975,0.348726213,-0.029576091,0.293481082,0.380601197,-0.020010579,0.290338814,0.418939322,-0.015863119,0.305378586,0.462682545,-0.0388042,0.323683619,0.374590009,-0.032689564,0.33111617,0.405948013,-0.018663371,0.32578069,0.443230391,-0.012521088,0.353068054,0.47976476,-0.043799166,0.361453772,0.4062365,-0.035379201,0.362850636,0.439635366,-0.019808663,0.359223306,0.474146187,-0.009821034 +Left,0.250463009,0.693416715,-2.53E-07,0.19271791,0.590327501,0.003008407,0.178322479,0.478559583,-0.004648372,0.196000442,0.380565584,-0.011519624,0.224603072,0.335514009,-0.014961204,0.173187554,0.446053088,-0.027588569,0.214033782,0.3262586,-0.035082888,0.226061001,0.370184511,-0.032015935,0.218714133,0.412714303,-0.02822827,0.226766303,0.452055216,-0.034572739,0.257304728,0.346877635,-0.031305648,0.265873045,0.383885771,-0.021396693,0.26119256,0.420716852,-0.017193932,0.280236363,0.465845793,-0.039267577,0.298921973,0.380418569,-0.033865664,0.30397588,0.415701926,-0.018787939,0.297949135,0.451149434,-0.012061331,0.328631997,0.486962616,-0.043422766,0.33712846,0.409973592,-0.035380062,0.337230682,0.446922153,-0.018680494,0.333641171,0.480835736,-0.007799463 +Left,0.220060602,0.688938498,-1.44E-07,0.170313105,0.567786455,0.005526213,0.162919343,0.456708223,-0.004512338,0.197468236,0.384392321,-0.016275076,0.240147114,0.373291314,-0.025113849,0.138843149,0.410696089,-0.023539513,0.198002309,0.297044009,-0.036282491,0.216589734,0.346367627,-0.038002703,0.211025417,0.395862311,-0.03790335,0.184708208,0.417434067,-0.035601683,0.239682153,0.319026887,-0.040597465,0.254593432,0.366159588,-0.035366978,0.249525219,0.408656657,-0.03257376,0.236018836,0.434881806,-0.045973215,0.279443741,0.352862924,-0.045750197,0.286893725,0.401861012,-0.031841107,0.277262628,0.441239685,-0.024343306,0.287156701,0.46238929,-0.056288537,0.317051709,0.393305987,-0.050425474,0.317465186,0.436796963,-0.034756802,0.307637006,0.470832527,-0.024046341 +Left,0.209060356,0.685897589,-9.64E-08,0.180993229,0.558046043,0.008346028,0.182433099,0.447957635,-0.00242052,0.219771549,0.381804436,-0.017117547,0.257493973,0.371310353,-0.029136563,0.145498365,0.383588791,-0.017105862,0.220617563,0.287855089,-0.037751343,0.253432423,0.335133195,-0.047517847,0.256338388,0.378102183,-0.053832605,0.173201919,0.389929116,-0.034621406,0.25696528,0.309576213,-0.049785826,0.278632134,0.361946166,-0.051282134,0.271795452,0.400519997,-0.052436005,0.212478772,0.411906838,-0.051447153,0.29390341,0.35855791,-0.059388809,0.300422758,0.414284617,-0.051887397,0.282395899,0.444598079,-0.048518695,0.257542074,0.443565637,-0.068625368,0.322840184,0.429273069,-0.069053248,0.321040958,0.478345364,-0.061432946,0.301723361,0.4994542,-0.057019949 +Left,0.242780149,0.626405716,-1.90E-07,0.292220592,0.530041337,-0.003011316,0.318651825,0.439037889,-0.015947176,0.343047589,0.385557115,-0.031910997,0.354729205,0.370010018,-0.042960607,0.207248032,0.320612043,-0.007088033,0.29380399,0.276917607,-0.033455435,0.304887235,0.342914879,-0.048388522,0.288121909,0.375909477,-0.058188602,0.204729453,0.327068537,-0.020648064,0.312189549,0.300550908,-0.044729814,0.31813255,0.372886151,-0.04965014,0.298650175,0.396835148,-0.05132366,0.219068989,0.350999594,-0.036554419,0.328573138,0.360405982,-0.056542292,0.327977031,0.432590991,-0.053408999,0.304354787,0.449108839,-0.050087675,0.246546701,0.383462369,-0.053868424,0.33438772,0.417098016,-0.062190548,0.331588745,0.477824032,-0.059619911,0.30927667,0.490373194,-0.058030277 +Left,0.280611247,0.606472969,-3.69E-07,0.332347393,0.519960582,-0.004943541,0.355711222,0.452753156,-0.018161913,0.372056752,0.395191491,-0.035261061,0.35681504,0.379951179,-0.046107471,0.253317297,0.308030576,0.008829338,0.329582453,0.289802372,-0.023900377,0.337761134,0.374987096,-0.044363368,0.314954132,0.40223816,-0.056110598,0.239224121,0.31008938,-0.004865345,0.331676006,0.305567741,-0.03393371,0.337524116,0.399199218,-0.039346892,0.31328845,0.409944832,-0.038827404,0.235846937,0.330104679,-0.023298046,0.328562826,0.342999429,-0.047638394,0.330883175,0.427217811,-0.039653685,0.303703636,0.438455135,-0.030509427,0.242663711,0.36301744,-0.043934502,0.316437632,0.383525252,-0.054844156,0.316252887,0.441290855,-0.048862815,0.291243255,0.453447431,-0.042387798 +Left,0.29697758,0.626260102,-3.59E-07,0.346964657,0.538847148,-0.00703557,0.375448465,0.468232214,-0.02136107,0.38942039,0.410704881,-0.039353482,0.367248237,0.403304666,-0.051486671,0.280243218,0.302223653,0.007732248,0.352066457,0.297915429,-0.025633564,0.356984794,0.387266189,-0.047445949,0.333925247,0.412360996,-0.060665511,0.257215291,0.304828256,-0.005859672,0.343094319,0.312826812,-0.036224633,0.346574664,0.412288278,-0.043109123,0.323454022,0.424025476,-0.043417484,0.242754161,0.329373211,-0.024315516,0.328995764,0.353026062,-0.051058419,0.330707788,0.441735864,-0.04402481,0.305697709,0.452184141,-0.034673829,0.237961486,0.370283484,-0.045087133,0.306970686,0.39570418,-0.057619695,0.308066577,0.453872859,-0.051289823,0.284400284,0.464432061,-0.044012211 +Left,0.307114869,0.634647369,-3.31E-07,0.355733275,0.57123971,-0.010779294,0.395272523,0.493020207,-0.023290172,0.399255067,0.431441933,-0.037538547,0.362769961,0.430295229,-0.046817552,0.329242617,0.332730502,0.001276393,0.377351165,0.324467003,-0.027046511,0.376712531,0.415453583,-0.043246288,0.357761711,0.434769213,-0.052745502,0.293032527,0.330583662,-0.008139669,0.347492754,0.339483738,-0.035574485,0.349025756,0.446241468,-0.041647267,0.32952112,0.450288266,-0.041137513,0.263237596,0.352644354,-0.021322636,0.318736672,0.371668875,-0.048413277,0.321635216,0.465388715,-0.040829986,0.298997045,0.467212021,-0.030759029,0.238850892,0.388094723,-0.035819888,0.287506729,0.401979148,-0.048957042,0.291747868,0.466555834,-0.039395966,0.271495968,0.47343713,-0.029225709 +Left,0.297744066,0.640692949,-3.61E-07,0.351795316,0.594432473,-0.017658047,0.402917415,0.52105248,-0.031525627,0.404095948,0.456659645,-0.045061979,0.363741487,0.445799977,-0.053017013,0.36097452,0.337320656,-0.008713932,0.396794379,0.345402539,-0.037267551,0.387323618,0.439447254,-0.053042091,0.36980167,0.453164101,-0.062648617,0.318555027,0.322711736,-0.014314102,0.359038413,0.358690202,-0.04221943,0.352677882,0.464510202,-0.04964672,0.334986031,0.45825246,-0.050831672,0.279967934,0.338888139,-0.023445008,0.32057327,0.382038832,-0.05126052,0.319917053,0.478178471,-0.043968193,0.302067369,0.473299295,-0.034639005,0.244630381,0.369349062,-0.034294292,0.281496704,0.408879817,-0.049348708,0.285612464,0.474409848,-0.040866859,0.270703107,0.470532238,-0.031146048 +Left,0.283408761,0.637962699,-3.73E-07,0.339504868,0.614003658,-0.029801894,0.400535315,0.549805045,-0.047045082,0.394746929,0.482989132,-0.060877547,0.348813355,0.464953452,-0.068410434,0.378577769,0.34360683,-0.018546121,0.403822094,0.370313376,-0.047904573,0.384632766,0.463767856,-0.064392842,0.36923027,0.467345268,-0.075070187,0.333779484,0.313558698,-0.017918183,0.358305037,0.372247964,-0.045965832,0.342909217,0.476143003,-0.052859843,0.331444234,0.46203056,-0.053888619,0.290271223,0.320975274,-0.021894028,0.31157878,0.387288213,-0.049122132,0.305462986,0.479971766,-0.042187277,0.296794951,0.46787864,-0.033828117,0.249057755,0.342114151,-0.028818697,0.268128127,0.40372771,-0.04279368,0.26855737,0.467547238,-0.035541169,0.261783481,0.456248671,-0.027382577 +Left,0.26725015,0.63358891,-3.58E-07,0.322307974,0.617145956,-0.033222467,0.384905696,0.555332482,-0.048587527,0.37466532,0.486756176,-0.05961642,0.32652688,0.463283569,-0.063830748,0.376960158,0.364122659,-0.01729035,0.392104626,0.378666937,-0.047994122,0.368054926,0.471786588,-0.063959323,0.355026603,0.475608021,-0.073052645,0.333528221,0.32712236,-0.014483511,0.34295243,0.368747354,-0.04474869,0.325253576,0.473822027,-0.050005972,0.319838792,0.466577083,-0.047834348,0.289232045,0.324059308,-0.017425342,0.291611016,0.379186869,-0.046699062,0.286860198,0.477714717,-0.038037844,0.287679732,0.473558694,-0.026606806,0.24547413,0.335080981,-0.02361878,0.248544425,0.393577278,-0.037087578,0.249959394,0.46390456,-0.027921794,0.25275138,0.46036607,-0.017591607 +Left,0.250206709,0.633134663,-2.80E-07,0.307604522,0.624720812,-0.038261674,0.369873852,0.571161151,-0.056312025,0.351568013,0.49711892,-0.068867251,0.3016738,0.465293586,-0.07419841,0.372416437,0.391415745,-0.023606688,0.375879467,0.397633493,-0.056299828,0.34951973,0.489846706,-0.072195947,0.33948949,0.496904284,-0.08085832,0.327958375,0.347451448,-0.018850269,0.323888034,0.376332998,-0.051601835,0.305914968,0.482261002,-0.056236725,0.305528462,0.477051735,-0.053292371,0.280994833,0.337401778,-0.020410512,0.271025151,0.38101244,-0.053305421,0.266584963,0.480931163,-0.043909159,0.272627532,0.477596343,-0.031397585,0.233559638,0.341834128,-0.025312103,0.229021803,0.387973487,-0.042108882,0.229150385,0.457602412,-0.032888524,0.234749138,0.455129355,-0.022118665 +Left,0.244911656,0.643834591,-2.12E-07,0.301628351,0.635141492,-0.038809907,0.361666441,0.577554524,-0.057303004,0.338817745,0.50033164,-0.070019104,0.288110763,0.46787563,-0.075817116,0.361885607,0.403883517,-0.025872463,0.365054786,0.397314727,-0.057568915,0.341099679,0.490089953,-0.07210508,0.332856059,0.500609756,-0.079813488,0.316451639,0.361394793,-0.020321406,0.313773721,0.374213696,-0.052029129,0.298734277,0.484657735,-0.055102531,0.299458265,0.481937885,-0.051131006,0.269646943,0.353059679,-0.020883543,0.261806697,0.380635828,-0.053093497,0.258601576,0.482728928,-0.042013865,0.264748603,0.481368601,-0.028420705,0.222753137,0.359393001,-0.02465892,0.219306082,0.390624672,-0.040991675,0.220764101,0.459532261,-0.030163517,0.226869702,0.458310485,-0.018360568 +Left,0.242986262,0.672211587,-2.41E-07,0.298805416,0.656049788,-0.038698461,0.356509447,0.590550244,-0.056990929,0.331681758,0.514634132,-0.069551401,0.278002828,0.487114638,-0.074949943,0.354099005,0.421556801,-0.024144486,0.359822631,0.413284868,-0.055014599,0.335967273,0.507799327,-0.068877257,0.326577723,0.516542614,-0.076109208,0.308187813,0.383499503,-0.018238109,0.307516992,0.391219497,-0.049306151,0.293090254,0.504386365,-0.051647838,0.292463481,0.500660241,-0.047052942,0.261738151,0.377535433,-0.018529732,0.254714668,0.397453904,-0.050147407,0.2525599,0.50284332,-0.038416412,0.256858379,0.502212942,-0.024268953,0.215007693,0.385320991,-0.022035152,0.212857842,0.40972349,-0.037395839,0.214668959,0.478513718,-0.026130561,0.218465656,0.476240903,-0.014180143 +Left,0.24228254,0.671572268,-2.39E-07,0.297168285,0.653659642,-0.037659321,0.354752839,0.581371605,-0.055032447,0.330165654,0.503896117,-0.066547252,0.274938524,0.484003335,-0.071095891,0.343341798,0.419260621,-0.023147346,0.350700557,0.408566356,-0.05266577,0.328949273,0.503586531,-0.065430321,0.318124354,0.512129843,-0.072461762,0.296910167,0.384470135,-0.017814208,0.30173555,0.386449158,-0.0479417,0.287686735,0.499244273,-0.05003614,0.283698589,0.493665844,-0.045334321,0.251302272,0.382114291,-0.018387584,0.250776112,0.398403525,-0.049299888,0.249070644,0.499525487,-0.037958186,0.249857366,0.49284637,-0.024528479,0.205749929,0.393234134,-0.022038542,0.208569065,0.418351591,-0.037959635,0.212092087,0.484411687,-0.027345862,0.214619383,0.477025062,-0.016091527 +Left,0.248830527,0.662255764,-3.44E-07,0.302388698,0.632826984,-0.028426273,0.360742301,0.555440605,-0.041885082,0.348270357,0.481587142,-0.051831484,0.299329191,0.464822859,-0.055522129,0.339672416,0.379306912,-0.012267227,0.357363403,0.383317709,-0.038863007,0.338493824,0.479505867,-0.052295748,0.324806601,0.487511784,-0.060243905,0.295155466,0.352810383,-0.011315023,0.311688721,0.375315458,-0.038206391,0.29888007,0.486107707,-0.042282641,0.288825691,0.482487649,-0.039869595,0.25146246,0.357221872,-0.015358477,0.263300717,0.392220318,-0.04326782,0.26150322,0.491753042,-0.034123719,0.25477621,0.487849891,-0.022836344,0.2078567,0.37525627,-0.021807244,0.220712319,0.407921702,-0.035474248,0.223903179,0.476653725,-0.025021954,0.219263047,0.472591519,-0.014075165 +Left,0.288427234,0.613218784,-3.00E-07,0.341988742,0.584986806,-0.022033483,0.396565408,0.50596869,-0.03186075,0.383117795,0.434291154,-0.039414331,0.337104946,0.425189942,-0.041398253,0.365138173,0.362869948,-0.009410892,0.388449103,0.343933403,-0.033579372,0.372509897,0.433357179,-0.044501632,0.360260785,0.442827344,-0.051036473,0.325621486,0.340696305,-0.01053534,0.34805268,0.337829649,-0.034658451,0.334770471,0.438159674,-0.036802482,0.323861212,0.432282329,-0.034173992,0.28712377,0.341823429,-0.016201647,0.306041896,0.34927693,-0.041125845,0.301825136,0.439895332,-0.031433254,0.292982131,0.433747858,-0.021198083,0.247542277,0.352544695,-0.023750948,0.26872915,0.36667797,-0.035760827,0.269848913,0.43334958,-0.024984822,0.262171298,0.433386266,-0.014935084 +Left,0.310554445,0.606747866,-3.21E-07,0.35983181,0.565279961,-0.017696405,0.408346295,0.492820561,-0.030248417,0.405040592,0.430665582,-0.041946936,0.363616616,0.421068728,-0.048063386,0.366476715,0.325272828,-0.008302534,0.398495853,0.323471516,-0.034049351,0.390216291,0.416425556,-0.047212698,0.374541968,0.429317683,-0.055308677,0.326731294,0.309410006,-0.012644519,0.363371849,0.329727471,-0.0393073,0.357525378,0.434250623,-0.045434307,0.341178238,0.429332674,-0.04544571,0.290514201,0.323155522,-0.020400967,0.325832933,0.352753937,-0.046673749,0.325816214,0.444987804,-0.039259505,0.309160262,0.437693626,-0.030086773,0.256654948,0.350471497,-0.029691251,0.289355218,0.381733119,-0.043378878,0.293015569,0.444045663,-0.034910221,0.278204292,0.439471364,-0.025750458 +Left,0.318887889,0.60870111,-3.46E-07,0.371112436,0.567875683,-0.014265162,0.420019329,0.490058243,-0.024377065,0.417449534,0.429793715,-0.034427792,0.377543509,0.42292285,-0.039231963,0.380130321,0.320197284,-0.002184419,0.412119925,0.327952147,-0.026204262,0.401842803,0.417572737,-0.039246231,0.384897918,0.427200437,-0.047813933,0.339777529,0.300487161,-0.008390279,0.376864105,0.332413554,-0.032537118,0.369074017,0.435145438,-0.0380992,0.35244149,0.42660287,-0.038181674,0.302590072,0.312749445,-0.018080078,0.338966399,0.352968097,-0.042882774,0.337418377,0.444317877,-0.03552473,0.320679665,0.433584362,-0.026824219,0.268542826,0.340091079,-0.02918119,0.301017404,0.377150089,-0.042360544,0.30394882,0.440964878,-0.03370209,0.289515495,0.434981585,-0.024597626 +Left,0.325332195,0.581761956,-3.32E-07,0.373419106,0.542456985,-0.014472519,0.421384722,0.468049109,-0.02552833,0.426709861,0.405065507,-0.036756154,0.390915215,0.393958628,-0.042738076,0.383590043,0.296548724,-0.004669515,0.414230078,0.294899225,-0.030000942,0.407046735,0.387114406,-0.043044493,0.391502023,0.40140748,-0.05069435,0.344044715,0.280256122,-0.010815868,0.380571991,0.306486398,-0.035692602,0.375275224,0.410437256,-0.040791646,0.358763695,0.404329598,-0.040172212,0.307282805,0.293609917,-0.020476207,0.34413591,0.330852956,-0.046102397,0.344218612,0.422141552,-0.038936958,0.327289164,0.413501352,-0.029845558,0.273911864,0.321577668,-0.031523682,0.307905078,0.356810033,-0.045086667,0.311689764,0.420692712,-0.036594514,0.296213835,0.417403787,-0.027254635 +Left,0.313480318,0.581754684,-3.35E-07,0.359900177,0.540607333,-0.015430202,0.405959308,0.464178085,-0.026798083,0.408493251,0.400059819,-0.037841935,0.370312899,0.387882739,-0.043841016,0.361702979,0.300525457,-0.007003796,0.395543873,0.295010656,-0.032374255,0.390617281,0.387084693,-0.045473643,0.375064015,0.400966525,-0.053474151,0.324120849,0.290813923,-0.012164924,0.362110883,0.307199478,-0.037901096,0.359621823,0.411192894,-0.043527011,0.342720121,0.406770438,-0.043804798,0.289385974,0.307589561,-0.020641271,0.326749712,0.330664992,-0.047487859,0.32881394,0.424585432,-0.039622042,0.31089738,0.422031611,-0.030266032,0.256973863,0.337274104,-0.030371925,0.292226315,0.359717637,-0.045161076,0.297195971,0.425157428,-0.036452875,0.281855732,0.426883608,-0.027119149 +Left,0.284312367,0.648747742,-3.72E-07,0.336576313,0.61037451,-0.014789196,0.384842396,0.525705159,-0.025025904,0.39068675,0.458612293,-0.034900382,0.354380757,0.464720875,-0.041464202,0.333072871,0.344339788,-0.00929018,0.371035159,0.361676663,-0.03582938,0.368093371,0.452477098,-0.052169178,0.355384558,0.480972707,-0.060905565,0.294553906,0.339470804,-0.014834571,0.335120201,0.389568985,-0.036555734,0.333889186,0.484595001,-0.04090165,0.320343703,0.500210404,-0.040684845,0.258494765,0.364106387,-0.023897782,0.300780714,0.424704432,-0.045195978,0.30324474,0.510793626,-0.038297061,0.290831476,0.52513361,-0.030094976,0.227408946,0.40345633,-0.034808472,0.266349107,0.444216013,-0.042935871,0.271377534,0.514684558,-0.032332275,0.261105299,0.536575735,-0.022283923 +Left,0.267995805,0.736467242,-3.39E-07,0.317775756,0.683640718,-0.01579088,0.361912876,0.593271434,-0.028576992,0.363458544,0.528153121,-0.041298158,0.323284119,0.539795935,-0.049527302,0.295091391,0.430051208,-0.008562928,0.348908812,0.426585644,-0.037088264,0.344538599,0.519842625,-0.054297678,0.326723576,0.541186333,-0.065288134,0.256799072,0.432261229,-0.015837021,0.316019803,0.445089996,-0.043804463,0.313607335,0.549441218,-0.050790835,0.295447826,0.559594989,-0.052085664,0.225587323,0.461323917,-0.026650324,0.284756184,0.483188689,-0.052433114,0.284265935,0.574658692,-0.045402642,0.262441427,0.581261814,-0.037322659,0.200177372,0.504140198,-0.039373845,0.251380801,0.522376478,-0.05160382,0.254096717,0.586552441,-0.043206085,0.23456943,0.594325066,-0.035319969 +Left,0.250599712,0.749908447,-3.40E-07,0.301850587,0.666731834,-0.015730184,0.33450231,0.572054863,-0.030502981,0.337563455,0.506742835,-0.046613444,0.305207044,0.525419116,-0.057289153,0.251315713,0.418367147,-0.005779984,0.309715778,0.405003369,-0.038043704,0.316553265,0.497402757,-0.055841144,0.298258781,0.523169637,-0.066427492,0.214645356,0.427725673,-0.01474181,0.283953309,0.437490284,-0.045325451,0.294223726,0.545714915,-0.050881345,0.273605734,0.552514791,-0.049843054,0.18836078,0.464849055,-0.028145943,0.257455826,0.484788001,-0.057259656,0.268342644,0.579461336,-0.049063779,0.245137677,0.587146819,-0.038657896,0.170150131,0.515306294,-0.043915533,0.227911785,0.543420315,-0.059320491,0.23742494,0.602716029,-0.052314866,0.217380032,0.607973635,-0.043956324 +Left,0.243182257,0.741852403,-3.60E-07,0.294638634,0.666340768,-0.01527217,0.33169198,0.572692752,-0.030351333,0.335272521,0.504389584,-0.046982776,0.298909605,0.516045451,-0.058359515,0.250547588,0.406465232,-0.003869202,0.305734873,0.396299034,-0.035220079,0.311098337,0.492763817,-0.053349134,0.292814046,0.518977404,-0.064448461,0.212471098,0.411850572,-0.013171884,0.278318644,0.423634022,-0.043348063,0.287527561,0.536429763,-0.049947087,0.267497182,0.546441495,-0.049832601,0.184017181,0.447553635,-0.026789762,0.251908183,0.467195988,-0.056220561,0.261518329,0.56748873,-0.048419464,0.238334775,0.57767123,-0.0382565,0.163809329,0.497873247,-0.042536389,0.22191295,0.520785213,-0.05783806,0.230294004,0.585446954,-0.050320812,0.209784791,0.593027592,-0.041766662 +Left,0.23634921,0.697362423,-3.45E-07,0.289496481,0.630806386,-0.014113783,0.329444945,0.548242331,-0.02878351,0.33837986,0.480406404,-0.045161255,0.305715948,0.467293471,-0.056664363,0.260247797,0.363260061,-0.00295895,0.308360994,0.359390378,-0.034926977,0.312995225,0.456686437,-0.053822484,0.299744397,0.491342604,-0.0640193,0.219726935,0.364760429,-0.011783539,0.27942884,0.388089359,-0.041426659,0.285929799,0.499331415,-0.048101034,0.269770324,0.51681298,-0.047442384,0.186309785,0.396523386,-0.025057245,0.249950692,0.429820299,-0.054497991,0.256851971,0.529134989,-0.046793651,0.238524735,0.542650521,-0.035849392,0.160204321,0.44614169,-0.040226661,0.216253042,0.474171162,-0.055380624,0.224728182,0.542833567,-0.046572708,0.208234876,0.554999053,-0.036127403 +Left,0.236327022,0.660305619,-3.69E-07,0.289500713,0.580192208,-0.01245937,0.328743935,0.494551003,-0.02756767,0.337129354,0.423948854,-0.045231562,0.301234692,0.423932999,-0.057645652,0.246779755,0.322995186,-0.001575627,0.305703819,0.307841122,-0.035288267,0.311489433,0.40574196,-0.054345202,0.294117033,0.434496582,-0.06490925,0.209935859,0.325959682,-0.012183048,0.278986812,0.334117472,-0.044527039,0.285956025,0.449642628,-0.051133379,0.266012639,0.462424815,-0.050237369,0.181623235,0.355674922,-0.027183162,0.251820296,0.3749502,-0.058505487,0.258384496,0.478611082,-0.05011262,0.235066563,0.490379214,-0.038334128,0.161047846,0.400047153,-0.043938059,0.219324067,0.417032748,-0.059193809,0.226181999,0.483236432,-0.050039619,0.205224723,0.494190961,-0.039634746 +Left,0.240360528,0.677495837,-4.58E-07,0.295332581,0.612436533,-0.014256045,0.338511854,0.533100605,-0.029561507,0.35144943,0.463036627,-0.047004752,0.319979131,0.447549284,-0.058860186,0.272213012,0.343793869,-0.002585413,0.323243231,0.344361931,-0.036899202,0.325790226,0.446605444,-0.055386622,0.308537692,0.475967944,-0.06492167,0.232946515,0.343568921,-0.012242814,0.293814808,0.370542169,-0.043218836,0.297274292,0.489997149,-0.048336335,0.276569933,0.496391207,-0.046260491,0.200436652,0.371559352,-0.026703482,0.261342049,0.408786863,-0.057863384,0.265714318,0.514677346,-0.04820871,0.24252753,0.521233618,-0.035706434,0.173527062,0.416156441,-0.043162618,0.225673229,0.447636247,-0.059283651,0.230963603,0.518833935,-0.0494438,0.210773468,0.526289284,-0.038050409 +Left,0.24270077,0.723161221,-3.52E-07,0.29717055,0.668031216,-0.016100083,0.341870099,0.595787168,-0.032567311,0.356994808,0.529815316,-0.049997661,0.325185269,0.509334743,-0.062492058,0.291111797,0.388116062,-0.009652583,0.334882259,0.394936651,-0.042131145,0.330915302,0.492027074,-0.060332716,0.313027591,0.52191931,-0.06985569,0.249491602,0.38289538,-0.017869597,0.302793324,0.420699179,-0.048189167,0.301672995,0.535895169,-0.055304728,0.282620966,0.546864152,-0.054965016,0.211706638,0.409669608,-0.02992779,0.265504509,0.460642457,-0.060645282,0.267464012,0.563935637,-0.053273942,0.248024732,0.571578264,-0.042413257,0.179839611,0.456546485,-0.043648541,0.226239711,0.496827453,-0.060330287,0.231457785,0.567749858,-0.051428273,0.215003327,0.574704528,-0.040583275 +Left,0.263154387,0.740109921,-3.76E-07,0.318675816,0.689560771,-0.020520981,0.371399492,0.606029928,-0.036846299,0.372736812,0.539956093,-0.052677307,0.330452204,0.541482508,-0.063164666,0.315170348,0.415305018,-0.012631119,0.365552187,0.424562484,-0.042720601,0.355300426,0.521866262,-0.059900265,0.333548963,0.535743535,-0.070986621,0.272391737,0.405440152,-0.018362727,0.328168899,0.439435631,-0.046011966,0.32227999,0.550941467,-0.052090358,0.303021878,0.547037959,-0.052980918,0.236247078,0.429045498,-0.027958851,0.288226962,0.471278518,-0.054782834,0.287562847,0.571348965,-0.046068776,0.267063469,0.56954664,-0.036922552,0.205382362,0.468114376,-0.039892849,0.249367103,0.506249607,-0.053325795,0.250999749,0.57506901,-0.044033725,0.232429206,0.576050162,-0.035039395 +Left,0.28780663,0.704278469,-4.07E-07,0.34531641,0.662728071,-0.018350467,0.400164455,0.587918818,-0.03295105,0.40138489,0.52412796,-0.047157943,0.358826101,0.518718183,-0.056436449,0.353658885,0.389088273,-0.011261001,0.398617983,0.41098401,-0.039964009,0.386056662,0.50765276,-0.057649497,0.366336703,0.520382643,-0.069569573,0.310626954,0.373315692,-0.01738371,0.358847618,0.423860997,-0.042601772,0.350346297,0.530637562,-0.04923813,0.332748234,0.527267396,-0.051835034,0.272490501,0.393688321,-0.027045708,0.318764061,0.443959951,-0.05204333,0.31577298,0.543108165,-0.043513492,0.296898693,0.542415798,-0.035484776,0.239007443,0.431980133,-0.038860206,0.278789163,0.476300597,-0.051961612,0.279240906,0.545874178,-0.042820733,0.262825549,0.546390593,-0.034256313 +Left,0.300599545,0.646648049,-4.02E-07,0.358738393,0.62686491,-0.018996473,0.419474363,0.57386905,-0.031960454,0.429626107,0.51012224,-0.044097234,0.393208146,0.480594456,-0.051965639,0.409905136,0.357420921,-0.007728897,0.429881096,0.389566422,-0.034543991,0.410818219,0.477647364,-0.051666092,0.396026909,0.496115893,-0.061329331,0.367028981,0.327012986,-0.011638168,0.38794747,0.391988754,-0.034150258,0.37527746,0.492658406,-0.04081887,0.364482343,0.501716495,-0.041695356,0.321890622,0.329725623,-0.019253684,0.343218803,0.405910283,-0.043249413,0.337779224,0.502201498,-0.036795266,0.328229219,0.513725281,-0.027876874,0.277371615,0.350602597,-0.028969459,0.299206316,0.417922765,-0.040993139,0.300034374,0.495635986,-0.031705156,0.29364711,0.507990777,-0.021041147 +Left,0.30485788,0.590022266,-3.54E-07,0.359425426,0.581511736,-0.026647655,0.422814429,0.527697921,-0.039719488,0.415907472,0.455335259,-0.049492888,0.373237282,0.425055146,-0.053040799,0.419405907,0.337090403,-0.011963967,0.437694073,0.351472199,-0.038563333,0.412149251,0.440759748,-0.052173764,0.399213791,0.445813239,-0.060324367,0.378386796,0.295712471,-0.01155435,0.394414574,0.335637331,-0.037917104,0.372442663,0.435423195,-0.042910561,0.36309281,0.42768839,-0.041658092,0.335776776,0.287812889,-0.015912959,0.346248925,0.34532094,-0.043081682,0.33480975,0.436572313,-0.036618911,0.328574419,0.426958799,-0.027634077,0.293364942,0.294189215,-0.022576975,0.304553926,0.350380272,-0.035904922,0.299308568,0.418021739,-0.027948225,0.294427991,0.410563648,-0.019138262 +Left,0.280122459,0.597788632,-2.95E-07,0.335001558,0.603179097,-0.039523687,0.395343065,0.571383357,-0.060249582,0.383414716,0.498266697,-0.074785486,0.343698204,0.451515883,-0.083046496,0.412700862,0.386047184,-0.032774646,0.415140212,0.387419552,-0.066792384,0.387931168,0.475607365,-0.083143733,0.378248274,0.488858134,-0.091355532,0.370999426,0.338817775,-0.027316067,0.368065536,0.359529495,-0.060930043,0.344725937,0.463465899,-0.06595543,0.340360075,0.46641919,-0.063084729,0.324703187,0.322596908,-0.02734296,0.312496752,0.361935049,-0.062315274,0.301739603,0.461429298,-0.053732973,0.304297507,0.467062771,-0.041041549,0.276180059,0.320414901,-0.030149639,0.26991871,0.360347241,-0.049662966,0.265729189,0.435586393,-0.040027611,0.268811822,0.443713993,-0.028010407 +Left,0.264843255,0.624809086,-2.09E-07,0.320961922,0.628516138,-0.040368535,0.376874238,0.594186783,-0.061182261,0.361622959,0.519681513,-0.075667724,0.322513551,0.474739701,-0.084435381,0.39707613,0.413737267,-0.033584386,0.394415438,0.421924978,-0.069598004,0.369459212,0.508149862,-0.088710248,0.362945199,0.522738278,-0.098724112,0.354480296,0.367459416,-0.028501177,0.34545809,0.395082772,-0.063123234,0.325811505,0.496465713,-0.069700569,0.324702799,0.501754045,-0.068329088,0.307788014,0.354627311,-0.029273214,0.292876691,0.394124687,-0.065670267,0.28428793,0.493030429,-0.058587734,0.289436102,0.501826763,-0.047111813,0.259762466,0.35918507,-0.032931633,0.251276314,0.397817671,-0.055451144,0.248295292,0.475561351,-0.047564432,0.254012704,0.488819003,-0.036573712 +Left,0.202535182,0.640326321,-2.83E-07,0.258411407,0.6541363,-0.046287566,0.320051342,0.629798532,-0.070543326,0.305278897,0.555981874,-0.087162331,0.261092573,0.505738676,-0.097385138,0.339710921,0.463502824,-0.044680279,0.344197571,0.448829085,-0.08397603,0.312607795,0.534781754,-0.103375658,0.305089116,0.546329558,-0.113929987,0.299748003,0.410396963,-0.036841098,0.290652961,0.416354626,-0.077080995,0.26244846,0.518618584,-0.08383929,0.263607562,0.52486676,-0.081526138,0.255308539,0.386216581,-0.03511142,0.237332717,0.413960397,-0.073100433,0.221968442,0.506700277,-0.063765213,0.231801853,0.511368275,-0.050899118,0.208765864,0.372849345,-0.036948137,0.194765568,0.410911858,-0.058121853,0.188520223,0.481092274,-0.049333129,0.19790335,0.490489632,-0.038307875 +Left,0.19238241,0.61239779,-1.02E-07,0.247360617,0.613046885,-0.042376507,0.305278689,0.570220709,-0.063741401,0.283442795,0.487108499,-0.078084424,0.2331651,0.44503817,-0.086354069,0.319724768,0.415153772,-0.034900341,0.316991299,0.396347672,-0.067659155,0.292897046,0.48460713,-0.083858855,0.288593233,0.497944742,-0.092909396,0.276027024,0.373036742,-0.02831839,0.269455254,0.36207062,-0.062068779,0.252272159,0.47196728,-0.067276962,0.254144758,0.472136587,-0.065307952,0.228983849,0.358894438,-0.027329246,0.220711008,0.35882026,-0.062817551,0.21345225,0.46058175,-0.053014271,0.219547808,0.461767077,-0.040059518,0.179818228,0.355477601,-0.029117128,0.180266529,0.361010373,-0.048736863,0.178369284,0.432982028,-0.037109654,0.182968304,0.439531803,-0.024717299 +Left,0.185931668,0.614854097,-1.75E-07,0.243693128,0.611522555,-0.040312987,0.300653785,0.564995766,-0.060332529,0.276297987,0.488377959,-0.074174412,0.227204412,0.452243835,-0.081963547,0.308574498,0.403894156,-0.031105326,0.302949637,0.39539814,-0.065526262,0.280613184,0.484316885,-0.083059549,0.277829319,0.500210762,-0.092350453,0.265425295,0.361448348,-0.025182569,0.254134625,0.37035194,-0.059586372,0.238897711,0.475565732,-0.064852744,0.241419584,0.480716586,-0.062341362,0.219013616,0.349782079,-0.025205309,0.204760909,0.370924026,-0.06023588,0.199625552,0.471066803,-0.050274249,0.207125366,0.478087693,-0.03704837,0.170733184,0.351033628,-0.028250713,0.166016698,0.377263576,-0.047265697,0.164970338,0.450158626,-0.036460098,0.171063393,0.458797246,-0.024238029 +Left,0.184708431,0.651125848,-2.05E-07,0.239353538,0.638024926,-0.037542496,0.294298351,0.574459672,-0.054692611,0.269581139,0.497601062,-0.065825991,0.217173889,0.469635338,-0.070165813,0.288905591,0.4254089,-0.024078511,0.291338772,0.413481146,-0.054266173,0.270309865,0.502056718,-0.067162238,0.264121622,0.508611679,-0.073862426,0.245499387,0.389371067,-0.018204123,0.246972501,0.3878887,-0.049529862,0.232510909,0.493956417,-0.052223202,0.231671914,0.48843348,-0.047615424,0.201982841,0.382064342,-0.01830495,0.197155491,0.395657092,-0.051541638,0.194941878,0.492442816,-0.04189394,0.199859902,0.485132575,-0.028800631,0.158453003,0.386036456,-0.021112274,0.159198105,0.40501827,-0.038562324,0.160815984,0.469301701,-0.028926136,0.16450417,0.463617563,-0.017986538 +Left,0.193285331,0.641123176,-2.75E-07,0.244883493,0.616605282,-0.028482562,0.301349849,0.541876674,-0.040456284,0.285174012,0.468604505,-0.048552062,0.237347901,0.453259945,-0.050037645,0.285733581,0.398756206,-0.010526717,0.298447788,0.38872993,-0.037147935,0.278775662,0.474950105,-0.049203683,0.267081797,0.479763061,-0.055851977,0.244169384,0.368085533,-0.008844973,0.256139398,0.373137563,-0.03577137,0.24105452,0.473957598,-0.03877373,0.233824417,0.46198684,-0.035326779,0.203420371,0.364678383,-0.012659875,0.209825724,0.380070329,-0.041955668,0.205570459,0.473670304,-0.032945815,0.201790527,0.460710496,-0.021395639,0.161464646,0.373055845,-0.018713508,0.169477671,0.395818949,-0.034651324,0.171901032,0.459135592,-0.025543474,0.170492277,0.448253274,-0.015397405 +Left,0.215758905,0.638714552,-2.90E-07,0.265353888,0.600304842,-0.021019258,0.317713976,0.512150884,-0.031640876,0.303419441,0.439602077,-0.039920449,0.255923808,0.438246578,-0.042427283,0.271495581,0.380479276,-0.009700978,0.301873744,0.362674028,-0.034423321,0.288461149,0.449878812,-0.044523105,0.271850467,0.453301251,-0.050451592,0.230892807,0.367091238,-0.0117417,0.264108956,0.356687218,-0.038122848,0.254884779,0.46112445,-0.040548678,0.239110813,0.45126608,-0.037306733,0.194549963,0.37499851,-0.017886491,0.223215774,0.372946441,-0.046234205,0.222590029,0.468748569,-0.036246389,0.206967756,0.460794508,-0.024636319,0.158700883,0.392005742,-0.025421131,0.189052001,0.389382422,-0.039867267,0.191066533,0.458403975,-0.028679147,0.175273359,0.460037202,-0.017722161 +Left,0.231486067,0.630197167,-3.34E-07,0.283605874,0.57961297,-0.011260669,0.329743087,0.484617651,-0.017521711,0.323938251,0.412711829,-0.02390928,0.281181574,0.416555583,-0.025265463,0.273972005,0.355828106,-0.000504214,0.310526401,0.330924779,-0.024108037,0.304466039,0.420532584,-0.034859009,0.286437631,0.430955052,-0.041274153,0.235440046,0.349386334,-0.007265326,0.275629431,0.332453072,-0.031943969,0.272505462,0.437727869,-0.035182338,0.253066808,0.434616238,-0.033050917,0.200865924,0.361650348,-0.01747218,0.239444032,0.354626685,-0.044056341,0.242638081,0.451012194,-0.035072979,0.222190753,0.449089676,-0.0244918,0.167310163,0.384053111,-0.028412756,0.206553608,0.377056062,-0.041921239,0.212035149,0.447584212,-0.030924534,0.192786366,0.456486374,-0.020226283 +Left,0.257466108,0.618802845,-3.45E-07,0.305173963,0.566267014,-0.009479345,0.343707532,0.472670257,-0.017196609,0.342567146,0.406502157,-0.025706949,0.302197576,0.413394749,-0.029330619,0.27593264,0.339497179,-0.001842782,0.318797737,0.316157103,-0.02791192,0.31788817,0.406756192,-0.041648492,0.29811877,0.419094414,-0.050245158,0.241771102,0.339722812,-0.009888648,0.289116144,0.32875818,-0.035662785,0.290948957,0.433032513,-0.039515723,0.271520555,0.43216449,-0.038313247,0.212670699,0.358562291,-0.021352388,0.258794218,0.358114541,-0.047130734,0.26423642,0.450487524,-0.038103696,0.243266165,0.450206757,-0.028112765,0.187475145,0.386769176,-0.033799443,0.231541321,0.385605812,-0.046978515,0.237213925,0.45066458,-0.037335016,0.218329206,0.460427105,-0.028025078 +Left,0.260845304,0.642160594,-3.06E-07,0.310428202,0.562420905,-0.010218154,0.338219225,0.474063039,-0.024312722,0.35117355,0.412180156,-0.040852364,0.330896646,0.424377263,-0.052453604,0.233061016,0.328069806,-0.007038303,0.303722322,0.290712416,-0.038076025,0.316890001,0.373218566,-0.057487618,0.3010481,0.401677012,-0.070087977,0.211988926,0.342419595,-0.017948354,0.302595139,0.335631877,-0.047040429,0.312203735,0.41961059,-0.05393178,0.295888782,0.440114111,-0.056257356,0.20400399,0.380050361,-0.032812223,0.298459351,0.404997408,-0.054089967,0.304488808,0.475067556,-0.049405001,0.287054092,0.488928765,-0.045081355,0.208227605,0.427480221,-0.050724238,0.288536549,0.46085608,-0.059482593,0.290438682,0.513987303,-0.058177117,0.271169364,0.5277704,-0.057347652 +Left,0.250994742,0.639354229,-1.95E-07,0.307120621,0.542414904,-0.012710356,0.332557946,0.459831864,-0.029685115,0.350068003,0.403982788,-0.047156278,0.357037246,0.366806626,-0.059704654,0.219712287,0.318217874,-0.023929412,0.312914103,0.281635523,-0.049744006,0.317716449,0.349973381,-0.063207142,0.295852065,0.373437852,-0.072803304,0.214500219,0.344509959,-0.032457121,0.327686816,0.334721416,-0.054244138,0.32566154,0.4014498,-0.057381604,0.304566562,0.414172173,-0.060926396,0.226171777,0.393200636,-0.043265793,0.337182105,0.395302117,-0.059302937,0.331047595,0.454732299,-0.053758096,0.307685941,0.467252731,-0.052156057,0.248950735,0.449912965,-0.056495406,0.336202443,0.460512906,-0.064645007,0.3307679,0.506935537,-0.063041881,0.309008241,0.515739441,-0.063270204 +Left,0.271872371,0.625083148,-8.27E-08,0.244269222,0.515599728,-0.001702934,0.248302847,0.403423429,-0.017665436,0.285828859,0.3364079,-0.034491416,0.323759377,0.329931766,-0.048678532,0.227417111,0.341973424,-0.043094564,0.316667855,0.269744098,-0.066453382,0.329072624,0.328445524,-0.07267683,0.311980903,0.363254666,-0.076440327,0.24899818,0.376588434,-0.056269024,0.34759292,0.31481266,-0.072844476,0.354976952,0.37725395,-0.066278629,0.337964684,0.406828552,-0.063034914,0.279462963,0.425133884,-0.068800941,0.37454021,0.375635415,-0.078881338,0.371883512,0.430248231,-0.066925801,0.348257661,0.451712608,-0.061164271,0.315825284,0.47952643,-0.082015865,0.393127203,0.453151882,-0.084270187,0.387461364,0.495161474,-0.076023273,0.365893424,0.509602666,-0.071883895 +Left,0.287365377,0.666975141,-1.92E-07,0.250104845,0.551379919,0.00453346,0.247547537,0.436262369,-0.006106153,0.279288858,0.36212641,-0.018288201,0.316649169,0.342008352,-0.02713795,0.228452533,0.384254396,-0.028200831,0.294128954,0.287118942,-0.041049138,0.307518125,0.3352063,-0.040784139,0.295342118,0.376157016,-0.039658688,0.268990338,0.408742547,-0.041091438,0.334639609,0.320062965,-0.047242537,0.342725396,0.367342085,-0.040877078,0.32898587,0.400915593,-0.038251441,0.31370163,0.440032631,-0.052242432,0.370407283,0.364191234,-0.054303307,0.373179764,0.411214262,-0.040800173,0.357498586,0.442538917,-0.034194626,0.357940853,0.478073508,-0.063247107,0.402274489,0.414720476,-0.059296981,0.399477869,0.458027035,-0.045118995,0.383922875,0.487934649,-0.036219202 +Left,0.300586671,0.680020392,-2.20E-07,0.251732796,0.573578238,0.006665922,0.241438538,0.474001765,-0.001452754,0.266331553,0.392661691,-0.008968069,0.303030819,0.366243362,-0.013402859,0.231276482,0.429778993,-0.036724735,0.277330697,0.309719354,-0.039672658,0.292258739,0.348205209,-0.028376197,0.283233821,0.390924484,-0.019167149,0.282031626,0.440472186,-0.045045398,0.322903216,0.332006693,-0.040076591,0.331273764,0.367450148,-0.026020017,0.321733326,0.405772299,-0.01908613,0.333577693,0.459688127,-0.049399439,0.361605227,0.37298131,-0.04092348,0.365721047,0.406976551,-0.023685573,0.357134819,0.442420989,-0.016425233,0.379044026,0.487918735,-0.052765526,0.396156222,0.414604604,-0.042459264,0.394467115,0.450068712,-0.024817253,0.387504399,0.485000074,-0.013904012 +Left,0.316903859,0.696898758,-3.42E-07,0.26038605,0.60360235,0.007282637,0.243778944,0.49613592,0.002532026,0.251693577,0.3863796,-0.001149723,0.273381293,0.328981936,-0.001397986,0.242212415,0.459244788,-0.027326129,0.272451252,0.33645317,-0.028063891,0.281261384,0.37440908,-0.017669162,0.276667327,0.416071028,-0.009382891,0.294674963,0.46233654,-0.033684988,0.315405875,0.350791454,-0.026703751,0.319886893,0.382301539,-0.013335544,0.31722644,0.421253979,-0.006978053,0.346580327,0.471747428,-0.036434434,0.354292005,0.379423797,-0.026959842,0.356501222,0.40781039,-0.010546118,0.354461372,0.442244947,-0.003848565,0.392469704,0.487164944,-0.037869878,0.387042403,0.410486639,-0.02607384,0.385625958,0.440637141,-0.008942358,0.387213558,0.469774425,0.001293672 +Left,0.341727138,0.68046087,-3.90E-07,0.277204394,0.604466081,0.00432048,0.247287959,0.502363682,0.00086357,0.242917567,0.39741081,-0.001769812,0.260854334,0.340212882,-0.001321106,0.264585733,0.457952589,-0.021334382,0.272584349,0.342114568,-0.023903316,0.278325945,0.381061733,-0.017766394,0.277748019,0.423962981,-0.012102506,0.317231715,0.452208936,-0.025690353,0.318006039,0.347145498,-0.02070326,0.320483804,0.378226995,-0.011384982,0.320731312,0.416778952,-0.006967942,0.366673023,0.451468259,-0.027284812,0.360868543,0.363921762,-0.021830125,0.360824078,0.390778184,-0.009832687,0.359890521,0.425710917,-0.004349363,0.408697933,0.457099706,-0.027627263,0.394994527,0.377041847,-0.020579003,0.394044131,0.403085649,-0.006695621,0.397055715,0.433490992,0.002805605 +Left,0.355614811,0.700566888,-4.32E-07,0.290093482,0.610686183,0.00595834,0.269630224,0.504811108,0.003091592,0.276914626,0.403480291,0.000382347,0.298901021,0.35235095,6.06E-05,0.288656622,0.456653744,-0.018297691,0.291799128,0.340211868,-0.020758327,0.29853636,0.377791524,-0.016216284,0.301016182,0.421076447,-0.011886131,0.341475099,0.447850972,-0.023559939,0.338356256,0.349024892,-0.016788889,0.340395063,0.379405886,-0.008151571,0.340447754,0.417570591,-0.004757128,0.389505148,0.448696673,-0.026135268,0.378132969,0.374604315,-0.018052699,0.377364755,0.399631202,-0.007048106,0.376455575,0.431974113,-0.0032449,0.428682238,0.45901233,-0.027744276,0.411242157,0.394817144,-0.018442106,0.40877682,0.420841604,-0.004424031,0.41053161,0.45086199,0.004731935 +Left,0.328684926,0.755568862,-2.86E-07,0.281187028,0.647876501,0.006222167,0.274229258,0.536615193,0.002529435,0.29572466,0.439096898,-0.001079802,0.323405415,0.394767642,-0.00106445,0.265808284,0.495744586,-0.015038317,0.312648892,0.390583396,-0.019041151,0.324117213,0.429070503,-0.014644166,0.314793676,0.465681553,-0.010365362,0.31711635,0.50643909,-0.022596963,0.353609711,0.411390036,-0.018125737,0.360105723,0.445442736,-0.009732059,0.351464868,0.477931619,-0.006049982,0.368932933,0.524170876,-0.028077474,0.391918123,0.446308225,-0.022014845,0.395507455,0.478803515,-0.008750702,0.387272954,0.507319212,-0.002859207,0.415017605,0.550569832,-0.032777842,0.425959378,0.483122766,-0.023691181,0.42527765,0.518499732,-0.007732308,0.421074063,0.54614675,0.002747155 +Left,0.294116318,0.778408647,-1.77E-07,0.257754743,0.660490394,0.002271016,0.256320268,0.543022394,-0.008718074,0.288710117,0.462892354,-0.020514648,0.326276809,0.437826455,-0.028276568,0.235990971,0.492457032,-0.027001394,0.307507157,0.391262412,-0.040987119,0.31670019,0.438814074,-0.041482773,0.302373201,0.480726659,-0.040183492,0.281130016,0.519182265,-0.038154677,0.348372936,0.422149032,-0.045681886,0.353010207,0.468701541,-0.040179152,0.337888896,0.503471434,-0.037227347,0.32915321,0.549670875,-0.047992114,0.385169685,0.470570207,-0.050348699,0.385326385,0.516194046,-0.036633283,0.368614525,0.545871973,-0.029506611,0.374638021,0.586266518,-0.057801865,0.414602518,0.520756841,-0.053594258,0.410933703,0.565544426,-0.038706407,0.396882206,0.594531775,-0.029082799 +Left,0.265272081,0.794347286,-1.65E-07,0.244431138,0.664064229,0.003017928,0.249771863,0.542198539,-0.011588553,0.28379789,0.468353748,-0.028790606,0.316960186,0.453418612,-0.042355277,0.223822996,0.468622386,-0.035003144,0.321141213,0.398458481,-0.057750072,0.332721472,0.463203043,-0.063057333,0.315957308,0.499310046,-0.066310689,0.243931353,0.501058161,-0.050964747,0.354760349,0.448478281,-0.067721918,0.356651276,0.512414038,-0.06210205,0.334944218,0.540509105,-0.059498303,0.273931473,0.549307585,-0.066213042,0.376528084,0.51183933,-0.075998634,0.370427758,0.569530487,-0.063887969,0.345206231,0.587392151,-0.057960156,0.310352504,0.605504036,-0.081960276,0.390920699,0.582881451,-0.083474346,0.385675013,0.624467254,-0.074633718,0.364028424,0.636085868,-0.069764361 +Left,0.227075487,0.718134046,-1.17E-07,0.245334148,0.620612442,-0.008521123,0.278998464,0.529419422,-0.027206054,0.335015208,0.478662044,-0.046437342,0.373501271,0.464945704,-0.061191019,0.215347931,0.391823858,-0.033418898,0.315397829,0.348103791,-0.061302159,0.324101031,0.417160749,-0.075291432,0.304766148,0.44686982,-0.084331244,0.221131593,0.42401129,-0.043314032,0.336246341,0.419134319,-0.064614497,0.335547864,0.481380522,-0.067164518,0.314576954,0.494593471,-0.070923544,0.240112275,0.479069024,-0.054187357,0.351040065,0.496552169,-0.067833617,0.341094911,0.548473477,-0.061576113,0.315088838,0.5548926,-0.05978056,0.267238915,0.539831996,-0.066843703,0.351911962,0.566157401,-0.069394983,0.340163946,0.60747242,-0.064286888,0.315565079,0.611143708,-0.062788829 +Left,0.215995476,0.727150619,-2.68E-07,0.294056177,0.634266317,-0.00485416,0.332920283,0.550208032,-0.019931717,0.357929319,0.496111423,-0.038455132,0.364670336,0.483382493,-0.051734559,0.232727855,0.362222254,-0.014654064,0.323610425,0.337342083,-0.043819021,0.32760042,0.414532781,-0.059625801,0.308879822,0.443044305,-0.069822401,0.21964249,0.388938904,-0.028883411,0.336158782,0.411549211,-0.053276982,0.330818862,0.48981449,-0.055980239,0.307885438,0.49879083,-0.058001317,0.221558735,0.445089042,-0.045796894,0.336778939,0.498786777,-0.061615843,0.325252414,0.558728218,-0.055329528,0.299062699,0.558576524,-0.053116735,0.235003144,0.512902141,-0.065152332,0.325921535,0.571061075,-0.070162676,0.31481871,0.61530292,-0.067471609,0.290404379,0.612795949,-0.06756895 +Left,0.211574107,0.701691389,-3.21E-07,0.294036895,0.639873147,-0.007251055,0.34510991,0.578187346,-0.024677781,0.375335693,0.534252644,-0.045454979,0.367550313,0.515497565,-0.06132669,0.271364957,0.343586087,-0.014379098,0.360654891,0.372115642,-0.045167111,0.351430207,0.45109728,-0.063861832,0.325616628,0.462479562,-0.077327423,0.248335391,0.362285078,-0.030153297,0.353103697,0.429607034,-0.057450868,0.338474691,0.506614685,-0.063738644,0.314051896,0.507046044,-0.06843479,0.234262049,0.416392684,-0.048776712,0.334283501,0.505256474,-0.068289839,0.319131613,0.569689035,-0.062906466,0.294786125,0.562386274,-0.06116391,0.230734155,0.488894135,-0.070105121,0.309721112,0.580173612,-0.080516703,0.296077013,0.6250664,-0.079966888,0.272458196,0.611482501,-0.080934681 +Left,0.244704336,0.694578528,-3.85E-07,0.310110807,0.672419548,-0.018639822,0.359413207,0.642917514,-0.041030645,0.389331371,0.610848784,-0.064498834,0.381299019,0.583030462,-0.082995743,0.348369658,0.37954241,-0.018834561,0.402941376,0.455797613,-0.055663139,0.381012619,0.538809538,-0.080353461,0.35806343,0.540309548,-0.096490264,0.309307665,0.367783725,-0.029654033,0.369123638,0.469554931,-0.059300493,0.348904341,0.558812022,-0.067648806,0.329637438,0.550588191,-0.072163798,0.271304011,0.393182963,-0.044666354,0.327345878,0.505261481,-0.068588354,0.313066214,0.579853356,-0.062535673,0.293201208,0.567137063,-0.057808515,0.23854427,0.444917768,-0.062966697,0.282073349,0.541597366,-0.074113667,0.275223851,0.593008876,-0.067966707,0.258499563,0.581178963,-0.062687621 +Left,0.262207627,0.731071174,-3.38E-07,0.321695298,0.738526702,-0.028083028,0.382191002,0.720786393,-0.049343407,0.382174015,0.691867888,-0.067956701,0.338404298,0.685889482,-0.082891062,0.394716591,0.478193104,-0.028690495,0.399389386,0.580482602,-0.06380336,0.374359637,0.663104296,-0.086786009,0.360889167,0.658224821,-0.101491988,0.345813394,0.446451515,-0.033439003,0.351175666,0.564944863,-0.061650176,0.334162414,0.663775623,-0.070654236,0.326299489,0.654113531,-0.075054735,0.294174165,0.452290744,-0.042040352,0.299231559,0.583448768,-0.06869702,0.29237166,0.67147541,-0.06408307,0.286313802,0.656463981,-0.05855611,0.244256407,0.47861293,-0.053748365,0.249243408,0.588086128,-0.066294149,0.251801133,0.658872783,-0.057782806,0.250409245,0.653779387,-0.049909648 +Left,0.266820639,0.737353802,-2.54E-07,0.330755502,0.749863327,-0.039538134,0.389985144,0.729303062,-0.065936312,0.362329185,0.704113841,-0.086428173,0.311405987,0.707832158,-0.10274604,0.401967674,0.481448829,-0.045738775,0.396115273,0.594896555,-0.082781695,0.37047708,0.675063014,-0.103846774,0.360300153,0.657056451,-0.118398443,0.350437373,0.44187662,-0.045771737,0.345680773,0.576860607,-0.078551553,0.328539848,0.673079908,-0.088476114,0.323633045,0.642902136,-0.093982339,0.296934754,0.448036075,-0.049968176,0.291465938,0.585991621,-0.081839092,0.285523772,0.674005508,-0.078586705,0.284962654,0.643101215,-0.074662864,0.246188551,0.473825842,-0.057782564,0.242438525,0.594419241,-0.077114679,0.247000158,0.667522132,-0.072707646,0.25091204,0.65090698,-0.067805052 +Left,0.259882182,0.727314949,-2.03E-07,0.326290518,0.747748256,-0.040824451,0.381226271,0.73843956,-0.069571272,0.342737496,0.718246937,-0.092455104,0.285764158,0.719287872,-0.111196145,0.407908469,0.496709138,-0.049323052,0.392400026,0.614528537,-0.091083102,0.363055587,0.691899598,-0.115438528,0.352473825,0.676569581,-0.131919801,0.356070846,0.444941521,-0.049978241,0.338491082,0.587884247,-0.08676675,0.318329901,0.682324231,-0.098260596,0.316032797,0.650803924,-0.104450934,0.299451172,0.439145744,-0.055478562,0.279459268,0.593266666,-0.091104649,0.270565063,0.680094838,-0.089319445,0.274180353,0.643591642,-0.085855834,0.245203793,0.455212027,-0.064820707,0.229476094,0.592698991,-0.087644219,0.231798887,0.668492496,-0.085261129,0.239297181,0.647843122,-0.081502654 +Left,0.254241288,0.692732275,-1.34E-07,0.318887442,0.716017008,-0.039522029,0.377142847,0.707091153,-0.067122526,0.340657681,0.686364949,-0.089139625,0.282204986,0.690032959,-0.10829778,0.396832496,0.464694947,-0.050080065,0.378047198,0.58740592,-0.089360781,0.354527175,0.66156286,-0.113538668,0.347815663,0.646050572,-0.130560502,0.343074352,0.411091387,-0.051009227,0.321077645,0.558514416,-0.084252104,0.305433095,0.649627924,-0.09608113,0.306572258,0.621652305,-0.104371771,0.28598538,0.405843318,-0.056072965,0.262278974,0.561087012,-0.087470457,0.257876784,0.644402146,-0.085764691,0.264943898,0.611322522,-0.084202781,0.231954217,0.423192263,-0.06508866,0.213817626,0.556997478,-0.084099032,0.21962741,0.634004116,-0.080456845,0.231123805,0.622281015,-0.07735955 +Left,0.237152651,0.704115331,-2.27E-07,0.301634222,0.717970252,-0.039119266,0.361408591,0.703801572,-0.0661873,0.328023046,0.706257522,-0.088499486,0.272399992,0.727790117,-0.109346546,0.368159473,0.468536764,-0.051373646,0.356824517,0.587183833,-0.090229847,0.337967455,0.671566784,-0.113787442,0.327282995,0.66752851,-0.129413143,0.312169611,0.425238103,-0.052169606,0.296494514,0.570718169,-0.085304543,0.281675637,0.677148581,-0.096062206,0.274386138,0.662868083,-0.102576487,0.253919989,0.427031338,-0.056724738,0.23679477,0.573753834,-0.091067858,0.235637084,0.673554182,-0.088410988,0.236910507,0.659086466,-0.083770625,0.197441995,0.449878514,-0.064711832,0.185530558,0.568908989,-0.087037921,0.194051147,0.660148859,-0.081110895,0.202751756,0.667445183,-0.074287929 +Left,0.226278946,0.738127768,-1.96E-07,0.289078414,0.742956698,-0.041710939,0.341417223,0.725658178,-0.070488304,0.310455918,0.746394753,-0.093143262,0.256492972,0.790579796,-0.113486342,0.335106492,0.488727182,-0.05822967,0.332711995,0.639405191,-0.098701365,0.318591803,0.724425375,-0.12434867,0.306868851,0.708758235,-0.142184943,0.276180208,0.465641141,-0.058344848,0.274985671,0.640362442,-0.08927124,0.268978745,0.736651659,-0.099444099,0.261773497,0.703393042,-0.107619062,0.218216658,0.490991056,-0.062216528,0.218187019,0.664633393,-0.090614535,0.222819909,0.740450859,-0.08609499,0.221069545,0.697786152,-0.083035916,0.163446352,0.532955289,-0.070441425,0.163898796,0.676393151,-0.088155814,0.178491101,0.741172433,-0.082494594,0.185869768,0.719096541,-0.077854246 +Left,0.222538143,0.767870903,-1.51E-07,0.291915238,0.760693014,-0.046054579,0.34239006,0.724312842,-0.074905552,0.303285807,0.742318034,-0.096022978,0.248233244,0.793274045,-0.113730036,0.31996879,0.484167486,-0.061705429,0.326248288,0.635398626,-0.10382656,0.314584941,0.719360292,-0.129654601,0.304044425,0.691471875,-0.148157299,0.25821802,0.469224274,-0.059762798,0.268918067,0.642710984,-0.092913769,0.265915662,0.739029706,-0.103280149,0.258105457,0.691484332,-0.111232489,0.200855643,0.503182828,-0.062234603,0.210902423,0.676751316,-0.093103312,0.219665796,0.753835618,-0.089839175,0.21738629,0.703115702,-0.087481894,0.149972096,0.55195415,-0.0692854,0.158298329,0.697380662,-0.089840293,0.174075902,0.759874821,-0.087075196,0.177792087,0.728866994,-0.08438731 +Left,0.214060813,0.80993259,-2.36E-07,0.284229338,0.794053912,-0.040617991,0.340338945,0.737228692,-0.064332023,0.306696087,0.742730975,-0.082185544,0.251348555,0.800000548,-0.096428558,0.321178257,0.487248003,-0.042918146,0.329184055,0.623546481,-0.077468455,0.315145969,0.717082262,-0.098254137,0.300051987,0.703337073,-0.113007002,0.257875204,0.467475057,-0.041847374,0.265900046,0.633989692,-0.069342747,0.263496637,0.736162424,-0.078282379,0.253941894,0.700442612,-0.084819771,0.19850184,0.496098042,-0.045425452,0.206174582,0.658704162,-0.072578847,0.214829162,0.745236218,-0.071267597,0.210318536,0.705107987,-0.069758698,0.145819083,0.541653097,-0.053192418,0.155461341,0.676046371,-0.069330037,0.171223819,0.747748137,-0.065835364,0.173238963,0.726204276,-0.06251435 +Left,0.215756387,0.782361448,-3.16E-07,0.280915171,0.760770023,-0.045369297,0.33935371,0.714580238,-0.076677762,0.324814737,0.713226438,-0.10093268,0.281611949,0.75472784,-0.121320404,0.309694648,0.454816222,-0.059578396,0.340240151,0.58363831,-0.099453598,0.325236112,0.680323362,-0.123018831,0.303714126,0.668069422,-0.139251977,0.251172006,0.454346538,-0.057316545,0.286597639,0.594936609,-0.091651708,0.281996906,0.702230811,-0.102725103,0.26469034,0.679040015,-0.110330954,0.198957071,0.495351523,-0.058708087,0.232419088,0.636573017,-0.09201888,0.238621578,0.728164136,-0.089660406,0.224174276,0.705101848,-0.086310692,0.152799696,0.553948879,-0.06388326,0.178075686,0.650995553,-0.083968185,0.189653367,0.713192225,-0.079785727,0.181026965,0.702015042,-0.075268485 +Left,0.220254645,0.811399281,-3.31E-07,0.286362141,0.783109784,-0.043560356,0.340409249,0.727258325,-0.075497247,0.344450504,0.690556109,-0.1020566,0.299889207,0.704916894,-0.123782896,0.293980241,0.458524048,-0.052543089,0.340657383,0.56170696,-0.094575278,0.328940034,0.662196398,-0.11953833,0.306880474,0.662024736,-0.135519192,0.240367576,0.460957885,-0.051825598,0.291669786,0.585055828,-0.087538689,0.289677501,0.696428895,-0.096477583,0.273584366,0.682537317,-0.100951932,0.192586645,0.503615797,-0.055623252,0.242117435,0.633358121,-0.088300571,0.249194294,0.721540809,-0.083858132,0.233867198,0.705784082,-0.078590326,0.151721805,0.565377474,-0.063641272,0.18846491,0.664025187,-0.081482641,0.200625062,0.724716783,-0.07609573,0.190403163,0.718049645,-0.070404388 +Left,0.227339327,0.802875936,-3.51E-07,0.286061317,0.757276535,-0.022527631,0.331201822,0.70821023,-0.046182618,0.353232622,0.664522409,-0.069673732,0.32761845,0.647255301,-0.089404225,0.277982712,0.453593552,-0.028710904,0.336197883,0.508024573,-0.066777542,0.331412703,0.607068241,-0.091265626,0.31372264,0.633168936,-0.106107429,0.229343191,0.458750278,-0.036432397,0.297189832,0.54429394,-0.067429841,0.294407248,0.653624535,-0.076546967,0.277870148,0.665601492,-0.080621816,0.187884331,0.502974451,-0.047671508,0.254559308,0.600257039,-0.075774089,0.254048765,0.689870715,-0.071024187,0.235797688,0.693919122,-0.064936824,0.155667424,0.570286632,-0.061536364,0.206128269,0.644045174,-0.075069137,0.212490842,0.704428315,-0.06747292,0.199272573,0.706680596,-0.059665628 diff --git a/data/ok_sign.csv b/data/ok_sign.csv new file mode 100644 index 0000000..29becca --- /dev/null +++ b/data/ok_sign.csv @@ -0,0 +1,248 @@ +handedness,0_x,0_y,0_z,1_x,1_y,1_z,2_x,2_y,2_z,3_x,3_y,3_z,4_x,4_y,4_z,5_x,5_y,5_z,6_x,6_y,6_z,7_x,7_y,7_z,8_x,8_y,8_z,9_x,9_y,9_z,10_x,10_y,10_z,11_x,11_y,11_z,12_x,12_y,12_z,13_x,13_y,13_z,14_x,14_y,14_z,15_x,15_y,15_z,16_x,16_y,16_z,17_x,17_y,17_z,18_x,18_y,18_z,19_x,19_y,19_z,20_x,20_y,20_z +Right,0.800275564,0.747290254,-8.30E-08,0.748855948,0.682196319,-0.005159177,0.715595782,0.59166646,-0.014277069,0.686823726,0.542395115,-0.027932214,0.673455179,0.50198561,-0.042408932,0.785351455,0.459106594,0.003279305,0.756870866,0.37776503,-0.028258033,0.722964883,0.408393532,-0.058160264,0.699283123,0.458596468,-0.074227206,0.813288331,0.44942534,-0.009914557,0.806216478,0.33141309,-0.028926764,0.777040958,0.265098453,-0.046589572,0.74402684,0.220040381,-0.058713056,0.839716017,0.471296489,-0.028051684,0.850388229,0.345734566,-0.044217564,0.83542639,0.267353028,-0.056002405,0.814624548,0.208155453,-0.063644052,0.857397616,0.516665101,-0.047503509,0.879594982,0.421317816,-0.05909007,0.885062456,0.348800629,-0.062694542,0.883087873,0.280308217,-0.064838536 +Right,0.744909823,0.667285562,-2.10E-07,0.697432339,0.612272024,-0.009892702,0.663321912,0.536846459,-0.021167884,0.632739007,0.487218469,-0.03589008,0.632714987,0.440535933,-0.050013881,0.722043157,0.409888208,0.002564415,0.69616878,0.334302932,-0.027365483,0.664593935,0.360656381,-0.055480655,0.644394517,0.404405385,-0.071182668,0.743440032,0.393657118,-0.006837344,0.734416366,0.280727029,-0.027500862,0.706197619,0.221578255,-0.046156615,0.676664948,0.177163273,-0.057832766,0.767360568,0.403176427,-0.021140741,0.772164583,0.284017503,-0.037616346,0.761305392,0.206912726,-0.050291415,0.747555614,0.140453935,-0.057857707,0.785385609,0.43472603,-0.037147634,0.797786474,0.340814173,-0.047922242,0.797559261,0.272840887,-0.051674787,0.79300499,0.206414148,-0.05385549 +Right,0.728384733,0.649584293,-2.01E-07,0.680809915,0.594590545,-0.009561874,0.64744556,0.519717276,-0.020574862,0.620167971,0.47439304,-0.035142086,0.620562017,0.426548123,-0.048972126,0.70391947,0.392594844,0.004173419,0.679273248,0.322861552,-0.024673939,0.649607122,0.354014993,-0.0515793,0.632676244,0.398954213,-0.066549189,0.724928916,0.378474057,-0.005604888,0.713339269,0.268630117,-0.025644204,0.684382379,0.213769346,-0.04341707,0.657449126,0.171472222,-0.054582175,0.748591244,0.391433507,-0.020501064,0.751466513,0.273529232,-0.038211346,0.739207327,0.197303966,-0.051209979,0.725995004,0.130325884,-0.058774397,0.766479731,0.425342321,-0.036911797,0.778262496,0.329277605,-0.049481787,0.777169466,0.260562748,-0.054109637,0.772144198,0.192150325,-0.056853972 +Right,0.722547948,0.633923173,-1.61E-07,0.676103652,0.581998646,-0.012517765,0.640986383,0.511464179,-0.025768947,0.613532901,0.467325777,-0.042091526,0.614528418,0.414222866,-0.057261515,0.691855371,0.380129844,0.000163182,0.668997526,0.310250819,-0.030587107,0.641374171,0.344802946,-0.057982065,0.625779271,0.391644448,-0.072636567,0.713431954,0.364145368,-0.007762564,0.701872349,0.257212847,-0.028675189,0.674535275,0.202636585,-0.045663707,0.649325967,0.157812685,-0.056008741,0.737957895,0.376025915,-0.021036195,0.739532471,0.261731476,-0.038895339,0.728083253,0.186738461,-0.049690116,0.716583371,0.120127648,-0.055407993,0.757517874,0.408867806,-0.036161117,0.767328978,0.313057899,-0.048215784,0.766638398,0.245079413,-0.051304892,0.763870955,0.17784217,-0.052535951 +Right,0.721389353,0.623241067,-1.77E-07,0.675751746,0.571920037,-0.011563743,0.641923428,0.501317799,-0.024188848,0.615332901,0.45800063,-0.04005298,0.616172969,0.407066137,-0.054792542,0.693475187,0.370560825,0.001598989,0.671002448,0.303996414,-0.028575435,0.642404318,0.33797583,-0.055741191,0.625604868,0.383709282,-0.070439249,0.714027882,0.356500715,-0.006881343,0.702059209,0.250556648,-0.027732493,0.67409128,0.197345391,-0.044551417,0.64867866,0.153360084,-0.05456965,0.737882137,0.369337976,-0.02066314,0.738797605,0.255319655,-0.038759403,0.726779401,0.180777147,-0.049793396,0.714945614,0.114430159,-0.055497602,0.757029533,0.403660059,-0.036197845,0.767080307,0.309219122,-0.048705943,0.765649915,0.241397515,-0.052194439,0.761929214,0.174580455,-0.053579465 +Right,0.734187424,0.626227438,-2.03E-07,0.688987315,0.576571584,-0.011245299,0.654146075,0.505139589,-0.023105808,0.626280606,0.459502339,-0.038091354,0.627948821,0.412888855,-0.051963169,0.703774631,0.376147062,0.001807517,0.68067956,0.309179664,-0.027959289,0.651490808,0.339858294,-0.054667309,0.634400785,0.382966697,-0.069197334,0.724443436,0.360471904,-0.006724294,0.712382257,0.252897322,-0.028091725,0.683745205,0.201281413,-0.044495039,0.657455325,0.161421701,-0.053668544,0.749326169,0.371261537,-0.020422215,0.749540389,0.25488168,-0.038658619,0.736612082,0.181548625,-0.048924893,0.723644853,0.118366957,-0.05371815,0.770140111,0.403580397,-0.035875943,0.779412091,0.308205813,-0.048471309,0.777483225,0.240189001,-0.051665805,0.773150861,0.174684316,-0.052521296 +Right,0.743681431,0.629438758,-2.18E-07,0.698980153,0.577286243,-0.011167343,0.664430499,0.506666422,-0.023599602,0.636235058,0.461833298,-0.039348017,0.638891757,0.41322121,-0.054239638,0.717231154,0.381347507,0.001467728,0.694341302,0.312968105,-0.028863832,0.664761126,0.342703253,-0.056543492,0.646594524,0.386054486,-0.071765274,0.73777312,0.366325736,-0.007193614,0.726579547,0.258490741,-0.028199127,0.698679268,0.207592621,-0.045212857,0.672526658,0.168742478,-0.055353027,0.762107491,0.37690267,-0.020994445,0.763773739,0.260952801,-0.038404368,0.751020133,0.187681705,-0.049173709,0.73733449,0.125712663,-0.054991465,0.782063067,0.408647478,-0.036609754,0.792473853,0.314159095,-0.048942987,0.790735066,0.245531067,-0.052607782,0.785963833,0.180087328,-0.054157142 +Right,0.753991425,0.623386621,-2.44E-07,0.713576078,0.546220183,-0.002360205,0.693510532,0.474440217,-0.012375602,0.671425521,0.429450065,-0.027658679,0.66346693,0.37901783,-0.042301308,0.757462084,0.360739291,0.010461466,0.730476379,0.293790519,-0.016918156,0.697876394,0.323115349,-0.044392414,0.676142633,0.363754809,-0.060081128,0.771236897,0.359027058,-0.00292289,0.763691068,0.247227237,-0.024367556,0.735887587,0.196503013,-0.043102585,0.709498703,0.158313006,-0.054025829,0.784346581,0.377226293,-0.020482481,0.789400995,0.259968996,-0.037241682,0.777302623,0.187846839,-0.048939582,0.764863729,0.128080219,-0.055595841,0.79053539,0.410696626,-0.039143659,0.804636836,0.324706972,-0.049643353,0.803971291,0.260412693,-0.052581377,0.799532175,0.198318884,-0.054029785 +Right,0.755412579,0.620473266,-2.54E-07,0.71457684,0.54870981,-0.003558338,0.692517817,0.47355783,-0.014486468,0.670574903,0.42966193,-0.030354448,0.668960869,0.379965007,-0.045873549,0.758949518,0.366455317,0.006217834,0.734296203,0.293995142,-0.021974495,0.700502455,0.318495125,-0.049141075,0.678400517,0.357582837,-0.064587273,0.773911238,0.364088655,-0.007185506,0.768262863,0.249653727,-0.030210033,0.740546227,0.196172714,-0.0493185,0.714368105,0.158415765,-0.0601478,0.788411438,0.382655472,-0.0248481,0.794469237,0.263930351,-0.043319881,0.783746779,0.188017622,-0.056370538,0.773363471,0.125829399,-0.063660949,0.795939207,0.416300565,-0.043460533,0.809357107,0.328763157,-0.056209069,0.809015632,0.261856496,-0.061133068,0.805552304,0.197641864,-0.063838184 +Right,0.763288617,0.620077133,-3.02E-07,0.720210135,0.54348129,0.001984005,0.703412533,0.470477521,-0.005411027,0.686658561,0.42366755,-0.018928569,0.678689122,0.370760143,-0.031970125,0.769389272,0.367315233,0.014394176,0.744358897,0.291123509,-0.012086731,0.711835146,0.312643051,-0.038396236,0.68947649,0.34948194,-0.053032834,0.78389281,0.36503315,-0.001257273,0.774091959,0.249218211,-0.021401644,0.745607138,0.192759573,-0.039579883,0.717734516,0.152713478,-0.050682813,0.795974493,0.380042374,-0.021096464,0.796131194,0.262532294,-0.036289174,0.781484544,0.18938981,-0.048179198,0.766578496,0.131128848,-0.055809468,0.800274372,0.405341238,-0.041848704,0.807546139,0.31887871,-0.052449141,0.803302109,0.253846854,-0.057313807,0.795651734,0.192938864,-0.060606405 +Right,0.763501346,0.630512595,-3.00E-07,0.721658051,0.556348681,0.000831882,0.702073753,0.481279522,-0.007320105,0.68163079,0.435469925,-0.021259278,0.673523784,0.382037312,-0.034830868,0.765317202,0.375485063,0.011046654,0.738812804,0.298654318,-0.015848823,0.705783963,0.321922183,-0.042240635,0.68472743,0.359592319,-0.057016853,0.779402614,0.375068009,-0.004162525,0.771399677,0.256207407,-0.027595688,0.741931856,0.201231912,-0.047340695,0.71261549,0.166640475,-0.058216389,0.792008102,0.39156729,-0.023300871,0.79534775,0.268630981,-0.040921077,0.781575143,0.192887098,-0.054383282,0.766462386,0.135239184,-0.061873604,0.797398567,0.419170529,-0.043136738,0.807172298,0.327297509,-0.055422567,0.803650141,0.259152532,-0.061265882,0.795642912,0.197438657,-0.064537615 +Right,0.772289753,0.645056725,-2.85E-07,0.730104685,0.574650884,-0.003813349,0.707234919,0.503286123,-0.013532684,0.684882164,0.458229065,-0.027922522,0.680424631,0.404525101,-0.041433603,0.771897495,0.393766522,0.00917725,0.748678029,0.32235074,-0.018229054,0.71451807,0.344398975,-0.04537385,0.690970838,0.38287279,-0.060588628,0.788206518,0.386521757,-0.002352382,0.780341089,0.276384175,-0.022743687,0.750862718,0.224231064,-0.040011525,0.721617222,0.187267885,-0.050101567,0.804015696,0.398844182,-0.018400175,0.807998776,0.28248477,-0.03381528,0.794662774,0.208481997,-0.044259746,0.779961884,0.1491054,-0.050218713,0.81348896,0.426879138,-0.035767745,0.825777888,0.339830458,-0.046040442,0.823057294,0.273471594,-0.049587257,0.815945327,0.210701525,-0.051426444 +Right,0.789303005,0.650191247,-1.98E-07,0.740316927,0.601299345,-0.01306532,0.706391394,0.530968785,-0.026125295,0.678727329,0.484519839,-0.042323265,0.683998108,0.435633153,-0.057514805,0.760792851,0.405240536,0.002462568,0.739500642,0.337119937,-0.028501114,0.71116358,0.363629162,-0.056970406,0.693234801,0.406023145,-0.072422542,0.7837556,0.390156448,-0.005291674,0.777193606,0.284982443,-0.028146846,0.749749839,0.237153426,-0.046449643,0.721939862,0.205960572,-0.056455962,0.808639407,0.400971889,-0.018602345,0.81303978,0.28964588,-0.036359821,0.801644742,0.216985762,-0.047390215,0.788820624,0.156560987,-0.052717067,0.82805568,0.432839632,-0.034013256,0.840008378,0.340557873,-0.04582854,0.840442419,0.274247944,-0.049569346,0.837639153,0.210498884,-0.050911363 +Right,0.785576463,0.638684571,-1.84E-07,0.736631691,0.594204485,-0.012836396,0.701743782,0.526734889,-0.025893914,0.674001694,0.483561486,-0.041768763,0.676716089,0.433056742,-0.056668285,0.752551317,0.397373915,-0.000476023,0.730319858,0.327880085,-0.031955633,0.70338887,0.353374153,-0.060243785,0.685458839,0.394675761,-0.075251408,0.775395036,0.380939573,-0.007850745,0.764693499,0.277446032,-0.029712355,0.737833083,0.231081471,-0.047086325,0.710212171,0.199549079,-0.056706604,0.801786065,0.38994652,-0.020457041,0.801844835,0.279470831,-0.037635062,0.789073884,0.209384382,-0.047313426,0.77482599,0.149984181,-0.051661789,0.823554039,0.420555502,-0.035094216,0.832247794,0.327254891,-0.046443906,0.83097893,0.261879742,-0.049014494,0.827163339,0.198893085,-0.049208242 +Right,0.78118825,0.62364006,-1.61E-07,0.731176674,0.5843243,-0.013717382,0.693715751,0.522739887,-0.026911059,0.664435685,0.48025161,-0.04277879,0.664857507,0.425782502,-0.057592459,0.740333855,0.388353616,-2.06E-05,0.717780709,0.320874363,-0.031405162,0.692209959,0.345259964,-0.059448879,0.676272511,0.387402982,-0.074240386,0.763455391,0.367247641,-0.006807583,0.751448691,0.2677356,-0.02801401,0.725747705,0.22088334,-0.045124575,0.69873929,0.189378917,-0.05488798,0.790723324,0.371662021,-0.01911515,0.788716018,0.264043272,-0.036212649,0.776218653,0.193659991,-0.046140816,0.761811197,0.13450408,-0.050768342,0.814040542,0.398327827,-0.033557992,0.820730746,0.304308355,-0.045335241,0.818618834,0.23875533,-0.048439156,0.813533425,0.17628397,-0.049035382 +Right,0.772802889,0.615563631,-1.69E-07,0.722823322,0.571515441,-0.013579044,0.68573457,0.512018502,-0.027202656,0.657617152,0.470346153,-0.043696545,0.658538103,0.412967145,-0.059087656,0.736245632,0.381387085,0.000257064,0.711606681,0.316741765,-0.030424507,0.685361326,0.347696453,-0.057991493,0.669711947,0.393462479,-0.072465301,0.758004367,0.361946583,-0.006510106,0.74472326,0.260911107,-0.027222611,0.717228413,0.217123687,-0.043302272,0.689563036,0.187108278,-0.052314337,0.783568382,0.366780162,-0.018788973,0.780994952,0.258475542,-0.035306491,0.766331255,0.188724667,-0.044284295,0.750815868,0.131437212,-0.04825614,0.804663777,0.391767204,-0.033254284,0.810394049,0.297226131,-0.044393849,0.80673182,0.231080562,-0.046895135,0.800969005,0.169045851,-0.047086567 +Right,0.764575541,0.61081928,-1.98E-07,0.717658818,0.563019454,-0.011488051,0.684005797,0.502623141,-0.024091205,0.657420218,0.460740685,-0.040026087,0.660514653,0.405533075,-0.054799791,0.73948127,0.37626341,0.005278181,0.715695918,0.315564632,-0.02386035,0.687729418,0.342701733,-0.051352259,0.669799805,0.383947939,-0.066103518,0.758784831,0.358906716,-0.002088377,0.74753046,0.259425998,-0.021992557,0.719254792,0.215142354,-0.038469888,0.691194773,0.185371682,-0.047816895,0.781501532,0.365027517,-0.014905115,0.780788839,0.258107126,-0.030143121,0.765963793,0.188875467,-0.039440535,0.750484824,0.13330707,-0.043947805,0.799480081,0.38992691,-0.029856484,0.807545245,0.298854858,-0.039633304,0.803741217,0.234143823,-0.042343169,0.796973586,0.173976332,-0.043071531 +Right,0.758370399,0.61415261,-2.62E-07,0.718246341,0.558484793,-0.006838152,0.690059125,0.494016171,-0.018395243,0.663561702,0.454034984,-0.034128211,0.663996339,0.406753331,-0.049212106,0.749415755,0.376718104,0.005571262,0.726438642,0.316847742,-0.022770213,0.695417047,0.342732728,-0.050717849,0.674200177,0.378743798,-0.066825703,0.765159249,0.365740359,-0.005240135,0.756605208,0.261446595,-0.026420997,0.727970898,0.215457469,-0.045024414,0.699875355,0.183966264,-0.056221414,0.782787919,0.376533926,-0.020595571,0.786284745,0.265677691,-0.036826473,0.774450779,0.19463785,-0.048724726,0.761613071,0.137909979,-0.055552281,0.795613766,0.405224264,-0.037472103,0.806357145,0.314575732,-0.047835734,0.802917421,0.249336213,-0.051499501,0.794838905,0.188399464,-0.053554207 +Right,0.765835941,0.619787514,-2.75E-07,0.725674987,0.557463288,-0.003942379,0.702569008,0.489657223,-0.014846964,0.679397047,0.447533876,-0.03039109,0.675189972,0.399213254,-0.045395412,0.763276935,0.377978474,0.005879594,0.740308523,0.309996337,-0.021871399,0.708604813,0.33375603,-0.049365059,0.68656826,0.368614137,-0.065364383,0.77774334,0.370317519,-0.006518302,0.769270182,0.262039423,-0.02863236,0.739744008,0.213762015,-0.047626615,0.711328208,0.180782124,-0.058849633,0.792117834,0.383878291,-0.022939034,0.796446145,0.270675272,-0.039717969,0.784115016,0.198888555,-0.051595133,0.771502614,0.141904593,-0.058471534,0.800549209,0.412850529,-0.040512037,0.810612261,0.32644701,-0.051592052,0.806771994,0.261988342,-0.055485923,0.799497664,0.201457024,-0.057629216 +Right,0.773841381,0.623629928,-2.79E-07,0.730636775,0.557744861,-0.00235299,0.706493258,0.487782806,-0.012764055,0.68372947,0.446101665,-0.028153077,0.67934382,0.39596808,-0.043169681,0.769599378,0.378895879,0.007619105,0.742570698,0.311748058,-0.020571036,0.711222351,0.335877746,-0.048430633,0.689620495,0.372429758,-0.064287148,0.785477102,0.373765826,-0.005634861,0.774362922,0.265212715,-0.027990043,0.744118392,0.217118353,-0.047361899,0.714691043,0.18533349,-0.058628179,0.800788403,0.388367981,-0.02301552,0.801164925,0.273569733,-0.040160384,0.786577225,0.20140025,-0.05282012,0.772091269,0.144413948,-0.060116,0.808598042,0.4170748,-0.041345224,0.816816866,0.331185937,-0.053159893,0.812243462,0.2656371,-0.058188181,0.804680943,0.203242034,-0.061053373 +Right,0.778647959,0.621643662,-2.65E-07,0.735811889,0.557063997,-0.002999714,0.711172998,0.486246198,-0.013731777,0.688020825,0.444159001,-0.029501038,0.686949015,0.395094097,-0.044977177,0.772856355,0.375881016,0.008401026,0.747550249,0.309130013,-0.019928759,0.716386199,0.332754493,-0.048063654,0.695444226,0.369839489,-0.064217217,0.789310873,0.3692922,-0.00476469,0.780759275,0.260441005,-0.027570363,0.750430167,0.214086697,-0.047385596,0.721229792,0.184155658,-0.058727704,0.805817664,0.384172797,-0.022145754,0.808178723,0.269420266,-0.039258227,0.7937271,0.197283015,-0.05192899,0.779193163,0.139630377,-0.059238415,0.815202177,0.415409893,-0.040595047,0.825187445,0.329827636,-0.05190983,0.821251333,0.264198661,-0.0565449,0.813695967,0.201306626,-0.059260525 +Right,0.778015196,0.618043423,-2.72E-07,0.735399902,0.557610869,-0.006265998,0.709922433,0.487358153,-0.017091326,0.686649203,0.444625527,-0.032305468,0.685785651,0.397584915,-0.047043882,0.770664394,0.370009661,0.007602477,0.746839106,0.306480199,-0.019785343,0.716239095,0.333571285,-0.046973146,0.696328759,0.372641146,-0.062577315,0.788898349,0.360722154,-0.003907953,0.781171918,0.254598141,-0.026383074,0.751456201,0.207285598,-0.046325851,0.722429633,0.175781414,-0.057851117,0.806893766,0.374997169,-0.019965285,0.811789155,0.263710588,-0.037491053,0.798998475,0.192072377,-0.051190369,0.784832597,0.13422966,-0.059066948,0.817855299,0.407456845,-0.037332486,0.829195082,0.320832253,-0.04871282,0.826383352,0.255999804,-0.053886548,0.818762004,0.194403753,-0.057104122 +Right,0.779771507,0.617793798,-2.10E-07,0.732918322,0.57225877,-0.013602925,0.700129688,0.507338822,-0.026801221,0.673376918,0.461006641,-0.043147877,0.675547361,0.411769748,-0.058509912,0.75113219,0.38169241,0.004023896,0.728429854,0.319208682,-0.026396973,0.700970531,0.342872679,-0.054941159,0.68399322,0.38087377,-0.070670262,0.773219943,0.362447143,-0.003775927,0.765015721,0.260410666,-0.027253581,0.736375213,0.215615466,-0.04652926,0.707911432,0.188376799,-0.057008356,0.797559917,0.368097842,-0.017198658,0.800461769,0.259582788,-0.035140101,0.786612451,0.189130545,-0.046789996,0.771955788,0.133007973,-0.05241745,0.81709075,0.395226121,-0.032873932,0.828321934,0.303739607,-0.044215266,0.827260137,0.237346813,-0.048294757,0.822185516,0.175618932,-0.049965609 +Right,0.780255198,0.617860556,-1.72E-07,0.731407404,0.573396444,-0.012720528,0.698103011,0.510453284,-0.025493259,0.672274113,0.464424968,-0.041468844,0.672555745,0.410702825,-0.056439258,0.748400271,0.382738829,0.003425121,0.725983441,0.316056132,-0.02711945,0.700510025,0.340438545,-0.054818209,0.684680104,0.3811827,-0.069362842,0.771144152,0.363205135,-0.004217877,0.761328459,0.261203766,-0.025487283,0.734837115,0.214935929,-0.042552147,0.708070636,0.184209362,-0.051905502,0.796929717,0.368314803,-0.017521689,0.796476185,0.259522319,-0.034343354,0.783054292,0.188495189,-0.044392578,0.768962443,0.130409986,-0.048970655,0.818251729,0.393811882,-0.033009674,0.82626611,0.299608171,-0.044014923,0.825205803,0.232945234,-0.047095645,0.821725905,0.170430154,-0.047746591 +Right,0.78197962,0.615605175,-1.56E-07,0.731379986,0.574174881,-0.013291973,0.695562661,0.513958335,-0.02594791,0.669839323,0.468469411,-0.041559272,0.669433594,0.411462039,-0.056084067,0.742707253,0.38508603,0.001951326,0.722327948,0.317134172,-0.028987277,0.698194206,0.338878632,-0.056684174,0.682335019,0.377965391,-0.071050026,0.767277837,0.362398535,-0.005137709,0.756710947,0.265100479,-0.025454815,0.731707215,0.216894448,-0.042394005,0.70509088,0.184856862,-0.052221354,0.795019686,0.364510059,-0.017896764,0.793284476,0.258216947,-0.034595143,0.78037703,0.188260093,-0.044517852,0.765275776,0.131965548,-0.049138088,0.819045901,0.387885988,-0.032831233,0.826247334,0.29437077,-0.044563338,0.824961722,0.228351831,-0.047864895,0.820179522,0.167055935,-0.048472494 +Right,0.786350369,0.617184877,-1.55E-07,0.735636175,0.577835143,-0.01308375,0.69904685,0.517429173,-0.025111174,0.673990011,0.469680071,-0.039909694,0.672417641,0.411836833,-0.053583216,0.744010031,0.388944864,0.00264309,0.722661018,0.320658088,-0.028565582,0.699644387,0.340449363,-0.056275073,0.685881853,0.378559887,-0.070585966,0.769350648,0.364881456,-0.004907542,0.757278383,0.265980184,-0.02604964,0.732588947,0.217791766,-0.043441657,0.707861841,0.186044589,-0.053286951,0.798012674,0.366468549,-0.018201349,0.796908736,0.257993788,-0.035935033,0.784996569,0.18680042,-0.046815552,0.771917999,0.129065663,-0.051898148,0.823397517,0.390387535,-0.033539582,0.830399096,0.296131045,-0.046165403,0.828653336,0.228867665,-0.050126303,0.823695838,0.16541478,-0.051196516 +Right,0.780143261,0.614542902,-1.72E-07,0.733503342,0.568138838,-0.012873989,0.699902892,0.503346801,-0.025260054,0.675146699,0.456766158,-0.040214296,0.67867589,0.403338552,-0.053996425,0.752944469,0.379043221,0.001756461,0.730498672,0.312630177,-0.028399905,0.703340411,0.338104904,-0.055953201,0.687492371,0.378304988,-0.070698611,0.775445879,0.36177659,-0.005423252,0.76494664,0.259807169,-0.027187753,0.737167001,0.213277414,-0.044806529,0.710794985,0.183167994,-0.054602332,0.801279545,0.369209349,-0.017979024,0.802561939,0.259188771,-0.0357274,0.789961457,0.188311577,-0.046799202,0.776796103,0.131012857,-0.051988911,0.823228002,0.397886962,-0.032467015,0.833133221,0.305462807,-0.04454308,0.831526697,0.239190221,-0.048483249,0.82670939,0.176732495,-0.049807638 +Right,0.779249907,0.610938787,-2.41E-07,0.735430658,0.554362118,-0.007531276,0.707281232,0.484320849,-0.018684098,0.684207678,0.442253739,-0.033876542,0.68668896,0.398915499,-0.048613824,0.765089273,0.368878394,0.005446449,0.7438429,0.302078128,-0.023026725,0.714438975,0.328162521,-0.050396085,0.695052981,0.367897034,-0.065790027,0.784504592,0.357593954,-0.005536755,0.778999388,0.252544165,-0.027985316,0.750361443,0.206783473,-0.046720393,0.722013235,0.178215951,-0.057160094,0.80538857,0.370457619,-0.021246685,0.811193228,0.257568598,-0.03841535,0.79847312,0.18568565,-0.0502408,0.784793556,0.127843291,-0.056668591,0.821480036,0.402873218,-0.038506359,0.834524393,0.312746435,-0.050021693,0.834437132,0.246338174,-0.054123167,0.830003679,0.18346028,-0.056215305 +Right,0.777038813,0.608025372,-2.49E-07,0.734681785,0.544492662,-0.003801976,0.710582674,0.473906398,-0.014962241,0.68782413,0.433727264,-0.030981047,0.686222196,0.384756595,-0.046858694,0.770386517,0.359389633,0.006251393,0.746471584,0.291764617,-0.020837881,0.71547395,0.319095939,-0.04703898,0.695907772,0.359775245,-0.062020559,0.787745595,0.353583306,-0.007011015,0.780972123,0.245303899,-0.030031355,0.74971509,0.20033969,-0.049165763,0.719741762,0.171666458,-0.059859425,0.804441571,0.370265782,-0.024370825,0.808947325,0.255600035,-0.041969642,0.793781936,0.185068443,-0.054778684,0.778313637,0.128932297,-0.062244412,0.814101458,0.404337525,-0.042736359,0.826114893,0.31939435,-0.054786552,0.824019194,0.253553391,-0.060026068,0.817804635,0.190741941,-0.06324935 +Right,0.772099137,0.603476822,-2.73E-07,0.73087883,0.547068357,-0.006851093,0.705291927,0.477083832,-0.017549228,0.684488297,0.434675336,-0.032334376,0.685417235,0.388273895,-0.046550147,0.763429463,0.361240178,0.005280329,0.741963685,0.294199318,-0.022834474,0.710982978,0.320330024,-0.049737167,0.691157818,0.361268669,-0.064798802,0.781456709,0.351170659,-0.006248535,0.776880443,0.242931768,-0.029631374,0.747105062,0.197389156,-0.049139388,0.718377292,0.169613272,-0.059710462,0.800651014,0.364450812,-0.022287764,0.807678938,0.249676049,-0.040493004,0.795441151,0.177468613,-0.05389965,0.782038331,0.11991927,-0.061046924,0.814632595,0.397031575,-0.039645862,0.827946365,0.306418568,-0.051907431,0.826492846,0.238742828,-0.057065565,0.820227325,0.17431511,-0.059779167 +Right,0.776221931,0.616973281,-1.93E-07,0.725937068,0.576902568,-0.013447294,0.688112199,0.516377568,-0.026055535,0.659568369,0.46900025,-0.041623998,0.662405133,0.411499679,-0.056056645,0.733113348,0.390898705,0.00200407,0.713164389,0.32036984,-0.028580474,0.688783228,0.341558307,-0.055738758,0.674089491,0.382338405,-0.070057131,0.757603705,0.366958559,-0.00512774,0.746982276,0.262445688,-0.027739603,0.720986366,0.217348516,-0.046328429,0.694114625,0.19069089,-0.056510627,0.786271513,0.366219759,-0.017679866,0.785224855,0.253775597,-0.035334814,0.772068262,0.183638483,-0.046614747,0.757201195,0.128380269,-0.051826816,0.811630845,0.387435913,-0.032296494,0.818388402,0.291535258,-0.043946583,0.816704631,0.224381015,-0.047743987,0.811983168,0.163583726,-0.048767008 +Right,0.774488568,0.621896863,-1.19E-07,0.72277385,0.587255836,-0.015281445,0.680747032,0.531731725,-0.02886204,0.651675224,0.480970085,-0.04507152,0.656239986,0.418123156,-0.059852462,0.720245898,0.400618613,0.001973272,0.697725236,0.330988765,-0.029021073,0.677346587,0.355085611,-0.055834491,0.667509198,0.398128092,-0.069485083,0.748128653,0.372751415,-0.004247074,0.733679533,0.273406088,-0.024522346,0.709465206,0.226527944,-0.041100118,0.685212195,0.19455716,-0.050568912,0.779978335,0.370119989,-0.016423445,0.773585081,0.261380911,-0.034086786,0.759755015,0.192164555,-0.043797813,0.744946122,0.13592279,-0.047917411,0.80967319,0.389379829,-0.030771762,0.812847674,0.293586969,-0.043071415,0.809782445,0.22679843,-0.046108726,0.803924739,0.164904654,-0.046346448 +Right,0.776448846,0.622609854,-9.17E-08,0.723765016,0.590789139,-0.016072586,0.680885792,0.5392555,-0.030063923,0.651957273,0.487789601,-0.046391889,0.656440198,0.422772765,-0.061094351,0.716675043,0.404091567,0.00068478,0.694633901,0.335700512,-0.030101921,0.674947262,0.358566821,-0.056036022,0.665611267,0.400889218,-0.06904047,0.745383501,0.373492539,-0.004926163,0.728661358,0.276226938,-0.02454713,0.705738306,0.228969231,-0.040150631,0.682992637,0.194875076,-0.049239445,0.778410077,0.367583036,-0.016539212,0.77019465,0.259141713,-0.034624971,0.75647074,0.189634532,-0.044244867,0.741578162,0.132419139,-0.048306115,0.809450746,0.383711904,-0.030249029,0.811237812,0.286777407,-0.043243494,0.807939291,0.218724757,-0.046580296,0.801535487,0.155726641,-0.046975564 +Right,0.785619438,0.628089428,-5.02E-08,0.729992032,0.600575089,-0.016902324,0.684456825,0.549499393,-0.030950394,0.654586911,0.49454248,-0.047131605,0.662614584,0.429230213,-0.06172201,0.713553905,0.414257348,-0.00074329,0.689750612,0.34342888,-0.031821396,0.673769355,0.372471154,-0.057550509,0.669444084,0.4183698,-0.0704953,0.743531764,0.381154656,-0.006375359,0.725587308,0.281184345,-0.025745193,0.705400348,0.233683363,-0.041459303,0.686163366,0.198699906,-0.050924774,0.778125584,0.373660743,-0.018077947,0.767496705,0.264244974,-0.037211053,0.754808187,0.194714159,-0.048341606,0.74156791,0.136013389,-0.053524137,0.811571956,0.388708442,-0.031703796,0.812477052,0.291828066,-0.045856372,0.810877442,0.224537373,-0.050109617,0.806825936,0.16189602,-0.051282801 +Right,0.814854324,0.649809599,4.46E-08,0.757992744,0.627531648,-0.01985343,0.710059285,0.580142021,-0.036687933,0.680428505,0.518453658,-0.054547817,0.693324625,0.448840022,-0.070396766,0.726689637,0.439281702,-0.005766022,0.70823139,0.363419324,-0.0388759,0.703623235,0.381775379,-0.066767335,0.704814553,0.412224114,-0.082187459,0.75899297,0.402100801,-0.010739517,0.740246654,0.304441422,-0.030385459,0.726696372,0.25494796,-0.04757214,0.712418079,0.212021634,-0.059957333,0.796869695,0.391060919,-0.021864625,0.784523487,0.284924746,-0.042513352,0.776681304,0.21644482,-0.054765876,0.765411973,0.154280841,-0.061885972,0.83577913,0.400761217,-0.034934603,0.832195759,0.303181529,-0.049379818,0.832036555,0.240439966,-0.05343134,0.828247964,0.18016088,-0.055539168 +Right,0.805773139,0.659877896,-7.43E-08,0.755307257,0.613861084,-0.019094037,0.715285897,0.554104388,-0.036026157,0.686757922,0.500192761,-0.054932136,0.699740112,0.443001568,-0.072594099,0.762725294,0.41912961,-0.007129217,0.741155565,0.340307534,-0.042859685,0.717621565,0.37558943,-0.073169559,0.703724504,0.425725341,-0.089112625,0.794152439,0.398759693,-0.012321478,0.784410954,0.292041183,-0.035707388,0.764470339,0.242266759,-0.054200068,0.743355513,0.203592137,-0.065522224,0.828403115,0.404612303,-0.023634305,0.83040154,0.290807217,-0.045867782,0.822917581,0.21877867,-0.058424372,0.812124848,0.158114254,-0.06412749,0.858591676,0.434551656,-0.036927365,0.871453822,0.335108459,-0.0524511,0.875583351,0.267866105,-0.057044148,0.875036478,0.204439983,-0.058361903 +Right,0.797154188,0.653111815,-1.70E-07,0.749567628,0.595129192,-0.011873619,0.719021261,0.518844604,-0.023486681,0.695729613,0.464446902,-0.038519002,0.701278806,0.409772396,-0.052703168,0.779507458,0.398435771,0.004749295,0.761064172,0.320629776,-0.026311342,0.732816517,0.342186213,-0.055116724,0.714232028,0.383256018,-0.070508845,0.805908024,0.382017285,-0.003648561,0.804015636,0.274818897,-0.025968913,0.77985388,0.220232129,-0.045286886,0.753578901,0.183635667,-0.05621409,0.83350265,0.39297533,-0.017671091,0.843563199,0.279941589,-0.035773143,0.835361779,0.204375103,-0.048063874,0.824474096,0.141445458,-0.054084927,0.855861485,0.426150441,-0.033656601,0.873853087,0.330850333,-0.045793761,0.87883085,0.261051595,-0.049942881,0.879665673,0.194323331,-0.051429935 +Right,0.780095041,0.626404345,-2.40E-07,0.740777433,0.556007564,-0.006643891,0.717612147,0.479516685,-0.018458223,0.695130825,0.432359725,-0.034991678,0.702274263,0.385766953,-0.051003784,0.78766489,0.372885525,0.009198645,0.769022226,0.303930193,-0.019982781,0.736288607,0.326949,-0.049019858,0.713402629,0.366463274,-0.065478042,0.805842459,0.365916908,-0.002686473,0.805230737,0.255841196,-0.024732927,0.779552698,0.204213455,-0.044520773,0.75318104,0.170406401,-0.056078266,0.824798107,0.381923795,-0.019653017,0.837632835,0.265682429,-0.036792919,0.829276443,0.189707369,-0.049603518,0.819153607,0.128878415,-0.056869417,0.836678863,0.415540427,-0.038171913,0.856843889,0.3246589,-0.049374737,0.861494303,0.257075608,-0.053668004,0.861421824,0.191836342,-0.05616321 +Right,0.777398288,0.619216621,-2.61E-07,0.738561988,0.539108634,0.000877063,0.721917748,0.463741213,-0.007836564,0.702897131,0.416357577,-0.022751244,0.702563286,0.364308447,-0.037059821,0.792769015,0.368213773,0.015113113,0.77287209,0.29181087,-0.011972333,0.740443885,0.309134305,-0.038392998,0.718071043,0.344828904,-0.05247727,0.807042897,0.369112134,0.00036646,0.807129622,0.253706634,-0.021997407,0.78038156,0.197680786,-0.039968245,0.752280712,0.160983622,-0.048944827,0.819708586,0.386120915,-0.018805146,0.827430785,0.264723361,-0.035519879,0.812408447,0.192657679,-0.046284296,0.796045482,0.138543189,-0.051110733,0.824370742,0.413378268,-0.038914353,0.840553224,0.324712217,-0.049674284,0.842738628,0.258025318,-0.053702727,0.840522408,0.196125895,-0.055116996 +Right,0.77903688,0.607300103,-2.84E-07,0.740824282,0.519029021,0.004719641,0.728153527,0.443735838,-0.002059838,0.712817729,0.395669699,-0.015541054,0.706456065,0.341267616,-0.02828259,0.801184237,0.359777004,0.018134544,0.780186772,0.279200643,-0.006414192,0.746428668,0.291686326,-0.029925313,0.723171115,0.326397806,-0.042237319,0.81358695,0.363399446,0.002111797,0.80678761,0.245883182,-0.017596295,0.779227078,0.187310815,-0.033424266,0.752320409,0.147214234,-0.041968394,0.822131336,0.380430102,-0.018089021,0.823177993,0.257438749,-0.033339396,0.803522229,0.183033377,-0.043171629,0.784837961,0.127878398,-0.048200376,0.821785331,0.40304175,-0.038940642,0.833792984,0.31145376,-0.050630987,0.83312875,0.242268816,-0.056298539,0.829204977,0.179326966,-0.059276242 +Right,0.782745957,0.600674212,-4.17E-07,0.737241507,0.494158685,0.021668233,0.732307076,0.428408682,0.020803373,0.7201401,0.379652172,0.011667834,0.711630464,0.323071837,0.001430516,0.817697465,0.351213962,0.029103428,0.785147727,0.265461862,0.015119595,0.749820352,0.276669174,-0.003647408,0.727460861,0.312381893,-0.01483738,0.832543373,0.359978169,0.008149792,0.804460764,0.23341763,0.000356165,0.773821592,0.167659402,-0.013726336,0.747353971,0.126825094,-0.026516449,0.831032813,0.377841324,-0.014214517,0.822873592,0.245104373,-0.019434912,0.806297183,0.163700297,-0.028775273,0.793622792,0.10788992,-0.038751159,0.813536763,0.387335837,-0.035146758,0.816161096,0.292554349,-0.03982231,0.812677503,0.225166455,-0.04363827,0.808799922,0.162857011,-0.048952017 +Right,0.775267184,0.601784527,-4.49E-07,0.730669737,0.50046134,0.021347305,0.724566162,0.434244692,0.019584863,0.711917877,0.386567026,0.009482397,0.704201221,0.329798937,-0.001386566,0.810961187,0.347598642,0.026943911,0.778002679,0.26724112,0.011193059,0.744642556,0.279175758,-0.007934014,0.72369945,0.315223694,-0.018760506,0.825434387,0.356854022,0.005300007,0.796390116,0.23297964,-0.002703056,0.766870558,0.170376524,-0.014864349,0.741160274,0.134404495,-0.025588246,0.824266493,0.375647306,-0.018016065,0.816750228,0.24313575,-0.023370374,0.800219119,0.162514731,-0.03064906,0.787230253,0.108790815,-0.038622096,0.807190418,0.387051612,-0.040111754,0.809487402,0.290891916,-0.045644984,0.805321038,0.22185877,-0.049199555,0.800841093,0.159027278,-0.053575687 +Right,0.756066263,0.58850646,-3.31E-07,0.715078652,0.513712466,0.000734965,0.699839234,0.446498543,-0.006345673,0.683730423,0.400846064,-0.01891803,0.679840684,0.35021916,-0.030759802,0.770369351,0.34368065,0.016099246,0.746093333,0.273444772,-0.006426003,0.713075995,0.291060925,-0.029416628,0.692269683,0.328728318,-0.041939579,0.783842027,0.340586007,0.00301248,0.775331676,0.229894474,-0.013966006,0.747470438,0.174914777,-0.029618587,0.721064627,0.138721362,-0.03928607,0.793457747,0.353182137,-0.014358717,0.797186732,0.236737087,-0.027808823,0.782931387,0.163540825,-0.039253369,0.768439949,0.110050172,-0.046472106,0.793973327,0.372983545,-0.032629941,0.805709243,0.285621881,-0.042020462,0.805356383,0.220414177,-0.047717955,0.80110383,0.159789562,-0.051764175 +Right,0.745569348,0.588278294,-2.95E-07,0.705082357,0.525391698,-0.000759715,0.683615983,0.458738863,-0.008388275,0.662648678,0.41643995,-0.021565136,0.66162163,0.366311282,-0.034070637,0.746798635,0.348569453,0.015475605,0.723544419,0.28902626,-0.011052623,0.692092419,0.309958398,-0.03814844,0.670751929,0.344652802,-0.05308874,0.762236655,0.339199156,0.00206339,0.757510245,0.234694555,-0.016322881,0.730833232,0.184011355,-0.033081055,0.703750432,0.150138348,-0.042939879,0.777448893,0.348495603,-0.016092757,0.782832086,0.237356335,-0.030232213,0.770933032,0.165697247,-0.041123547,0.757797718,0.111073822,-0.047116302,0.785419703,0.372392029,-0.035544496,0.79792887,0.282087386,-0.044618174,0.796058178,0.217357263,-0.048097037,0.789647162,0.15841417,-0.049771473 +Right,0.746378779,0.585051656,-2.53E-07,0.705999851,0.527427673,-0.006602858,0.68039304,0.464724183,-0.018038429,0.656977475,0.420845717,-0.033919394,0.659619451,0.369460672,-0.048949048,0.741442204,0.350546956,0.008777944,0.717562616,0.295023561,-0.019769657,0.686821461,0.315295249,-0.047965296,0.666797161,0.348434538,-0.063661851,0.75837338,0.337543756,-0.001967754,0.752497911,0.235078216,-0.023466423,0.725344181,0.18561551,-0.041527152,0.698136449,0.152079493,-0.05173447,0.775757194,0.344929308,-0.017597562,0.780813336,0.235582486,-0.033697262,0.769390464,0.163859531,-0.044492517,0.757283688,0.107820421,-0.04994553,0.786379755,0.369133741,-0.034921069,0.797751904,0.278675884,-0.044395845,0.795423329,0.213820949,-0.047256459,0.789248168,0.154687345,-0.048305031 +Right,0.747686684,0.581309676,-2.40E-07,0.70588994,0.529338598,-0.006623605,0.679106832,0.467843503,-0.01597012,0.655529201,0.423770547,-0.029341958,0.655905843,0.370651126,-0.041557308,0.736296058,0.352964461,0.012237974,0.714971721,0.296878874,-0.014769617,0.686207652,0.31387651,-0.041766539,0.667210698,0.344983369,-0.056484833,0.75425458,0.335627913,0.002807327,0.747457266,0.233865991,-0.016766617,0.721416533,0.185800448,-0.03325735,0.694931269,0.154430628,-0.042194303,0.774043798,0.339522034,-0.011753161,0.778291285,0.231176212,-0.026124604,0.766479313,0.160684094,-0.035462447,0.753438532,0.105265588,-0.039687295,0.788682044,0.361718982,-0.02812882,0.800268471,0.270337343,-0.036544178,0.79785943,0.204311997,-0.038735259,0.791058481,0.143797606,-0.039058488 +Right,0.757102489,0.57630378,-1.80E-07,0.708701015,0.534649432,-0.011112618,0.674553335,0.47658667,-0.022338107,0.650123477,0.429865181,-0.037060454,0.653019071,0.372732729,-0.050489657,0.72391057,0.352981269,0.009225722,0.703497112,0.291135967,-0.018722679,0.678696394,0.311747313,-0.045250341,0.662932754,0.349432588,-0.059096485,0.745637357,0.329616487,0.00172312,0.737460494,0.231317505,-0.017407518,0.71149689,0.185815766,-0.03384703,0.68483144,0.157223523,-0.042756323,0.770439029,0.329260528,-0.011418102,0.770617366,0.222965598,-0.025951287,0.75668788,0.153296977,-0.035227381,0.7420277,0.09938246,-0.039252661,0.791670799,0.348444253,-0.026783468,0.79930377,0.254761189,-0.035996497,0.796425164,0.187762767,-0.038420651,0.790729642,0.127479702,-0.038537983 +Right,0.77338469,0.596190989,-1.51E-07,0.721315324,0.564497113,-0.01397098,0.681117058,0.508911073,-0.026616063,0.652955532,0.460022569,-0.042387135,0.653702497,0.397585928,-0.056887817,0.721525252,0.377406567,0.005514028,0.697378695,0.31333828,-0.024680894,0.675177276,0.336972624,-0.051735096,0.663318157,0.377929032,-0.065627947,0.745593548,0.349571198,-0.001322858,0.731488705,0.25127244,-0.021269847,0.705458999,0.207221538,-0.037768859,0.680214286,0.177692801,-0.046834085,0.774157345,0.346159697,-0.014187931,0.768155158,0.237136319,-0.031238843,0.751781225,0.170648381,-0.041134596,0.735329449,0.117725104,-0.045252901,0.800738215,0.36394161,-0.029295804,0.803021908,0.268857092,-0.041114461,0.798489451,0.202222809,-0.04441407,0.792019367,0.141892642,-0.044804607 +Right,0.78619945,0.604125917,-1.10E-07,0.732039392,0.573263049,-0.013348119,0.688998044,0.521830499,-0.025109656,0.659556329,0.474552423,-0.039686576,0.661670804,0.411914468,-0.053128008,0.723704159,0.392362386,0.003570458,0.696881771,0.328077555,-0.026627075,0.677480042,0.354359776,-0.052832805,0.67028445,0.397366256,-0.066234522,0.750541747,0.360805511,-0.003483343,0.732498109,0.262825906,-0.02423574,0.707726896,0.21786961,-0.041065,0.683764338,0.187380806,-0.050540905,0.78219229,0.354082704,-0.016218496,0.773711801,0.245726228,-0.035092499,0.757837653,0.178351685,-0.045503888,0.741609156,0.122655004,-0.049749997,0.81214124,0.369575828,-0.030761398,0.813176632,0.274813682,-0.044258509,0.808748543,0.207764879,-0.047680631,0.801975787,0.145132601,-0.047994964 +Right,0.790832877,0.604052424,-6.30E-08,0.734802067,0.577855766,-0.012963261,0.692376673,0.52846235,-0.025180001,0.663940191,0.481730223,-0.040255081,0.667153835,0.421334863,-0.054295018,0.724072933,0.397019267,0.00258965,0.699689388,0.330240846,-0.028020356,0.68243438,0.357560158,-0.05452428,0.675688744,0.402235866,-0.067974061,0.751449406,0.365028828,-0.004777094,0.73385632,0.267841995,-0.024171952,0.711270273,0.222052053,-0.04070447,0.688684583,0.191474095,-0.050594393,0.783590019,0.357063144,-0.017790364,0.774493217,0.249412954,-0.036005616,0.761191845,0.18155995,-0.046541762,0.746542513,0.126020938,-0.051390551,0.814350069,0.371741295,-0.032502636,0.816272616,0.277340591,-0.045888331,0.813482642,0.211262017,-0.049181182,0.807882488,0.149103492,-0.04964561 +Right,0.768434882,0.597979009,-1.59E-07,0.721291661,0.55437386,-0.012744487,0.687763691,0.494045258,-0.025640167,0.661162674,0.451880783,-0.041525654,0.660044193,0.396295905,-0.05654816,0.737519443,0.363658458,0.001547295,0.714490831,0.3004421,-0.029684102,0.688082814,0.326984316,-0.058112603,0.671604037,0.370490193,-0.072971694,0.759023368,0.344286174,-0.005882774,0.749656558,0.24329333,-0.027661335,0.722720385,0.197929978,-0.044743478,0.694573641,0.168219194,-0.053847328,0.784174144,0.349994957,-0.018815489,0.784306765,0.241287708,-0.036108252,0.770375192,0.172605336,-0.045627724,0.754971683,0.115834802,-0.04947957,0.805055916,0.376845419,-0.033874802,0.814114451,0.283041,-0.045428604,0.812317133,0.21713382,-0.048099335,0.807600319,0.155415833,-0.048093069 +Right,0.763045907,0.62163949,-2.92E-07,0.720703244,0.560847938,-0.003769955,0.692565262,0.488096774,-0.013349247,0.66732645,0.445113659,-0.027736703,0.6671924,0.399389833,-0.041505851,0.751213968,0.375348747,0.008302478,0.729105771,0.308360338,-0.019405648,0.697609305,0.334214956,-0.046351939,0.675343752,0.373170465,-0.061665796,0.767270327,0.367536664,-0.003724778,0.756352365,0.263998806,-0.023353048,0.728224576,0.215467602,-0.040666129,0.701073647,0.180829629,-0.051239349,0.785223842,0.380505592,-0.02019258,0.783844769,0.269442499,-0.035180662,0.76994139,0.201207921,-0.045672983,0.75531882,0.14635852,-0.051900409,0.798259079,0.411095828,-0.038053244,0.804829836,0.322247803,-0.048177227,0.799691081,0.257798582,-0.051536717,0.79084754,0.197481364,-0.053370662 +Right,0.765486717,0.638710201,-3.03E-07,0.723436058,0.569420815,0.000222005,0.699103296,0.49602735,-0.007773786,0.676931977,0.453015596,-0.021221673,0.673937559,0.403220147,-0.033971336,0.759337366,0.39380157,0.010799419,0.738926172,0.32112059,-0.015874948,0.70751965,0.343629807,-0.041684382,0.683983028,0.379767478,-0.056049109,0.774291515,0.390380651,-0.002639486,0.763038278,0.284335673,-0.021595581,0.736390114,0.232587457,-0.037965506,0.709857047,0.194822237,-0.048089348,0.789642394,0.403675586,-0.020189621,0.78667891,0.293157905,-0.034485415,0.77195245,0.225625634,-0.043973953,0.756287634,0.172345579,-0.049606152,0.799993634,0.430070549,-0.038793281,0.803223789,0.342211187,-0.048677817,0.796287596,0.278512478,-0.05186078,0.786065936,0.219509095,-0.053448994 +Right,0.775260866,0.640469313,-3.22E-07,0.730001748,0.570045412,4.54E-05,0.705596268,0.497918665,-0.007962488,0.683393061,0.453031749,-0.022126528,0.684017897,0.402024209,-0.035011534,0.768657923,0.392848134,0.019550178,0.747582316,0.326604009,-0.007232272,0.718276262,0.343641222,-0.034085568,0.697075725,0.377085298,-0.048911396,0.785618067,0.390417606,0.00603556,0.769216835,0.288079828,-0.011682289,0.739976287,0.241763249,-0.028447352,0.712329865,0.211495668,-0.038595036,0.801548183,0.404880226,-0.012455848,0.791758418,0.299778014,-0.025708424,0.768423915,0.241622329,-0.033942118,0.746294081,0.198647931,-0.038210537,0.808565617,0.430679739,-0.032490652,0.802935064,0.34547627,-0.041586205,0.786860764,0.288950264,-0.044275727,0.769614458,0.238156557,-0.045042589 +Right,0.77172637,0.647798061,-3.45E-07,0.726494849,0.575679541,0.002366921,0.702790141,0.503423452,-0.005205522,0.68115747,0.456989735,-0.019878402,0.681236982,0.404844075,-0.033712219,0.764606833,0.397300303,0.021586027,0.741925538,0.331105649,-0.005915649,0.713489234,0.347571909,-0.033593345,0.692407966,0.382806242,-0.048812456,0.782133818,0.394956887,0.006249127,0.764054656,0.290576965,-0.011882152,0.734382629,0.245568112,-0.028994607,0.705432475,0.219686002,-0.039235778,0.798689008,0.409749955,-0.014022138,0.785123765,0.300807714,-0.027444964,0.759871364,0.247387767,-0.034907009,0.735651672,0.212147102,-0.038483161,0.80619061,0.435848951,-0.035770167,0.797803402,0.346794188,-0.04503997,0.778917074,0.292261004,-0.047139842,0.758656263,0.246686652,-0.047273617 +Right,0.772004783,0.650289297,-4.14E-07,0.726192892,0.575063348,0.009087889,0.704384446,0.497407496,0.005351597,0.684927166,0.449920058,-0.006537022,0.680278182,0.396254569,-0.018054361,0.767620385,0.397482544,0.0277374,0.743071079,0.329990119,0.002323549,0.715185821,0.341358602,-0.023909843,0.693535686,0.374266744,-0.038184691,0.783756793,0.394948065,0.009642067,0.759996176,0.287612379,-0.00759061,0.726718485,0.247640014,-0.024374813,0.695238292,0.232252419,-0.034075901,0.798695982,0.407189041,-0.012658681,0.781099677,0.29835397,-0.025446607,0.751039743,0.250329643,-0.032542706,0.723916113,0.223690122,-0.035656389,0.805625916,0.429913491,-0.035803195,0.793493986,0.342126459,-0.044773523,0.771520495,0.290735543,-0.046847772,0.748703063,0.251287013,-0.04679114 +Right,0.769636095,0.642599642,-4.08E-07,0.722904086,0.567337275,0.010447466,0.699171066,0.487943411,0.006729913,0.679149151,0.439841866,-0.005387745,0.675341547,0.38523975,-0.017258847,0.762027502,0.392884701,0.028039584,0.740096986,0.315575361,0.004054953,0.712661982,0.314855874,-0.02084478,0.688649297,0.340221763,-0.034394704,0.77713114,0.389454573,0.009768201,0.750277817,0.283813298,-0.00844938,0.715135574,0.249962404,-0.025464362,0.681452513,0.244131759,-0.034741007,0.791231871,0.398085147,-0.012374933,0.770830154,0.2892344,-0.024982523,0.739122987,0.24304527,-0.031878114,0.709739804,0.220973924,-0.034666888,0.798730791,0.416688442,-0.035188813,0.784904122,0.328179479,-0.043129731,0.762236834,0.278247207,-0.044825535,0.738265157,0.242348164,-0.044607144 +Right,0.763874888,0.598302484,-4.06E-07,0.719076693,0.530726075,0.005346903,0.696974754,0.445622385,0.002809268,0.680954814,0.393002898,-0.00750596,0.679460168,0.336420357,-0.017310578,0.754488587,0.34098798,0.029967936,0.735432386,0.271429688,0.007755281,0.708655655,0.276679993,-0.016722832,0.685946584,0.30567342,-0.03049312,0.772359252,0.336200595,0.013759413,0.755378723,0.236103103,-0.004311563,0.723308802,0.201055855,-0.02408533,0.691141903,0.192937836,-0.035216898,0.790514469,0.348554522,-0.006752763,0.778362513,0.244775757,-0.021217432,0.748361409,0.203915611,-0.031910766,0.719360292,0.183871329,-0.036614705,0.80401057,0.375076354,-0.028287295,0.794766366,0.284739733,-0.03811691,0.771016359,0.235135436,-0.042106748,0.745584846,0.200009838,-0.043291934 +Right,0.768280745,0.588806689,-4.00E-07,0.720461011,0.517830193,0.006080581,0.694850326,0.436280489,0.002684427,0.676810801,0.381227612,-0.008729744,0.678522527,0.322144389,-0.019699324,0.752889156,0.334812999,0.031813558,0.736123741,0.262161911,0.010772994,0.70993799,0.26288569,-0.013600085,0.685526133,0.285298944,-0.02829206,0.771364331,0.328166753,0.015307863,0.752485991,0.229011998,-0.002682677,0.720969617,0.198880449,-0.023863332,0.689768195,0.197137281,-0.036931451,0.790679276,0.337611437,-0.005384246,0.777725816,0.229065046,-0.019662904,0.74835968,0.19403103,-0.031511888,0.720072508,0.18392089,-0.037824571,0.807558835,0.361931086,-0.026986033,0.798681557,0.270094573,-0.037512898,0.775551677,0.219510898,-0.043354865,0.749727964,0.184934169,-0.046558961 +Right,0.773823917,0.579445422,-3.76E-07,0.725263178,0.51441294,0.00076,0.69795084,0.435899138,-0.004465898,0.678776503,0.381665766,-0.0165236,0.683733284,0.324598938,-0.027461929,0.754651904,0.328053623,0.028304042,0.737802029,0.254115582,0.005304378,0.711955667,0.25897646,-0.02048854,0.689266682,0.28649199,-0.035227597,0.774891555,0.319854707,0.01542913,0.759322166,0.224377275,-0.00233154,0.728434324,0.196370214,-0.022841286,0.697381616,0.199607924,-0.034669887,0.796453118,0.327223569,-0.002145745,0.787161171,0.224762514,-0.014850955,0.757761717,0.187042132,-0.025147662,0.728085577,0.177764639,-0.029602315,0.815156102,0.350315958,-0.021273376,0.805815518,0.259249806,-0.030014258,0.781013906,0.212212279,-0.033878494,0.753535569,0.186730847,-0.034622695 +Right,0.772210777,0.576359749,-3.57E-07,0.726407707,0.513469934,-0.00361481,0.698835552,0.436667025,-0.01164916,0.679727972,0.380963504,-0.02532861,0.683611572,0.321584731,-0.037563708,0.756520629,0.325248986,0.021828085,0.740332127,0.252572477,-0.003108293,0.713912666,0.260265529,-0.029269785,0.690887094,0.287485808,-0.044082254,0.77675283,0.316500962,0.011049114,0.761640191,0.223189861,-0.006470506,0.733158469,0.192757666,-0.024642326,0.704622209,0.18597883,-0.035488859,0.798471987,0.324739248,-0.004976006,0.789198279,0.224101618,-0.017349586,0.764288485,0.182181001,-0.025328465,0.73792541,0.161499754,-0.028992986,0.817937732,0.350198388,-0.023044094,0.81212461,0.262882054,-0.031524222,0.79233706,0.213557556,-0.034706037,0.7684744,0.177661076,-0.035415445 +Right,0.772782385,0.593035579,-3.59E-07,0.724938989,0.530222297,-0.001493858,0.696472108,0.448453188,-0.008145392,0.677031279,0.391404539,-0.0208578,0.681874633,0.333015382,-0.032358557,0.754071534,0.340458483,0.023626827,0.737388909,0.267824203,-0.000824754,0.711437047,0.271351278,-0.026894338,0.688085258,0.296778262,-0.041669227,0.774380445,0.332047462,0.011811437,0.758668303,0.237507358,-0.005484103,0.729837418,0.204326659,-0.023802401,0.700119913,0.19666335,-0.034694705,0.795801044,0.340987414,-0.005028451,0.785597861,0.238756195,-0.017420882,0.75981766,0.196683496,-0.025496647,0.732737243,0.177136779,-0.029084614,0.814392507,0.366043836,-0.02369906,0.80792135,0.276120961,-0.03229126,0.787109494,0.225757614,-0.035476372,0.762512863,0.190165788,-0.036143437 +Right,0.773307681,0.598530412,-3.48E-07,0.724777043,0.536073387,-0.002353773,0.696219802,0.455622345,-0.009592715,0.676303983,0.400204092,-0.022744058,0.681022048,0.342543423,-0.034648232,0.754360259,0.344279289,0.023470512,0.737700284,0.272372246,-0.001323821,0.711763561,0.276668727,-0.028239325,0.687378347,0.301190078,-0.043979667,0.775103509,0.336785108,0.011627854,0.759099901,0.243808731,-0.006598863,0.730634272,0.211564854,-0.026880613,0.700830579,0.203290731,-0.039481748,0.797194839,0.346891314,-0.005302181,0.788304269,0.24569726,-0.01870928,0.762346089,0.20319514,-0.029001895,0.734244823,0.183319867,-0.034328777,0.816398203,0.374340713,-0.024049494,0.810567021,0.286331475,-0.033576451,0.789869905,0.236827269,-0.038191766,0.764615417,0.202459529,-0.040137805 +Right,0.770178258,0.596038818,-3.37E-07,0.724233747,0.541478932,-0.007877859,0.692222178,0.463489175,-0.017351035,0.669160664,0.408274323,-0.031490028,0.675262511,0.351891696,-0.043829538,0.748640716,0.34622854,0.015941257,0.729677677,0.27461797,-0.012883857,0.702651322,0.286398947,-0.041474268,0.681649208,0.319294512,-0.056832951,0.769954622,0.333951861,0.007964728,0.756735444,0.2414193,-0.01073148,0.728466213,0.207952619,-0.027657466,0.699593306,0.198147967,-0.036928516,0.793929517,0.341052681,-0.00575007,0.785588801,0.242403537,-0.018864444,0.761223614,0.20160988,-0.024922566,0.734962583,0.183012217,-0.026200743,0.815199554,0.366830409,-0.021950983,0.811499834,0.279283464,-0.030248135,0.792237878,0.230359644,-0.032011531,0.768502712,0.196307421,-0.030827599 +Right,0.744792581,0.643099606,-2.91E-07,0.70304513,0.585074723,-0.010167,0.67151612,0.510301709,-0.021990117,0.646217406,0.454146802,-0.03794609,0.652821779,0.394430876,-0.05222052,0.726102829,0.401051491,0.009714076,0.706644952,0.328150094,-0.020144289,0.679772437,0.343575627,-0.047862101,0.661629677,0.38533026,-0.061844174,0.745818138,0.391222179,0.003408138,0.738029242,0.293150246,-0.015081978,0.714040756,0.255220801,-0.029190155,0.68898803,0.240750641,-0.035858978,0.768011987,0.40057385,-0.008592498,0.763097405,0.298015147,-0.020904731,0.742740393,0.251583397,-0.024367951,0.719738126,0.227468237,-0.023669776,0.785069406,0.427557915,-0.02322779,0.785743237,0.34000352,-0.031073174,0.772163212,0.285438806,-0.031585421,0.75457418,0.242985815,-0.029194858 +Right,0.749157727,0.6757043,-2.26E-07,0.703664839,0.626241326,-0.011430237,0.670288146,0.553380966,-0.022843532,0.645243526,0.50247401,-0.037558757,0.651382387,0.445707083,-0.050826974,0.721887708,0.439538836,0.006729054,0.700159013,0.370516181,-0.022287261,0.672139585,0.394162893,-0.048701394,0.655649662,0.433641225,-0.062615909,0.743356645,0.42527318,-0.000527524,0.733285904,0.326059848,-0.021477167,0.705297351,0.286230147,-0.037347723,0.677952766,0.263916552,-0.045144051,0.767680585,0.433112681,-0.013373103,0.765556335,0.327314943,-0.029293519,0.749010921,0.263427347,-0.036971964,0.731773436,0.212738842,-0.039439008,0.788131297,0.460134357,-0.028426265,0.794282436,0.369328618,-0.039230969,0.789630234,0.305904627,-0.041755438,0.781826913,0.246719822,-0.041560214 +Right,0.75633055,0.727521062,-2.20E-07,0.711634278,0.679580808,-0.012892965,0.674444199,0.6086725,-0.02563384,0.644940972,0.563682735,-0.040944774,0.649421573,0.511291385,-0.055199053,0.720445096,0.486855775,-0.001326908,0.699109316,0.415030658,-0.032949883,0.671485603,0.444057763,-0.060956519,0.654216945,0.487610042,-0.076140039,0.742849886,0.475680619,-0.00844977,0.729560256,0.372140974,-0.029353183,0.703155994,0.326220512,-0.046317954,0.678677261,0.290864885,-0.056763396,0.769480586,0.488232851,-0.020850623,0.767691731,0.379796624,-0.037734862,0.752958536,0.316149831,-0.047878087,0.737431884,0.260907799,-0.053455207,0.792536438,0.521735013,-0.035214823,0.798109889,0.432372212,-0.047539271,0.793732524,0.370270967,-0.05155671,0.786773503,0.310352236,-0.053275775 +Right,0.764528573,0.724668443,-1.85E-07,0.718854904,0.676336169,-0.011816584,0.68210125,0.605554461,-0.024054997,0.653109014,0.560162604,-0.038937144,0.658230782,0.509238183,-0.052594785,0.730657816,0.481945753,0.00085027,0.70855695,0.412783176,-0.02937248,0.681482911,0.44177258,-0.056254134,0.665459573,0.48376441,-0.070909105,0.753299177,0.470014095,-0.006843287,0.738243222,0.369934112,-0.026175493,0.713148713,0.322894692,-0.042304721,0.690115333,0.286382556,-0.052466024,0.77990073,0.48436439,-0.019918015,0.778945029,0.38142252,-0.036939964,0.766821504,0.317150533,-0.047354702,0.753632724,0.25915283,-0.05304746,0.802466035,0.519621909,-0.03474085,0.810419619,0.432227969,-0.047033455,0.80853194,0.372814178,-0.050950501,0.803141236,0.314017713,-0.052737385 +Right,0.765212953,0.724405587,-1.77E-07,0.718689919,0.676562309,-0.012053411,0.681209564,0.605542183,-0.024420038,0.652717769,0.559471369,-0.039368398,0.658000529,0.507544696,-0.053092536,0.72894907,0.48001793,-6.72E-05,0.706902802,0.410825908,-0.030610476,0.681195319,0.439897776,-0.057254169,0.665914536,0.482175946,-0.07155703,0.753141046,0.467799485,-0.007894672,0.738580406,0.367094874,-0.02736837,0.714054763,0.31868574,-0.043466866,0.690852344,0.281050652,-0.053574335,0.780704916,0.481655449,-0.0210752,0.778707027,0.377485901,-0.038392209,0.766178966,0.313436627,-0.048532423,0.752665281,0.255216956,-0.053922441,0.804174006,0.516872883,-0.036007818,0.810593486,0.428097308,-0.048660673,0.808988631,0.368218124,-0.052335259,0.804445684,0.308823466,-0.053744927 +Right,0.773320019,0.712130785,-1.10E-07,0.72431612,0.667833745,-0.013434807,0.684865475,0.604515493,-0.026772875,0.656442881,0.556556284,-0.042685732,0.658140361,0.500145555,-0.057433952,0.725815654,0.475692272,-0.002786344,0.702339411,0.404002309,-0.033827964,0.678055942,0.435054034,-0.059791546,0.665293396,0.479141414,-0.07311973,0.752779424,0.45717451,-0.010136066,0.739203036,0.354634017,-0.030319428,0.716445506,0.303894579,-0.046062641,0.694322109,0.263604641,-0.055588361,0.782998443,0.465432048,-0.022776062,0.781290233,0.355259687,-0.041154649,0.769257307,0.286679208,-0.050970398,0.756347775,0.227078944,-0.055520684,0.809897363,0.495334595,-0.037146695,0.816931844,0.400131881,-0.050367545,0.816652656,0.333004951,-0.053664032,0.813944101,0.268641442,-0.054310612 +Right,0.772373855,0.698801994,-9.17E-08,0.721109748,0.657051146,-0.014097295,0.680167139,0.594265103,-0.027031366,0.652577758,0.542072713,-0.042301744,0.655486941,0.479837298,-0.056148067,0.720653117,0.462021858,-0.000992752,0.697590947,0.390844971,-0.031355973,0.674854517,0.417281985,-0.05683716,0.663649619,0.460720599,-0.069692113,0.748568833,0.439644903,-0.007586194,0.733866572,0.339240164,-0.026272511,0.711867392,0.287008941,-0.041283142,0.690805614,0.246798158,-0.050551806,0.77989006,0.444048941,-0.019739065,0.776531339,0.33561039,-0.037524253,0.763716757,0.266827255,-0.04691926,0.75023669,0.208186537,-0.051175728,0.808306217,0.471085846,-0.033738833,0.814328134,0.374973506,-0.046936974,0.81368196,0.307895124,-0.050116729,0.810654163,0.244494334,-0.050507013 +Right,0.764010549,0.679048657,-1.30E-07,0.715669394,0.628851354,-0.010008883,0.680450082,0.556994796,-0.020768747,0.653811812,0.50492686,-0.03458558,0.659038484,0.449179113,-0.047685441,0.730824411,0.44020918,0.001962566,0.7067343,0.370138317,-0.027925925,0.678756177,0.397001714,-0.054577358,0.662642598,0.439866364,-0.068488494,0.755492568,0.422719091,-0.005990523,0.74324882,0.318248868,-0.024755219,0.718452334,0.26329875,-0.040647063,0.693971157,0.221605033,-0.05041603,0.783283353,0.431566328,-0.018890502,0.78188175,0.31931603,-0.035579484,0.768538356,0.247505397,-0.045450609,0.754033864,0.187463164,-0.050228626,0.806969404,0.461602032,-0.033301745,0.815740824,0.366648972,-0.045308348,0.814174175,0.297830582,-0.048309729,0.809434056,0.232665896,-0.04887756 +Right,0.761105537,0.653045177,-1.95E-07,0.715340614,0.596218526,-0.010369494,0.68301028,0.523697019,-0.022288134,0.656921029,0.475800425,-0.037669148,0.66277355,0.421442688,-0.051742349,0.745549679,0.410925984,0.005100265,0.723380804,0.340121686,-0.023998797,0.69257009,0.36393553,-0.05066688,0.67255342,0.402834564,-0.064888582,0.765966535,0.399111837,-0.003118529,0.7542153,0.295268118,-0.021276867,0.727688074,0.241791412,-0.0364189,0.702948272,0.201047778,-0.045613579,0.788451612,0.411282301,-0.016814522,0.789135933,0.301555723,-0.032014918,0.776099265,0.231029823,-0.040400375,0.762948215,0.170769721,-0.044651419,0.805179954,0.442156106,-0.032482974,0.815262914,0.352290511,-0.042892423,0.814972639,0.287981361,-0.045143332,0.811839163,0.225273103,-0.045679495 +Right,0.759491682,0.635380626,-2.31E-07,0.717514575,0.571990013,-0.007024999,0.689292908,0.499200195,-0.017765695,0.66390574,0.453697264,-0.032553844,0.667552233,0.401568502,-0.046241686,0.750217617,0.388300747,0.007107942,0.728301942,0.320233107,-0.022085171,0.696548223,0.34302631,-0.049537465,0.675809443,0.381666571,-0.064438798,0.767187059,0.380343437,-0.00274073,0.758596241,0.274653345,-0.022026772,0.73229146,0.223508492,-0.037727863,0.707503796,0.18584311,-0.046867486,0.786853135,0.395196259,-0.017672056,0.789857626,0.283611298,-0.033057716,0.778512955,0.211780772,-0.041764289,0.766578078,0.151552916,-0.046172157,0.800979972,0.427855164,-0.034310732,0.813351214,0.338926345,-0.04506379,0.81222409,0.272771418,-0.047670532,0.807568192,0.208301991,-0.048376385 +Right,0.763456166,0.622671843,-2.60E-07,0.722811401,0.554755509,-0.003538246,0.698311329,0.48106727,-0.013145885,0.675019264,0.434483558,-0.027523804,0.678388894,0.38400045,-0.041114625,0.762012243,0.379860431,0.009051797,0.738225102,0.309181392,-0.019361403,0.706911325,0.328952789,-0.04695962,0.685921848,0.365345985,-0.062459651,0.776941538,0.3734999,-0.003025846,0.768401861,0.263722301,-0.023310715,0.74143362,0.212203771,-0.041175574,0.71598345,0.174654335,-0.051812001,0.793631315,0.388107061,-0.019607186,0.796179295,0.272891819,-0.035950705,0.783126891,0.200639993,-0.047405854,0.770286441,0.140045047,-0.053864047,0.804096758,0.418746531,-0.037358291,0.816770375,0.331360757,-0.048411664,0.814561546,0.266396463,-0.052186642,0.80900836,0.203093112,-0.054096542 +Right,0.770807922,0.617922068,-2.55E-07,0.729162037,0.54305011,-0.002068281,0.709074557,0.469331026,-0.011528083,0.689648092,0.422173738,-0.02615747,0.68892616,0.369562268,-0.040091604,0.775747538,0.37466982,0.010594346,0.751262307,0.301731259,-0.017352117,0.719947875,0.319541991,-0.044678681,0.698787689,0.353679806,-0.059857674,0.79000324,0.371657789,-0.002207251,0.780799508,0.259957671,-0.022971047,0.753904581,0.204217449,-0.041492142,0.728307724,0.163185284,-0.052623279,0.804317951,0.387161702,-0.019358201,0.805270791,0.272189081,-0.035469875,0.790927291,0.200098425,-0.047142059,0.776804864,0.141930819,-0.053784017,0.811363041,0.414876819,-0.037608508,0.821565747,0.328322053,-0.048000623,0.818480372,0.263603985,-0.052012201,0.8124125,0.202272534,-0.054178547 +Right,0.772607982,0.60745728,-2.73E-07,0.731208801,0.53091675,-7.04E-05,0.714197934,0.455125749,-0.00777692,0.69663322,0.408242196,-0.021019414,0.696006835,0.356560588,-0.033513453,0.781901002,0.363504946,0.013751084,0.758050442,0.290701419,-0.012878132,0.727651358,0.310529947,-0.03896597,0.708189547,0.346647799,-0.05334885,0.796074033,0.362792879,0.000135401,0.78643322,0.252704889,-0.02039591,0.760051787,0.196809307,-0.038716875,0.735113502,0.155464962,-0.049461126,0.809078097,0.379524499,-0.017798414,0.807992101,0.26505062,-0.034409281,0.791962981,0.191513419,-0.047123034,0.776933312,0.131623089,-0.054265827,0.814195514,0.406891733,-0.036564231,0.823279083,0.320967615,-0.047629882,0.819847822,0.256845832,-0.052672781,0.813384652,0.196181506,-0.055526238 +Right,0.775389731,0.604859889,-2.74E-07,0.734514236,0.523505926,0.003727613,0.718167424,0.448338181,-0.003468047,0.700647652,0.402204514,-0.017384442,0.700987577,0.349418789,-0.030681228,0.786264539,0.360224843,0.017492209,0.764206469,0.283574581,-0.007337877,0.732899904,0.301861495,-0.032127686,0.712593734,0.337229013,-0.045847002,0.800470293,0.360934108,0.001794582,0.788223803,0.250738442,-0.017006934,0.762360811,0.193726555,-0.034383737,0.737938404,0.152166769,-0.044954233,0.812539518,0.377948284,-0.017941734,0.809158862,0.260310531,-0.032581605,0.792075515,0.18716605,-0.043573651,0.775768876,0.129692614,-0.050100211,0.815837502,0.403876692,-0.038356427,0.82394588,0.315284103,-0.048057083,0.820166171,0.250166774,-0.052055396,0.812862158,0.190314427,-0.054416198 +Right,0.770671368,0.604086757,-2.94E-07,0.729571164,0.523775339,0.003740946,0.713586926,0.447973788,-0.001859088,0.696843088,0.399850875,-0.013797039,0.692850709,0.346017629,-0.025164459,0.780355811,0.356568396,0.017981775,0.757849813,0.281028092,-0.005338313,0.724829972,0.297945321,-0.028763423,0.70323813,0.332443863,-0.041730441,0.794680536,0.35525471,0.002843376,0.782767951,0.244589418,-0.013119108,0.758025229,0.185479894,-0.028545322,0.735823035,0.140121117,-0.038524076,0.806157231,0.370701045,-0.016437678,0.803481936,0.255593896,-0.029515639,0.789450109,0.180028722,-0.039888885,0.777536273,0.118754655,-0.046624139,0.809570909,0.394698232,-0.036455426,0.815864801,0.306342423,-0.046374101,0.812093675,0.240566418,-0.050644286,0.806877315,0.179214373,-0.053358354 +Right,0.762450099,0.606356382,-2.94E-07,0.721639335,0.53598094,-0.001133028,0.703159571,0.458859056,-0.008596959,0.685199738,0.409998477,-0.021451494,0.680929601,0.358721137,-0.033615705,0.767295122,0.361924559,0.011938512,0.746595263,0.285902083,-0.01371529,0.71544832,0.303668171,-0.038232576,0.694424152,0.337170064,-0.0513689,0.782217026,0.359012663,-0.001142519,0.775439203,0.2481419,-0.021114446,0.749737024,0.190346286,-0.037666101,0.724451184,0.147654027,-0.046882201,0.79618293,0.37391451,-0.018602043,0.799718022,0.258096755,-0.034506734,0.788310349,0.18356736,-0.045774803,0.775657415,0.123250663,-0.05184263,0.80325526,0.400141567,-0.037090745,0.814489841,0.311793208,-0.047880027,0.812621653,0.246600613,-0.052257311,0.80663234,0.185796171,-0.054464053 +Right,0.760434449,0.608285308,-2.62E-07,0.719972014,0.543795109,-0.003844953,0.695999622,0.469462752,-0.012776472,0.673828661,0.422424376,-0.026356358,0.674752891,0.371452868,-0.039387431,0.757935345,0.363097399,0.009348857,0.734997988,0.298664838,-0.017975023,0.702955425,0.317998677,-0.044663344,0.681631804,0.352076381,-0.059649695,0.774437726,0.355517149,-0.002581564,0.767714858,0.249554962,-0.020837495,0.742177844,0.194462731,-0.037138656,0.717601717,0.152596503,-0.047443528,0.791707695,0.370390266,-0.019237524,0.796948135,0.260541201,-0.034559898,0.787093103,0.187565625,-0.045611925,0.776571691,0.126194656,-0.052365657,0.801849544,0.401286691,-0.037188362,0.814492166,0.314913303,-0.048240144,0.813673913,0.250041306,-0.052378245,0.809307992,0.186687753,-0.054855075 +Right,0.758462429,0.606291592,-2.47E-07,0.717862248,0.546070695,-0.006423432,0.691309094,0.474916101,-0.016859243,0.667456448,0.429950237,-0.031207578,0.668689311,0.379188836,-0.044931795,0.752851665,0.364628434,0.00544263,0.729722679,0.299523354,-0.022651309,0.698192477,0.319693089,-0.049708743,0.677193105,0.353820711,-0.065025575,0.770436168,0.355235577,-0.005229595,0.762587488,0.250240684,-0.024812194,0.736438692,0.196819961,-0.042137649,0.710631728,0.15622218,-0.053120106,0.789359093,0.369936675,-0.020495288,0.793968856,0.26167205,-0.036162421,0.784085751,0.189010799,-0.047337465,0.772689402,0.127058268,-0.054248735,0.802256048,0.402420431,-0.03722227,0.814100087,0.315508425,-0.04832625,0.812887728,0.249402225,-0.052469689,0.807811081,0.184152991,-0.055036142 +Right,0.758075237,0.616845012,-2.33E-07,0.713606596,0.560942411,-0.009804828,0.682887256,0.490924239,-0.021397725,0.657465637,0.445516199,-0.036635656,0.662229776,0.393880904,-0.050799999,0.742072403,0.374263257,0.005793985,0.720397532,0.31164521,-0.023798551,0.689699709,0.335418463,-0.051853396,0.669523716,0.3729918,-0.067344911,0.761302531,0.36299032,-0.003193999,0.752162516,0.260250717,-0.023353359,0.72510159,0.209409833,-0.040576741,0.698580742,0.17145893,-0.050863542,0.783473492,0.375434369,-0.017521484,0.785350621,0.264800131,-0.033607703,0.772107363,0.194407657,-0.043803215,0.757606268,0.135315835,-0.049210433,0.800123394,0.40692395,-0.033792831,0.812218964,0.316132903,-0.044920381,0.81095922,0.250029713,-0.048480123,0.805384636,0.186941877,-0.050007872 +Right,0.764405668,0.642998397,-1.81E-07,0.716991901,0.594243884,-0.013798462,0.68254602,0.524307549,-0.026717378,0.655468702,0.473678946,-0.042560056,0.662101984,0.41796127,-0.057045314,0.736544847,0.403166324,0.002408328,0.716936111,0.333617806,-0.029129053,0.69054687,0.354317486,-0.057316214,0.672517538,0.392237633,-0.072161295,0.760924995,0.386536121,-0.004535513,0.752166629,0.283862174,-0.025354711,0.727054536,0.231945887,-0.042245883,0.700499892,0.194762036,-0.051872391,0.787988007,0.395431191,-0.017289426,0.789056778,0.287132412,-0.034498356,0.775826573,0.217563465,-0.044134393,0.760585845,0.159553409,-0.048374146,0.809645474,0.424954683,-0.032279532,0.82090199,0.332890779,-0.044038966,0.821582556,0.266553581,-0.047487326,0.8188169,0.203788742,-0.04822883 +Right,0.764886618,0.642046094,-1.55E-07,0.715794504,0.594071269,-0.013873867,0.678938031,0.526629806,-0.026274379,0.652147114,0.474767923,-0.041490652,0.659152269,0.4157314,-0.055263381,0.733053327,0.407065004,0.00341917,0.712505519,0.336372793,-0.027340917,0.687058985,0.35605517,-0.054685079,0.670752883,0.394474715,-0.068881236,0.757686853,0.387709111,-0.003011843,0.745927751,0.287345439,-0.022272149,0.722429454,0.233710557,-0.038588013,0.698307753,0.194750637,-0.048332889,0.785864055,0.3935619,-0.015348548,0.784639597,0.286304563,-0.032382175,0.772395611,0.215808153,-0.042199854,0.75822866,0.157604307,-0.046671938,0.809898615,0.420034945,-0.029841634,0.819490552,0.327779353,-0.042011056,0.819440365,0.261583656,-0.045556042,0.815793455,0.198686481,-0.04636354 +Right,0.761134923,0.629643142,-2.24E-07,0.717274606,0.571127057,-0.009672776,0.687401533,0.498871654,-0.021294076,0.662568688,0.452119559,-0.036474448,0.666127384,0.399187803,-0.050419021,0.749991596,0.384295613,0.005730782,0.728541315,0.316787004,-0.023021314,0.696930766,0.338927478,-0.050165024,0.675871015,0.376190633,-0.065039076,0.769237697,0.375068069,-0.003213502,0.760028124,0.271354347,-0.022409439,0.733014643,0.220053151,-0.038724285,0.707110584,0.18175514,-0.048429411,0.790368736,0.388766944,-0.017458247,0.792804301,0.277469218,-0.032721661,0.779899001,0.205350995,-0.042229529,0.766457796,0.144284099,-0.047427401,0.805722237,0.420693189,-0.033642709,0.819007635,0.331629574,-0.044093307,0.819452167,0.266660631,-0.047118537,0.816009998,0.203763217,-0.048413374 +Right,0.759341061,0.622710705,-2.38E-07,0.719279587,0.555899739,-0.006030246,0.693860292,0.483157694,-0.017115673,0.670751929,0.437497228,-0.032343324,0.671969235,0.383684039,-0.046626817,0.758388519,0.375323236,0.005693408,0.735080659,0.30722782,-0.023301795,0.703056514,0.327544898,-0.051083546,0.681547225,0.363070011,-0.066634737,0.774286747,0.369359553,-0.00541685,0.766423225,0.262469172,-0.025879445,0.739667714,0.209785774,-0.043456946,0.714372337,0.170316473,-0.054069862,0.79163897,0.386114717,-0.021217577,0.794813395,0.273023009,-0.037589226,0.782805145,0.200497761,-0.048733357,0.77068758,0.138859272,-0.055214953,0.802996218,0.419668853,-0.038437288,0.816578448,0.333157629,-0.049855486,0.815853596,0.267797709,-0.053902384,0.811649561,0.203437939,-0.056063861 +Right,0.765677035,0.615238011,-2.50E-07,0.724464357,0.545659065,-0.004247591,0.702897906,0.471267283,-0.014409319,0.681590557,0.423892081,-0.029319968,0.679997087,0.370625675,-0.043528546,0.767156243,0.368413001,0.008611184,0.743196249,0.295755893,-0.019077498,0.712435305,0.316618711,-0.045668382,0.692423284,0.35356757,-0.060508534,0.783620894,0.363641679,-0.003375367,0.775452316,0.254981279,-0.024971189,0.748148739,0.200788662,-0.043708641,0.722058535,0.160477534,-0.054707419,0.799219191,0.378978908,-0.01987594,0.801193774,0.267389834,-0.037326485,0.786708415,0.194573015,-0.050184008,0.772619128,0.13351208,-0.057507209,0.807116926,0.408665717,-0.037485134,0.818415403,0.323424369,-0.049089838,0.816736042,0.259420216,-0.054069147,0.812324047,0.197139353,-0.056948632 +Right,0.77126503,0.609862447,-2.60E-07,0.730511725,0.531484425,2.88E-05,0.712675393,0.456824929,-0.008568508,0.693911791,0.410303503,-0.023091966,0.692307651,0.356334597,-0.037112784,0.776874363,0.364013702,0.013153244,0.753720224,0.289033055,-0.013910023,0.722925365,0.306400597,-0.04053504,0.702343404,0.340881258,-0.05513582,0.791753531,0.363950402,-0.000856461,0.782443523,0.252236158,-0.02092859,0.756740272,0.194970071,-0.039287947,0.731746733,0.152359322,-0.050317369,0.805831075,0.380651146,-0.019154748,0.804761708,0.264739275,-0.034486588,0.789711416,0.191452131,-0.046245873,0.774683774,0.133102894,-0.05314542,0.811745703,0.407709748,-0.038447276,0.819662452,0.320239514,-0.048363484,0.815277398,0.255626976,-0.052327309,0.807645023,0.196609825,-0.054537434 +Right,0.778464139,0.607649803,-3.36E-07,0.736599028,0.519739687,0.009098805,0.723829031,0.445189059,0.004528678,0.707967341,0.40002954,-0.007249373,0.701472938,0.345546246,-0.018852334,0.79467392,0.356461704,0.021070709,0.77100265,0.281224728,-0.002818505,0.737404406,0.296283782,-0.027498128,0.714013875,0.330772817,-0.04133831,0.808673501,0.361090124,0.003064184,0.791883707,0.249415591,-0.012180923,0.76472199,0.191340715,-0.028085446,0.740316093,0.150444195,-0.039187863,0.81792444,0.381597877,-0.018645532,0.811141431,0.262582898,-0.030201556,0.793433487,0.190766111,-0.039616834,0.77885592,0.135330021,-0.046630342,0.816911817,0.408352852,-0.040737219,0.819922507,0.320059657,-0.050206803,0.814432442,0.2547324,-0.054457452,0.80810082,0.193632424,-0.057591364 +Right,0.793134332,0.612938344,-4.59E-07,0.748598397,0.509328723,0.020243103,0.740499139,0.436145544,0.018002346,0.725143552,0.387911439,0.007767719,0.713356853,0.329882592,-0.002982771,0.823788166,0.351025105,0.022007337,0.783108354,0.274005175,0.002253314,0.749912322,0.289279252,-0.018260278,0.725771129,0.326815367,-0.02960073,0.836196065,0.363910526,-0.000517843,0.800130844,0.23917979,-0.011819803,0.767792106,0.180748701,-0.024379417,0.73851043,0.144731984,-0.035227291,0.83510673,0.388927937,-0.024878819,0.818011284,0.252960563,-0.033299908,0.796277583,0.180512518,-0.039838437,0.779790521,0.128928006,-0.047212958,0.818358362,0.410182446,-0.048166245,0.815266609,0.316596448,-0.058252025,0.808139741,0.249661535,-0.063377596,0.802206576,0.186258078,-0.068368241 +Right,0.790146768,0.607716799,-4.13E-07,0.746541083,0.505720496,0.015788488,0.738564491,0.433464527,0.011043829,0.723836243,0.384308517,-0.001587455,0.712937832,0.325521767,-0.01440774,0.822364569,0.345001757,0.022315558,0.783184409,0.270233154,0.001773828,0.751683176,0.285703719,-0.020139843,0.73037219,0.323563278,-0.032089911,0.834929228,0.354647517,0.001759209,0.801212013,0.234703392,-0.00949249,0.770492136,0.177601263,-0.022004711,0.742732167,0.141362771,-0.032076772,0.83575958,0.377620429,-0.021353375,0.819679856,0.24553892,-0.028862951,0.799035013,0.173796311,-0.03433603,0.782305419,0.121524066,-0.040390149,0.821104765,0.400721163,-0.044202942,0.820548475,0.310420334,-0.050987244,0.814100921,0.244473547,-0.053597383,0.807020366,0.181698844,-0.056678656 +Right,0.771668494,0.59934783,-2.84E-07,0.73212862,0.524829984,-0.0025348,0.714098096,0.451248914,-0.012268097,0.69495517,0.403978229,-0.027269177,0.695775151,0.352682173,-0.041442111,0.78147608,0.353507012,0.010671018,0.760675013,0.27804336,-0.016733725,0.729027152,0.296633422,-0.043456409,0.706589758,0.332857311,-0.057975765,0.795780718,0.352037609,-0.001446904,0.788666427,0.244045466,-0.02107822,0.763394535,0.187346399,-0.038410895,0.73764503,0.1464843,-0.048730649,0.809649646,0.369255632,-0.018040856,0.812225103,0.254574448,-0.032471344,0.800423145,0.182971194,-0.042667311,0.786797106,0.126615375,-0.04853113,0.815651,0.397543848,-0.035960834,0.826002002,0.311428905,-0.045053259,0.824257433,0.247825533,-0.04823938,0.818636775,0.187784731,-0.049786791 +Right,0.767494917,0.606653929,-2.65E-07,0.726567686,0.538894296,-0.005417486,0.703706324,0.464408159,-0.015814619,0.682351053,0.416381717,-0.030826785,0.685311079,0.366851628,-0.045169543,0.769271135,0.360575855,0.008672643,0.747818112,0.292124093,-0.019088197,0.71647948,0.310365975,-0.046057794,0.69504267,0.345848233,-0.061076175,0.78657192,0.354083061,-0.002758587,0.780792415,0.2467895,-0.022586055,0.755092382,0.191545069,-0.04033177,0.729536831,0.151659697,-0.051113542,0.80406785,0.369094968,-0.019004678,0.809508562,0.257705092,-0.034929071,0.797898531,0.18360056,-0.047018617,0.784804285,0.123284876,-0.054175023,0.813982248,0.399636328,-0.036672823,0.827257454,0.313196361,-0.04749253,0.82632941,0.247621536,-0.052192613,0.821077228,0.184999213,-0.055019237 +Right,0.764254272,0.614664495,-2.34E-07,0.721770465,0.560102642,-0.013517537,0.691787779,0.486124814,-0.027001586,0.666493773,0.433582306,-0.043651078,0.674836397,0.38303557,-0.05905034,0.752121031,0.369508058,0.003408972,0.732346416,0.301719129,-0.027182557,0.701867878,0.322349995,-0.055550631,0.681975901,0.358997494,-0.071140252,0.773773313,0.357559651,-0.003983031,0.767071545,0.253447115,-0.026066294,0.740803361,0.201748326,-0.044261776,0.714214683,0.16582261,-0.054782342,0.796924651,0.369561553,-0.017012376,0.801929832,0.261805862,-0.034209814,0.790212512,0.191310421,-0.044735506,0.776157498,0.13307032,-0.050050814,0.814174533,0.400617123,-0.032313496,0.82769835,0.311371297,-0.043809127,0.827623725,0.245626286,-0.047850333,0.822537124,0.182755306,-0.049618173 +Right,0.765729129,0.623177111,-2.39E-07,0.720414519,0.570595503,-0.011577493,0.689850748,0.496118963,-0.023722928,0.665127337,0.445262492,-0.039399616,0.669007301,0.391898125,-0.054048032,0.746256351,0.374609411,0.005651232,0.727111876,0.300681591,-0.024842581,0.697576284,0.319343179,-0.053357847,0.678097844,0.357252568,-0.068705104,0.77030462,0.361744493,-0.002832009,0.767003,0.256802022,-0.027018299,0.739105463,0.215556383,-0.045932762,0.710260272,0.199131325,-0.054886334,0.795216858,0.373989642,-0.016701924,0.801896155,0.265721023,-0.033821937,0.787748039,0.199450254,-0.043164246,0.771765113,0.149854064,-0.046477892,0.814871848,0.407631695,-0.032809418,0.828384757,0.318595946,-0.04426964,0.828797698,0.251827747,-0.047706585,0.825897992,0.189516142,-0.047999933 +Right,0.76815325,0.621365905,-3.42E-07,0.729661942,0.543969572,0.000758123,0.711925626,0.465099812,-0.005438497,0.693319082,0.412619919,-0.017391609,0.69341892,0.361465454,-0.028681803,0.775851965,0.365942836,0.014072295,0.757138789,0.289196491,-0.01255457,0.725115657,0.308457494,-0.037661821,0.702285051,0.35119462,-0.05077415,0.794042587,0.364459753,0.001030547,0.794017971,0.255829871,-0.019658856,0.76303798,0.218527049,-0.035434097,0.730876744,0.208631516,-0.04317965,0.808874428,0.381880701,-0.016314615,0.819205284,0.274245203,-0.032265831,0.796303988,0.218577579,-0.041571621,0.770435154,0.189542621,-0.045236163,0.814073563,0.414342463,-0.034685094,0.831249952,0.330418497,-0.046923507,0.823387444,0.268437028,-0.052369058,0.808065832,0.219188496,-0.054331567 +Right,0.775419831,0.60352838,-3.80E-07,0.735049069,0.522028208,0.000644266,0.718420565,0.447315931,-0.006815765,0.700870693,0.400810808,-0.020522663,0.701093078,0.350551844,-0.033083029,0.784248531,0.350961357,0.014307909,0.76556462,0.277861029,-0.017041158,0.731554329,0.29359138,-0.044518676,0.707729101,0.334844887,-0.057946734,0.802264929,0.352488399,0.000496812,0.801707029,0.241067931,-0.025115071,0.766934276,0.203621969,-0.041609526,0.732082069,0.195152327,-0.047554374,0.816666186,0.370206177,-0.018108649,0.827878594,0.258252263,-0.037379265,0.800753713,0.205718964,-0.045012567,0.773120522,0.179349273,-0.045362916,0.819392323,0.399267852,-0.037896916,0.832974315,0.315591574,-0.051946566,0.822409391,0.254441202,-0.057122804,0.807547092,0.204729334,-0.057197407 +Right,0.770721555,0.592666268,-3.63E-07,0.732899606,0.512242556,-0.002495068,0.714729607,0.43583551,-0.011039538,0.696365952,0.38714993,-0.025024857,0.698513269,0.335427165,-0.037255581,0.781747997,0.339981884,0.011489647,0.764962077,0.263492644,-0.019161591,0.730833769,0.27858603,-0.04647002,0.707968473,0.32031852,-0.05977359,0.798960924,0.337587476,0.000326334,0.802174747,0.222787529,-0.02439226,0.76883477,0.188794777,-0.039582573,0.735978127,0.186440453,-0.044193324,0.81485498,0.351683706,-0.01555742,0.827706218,0.236064717,-0.032015719,0.802747548,0.186509788,-0.03681482,0.776438832,0.165446758,-0.035155408,0.822035134,0.380069166,-0.033250161,0.84155035,0.295124888,-0.0438568,0.832943857,0.235442013,-0.046391785,0.81809181,0.190285906,-0.044508111 +Right,0.767132461,0.593298554,-2.82E-07,0.719886065,0.543798387,-0.014757966,0.68604207,0.467706293,-0.027141275,0.661323369,0.406961411,-0.042812295,0.665994883,0.347078681,-0.056908771,0.737039745,0.349939048,0.004092239,0.715895414,0.279609978,-0.027685305,0.688998759,0.295775265,-0.054846779,0.671897531,0.33263135,-0.068562731,0.764959514,0.327515781,-0.002213245,0.759384096,0.231059477,-0.027491247,0.733266175,0.19492811,-0.0443088,0.703818917,0.187075913,-0.050875153,0.793567777,0.330205023,-0.014474726,0.798931479,0.223998517,-0.034905288,0.782595932,0.164335087,-0.042901695,0.761993766,0.127771392,-0.043389067,0.816941977,0.355125725,-0.029091209,0.829944849,0.265311539,-0.044487376,0.828686953,0.197592035,-0.049592134,0.821747065,0.138986468,-0.04929978 +Right,0.764321268,0.586927891,-1.97E-07,0.711725652,0.54502207,-0.010065908,0.676104903,0.476641059,-0.020259963,0.652789712,0.423302561,-0.034319378,0.652759433,0.362889051,-0.047411673,0.716401219,0.351902306,0.007224281,0.69388932,0.279474348,-0.022144528,0.671822727,0.302826017,-0.048356913,0.659169614,0.34818089,-0.061183874,0.74611038,0.324843138,-0.001638486,0.744192779,0.223646179,-0.024984013,0.717384577,0.193776637,-0.041723672,0.686509848,0.199982107,-0.048108295,0.776403606,0.325349897,-0.015837887,0.784696221,0.217008188,-0.033517692,0.766617715,0.163452178,-0.041076258,0.744315565,0.138229206,-0.041682698,0.802449584,0.348380864,-0.031983253,0.814589798,0.257256985,-0.045378946,0.811851919,0.18959415,-0.049236238,0.8042261,0.133207113,-0.048220869 +Right,0.757395446,0.596049845,-2.77E-07,0.712225258,0.545053959,-0.009089105,0.679464698,0.473376513,-0.020916713,0.653739333,0.423206657,-0.037154339,0.656652868,0.366603434,-0.052486911,0.731564462,0.344231695,0.005754092,0.704088092,0.283738822,-0.027181661,0.676437259,0.306737363,-0.057058029,0.660499752,0.352181405,-0.072123311,0.756215394,0.325367242,-0.003530105,0.753327847,0.222266868,-0.030061508,0.723056972,0.196210086,-0.04756977,0.690567732,0.209527299,-0.053641964,0.78244853,0.334049493,-0.017918915,0.790915668,0.22453846,-0.03747667,0.767029107,0.177920312,-0.044679429,0.739462793,0.162774235,-0.044024374,0.802289248,0.366668224,-0.034284431,0.816923022,0.275695026,-0.048128184,0.807706594,0.211172521,-0.052183181,0.791401565,0.16259858,-0.050700646 +Right,0.757687688,0.595396817,-3.04E-07,0.71106714,0.544335365,-0.008307093,0.677249849,0.474216789,-0.018852318,0.651198149,0.425183982,-0.03392902,0.649238706,0.370500296,-0.047927756,0.727078199,0.346526504,0.007406635,0.701134801,0.285558403,-0.024273818,0.673799217,0.304567724,-0.052344322,0.656643391,0.344585836,-0.066140547,0.750656307,0.324985057,-0.001450403,0.741496503,0.226637557,-0.025453497,0.712798774,0.198345959,-0.040566877,0.682710946,0.203725755,-0.045457032,0.77696383,0.330214977,-0.015618694,0.780690789,0.222544387,-0.034608357,0.757413864,0.175447851,-0.040651843,0.730204344,0.15687108,-0.039115835,0.798848748,0.358607411,-0.031726137,0.812563419,0.268682688,-0.045942646,0.80385524,0.204782844,-0.049983837,0.787523031,0.154825315,-0.048310623 +Right,0.76323086,0.593384266,-2.86E-07,0.714474857,0.545304656,-0.011023557,0.678543448,0.474521846,-0.023127252,0.653788865,0.420947075,-0.03949232,0.652977347,0.359551072,-0.054658134,0.726071358,0.342279136,0.006601185,0.700453222,0.278731257,-0.026521713,0.674384832,0.295381546,-0.055855799,0.658193648,0.33614096,-0.070346408,0.752058089,0.31648463,-0.001703025,0.744588017,0.219742566,-0.027460113,0.715037942,0.193377674,-0.04417631,0.682896495,0.204882115,-0.049882602,0.780817926,0.318646252,-0.015755679,0.787027061,0.209998935,-0.036058597,0.763926268,0.163471088,-0.042587325,0.73643446,0.149750546,-0.041218273,0.805304468,0.346690983,-0.032020897,0.819578171,0.255016923,-0.047589522,0.8115592,0.190368578,-0.052246775,0.796025157,0.142136455,-0.050757393 +Right,0.768913567,0.600279689,-3.19E-07,0.723184645,0.543544173,-0.010000824,0.690564096,0.467963457,-0.021476736,0.666112065,0.414274067,-0.037168037,0.66597122,0.35915035,-0.051872853,0.745721042,0.345124245,0.005705491,0.719882071,0.281828523,-0.026254602,0.690223873,0.300934732,-0.055096265,0.671418309,0.338841021,-0.070217371,0.771209717,0.323980063,-0.002762327,0.763885021,0.22519657,-0.028406432,0.733807921,0.198145121,-0.045521766,0.701616704,0.204597771,-0.052272379,0.798502743,0.330300629,-0.016482834,0.806846559,0.222200379,-0.0364535,0.784801066,0.173195988,-0.044098862,0.758047581,0.15277724,-0.044347025,0.820726514,0.361828983,-0.032241352,0.838523805,0.274821311,-0.04731182,0.832507372,0.21128504,-0.052695181,0.817929268,0.161567643,-0.052589148 +Right,0.780932248,0.594068408,-3.28E-07,0.740542829,0.519574285,-0.006331254,0.716378272,0.438995332,-0.017537039,0.694988847,0.38739413,-0.033914793,0.698821306,0.333670348,-0.048993573,0.782697558,0.331348628,0.007477101,0.761316121,0.260096908,-0.024329741,0.726912081,0.277718127,-0.052521084,0.70419246,0.317891955,-0.067065381,0.804646432,0.323703051,-0.003809605,0.805112243,0.212776512,-0.030590178,0.771761298,0.18037051,-0.047122065,0.737884581,0.184524581,-0.052734055,0.824656188,0.340733051,-0.020144012,0.836010873,0.228924111,-0.03977805,0.811489046,0.176430359,-0.046683509,0.784110367,0.154387996,-0.046455756,0.835555255,0.378658295,-0.038389407,0.858114481,0.296386272,-0.052511491,0.853018582,0.229340523,-0.057885155,0.839664817,0.175180733,-0.058214538 +Right,0.7858181,0.603075147,-3.33E-07,0.745310009,0.518079996,-0.004258855,0.724678814,0.437713951,-0.013462835,0.706295431,0.386476398,-0.028216958,0.706053853,0.331576705,-0.041618176,0.792004287,0.335882217,0.013125079,0.773979962,0.260608673,-0.017845318,0.739420474,0.275518656,-0.046013627,0.714264691,0.315178216,-0.059907738,0.811258078,0.332035929,0.001974724,0.812400162,0.22311677,-0.019919442,0.784717798,0.183042422,-0.033907633,0.755293012,0.169150218,-0.038925737,0.829358101,0.348669022,-0.014682411,0.838781357,0.237135202,-0.030381009,0.82002914,0.177749574,-0.034659844,0.797155261,0.143570751,-0.03353975,0.83892858,0.381746978,-0.033483021,0.857893348,0.298046321,-0.044888947,0.85404402,0.232352346,-0.047499306,0.843349993,0.176992223,-0.045931913 +Right,0.784630418,0.602104783,-3.49E-07,0.744068921,0.517146051,-0.002692195,0.726743042,0.437542856,-0.010105793,0.709408164,0.388201565,-0.023088844,0.70752126,0.335086614,-0.034526177,0.793289006,0.336981922,0.015063507,0.774418592,0.263359904,-0.015036696,0.739677429,0.28001231,-0.042962264,0.714078844,0.320336133,-0.056520574,0.810431838,0.334777832,0.004587065,0.81120044,0.227261871,-0.014855321,0.783482432,0.183905914,-0.027984314,0.753885627,0.16276367,-0.033008587,0.827820599,0.351036131,-0.011299942,0.838124394,0.238630384,-0.025368372,0.819260776,0.179118529,-0.029705141,0.795773923,0.143303722,-0.02878652,0.836561441,0.380523533,-0.029174691,0.855043173,0.296088874,-0.039341025,0.848881006,0.233473912,-0.041431744,0.835719407,0.181900948,-0.039486077 +Right,0.781236112,0.589244783,-3.22E-07,0.738457382,0.516210198,-0.005565527,0.717763305,0.439693213,-0.016599681,0.69784534,0.393551499,-0.032590441,0.697369456,0.342350304,-0.047525685,0.787450612,0.337982237,0.008745,0.766737163,0.268445581,-0.019877272,0.73199451,0.287721992,-0.046129085,0.707464635,0.325847358,-0.059875496,0.805487931,0.33642,-0.002683077,0.798582256,0.229395315,-0.025503686,0.766474724,0.184603184,-0.042288214,0.735296905,0.159779325,-0.050456963,0.822024703,0.353188246,-0.01915781,0.826321006,0.239229232,-0.036859386,0.806550562,0.171894848,-0.047690108,0.785051525,0.123747796,-0.052306101,0.829466283,0.384031475,-0.037145521,0.844835877,0.296480149,-0.049157958,0.842537403,0.230002373,-0.054800842,0.833945811,0.168645278,-0.057240691 +Right,0.775475919,0.594431043,-3.08E-07,0.734285712,0.524483323,-0.005362355,0.712482691,0.447478771,-0.015808973,0.691586852,0.399854958,-0.03081223,0.693727672,0.348220229,-0.044828996,0.779825389,0.342869669,0.007345302,0.75936079,0.272632092,-0.021641707,0.725650132,0.294431955,-0.048275668,0.702204525,0.332461894,-0.062518738,0.798013985,0.339100659,-0.0043354,0.794874668,0.230115041,-0.027657505,0.764901042,0.182188973,-0.045355946,0.734649301,0.153552994,-0.054221626,0.814697504,0.356028646,-0.020852657,0.822020113,0.242423356,-0.039405938,0.8064574,0.172194526,-0.051325928,0.78928268,0.119446918,-0.056787618,0.822987854,0.388435602,-0.038638063,0.838366866,0.302037954,-0.051818036,0.837243021,0.234481439,-0.057943378,0.830814004,0.171253875,-0.060763467 +Right,0.77070564,0.611764908,-2.29E-07,0.728850007,0.54780972,-0.008177337,0.702316046,0.469301909,-0.019949341,0.679319859,0.417051315,-0.035705153,0.685435832,0.366734684,-0.050492499,0.766532898,0.357159168,0.005147386,0.745675385,0.288563997,-0.025106838,0.71365428,0.309907675,-0.053276561,0.691944361,0.347455889,-0.068914272,0.784891427,0.350295901,-0.00581835,0.780660748,0.238931984,-0.027933307,0.754756808,0.184197783,-0.045328092,0.729451656,0.143825471,-0.055273633,0.803915441,0.366204977,-0.022055652,0.809722841,0.250007629,-0.040305134,0.799354315,0.173136905,-0.052064788,0.788416207,0.108092636,-0.058456365,0.81622529,0.400372684,-0.039899733,0.829756737,0.308730394,-0.052553739,0.829966009,0.240206674,-0.05728225,0.826792359,0.173478946,-0.059820995 +Right,0.764433861,0.620253742,-2.02E-07,0.722069144,0.562772393,-0.011425779,0.691787004,0.486664653,-0.024609804,0.66547668,0.433869421,-0.041143306,0.672600925,0.38493821,-0.056447148,0.755251169,0.36771512,0.00198944,0.730903745,0.30128032,-0.028318366,0.699908793,0.328635961,-0.056118723,0.68108362,0.369477361,-0.07164982,0.7746557,0.357393324,-0.007229293,0.766928732,0.247296184,-0.028438754,0.741562486,0.189636216,-0.045676321,0.717350006,0.144058898,-0.056419849,0.795383155,0.372621059,-0.021873137,0.799493372,0.257610917,-0.040339328,0.789568841,0.181194127,-0.05211417,0.778868198,0.115207225,-0.058738474,0.808674455,0.406642526,-0.038294896,0.82002008,0.313226193,-0.05096519,0.819739878,0.245253831,-0.055426974,0.81619525,0.178521976,-0.057962105 +Right,0.761969566,0.626991332,-2.22E-07,0.718652725,0.568847477,-0.011485593,0.686963856,0.492381454,-0.022909267,0.662037194,0.441516101,-0.037666749,0.669314444,0.389046699,-0.05031598,0.744935632,0.371286809,0.006211146,0.724201083,0.307499647,-0.024800584,0.694712043,0.337509274,-0.053423915,0.674033523,0.375733167,-0.069073752,0.764851868,0.363958955,-0.00103107,0.752212584,0.263453424,-0.019302815,0.732986391,0.208813876,-0.034648303,0.7147879,0.161314338,-0.044881679,0.787997127,0.378098339,-0.014371257,0.779872417,0.274532914,-0.03069919,0.767540932,0.207974136,-0.04003422,0.754215419,0.148770303,-0.044833321,0.806933224,0.408109546,-0.029863887,0.801757514,0.317168355,-0.040823933,0.791735053,0.256740987,-0.043799032,0.779755056,0.198269442,-0.044822462 +Right,0.783290088,0.63459909,-1.76E-07,0.736671984,0.580895782,-0.016011456,0.70424813,0.504662752,-0.029114226,0.682556212,0.444548756,-0.045054823,0.693762779,0.38944909,-0.058768809,0.760294378,0.384533703,0.004864397,0.744051099,0.309456885,-0.025958197,0.719444931,0.332992792,-0.053752169,0.703392684,0.369695574,-0.06857229,0.784015179,0.372181833,1.70E-05,0.773209453,0.273516566,-0.017826283,0.75540024,0.217492133,-0.033494364,0.73843807,0.169067726,-0.043799147,0.810404778,0.381585628,-0.011287643,0.801606834,0.278175831,-0.026779516,0.787659883,0.211920336,-0.035789009,0.773388624,0.153697699,-0.040312748,0.834041655,0.408917546,-0.025270488,0.830991209,0.317346603,-0.035461918,0.822425544,0.256428152,-0.038191561,0.812401295,0.198842332,-0.038816474 +Right,0.79096663,0.634820819,-1.85E-07,0.744063497,0.580397248,-0.014123561,0.714322805,0.504497528,-0.027234744,0.692712188,0.444651783,-0.043916233,0.705545783,0.389921486,-0.058571104,0.768465459,0.383836418,0.00992434,0.752188206,0.314202964,-0.022290388,0.728834927,0.337851048,-0.051769029,0.713696718,0.375499636,-0.067333691,0.793694854,0.372336507,0.003565004,0.782412231,0.278266847,-0.014355782,0.76276803,0.226749435,-0.030085301,0.7429896,0.183420762,-0.040306177,0.821269989,0.384211808,-0.009695134,0.812739134,0.284116656,-0.024672123,0.798097014,0.221045479,-0.032313291,0.782227993,0.166851521,-0.035852812,0.845083952,0.413780153,-0.025757544,0.842279375,0.322201401,-0.035425741,0.832904518,0.260334074,-0.03764756,0.821251452,0.201760247,-0.037853036 +Right,0.795424342,0.631715894,-2.16E-07,0.748623967,0.57577467,-0.014829131,0.717923224,0.499786615,-0.028801292,0.696499825,0.439816207,-0.0465573,0.7090258,0.381115377,-0.062246047,0.771480501,0.3770518,0.010927924,0.753931224,0.310365856,-0.022567293,0.731420815,0.334029377,-0.053351019,0.716598809,0.371447146,-0.069918863,0.796917617,0.365692437,0.004233129,0.785992265,0.272788733,-0.016721524,0.764483988,0.225947514,-0.035465684,0.741994619,0.190156966,-0.047445811,0.824962318,0.378528476,-0.009524985,0.816846907,0.277594149,-0.026700562,0.799109519,0.220203251,-0.036986195,0.779354393,0.175281256,-0.042064063,0.850270331,0.409908772,-0.026093569,0.847483456,0.318161219,-0.03713372,0.8355214,0.257640064,-0.041755844,0.820154011,0.203374669,-0.043749698 +Right,0.799351692,0.625263691,-2.49E-07,0.752347052,0.570609748,-0.014897229,0.720454454,0.493308753,-0.028423795,0.699494123,0.430684239,-0.045333356,0.715831757,0.374034405,-0.060017537,0.777502775,0.371306121,0.008863666,0.761563838,0.298326492,-0.022539942,0.738350391,0.319958746,-0.051686209,0.721076667,0.360791236,-0.066948943,0.804040492,0.357883632,0.003072672,0.797517359,0.260100424,-0.019151764,0.77365607,0.221508965,-0.038203988,0.74557972,0.209372848,-0.048208352,0.832867146,0.369002044,-0.00899798,0.831427038,0.265861034,-0.025385201,0.813831151,0.213264585,-0.034488812,0.790235698,0.184214935,-0.037288822,0.858501375,0.398972064,-0.02381002,0.864575446,0.307443768,-0.034335077,0.855197966,0.248288766,-0.03839995,0.83862251,0.202084199,-0.038826175 +Right,0.782696366,0.596252978,-3.18E-07,0.737743318,0.538431585,-0.008347592,0.708277464,0.46269536,-0.01798521,0.687464297,0.407995641,-0.031881295,0.694009602,0.357835561,-0.043717667,0.769843817,0.346705049,0.013288801,0.751240969,0.274771929,-0.015626926,0.719566345,0.293418258,-0.042816702,0.69756639,0.330553889,-0.056612954,0.791099906,0.333606064,0.005375113,0.784700513,0.23479417,-0.015029483,0.754214764,0.199525386,-0.030218296,0.72333467,0.18728359,-0.036768071,0.813767135,0.339785695,-0.008244452,0.814851463,0.236384794,-0.021949675,0.794701934,0.180829406,-0.028267104,0.77213186,0.145338446,-0.029312866,0.832250237,0.364971071,-0.024255764,0.842509925,0.280564994,-0.031987943,0.836120963,0.221782923,-0.033907011,0.824198425,0.171896979,-0.032930531 +Right,0.757857502,0.601201653,-3.28E-07,0.715952158,0.538480759,-0.006702858,0.690181732,0.4632743,-0.016780671,0.66682142,0.41655162,-0.031450514,0.668292344,0.36640653,-0.044668753,0.750326276,0.349272966,0.010937438,0.726212025,0.287668347,-0.019569965,0.693676114,0.310404122,-0.048565533,0.671443105,0.349560648,-0.063904449,0.768468678,0.342632651,0.001081838,0.76009506,0.241685733,-0.020939803,0.729192138,0.204418272,-0.037542064,0.69895643,0.186252147,-0.045523848,0.787654638,0.357356608,-0.014157685,0.788566828,0.251834452,-0.031017145,0.767535746,0.194786638,-0.039429538,0.744774163,0.155603185,-0.041659661,0.799484253,0.389346153,-0.031312663,0.808894336,0.301831126,-0.042202592,0.798039794,0.241849124,-0.045343373,0.78178966,0.190636128,-0.045105036 +Right,0.751287758,0.592792451,-3.27E-07,0.707897305,0.531845987,-0.005103897,0.682224095,0.455491602,-0.013806344,0.659388244,0.40931046,-0.027079113,0.659828901,0.356492281,-0.0387307,0.741439402,0.34207353,0.012444898,0.717226565,0.279854536,-0.017318869,0.684860766,0.302120745,-0.046045661,0.662282586,0.339500725,-0.06117855,0.75909394,0.336309791,0.002619978,0.749285877,0.235351831,-0.0179954,0.71910131,0.197065622,-0.034014881,0.689862788,0.176876396,-0.041867983,0.777487159,0.350272298,-0.012494711,0.777216494,0.246544331,-0.028108049,0.756746769,0.189561501,-0.03650447,0.735308588,0.149139568,-0.039010637,0.788360059,0.380291998,-0.029388124,0.796811163,0.293201059,-0.039672792,0.785834968,0.23449792,-0.042790834,0.769770801,0.183597609,-0.042660948 +Right,0.745461583,0.596905649,-3.16E-07,0.701436996,0.537997425,-0.004676774,0.676181614,0.465855598,-0.013451237,0.653796256,0.420977056,-0.026787896,0.650874019,0.367877871,-0.038898453,0.731451988,0.356254488,0.01166048,0.706447244,0.294861883,-0.016462181,0.676454425,0.318632811,-0.043482039,0.65677321,0.355422139,-0.057863254,0.748939633,0.349945545,0.001167152,0.738055587,0.248296484,-0.01983165,0.707185984,0.208685711,-0.03683313,0.67774117,0.186427027,-0.045603227,0.767066717,0.362652928,-0.014291555,0.764698029,0.25711745,-0.030813919,0.743751645,0.19861941,-0.041397206,0.722696781,0.156917125,-0.045639433,0.778188169,0.390473008,-0.031209942,0.782876015,0.301854193,-0.042290151,0.771015167,0.241359681,-0.046860904,0.754747272,0.189453095,-0.048216186 +Right,0.743328452,0.6033687,-2.98E-07,0.699984252,0.542145014,-0.004053952,0.674119353,0.471442699,-0.013183366,0.651759326,0.428245693,-0.027190054,0.649791002,0.37411505,-0.04004753,0.729101419,0.361957103,0.012103864,0.704807699,0.299489319,-0.015955444,0.674079597,0.322572947,-0.043129105,0.652760863,0.360345602,-0.05766787,0.746479034,0.355239838,0.001155388,0.735502958,0.255322158,-0.018558636,0.70579195,0.214888021,-0.034788739,0.676923096,0.192239583,-0.043499023,0.764585793,0.368227452,-0.014750801,0.761883259,0.262093246,-0.02967244,0.741461694,0.201229066,-0.038683608,0.719931304,0.1582921,-0.042505443,0.776014686,0.397002101,-0.032271154,0.78034687,0.308993965,-0.042783003,0.768790603,0.246866956,-0.046574499,0.752848864,0.19368726,-0.047510166 +Right,0.742742419,0.604430377,-3.02E-07,0.699406207,0.544093251,-0.003613248,0.673711061,0.472991586,-0.012469832,0.651274443,0.429483086,-0.026351698,0.648937881,0.375182062,-0.039029308,0.728523314,0.362568438,0.012532633,0.703936398,0.300992668,-0.01643835,0.673511207,0.324391842,-0.044101037,0.652298689,0.361801207,-0.058552042,0.745587707,0.355383754,0.00143945,0.734488785,0.255794406,-0.018508751,0.705202043,0.215994895,-0.033931348,0.676574767,0.194772959,-0.041532084,0.763741374,0.36843583,-0.014709532,0.759850383,0.26152122,-0.029630266,0.738933206,0.201208368,-0.037200019,0.717247903,0.159327,-0.039481409,0.77557838,0.397580922,-0.032560036,0.779791057,0.308853686,-0.042856298,0.768147588,0.24641484,-0.045754075,0.752374172,0.192985043,-0.045526698 +Right,0.743086219,0.608639121,-2.92E-07,0.700014353,0.550741255,-0.004536026,0.673178136,0.479457498,-0.013898304,0.6505481,0.436264336,-0.028032789,0.648154974,0.382426083,-0.040917609,0.727725863,0.366229653,0.011178457,0.704159319,0.305345863,-0.017489824,0.673752964,0.32946825,-0.04465843,0.652503669,0.367198139,-0.058998831,0.745338798,0.35958606,0.00021736,0.734865546,0.260394484,-0.01968246,0.705951095,0.220770597,-0.035187647,0.678263962,0.198118389,-0.043130472,0.763977766,0.373260051,-0.015840774,0.760670483,0.267060995,-0.031254224,0.740427256,0.207010657,-0.03959794,0.7200284,0.163464502,-0.04263588,0.776947737,0.40362519,-0.033566836,0.781028628,0.314530998,-0.044417158,0.769969761,0.253042221,-0.047791801,0.754754245,0.199272111,-0.048133347 +Right,0.74167484,0.615206063,-2.91E-07,0.698463976,0.563374162,-0.0068473,0.669753313,0.491708875,-0.016125003,0.647486329,0.445148408,-0.029499853,0.646336317,0.391069889,-0.041675601,0.721371949,0.376052409,0.010432063,0.698999703,0.316965073,-0.018274542,0.670410693,0.340175271,-0.045131687,0.65134728,0.377279103,-0.05912606,0.741367221,0.364559621,0.000770311,0.732340097,0.266274393,-0.020815384,0.703054845,0.229383305,-0.0370083,0.673552871,0.213455111,-0.044358771,0.762899935,0.375232428,-0.014115429,0.763194621,0.271378696,-0.030635212,0.743669927,0.212578386,-0.03963434,0.722081304,0.17083475,-0.042311829,0.779851496,0.404978156,-0.030789958,0.786339402,0.317966163,-0.042434946,0.77707231,0.255589902,-0.046729203,0.762534082,0.199956357,-0.047348801 +Right,0.752780318,0.619246304,-2.58E-07,0.704674959,0.572564721,-0.010500711,0.672288477,0.503224194,-0.020978911,0.649649322,0.45211032,-0.035136517,0.651472628,0.394100189,-0.047986336,0.723276198,0.3843382,0.009973769,0.701901078,0.317934781,-0.017746599,0.674134552,0.339724451,-0.04425605,0.656153381,0.378720105,-0.05835605,0.74694109,0.366987109,0.002496975,0.73950851,0.269726843,-0.018305302,0.711011052,0.232884377,-0.03493996,0.681782246,0.219039381,-0.043087028,0.772037268,0.372707665,-0.010538692,0.773652196,0.268900692,-0.025880493,0.755646825,0.209479362,-0.034669079,0.735402226,0.169599563,-0.037765939,0.79346472,0.398210734,-0.025751239,0.801089466,0.309023023,-0.0366356,0.79417485,0.245608747,-0.040626019,0.782193363,0.190273225,-0.041304752 +Right,0.75857538,0.618991017,-2.28E-07,0.711367249,0.571733832,-0.011608303,0.677331269,0.502507389,-0.02284741,0.653818488,0.449497133,-0.037527677,0.657604158,0.38939178,-0.050979681,0.725806892,0.382124007,0.008309769,0.703783751,0.314494401,-0.020750983,0.677886248,0.333529562,-0.048207495,0.661915779,0.371304423,-0.06271553,0.750523567,0.361983448,0.001036415,0.743745446,0.264192522,-0.021150028,0.71568805,0.226483911,-0.038720809,0.685824275,0.214511275,-0.047135867,0.776836276,0.366728216,-0.01188196,0.779221654,0.26357013,-0.028344113,0.762373626,0.203627199,-0.037549328,0.74244988,0.163979858,-0.040579405,0.79935348,0.392588973,-0.027021393,0.808676481,0.303939939,-0.038940649,0.803432524,0.240914285,-0.043278918,0.792608559,0.186236098,-0.043897793 +Left,0.329674572,0.595501542,2.17E-07,0.377161741,0.529596984,0.001402126,0.401701063,0.460292935,-0.003537409,0.422843039,0.404100597,-0.014800566,0.437429547,0.336169302,-0.024015749,0.334997356,0.345170975,0.022677556,0.364982873,0.273903757,-0.004351986,0.39809218,0.294056714,-0.028000372,0.419338226,0.331923932,-0.037851077,0.320199132,0.319476902,0.006613158,0.32929042,0.21045287,-0.007316348,0.35695374,0.142792091,-0.019968033,0.382549405,0.099065721,-0.027343655,0.302609831,0.318526894,-0.015466889,0.299198061,0.203186855,-0.029429732,0.316151112,0.123845577,-0.038204726,0.335351586,0.066502988,-0.041978657,0.287777811,0.334517032,-0.038980074,0.274943471,0.236938938,-0.047648691,0.279851556,0.163255021,-0.047871429,0.29264465,0.103108257,-0.046669595 +Left,0.327543944,0.618060648,2.16E-07,0.376506627,0.536498368,0.006570053,0.398421466,0.465604365,0.001949738,0.421638042,0.416117728,-0.010404604,0.44014889,0.353500873,-0.020960465,0.326553375,0.359288126,0.028303877,0.360894859,0.283297986,0.003626977,0.392148644,0.310103387,-0.019560613,0.409249872,0.352067798,-0.03059732,0.314801335,0.345672965,0.008387669,0.329005986,0.229500309,-0.005692427,0.358422101,0.158089444,-0.02077109,0.385156929,0.112932831,-0.030907761,0.303558707,0.354634047,-0.01733938,0.304109961,0.229624063,-0.031005872,0.321664959,0.145117313,-0.043861549,0.341066033,0.086269408,-0.051771466,0.298829108,0.376418233,-0.044068184,0.294135928,0.274791569,-0.053288002,0.300281316,0.197045594,-0.057465401,0.310945302,0.135285303,-0.060445335 +Left,0.32329762,0.634179354,2.00E-07,0.372885942,0.550208688,0.00832289,0.393248737,0.480006188,0.002990282,0.416446179,0.432219625,-0.010265007,0.435544491,0.371999621,-0.022219783,0.324182987,0.372974575,0.025311138,0.359206468,0.299078465,-0.00029577,0.390405595,0.325749815,-0.024078242,0.409032345,0.36791569,-0.035902664,0.311875582,0.362203747,0.004470206,0.32695061,0.245101959,-0.0107761,0.356084049,0.176820144,-0.026166741,0.384093642,0.134063154,-0.036727026,0.300788075,0.3747693,-0.021628069,0.303323209,0.250750184,-0.036002006,0.322387069,0.170322433,-0.048961975,0.343881369,0.114780962,-0.057240244,0.296885073,0.400104314,-0.048424311,0.293121994,0.30118534,-0.05852842,0.299452007,0.2260952,-0.063429721,0.310795188,0.165823624,-0.067144603 +Left,0.31147638,0.656304896,1.53E-07,0.362809181,0.569087386,0.012178236,0.383236706,0.495993763,0.007916153,0.406657517,0.449112862,-0.00437494,0.430046231,0.395199776,-0.016205268,0.314431906,0.388807863,0.022202268,0.353776544,0.315502882,-0.005071424,0.387519985,0.341335803,-0.029270731,0.406215429,0.386771291,-0.041634332,0.301076651,0.384204745,0.000229135,0.323509872,0.267024696,-0.018481815,0.359108746,0.208715811,-0.034829285,0.389379859,0.17885384,-0.045220755,0.291957378,0.403165638,-0.025963116,0.302026868,0.275923252,-0.042739436,0.323478669,0.200289428,-0.056159861,0.342883855,0.147482663,-0.064569503,0.291982323,0.434667766,-0.052012015,0.294893593,0.339572132,-0.065306693,0.305123448,0.269711792,-0.072209083,0.317534268,0.211776212,-0.077013053 +Left,0.308471739,0.661610961,1.48E-07,0.358105272,0.576465487,0.011552213,0.379215389,0.507671773,0.006954024,0.402816951,0.462135583,-0.005991415,0.423436344,0.40941,-0.018527877,0.316566736,0.39566955,0.02278854,0.34844932,0.323620349,-0.004508867,0.380816638,0.352284044,-0.02914235,0.39942956,0.397563219,-0.042023726,0.303267926,0.390080482,0.000294975,0.319657415,0.277192116,-0.018312195,0.353397965,0.220358431,-0.035879187,0.382686317,0.190421,-0.047746707,0.290783018,0.408159822,-0.026663281,0.296852261,0.289223254,-0.043058868,0.317300797,0.216082543,-0.057657793,0.336837411,0.164820582,-0.067545883,0.285403192,0.441061169,-0.053742521,0.285478055,0.350784153,-0.066818342,0.295549065,0.282933801,-0.074367829,0.308656842,0.226625621,-0.08018335 +Left,0.297792286,0.666638613,2.55E-07,0.350017697,0.589724898,0.004121082,0.378100872,0.521879017,-0.001398698,0.404262006,0.477045953,-0.014011939,0.426811397,0.421816468,-0.025587076,0.319646657,0.41004321,0.020002298,0.352229148,0.33812964,-0.006878654,0.383107424,0.368078351,-0.030449253,0.401639313,0.409479469,-0.041566204,0.305715144,0.394339919,0.001544167,0.324460298,0.289902091,-0.014379064,0.356062919,0.232173577,-0.029658729,0.384825945,0.19700262,-0.039707817,0.288749278,0.404229343,-0.022310188,0.292581409,0.29248926,-0.037189286,0.309152216,0.219594568,-0.049344711,0.328157544,0.168272257,-0.056769919,0.274279714,0.431219429,-0.047254864,0.269943237,0.335101396,-0.05747921,0.279940903,0.264622897,-0.061438132,0.296592593,0.210976094,-0.064035147 +Left,0.293124437,0.666973114,2.36E-07,0.344530702,0.596668005,0.000348469,0.372780323,0.52750963,-0.006407085,0.398671508,0.482132673,-0.019240692,0.420945644,0.428341061,-0.030909842,0.31571722,0.410494179,0.014846319,0.346997738,0.336644977,-0.014069462,0.378646672,0.365766764,-0.039089087,0.399192274,0.409417689,-0.05078527,0.300955832,0.393749774,-0.001211049,0.31834358,0.286522865,-0.019114576,0.35100168,0.233274996,-0.034985136,0.381068975,0.202785015,-0.044552814,0.282946944,0.402627528,-0.022671873,0.286761433,0.28666535,-0.038669683,0.306947201,0.212040767,-0.050796684,0.329330981,0.158606321,-0.057486169,0.267015487,0.430211157,-0.045378316,0.259953469,0.333553374,-0.055784658,0.268677741,0.261508882,-0.059353597,0.284633636,0.204260558,-0.061274033 +Left,0.288715243,0.664126873,2.50E-07,0.339010596,0.603078365,-0.00367974,0.370609313,0.536370277,-0.011233611,0.396977544,0.486753583,-0.024032447,0.413238257,0.427172989,-0.035240546,0.317443073,0.416939497,0.01174001,0.344906449,0.343567938,-0.017523043,0.373803079,0.367419899,-0.042992998,0.393141806,0.408683181,-0.054871306,0.299250394,0.392656803,-0.001645862,0.315766692,0.290563077,-0.01940223,0.347986162,0.235083207,-0.035042197,0.377205729,0.198124707,-0.044702794,0.27728796,0.392503709,-0.020712417,0.28181389,0.277436435,-0.036965396,0.301448315,0.203716666,-0.049430359,0.323242605,0.147904605,-0.056385387,0.255907059,0.411585391,-0.041309226,0.246604592,0.316274136,-0.051691875,0.251173079,0.245337933,-0.055331722,0.263185829,0.185705751,-0.057310443 +Left,0.2869775,0.667687535,2.87E-07,0.335575104,0.618877053,-0.010290056,0.369288385,0.556006551,-0.020129584,0.396059692,0.500974834,-0.033396967,0.406771481,0.439248085,-0.045378562,0.327866763,0.432174623,0.002012389,0.348187268,0.365585446,-0.027411515,0.372150689,0.37920925,-0.053403102,0.389671981,0.410473585,-0.06675227,0.303065985,0.403356731,-0.007775688,0.315524518,0.300139487,-0.025903454,0.340857804,0.237879366,-0.042364012,0.364702314,0.186963528,-0.053612199,0.274684191,0.399550825,-0.02295918,0.272713214,0.287489623,-0.040789526,0.286534339,0.214040294,-0.054322567,0.304711789,0.151716769,-0.062518992,0.246382505,0.417315394,-0.039871167,0.234412268,0.326726407,-0.052120537,0.2335307,0.258109093,-0.056657121,0.239011079,0.195776418,-0.059642799 +Left,0.281201631,0.689724684,2.40E-07,0.331324071,0.641897559,-0.009893407,0.365997791,0.578985512,-0.017216984,0.39127475,0.521678567,-0.027557578,0.395067424,0.461476773,-0.036875743,0.328246444,0.456674457,0.000938329,0.346070409,0.387064725,-0.025727276,0.36640498,0.399195224,-0.049942583,0.382061929,0.42593047,-0.062930711,0.300287962,0.428385377,-0.008134237,0.311417639,0.325050741,-0.024343695,0.33084178,0.263154447,-0.04141603,0.34966886,0.209538102,-0.053911872,0.269753247,0.423471689,-0.022019034,0.267498881,0.311448812,-0.038970333,0.275954276,0.238585681,-0.054503281,0.289598733,0.176254839,-0.064514644,0.239275724,0.440060139,-0.037404455,0.224845931,0.349400848,-0.050327882,0.219529033,0.283017576,-0.056970432,0.220980823,0.221395522,-0.061504602 +Left,0.285760164,0.696225464,2.86E-07,0.33664754,0.643164754,-0.009461231,0.370185733,0.576743364,-0.017621271,0.395722687,0.518349171,-0.029055241,0.400565386,0.458027005,-0.039284904,0.327703476,0.457589656,0.000674501,0.345797062,0.385077894,-0.026628386,0.367903352,0.397405624,-0.050344825,0.384184152,0.427706271,-0.062445864,0.299292952,0.43372336,-0.008328596,0.309423894,0.329915822,-0.024294958,0.330183297,0.268534839,-0.039872419,0.350275397,0.21464327,-0.050951593,0.269775867,0.432285517,-0.02218445,0.266429722,0.320117772,-0.038233273,0.275473446,0.244735286,-0.052312214,0.289069474,0.182073295,-0.061331861,0.241136879,0.451700211,-0.037596267,0.225842088,0.362970442,-0.049906388,0.220983237,0.295404524,-0.055932861,0.222767636,0.23403354,-0.059841357 +Left,0.305623949,0.678801835,2.81E-07,0.350632697,0.610439181,-0.00614619,0.376868486,0.537026763,-0.014339351,0.40048036,0.480926663,-0.026949612,0.407303661,0.418915629,-0.037986126,0.319870025,0.428144455,0.005665132,0.338748187,0.353665411,-0.022537313,0.367571771,0.369500339,-0.046493962,0.388776928,0.402576923,-0.058084954,0.297988176,0.410712838,-0.006264274,0.30396986,0.310186386,-0.023275163,0.328602046,0.2446931,-0.038491607,0.351830661,0.192947298,-0.048780229,0.274501503,0.418287218,-0.023510456,0.266943991,0.308515131,-0.039917465,0.276793748,0.230681613,-0.053235207,0.290985465,0.166996568,-0.061449572,0.253497243,0.445063442,-0.04229001,0.236013234,0.358055383,-0.054059207,0.230823427,0.288164467,-0.059403915,0.233252198,0.225864336,-0.062891699 +Left,0.309745699,0.664058268,2.38E-07,0.354007572,0.589276671,-0.003531232,0.379558116,0.519996405,-0.012706093,0.402487457,0.469964266,-0.027076678,0.413318455,0.407561868,-0.039956465,0.315566421,0.40899229,0.009015953,0.34016943,0.332064986,-0.02164609,0.371909857,0.352380812,-0.047518473,0.395013511,0.39330259,-0.059467707,0.297733366,0.392905384,-0.005078252,0.304517627,0.286108077,-0.026019484,0.334723592,0.231988132,-0.042822376,0.364169806,0.203011006,-0.052012738,0.278600603,0.404022723,-0.024541503,0.272215158,0.290398508,-0.042845972,0.287755251,0.216791525,-0.055739563,0.306960613,0.162355363,-0.062183291,0.263427049,0.436110973,-0.045314364,0.24705033,0.347817242,-0.056883462,0.24551329,0.278526962,-0.061021127,0.251182824,0.220137149,-0.062959783 +Left,0.309687734,0.668924451,2.18E-07,0.354823232,0.593133271,-0.002685787,0.381552517,0.523886561,-0.011738012,0.404615194,0.474809408,-0.026188038,0.415259838,0.412383825,-0.038805734,0.317022979,0.409507364,0.01018563,0.343545467,0.332216233,-0.020305503,0.375993401,0.35440141,-0.045522198,0.399838626,0.396223366,-0.056795646,0.29918319,0.393749654,-0.004407868,0.305583298,0.283885479,-0.026088065,0.337315053,0.234391198,-0.042168453,0.368630201,0.214385614,-0.049903296,0.280574977,0.405192912,-0.024297876,0.274431825,0.290178239,-0.041827627,0.292514473,0.221193179,-0.052515626,0.314161211,0.174241036,-0.056962267,0.2662808,0.437535763,-0.04567375,0.249558508,0.349858493,-0.056250412,0.251144677,0.280991256,-0.059246223,0.260547101,0.224412665,-0.059948746 +Left,0.304290622,0.68275702,1.73E-07,0.350926429,0.607182145,-0.000961988,0.380670249,0.536114216,-0.009279761,0.406486213,0.488871396,-0.022991316,0.421194643,0.433318734,-0.035132527,0.321212977,0.414323747,0.010285988,0.352164298,0.340062737,-0.020554248,0.383884311,0.367969096,-0.045515314,0.406735957,0.413841903,-0.057135936,0.30442062,0.402196765,-0.005199679,0.314497739,0.292107373,-0.029373137,0.346586913,0.247901931,-0.046835888,0.378018975,0.231309444,-0.055556279,0.285507232,0.416475743,-0.025677387,0.285037786,0.300035417,-0.045717984,0.30596751,0.238740474,-0.057953648,0.329571992,0.19741264,-0.063565299,0.270418078,0.451726884,-0.047324102,0.258994758,0.370781332,-0.061718438,0.264968872,0.307311863,-0.068011902,0.278360724,0.252274364,-0.071050145 +Left,0.297350645,0.709642768,1.93E-07,0.346184164,0.644942641,-0.002814355,0.379838079,0.576349139,-0.011932003,0.406692803,0.53178966,-0.025455115,0.419891387,0.476791382,-0.037464447,0.326634437,0.442126542,0.003275062,0.360427856,0.376616091,-0.028310109,0.391219079,0.405447006,-0.053360719,0.412658423,0.451356918,-0.065021679,0.307787746,0.427966535,-0.011031202,0.319966972,0.319015622,-0.036080044,0.354860693,0.279078662,-0.053068202,0.388454348,0.267119408,-0.061032359,0.28655231,0.442371905,-0.029808439,0.286113441,0.323952198,-0.051053438,0.309275687,0.263352424,-0.063419797,0.335762024,0.22305505,-0.068687722,0.268542171,0.480287015,-0.049546484,0.256720126,0.398371309,-0.065025382,0.264446706,0.335150361,-0.071283713,0.280172139,0.282131433,-0.073846228 +Left,0.280201197,0.71389854,2.40E-07,0.32965377,0.650599062,-0.005278255,0.36637786,0.58241713,-0.0152064,0.398569763,0.540343583,-0.029682944,0.410135686,0.487518132,-0.042293824,0.311929613,0.445085526,0.003813029,0.348232538,0.3760041,-0.029207464,0.380084544,0.41046235,-0.05610504,0.40224424,0.459965259,-0.068591766,0.292492151,0.428104639,-0.009584375,0.305465609,0.321197629,-0.033274546,0.340457171,0.282140642,-0.049395822,0.374301761,0.269286931,-0.056932166,0.270804822,0.439957261,-0.028163573,0.270599425,0.324934006,-0.047316831,0.29212755,0.264827251,-0.056974981,0.318030417,0.226010054,-0.060479604,0.252272129,0.475318164,-0.04851621,0.240570918,0.391584367,-0.06120852,0.246802896,0.327088237,-0.064658612,0.261935502,0.274729401,-0.065103069 +Left,0.274305224,0.71128881,2.09E-07,0.323114157,0.64386797,-0.004376587,0.357262701,0.577260315,-0.014939922,0.387468725,0.534417033,-0.030089423,0.397081286,0.479019701,-0.043532949,0.300882459,0.438549459,0.002696013,0.335063517,0.369957209,-0.031359643,0.367002547,0.401960731,-0.058396008,0.38894701,0.451962799,-0.070328318,0.282526016,0.424084395,-0.011249096,0.295004636,0.312970698,-0.037669603,0.330296814,0.277904689,-0.055023614,0.363205016,0.274957478,-0.061887667,0.260761946,0.437510431,-0.029975865,0.259127915,0.317902982,-0.050270915,0.282580048,0.263093382,-0.059781183,0.309419721,0.232749403,-0.062071327,0.241309896,0.475077391,-0.050243907,0.225503534,0.392099291,-0.064262889,0.232617438,0.328776479,-0.068448402,0.249304876,0.278059363,-0.068559445 +Left,0.2696518,0.713126302,2.12E-07,0.319077998,0.644621968,-0.005643139,0.354976267,0.575483322,-0.01620546,0.386821926,0.529616654,-0.031227631,0.390605778,0.47364518,-0.044442058,0.296252728,0.438340843,0.002132221,0.329638302,0.36521849,-0.032995433,0.360954016,0.394695044,-0.060888857,0.383174807,0.444066465,-0.073136456,0.277096927,0.424065888,-0.0111434,0.289379507,0.310475826,-0.038378909,0.323868006,0.275929213,-0.056133918,0.356501639,0.274510533,-0.062750332,0.254923642,0.438160002,-0.029422622,0.252786994,0.316918492,-0.050135992,0.275468022,0.262558699,-0.059456646,0.302100062,0.233042225,-0.061213855,0.235300869,0.476352066,-0.049434628,0.219007716,0.394931555,-0.063782126,0.224652976,0.331476986,-0.068169616,0.240054682,0.279791296,-0.068135358 +Left,0.264231026,0.690576494,2.01E-07,0.311247647,0.619082153,-0.006144248,0.345905155,0.547948182,-0.016145829,0.376985043,0.498473972,-0.030436259,0.379112065,0.449100554,-0.042982474,0.285683602,0.418332219,0.002528629,0.320344239,0.348356962,-0.033218782,0.352288753,0.377511442,-0.062045977,0.374520868,0.427473128,-0.074578792,0.266343266,0.403324872,-0.009895828,0.278044373,0.292591125,-0.037248865,0.312851638,0.257152677,-0.054670416,0.344871253,0.254517496,-0.060718004,0.244181573,0.416050315,-0.02743296,0.241319016,0.295106381,-0.048620433,0.264840126,0.242972299,-0.057355884,0.291481376,0.216825157,-0.057976779,0.224221408,0.451830924,-0.046731427,0.206491679,0.36732167,-0.061024308,0.209916204,0.302641034,-0.064845674,0.222939715,0.250614792,-0.063961521 +Left,0.25255996,0.663400412,2.17E-07,0.29784745,0.592173457,-0.005651208,0.329444081,0.522088289,-0.017244654,0.359096646,0.474232793,-0.033581566,0.36461243,0.423232406,-0.048233882,0.26624465,0.389481306,0.002127117,0.30007568,0.317120641,-0.034445662,0.333049059,0.34263593,-0.064270422,0.357643008,0.389335424,-0.077457339,0.244963646,0.374729216,-0.011572412,0.252304494,0.262417614,-0.038900264,0.285944045,0.223741725,-0.056085445,0.319093913,0.219782174,-0.061992124,0.221855387,0.388170719,-0.030346632,0.213573262,0.267777234,-0.051041972,0.234715849,0.210912004,-0.058739077,0.261333704,0.179244712,-0.058750641,0.202197373,0.424971521,-0.050903305,0.178844392,0.341047943,-0.064087167,0.179597527,0.273588598,-0.066308647,0.191384256,0.217392191,-0.064262539 +Left,0.248721138,0.658413291,2.20E-07,0.292226106,0.587990999,-0.007954434,0.322690696,0.517733991,-0.020288922,0.350629658,0.466975421,-0.036776345,0.354036033,0.413866788,-0.051228411,0.258176804,0.381971717,0.000375988,0.291564822,0.310766995,-0.036318086,0.324377984,0.335519373,-0.066168591,0.348771662,0.381364942,-0.079269186,0.236144111,0.366209239,-0.011942345,0.242069453,0.254231215,-0.039951786,0.275792778,0.217625499,-0.056754645,0.308845609,0.218144476,-0.061789654,0.212684438,0.379459083,-0.029419797,0.203760505,0.259858757,-0.050628584,0.226228476,0.206403524,-0.057197236,0.253694952,0.18009685,-0.055779155,0.192655414,0.416815937,-0.04890817,0.169050768,0.333725393,-0.062537111,0.17037335,0.266544014,-0.064417109,0.182765543,0.210764036,-0.061598759 +Left,0.240410373,0.638438821,2.08E-07,0.285254091,0.56458056,-0.005359321,0.316388071,0.491829306,-0.015183135,0.341818094,0.440411896,-0.030076772,0.336558878,0.385085732,-0.043012884,0.244868413,0.364369065,0.007125897,0.271505475,0.285339385,-0.028098371,0.304667771,0.310201585,-0.057176188,0.329581052,0.35684067,-0.069561847,0.223668352,0.349961877,-0.006174882,0.229365826,0.240306064,-0.031586587,0.261198521,0.198345244,-0.0489363,0.293017387,0.190648198,-0.055430677,0.201472044,0.362954378,-0.024956275,0.192146778,0.246391088,-0.044275276,0.211804867,0.185833424,-0.05288415,0.237028837,0.151822358,-0.053826675,0.182784393,0.398832411,-0.045676708,0.161207542,0.312460393,-0.057545621,0.163219169,0.242992163,-0.059908807,0.177028283,0.186265945,-0.058288962 +Left,0.242435798,0.64462328,2.17E-07,0.286552966,0.570239782,-0.005434082,0.316637307,0.499561191,-0.01615865,0.341203213,0.448193192,-0.031914439,0.339689732,0.389941782,-0.045835648,0.246130362,0.370619744,0.007200634,0.27559492,0.294158697,-0.027527826,0.309184134,0.316315413,-0.05616584,0.335006475,0.360148549,-0.068494461,0.225168914,0.355487108,-0.006336996,0.231981918,0.242997572,-0.032535572,0.263760507,0.200580165,-0.050410483,0.295645982,0.193690792,-0.057117067,0.203071758,0.367891818,-0.025218992,0.194989294,0.249811843,-0.045297869,0.216144383,0.1911892,-0.0545034,0.241790071,0.159004778,-0.055748548,0.184458703,0.403392553,-0.045903534,0.163306892,0.316914231,-0.057909753,0.166736007,0.247944742,-0.060424894,0.181117058,0.19126454,-0.059097499 +Left,0.243762597,0.640483677,2.20E-07,0.287539631,0.566783667,-0.005853644,0.317051977,0.494351685,-0.016222836,0.340804994,0.442600608,-0.031331673,0.340555966,0.387248188,-0.044497404,0.247502372,0.367073476,0.00588812,0.277689785,0.292025089,-0.028399123,0.311549664,0.313612938,-0.056157902,0.337462664,0.35701099,-0.067963459,0.226421759,0.351832032,-0.007267733,0.232349455,0.239939064,-0.033557262,0.264643818,0.196435273,-0.050775465,0.296867996,0.187993616,-0.056932174,0.204534471,0.364615411,-0.025703851,0.194823891,0.246570781,-0.046464268,0.215841472,0.186941445,-0.055796232,0.241454899,0.15287593,-0.056893505,0.186257258,0.400734574,-0.045884799,0.164355725,0.314294279,-0.058400404,0.16664654,0.244800657,-0.061149567,0.179649189,0.187045634,-0.059927542 +Left,0.244407639,0.633287549,2.22E-07,0.289001405,0.558636963,-0.003838418,0.318022043,0.486313283,-0.012761579,0.342021644,0.436080188,-0.026781684,0.341749877,0.383380115,-0.039078377,0.248908192,0.361755043,0.007909235,0.278468013,0.286902279,-0.026112644,0.312215835,0.304270625,-0.054230239,0.338517785,0.343325615,-0.066547975,0.228131324,0.346990645,-0.00607363,0.234310031,0.233931139,-0.031888437,0.266460419,0.189945891,-0.049496494,0.29863748,0.179755896,-0.05626595,0.206571817,0.358835101,-0.025191251,0.197869688,0.240710929,-0.045439616,0.218828365,0.181486115,-0.055177905,0.244714782,0.14724201,-0.056890137,0.188621491,0.392843246,-0.045946855,0.166789055,0.305587143,-0.058484193,0.16990301,0.237196788,-0.061619122,0.184501067,0.180417061,-0.060873296 +Left,0.24703607,0.626754761,2.16E-07,0.291270792,0.553829193,-0.004438331,0.319293648,0.47893101,-0.013143572,0.342846751,0.424866825,-0.026756741,0.342044502,0.371157855,-0.038499918,0.251075387,0.357610524,0.007377317,0.279838234,0.281782866,-0.025902726,0.313506961,0.29688412,-0.053007502,0.339837849,0.335137367,-0.064629376,0.230032578,0.341551065,-0.006092393,0.235610008,0.228662997,-0.031683523,0.267993003,0.184336901,-0.048636381,0.300415337,0.175539404,-0.054733641,0.208087713,0.352678537,-0.024703583,0.198048666,0.233493537,-0.044525493,0.218827635,0.172683209,-0.053738747,0.244972825,0.137763962,-0.055150021,0.189832851,0.386227429,-0.045025434,0.167525738,0.299057394,-0.05711193,0.170231819,0.229455084,-0.060045537,0.184483081,0.17155768,-0.059259642 +Left,0.243575975,0.611924648,2.22E-07,0.287703693,0.542399585,-0.00629293,0.317436159,0.463192672,-0.015403656,0.342833847,0.403038949,-0.029113835,0.335688204,0.34794274,-0.04093137,0.247968033,0.344810069,0.006727078,0.27594012,0.266680807,-0.027033109,0.309017062,0.280795038,-0.055007931,0.335195154,0.318290025,-0.067075387,0.226003885,0.327542633,-0.005679624,0.230893686,0.214441314,-0.030521946,0.261926264,0.168991551,-0.047293991,0.293537617,0.158479482,-0.053396396,0.203244537,0.337955058,-0.023452124,0.192625657,0.220978931,-0.042756975,0.212213814,0.159068614,-0.051790789,0.237561688,0.122738943,-0.053184126,0.184060782,0.370101064,-0.043158028,0.161945611,0.28316319,-0.054820053,0.163428545,0.213445514,-0.057517573,0.176667154,0.155378252,-0.056614328 +Left,0.2484667,0.610222697,2.28E-07,0.290471673,0.541259527,-0.007777932,0.315760374,0.457103312,-0.017053349,0.338040352,0.389924914,-0.030498553,0.332893759,0.327860087,-0.041909572,0.246608347,0.344401717,0.004972584,0.271515936,0.264668286,-0.027126718,0.303593814,0.269508451,-0.053439174,0.330937624,0.297029316,-0.065176599,0.223578528,0.326401591,-0.006746192,0.224666968,0.212134048,-0.031003797,0.254111797,0.161615491,-0.046394445,0.285285771,0.143493921,-0.051870413,0.200154454,0.336128235,-0.023812335,0.186085969,0.218534052,-0.043435708,0.204626232,0.156322226,-0.051535048,0.229433,0.117563546,-0.052554939,0.18110916,0.368136346,-0.042894803,0.155156419,0.285003304,-0.055534843,0.153378665,0.215901762,-0.05835703,0.163365155,0.15621753,-0.05769337 +Left,0.248984382,0.621714234,2.37E-07,0.290836394,0.549445629,-0.008944262,0.317823142,0.468696713,-0.019956583,0.340707898,0.404168159,-0.035049852,0.335834444,0.341168046,-0.048224147,0.24708578,0.353645176,0.001499495,0.271501064,0.271197736,-0.032811645,0.304242104,0.281293631,-0.060129873,0.331689358,0.315661639,-0.071831033,0.222973928,0.338102579,-0.010014949,0.224068418,0.224979773,-0.03576465,0.2539424,0.176493913,-0.052168448,0.285837322,0.161938891,-0.058154296,0.198930055,0.350756377,-0.026917333,0.184117705,0.234390527,-0.047424786,0.20232746,0.171339795,-0.056847449,0.227722973,0.132298678,-0.058698829,0.179499269,0.386212707,-0.045795821,0.15211001,0.304105639,-0.05903016,0.150766045,0.235626131,-0.062681355,0.162032157,0.177363291,-0.062417008 +Left,0.24565351,0.626830697,2.41E-07,0.288472325,0.556221187,-0.009281305,0.316039264,0.474842072,-0.020255564,0.339390874,0.408965409,-0.03538559,0.331933528,0.34777379,-0.048440419,0.244258448,0.358592749,0.001800901,0.268362939,0.274400145,-0.033458397,0.300968111,0.284320682,-0.061573837,0.32847327,0.319198728,-0.073640727,0.219009638,0.34175992,-0.009757095,0.219908223,0.228394076,-0.03602292,0.249773845,0.178744495,-0.052557167,0.281998843,0.16266644,-0.058432683,0.194303691,0.353175282,-0.026915642,0.178315252,0.236776486,-0.04787825,0.195757955,0.171694249,-0.057269521,0.22117582,0.129955471,-0.05887308,0.174699873,0.387033463,-0.046174556,0.147405207,0.303753883,-0.059555858,0.145509571,0.234041944,-0.063108027,0.156520799,0.17393066,-0.062630571 +Left,0.24711515,0.641824603,2.45E-07,0.290532947,0.57312125,-0.010869483,0.320896953,0.493908942,-0.023098717,0.345162332,0.429977745,-0.038827457,0.339391112,0.366215587,-0.052278407,0.249116525,0.374144554,-0.001510648,0.2768251,0.289515346,-0.037816666,0.31002149,0.303552687,-0.066597156,0.336680204,0.340725958,-0.079057835,0.223364815,0.355210483,-0.012392836,0.225264326,0.239104986,-0.039039485,0.255452603,0.186450213,-0.055370953,0.287379742,0.16560182,-0.061414581,0.198122233,0.366374195,-0.028866254,0.18187809,0.249180079,-0.051217593,0.198424235,0.181159526,-0.061140042,0.222273469,0.133071601,-0.063057087,0.178532094,0.400682241,-0.047300939,0.151151448,0.317879319,-0.061744697,0.146540701,0.248596475,-0.065229051,0.153119206,0.187168613,-0.064679138 +Left,0.253454626,0.664677441,2.39E-07,0.297749251,0.596706986,-0.008719322,0.327506095,0.522271633,-0.020956585,0.351908535,0.465737581,-0.036984634,0.351995468,0.403964102,-0.051154085,0.259662539,0.396554172,-0.000457039,0.291666895,0.318981111,-0.036865924,0.325819641,0.333721519,-0.066296749,0.351704597,0.369960517,-0.079385154,0.236283854,0.378396869,-0.012569596,0.240622029,0.260595679,-0.040199578,0.272965342,0.212519214,-0.057587922,0.305442035,0.19814913,-0.063960619,0.212292224,0.390368819,-0.029912794,0.198074237,0.27395004,-0.051871657,0.214330882,0.206204906,-0.061824609,0.235963508,0.159471035,-0.063771516,0.193156034,0.425925136,-0.048999883,0.169575781,0.341984272,-0.062239978,0.166131079,0.272864282,-0.064677209,0.171330228,0.212590903,-0.063545078 +Left,0.267963201,0.692795753,1.49E-07,0.313811839,0.616897643,-0.000792046,0.347098768,0.542586327,-0.006825038,0.373073459,0.490775794,-0.018342391,0.374288678,0.441097975,-0.028333545,0.284666896,0.425297469,0.015762314,0.32003513,0.355098128,-0.016148284,0.352280855,0.375713646,-0.044281773,0.375860035,0.416877836,-0.056888856,0.266863883,0.409464121,0.001090404,0.279217303,0.296283394,-0.021801718,0.309949607,0.248446137,-0.039629463,0.340242237,0.234378666,-0.047441203,0.246622086,0.417277604,-0.018920833,0.245182991,0.297579169,-0.037143108,0.263634384,0.234073773,-0.048048295,0.285877079,0.196849346,-0.051361699,0.229355603,0.443949819,-0.040401019,0.216178566,0.355156958,-0.05121601,0.218063354,0.287975788,-0.054042503,0.227801695,0.234006077,-0.053754609 +Left,0.281933665,0.759266376,1.44E-07,0.329374343,0.68165499,0.000407486,0.358615518,0.602304101,-0.006351826,0.386636078,0.555423021,-0.018285876,0.399416476,0.512631893,-0.029208554,0.302852005,0.47468242,0.0064732,0.331166357,0.399579316,-0.024876732,0.363735646,0.433113962,-0.050499316,0.387618721,0.48100096,-0.063261844,0.285308987,0.472559988,-0.010117916,0.295898169,0.362579107,-0.031310588,0.322120041,0.309054166,-0.049142364,0.34778595,0.274408758,-0.060722455,0.267847627,0.497301638,-0.031328812,0.270321339,0.383403212,-0.05182163,0.287729323,0.316862762,-0.065978035,0.306848764,0.268745393,-0.074196495,0.255176842,0.539909482,-0.053366229,0.254565656,0.45307982,-0.069759287,0.26263994,0.387987494,-0.077371277,0.275501251,0.333093554,-0.081932425 +Left,0.267802089,0.790349841,1.01E-07,0.322885811,0.702085972,0.01213812,0.350483537,0.620186687,0.005935308,0.377168715,0.570165157,-0.007412206,0.389241934,0.525513589,-0.0206366,0.284094393,0.488888055,0.005995185,0.324818313,0.418623447,-0.024029849,0.360314131,0.448851168,-0.0476292,0.384861052,0.496461868,-0.061002247,0.263825506,0.495003015,-0.01886002,0.285615027,0.375015497,-0.04605354,0.322875857,0.334648907,-0.065803751,0.355907291,0.325742781,-0.077904619,0.249863386,0.529345334,-0.046436511,0.264579952,0.397273123,-0.07107529,0.295252711,0.341395617,-0.088609427,0.323826522,0.307946146,-0.099677734,0.249090672,0.57946074,-0.073231734,0.262564391,0.489649773,-0.096166134,0.280237764,0.422005892,-0.111238316,0.300729841,0.36488834,-0.121922836 +Left,0.263571441,0.798448205,1.29E-07,0.318352908,0.698679447,0.013271458,0.345025599,0.610952377,0.006245936,0.371991545,0.557691634,-0.008430488,0.386112869,0.510700107,-0.023233216,0.271811247,0.495270848,0.003374296,0.311460465,0.413020611,-0.029422684,0.351247013,0.43924731,-0.055302508,0.378803521,0.487872541,-0.069416985,0.251405537,0.504035413,-0.022173289,0.27155757,0.374839485,-0.050269481,0.314777076,0.329425454,-0.070360191,0.352638602,0.320174694,-0.08254429,0.239988625,0.539009154,-0.050166417,0.252417803,0.400071144,-0.074900076,0.285868198,0.339881241,-0.092170231,0.315971076,0.308233321,-0.102784604,0.243888095,0.585999012,-0.077315494,0.257559985,0.490496784,-0.099055931,0.276350975,0.421255469,-0.112650633,0.297346085,0.36689055,-0.12203081 +Left,0.262524664,0.785251856,1.37E-07,0.316390127,0.685145378,0.011278067,0.342291892,0.600049257,0.004064789,0.368387401,0.545896649,-0.010595074,0.381599814,0.498207241,-0.025316285,0.272719562,0.485284418,0.004760089,0.308596402,0.403450549,-0.027110111,0.349155307,0.426946729,-0.052461509,0.377523839,0.472231686,-0.066390984,0.252829462,0.490957946,-0.019437121,0.269263327,0.363442659,-0.045938458,0.310905248,0.316935003,-0.065384731,0.346968234,0.305582285,-0.077706158,0.240539134,0.523419023,-0.046476424,0.250357956,0.385667801,-0.071191058,0.28412047,0.325849235,-0.088354021,0.314222366,0.295562923,-0.0988563,0.241690204,0.568866372,-0.072851472,0.254258186,0.472426146,-0.094828792,0.27399689,0.405296564,-0.108222485,0.295619398,0.353992045,-0.11732696 +Left,0.252185166,0.762736738,1.38E-07,0.309022307,0.661381006,0.016909083,0.33362779,0.574982464,0.013293829,0.359373152,0.51904434,0.001347302,0.373651922,0.470994294,-0.011416015,0.254030406,0.460371554,0.009579269,0.290980637,0.374581367,-0.017494634,0.333181381,0.378547966,-0.039683383,0.365246177,0.407206804,-0.053168304,0.236008763,0.468537569,-0.016377393,0.259595752,0.342597127,-0.040478904,0.30144912,0.296343029,-0.058886077,0.33669591,0.285640478,-0.071395993,0.227544576,0.501032531,-0.04422329,0.247582808,0.364449799,-0.06726741,0.285703152,0.31008321,-0.082808234,0.317293406,0.284131944,-0.092905596,0.23302418,0.545010984,-0.070935056,0.249744639,0.446600258,-0.093486905,0.268739045,0.378689051,-0.107767634,0.288795173,0.325880826,-0.117735982 +Left,0.254246831,0.747383714,1.01E-07,0.309991956,0.650370181,0.017020592,0.335713804,0.563208103,0.013996935,0.361266732,0.507795095,0.002744134,0.374249727,0.459741861,-0.009120221,0.258663893,0.446256042,0.011709537,0.295867503,0.369037688,-0.013633747,0.335810363,0.384440362,-0.034371369,0.364540637,0.419499397,-0.046774704,0.240824103,0.451367706,-0.013798585,0.267759442,0.332398176,-0.03600499,0.309096426,0.289378196,-0.052723024,0.343800098,0.279916108,-0.063942932,0.230709478,0.48213461,-0.041402441,0.252933919,0.349883139,-0.062555291,0.288981199,0.29754889,-0.076397456,0.319190502,0.271970898,-0.085435838,0.233617857,0.526324153,-0.067984991,0.249799415,0.430571824,-0.089082591,0.268954337,0.363955617,-0.101943143,0.289696753,0.311902285,-0.110851035 +Left,0.266986758,0.734233201,1.45E-07,0.317799419,0.649724424,0.00915703,0.346374154,0.569773614,0.004041614,0.372372627,0.516670406,-0.008056831,0.37760675,0.466949403,-0.020057807,0.281827986,0.445768058,0.009651102,0.309935182,0.367576838,-0.016819565,0.346675396,0.383261263,-0.03895333,0.373149902,0.416455775,-0.051105473,0.263226181,0.444542766,-0.011208995,0.277144939,0.331797302,-0.032063521,0.312673599,0.288588226,-0.04874523,0.34386003,0.274851888,-0.059865169,0.247864187,0.469478995,-0.035171747,0.25671649,0.347193241,-0.055263784,0.288383812,0.295604467,-0.068511307,0.318097085,0.270524561,-0.076593734,0.240887135,0.51062119,-0.059056353,0.249785274,0.41937843,-0.077507429,0.2674537,0.355166078,-0.088057958,0.288896263,0.307142943,-0.094932348 +Left,0.27780211,0.730853438,2.20E-07,0.32461229,0.656438649,-0.00392213,0.355737716,0.582543492,-0.012833389,0.382781059,0.530578911,-0.026315998,0.385545194,0.474898487,-0.038718201,0.297484487,0.449458867,0.005981602,0.322251499,0.378211856,-0.022708384,0.355124056,0.399533927,-0.047394823,0.378829122,0.436165929,-0.059966926,0.279227227,0.443508625,-0.007801646,0.289905965,0.336160988,-0.029199693,0.319158733,0.292150736,-0.047850393,0.347021103,0.272462428,-0.059297588,0.260817468,0.461610317,-0.026062516,0.26589635,0.351171434,-0.04524187,0.291222394,0.297067523,-0.058179636,0.317530751,0.266932905,-0.065021925,0.245910943,0.499970078,-0.045692641,0.248822868,0.41162625,-0.060081474,0.264664382,0.350986719,-0.066198379,0.285822034,0.30710423,-0.069268912 +Left,0.286708653,0.712841809,2.39E-07,0.335428387,0.644015014,-0.005723309,0.370143324,0.568918824,-0.013869257,0.39909339,0.51620394,-0.026289852,0.402997226,0.456842482,-0.03704777,0.313285202,0.433388084,0.009180464,0.340402931,0.362988353,-0.019104065,0.371667206,0.383720905,-0.043514438,0.396708488,0.419833541,-0.056158446,0.295084596,0.422766536,-0.003714852,0.306216955,0.315940917,-0.024641704,0.333628654,0.272523642,-0.041934717,0.362536043,0.251233399,-0.052301008,0.275347084,0.437352359,-0.021922283,0.282043874,0.329243362,-0.041153505,0.304244339,0.272500277,-0.053454794,0.32940343,0.234899223,-0.059956126,0.258042693,0.472467482,-0.041890178,0.259951144,0.391810715,-0.056823824,0.271907121,0.332781494,-0.06354063,0.289977521,0.284604371,-0.067148566 +Left,0.289571971,0.703381896,2.49E-07,0.33782801,0.638394654,-0.007846762,0.373956859,0.56377095,-0.016869569,0.40347302,0.511468172,-0.029732741,0.405887902,0.449901283,-0.040973991,0.319165617,0.426441818,0.006485845,0.344652236,0.355636656,-0.022382157,0.374735922,0.377442658,-0.0472266,0.399668366,0.414092481,-0.060005646,0.299954772,0.415334344,-0.005219347,0.310787857,0.308028698,-0.025516586,0.336031646,0.263775915,-0.042398117,0.363826841,0.239665404,-0.052672531,0.27919364,0.429560632,-0.022334361,0.285725117,0.321157187,-0.040944617,0.306013733,0.263067842,-0.05267347,0.329969019,0.222829133,-0.058949515,0.260752469,0.465059906,-0.041392803,0.262741476,0.383634359,-0.055544265,0.273912549,0.323887408,-0.061439704,0.291505158,0.274652958,-0.064559117 +Left,0.289682329,0.69370532,2.42E-07,0.34059,0.626915693,-0.006237104,0.377979547,0.555737019,-0.014412928,0.408834457,0.504070461,-0.027242819,0.410099477,0.440932691,-0.038731225,0.322900742,0.421073943,0.011263998,0.348351568,0.350636452,-0.017539229,0.379141152,0.371544063,-0.043303709,0.404570401,0.407300293,-0.056567419,0.304603279,0.407750428,-0.001134168,0.316969603,0.302390873,-0.019919494,0.342442334,0.257076263,-0.036616445,0.369233221,0.232131809,-0.046969358,0.283969909,0.418332994,-0.019198421,0.293202341,0.310966551,-0.036102526,0.313411295,0.252570927,-0.046528406,0.336286247,0.212252825,-0.052020695,0.264924049,0.449359715,-0.03935181,0.266759336,0.367802739,-0.051964644,0.277862817,0.308400363,-0.056512609,0.295479536,0.259937823,-0.058573198 +Left,0.291193664,0.676386178,2.49E-07,0.341868401,0.610194087,-0.006175754,0.377518564,0.539910436,-0.013877498,0.408121109,0.487940729,-0.026308585,0.409985244,0.425395668,-0.03750328,0.321423113,0.409456432,0.011436328,0.346464127,0.339858502,-0.017423917,0.377798349,0.357946426,-0.043075401,0.403804988,0.39135021,-0.056115109,0.303579628,0.394664466,-0.000789158,0.315231204,0.289354324,-0.019937748,0.342125475,0.245280191,-0.036093384,0.370469034,0.222563207,-0.045631025,0.283331037,0.403482854,-0.018723147,0.290541619,0.295793027,-0.03591482,0.310616374,0.237534896,-0.045992255,0.334210724,0.198811412,-0.05075964,0.264382958,0.432462484,-0.038764037,0.264962554,0.348628283,-0.051310021,0.275203705,0.288246751,-0.0556123,0.292628676,0.240601838,-0.057229534 +Left,0.286910832,0.673541188,2.62E-07,0.336241752,0.613567889,-0.00996644,0.373362035,0.541213095,-0.018496793,0.402745754,0.48688221,-0.030857578,0.404525757,0.422743469,-0.041367535,0.315813154,0.410148919,0.006147396,0.340881407,0.336719632,-0.022768578,0.372687399,0.355253309,-0.0469395,0.398986429,0.390477955,-0.058588926,0.296129853,0.391269535,-0.004251348,0.30857107,0.28559193,-0.024982888,0.338802606,0.244013071,-0.040289443,0.369937778,0.227161929,-0.048030138,0.274107337,0.39722091,-0.020424046,0.280233473,0.284234494,-0.038464751,0.302079588,0.225617304,-0.047923017,0.327728391,0.188308269,-0.05153783,0.253237128,0.424756169,-0.038984496,0.251310647,0.337159544,-0.051977746,0.260392755,0.272783279,-0.056360073,0.277486175,0.2218685,-0.057542186 +Left,0.283292651,0.682127357,2.52E-07,0.332559913,0.617336988,-0.008338955,0.368414581,0.543993115,-0.016547725,0.397890627,0.490946472,-0.028971797,0.401122272,0.428177088,-0.039664704,0.309985429,0.415355682,0.009454377,0.335521013,0.342025697,-0.019376339,0.366895378,0.359622598,-0.044113245,0.39267689,0.393107206,-0.056169529,0.29123956,0.398522198,-0.001525729,0.303638995,0.293927908,-0.02165539,0.33130464,0.249909356,-0.037509792,0.360365391,0.227971211,-0.04595409,0.27034533,0.406231999,-0.018327285,0.276970625,0.297349095,-0.036100991,0.296595752,0.237455562,-0.046044063,0.320092261,0.197261244,-0.050172381,0.250738263,0.43466422,-0.037378918,0.249354854,0.349657565,-0.050108373,0.258574426,0.286867589,-0.054447435,0.275699466,0.236501038,-0.055695917 +Left,0.281951398,0.684829116,2.35E-07,0.328813642,0.61068666,-0.001907384,0.358266413,0.533620536,-0.008956816,0.384995848,0.482632458,-0.021316018,0.391785681,0.427694678,-0.032541536,0.297449559,0.4060103,0.012716604,0.323705494,0.331362724,-0.015519743,0.357547671,0.348413855,-0.040280174,0.384623587,0.382709682,-0.053418305,0.280613959,0.397120684,-0.002621193,0.290939599,0.288524389,-0.022914372,0.319344223,0.241764516,-0.040554706,0.347554713,0.219620436,-0.051548608,0.263020396,0.413955003,-0.02313303,0.268295795,0.301207006,-0.041597161,0.289913565,0.24065268,-0.053596832,0.313523084,0.199668095,-0.060422756,0.248675346,0.450576067,-0.04513099,0.249345928,0.368696928,-0.060398575,0.260979354,0.306426257,-0.067379147,0.278259665,0.254534394,-0.071351655 +Left,0.28156811,0.692620099,2.07E-07,0.329089314,0.613972902,0.000233948,0.358375728,0.536732912,-0.006809969,0.385202855,0.484531224,-0.019314259,0.393131286,0.432040364,-0.030956972,0.299022168,0.407695621,0.010893808,0.325950772,0.335615605,-0.018109411,0.36006856,0.354661405,-0.043113898,0.386242718,0.389974177,-0.056424811,0.282146275,0.402281016,-0.005716515,0.292699158,0.293865502,-0.02684233,0.321052402,0.246841818,-0.045308195,0.348669946,0.222081542,-0.057374343,0.264803261,0.422879815,-0.026990997,0.270261288,0.312805474,-0.04711796,0.293374419,0.255013347,-0.060578033,0.317742199,0.216880381,-0.068567999,0.250350624,0.462860316,-0.049299683,0.252648413,0.378434956,-0.065774702,0.265963763,0.316403151,-0.073611662,0.284597903,0.265899122,-0.07847961 +Left,0.27882567,0.702174187,1.58E-07,0.33054775,0.615838528,0.008995448,0.35789749,0.535635054,0.004336277,0.38465026,0.481472909,-0.006841565,0.398864567,0.431315899,-0.017751589,0.295568645,0.409252584,0.01115639,0.326821893,0.338009745,-0.014299242,0.363637567,0.351630241,-0.03516585,0.391053051,0.383252323,-0.047036871,0.277940392,0.408529758,-0.009896958,0.291067868,0.295925319,-0.030303799,0.324646056,0.249477372,-0.046446681,0.355094373,0.229013532,-0.057638496,0.263346553,0.435272425,-0.034158036,0.272386193,0.316389203,-0.055252232,0.302750647,0.262585402,-0.068319559,0.331604123,0.232140318,-0.076543517,0.25550127,0.478355229,-0.058252703,0.262248516,0.388032258,-0.07901492,0.278956711,0.323417097,-0.090208232,0.299272209,0.271484882,-0.097510241 +Left,0.27472496,0.702435076,8.61E-08,0.331104308,0.611649394,0.020885115,0.356692344,0.525848925,0.021226242,0.383552253,0.470949233,0.013161392,0.403100103,0.423528522,0.004341234,0.288777798,0.408569276,0.015573481,0.325871259,0.333746135,-0.007676499,0.364922762,0.346219957,-0.026049744,0.393674135,0.379265428,-0.036726329,0.270971298,0.411164761,-0.010681087,0.293438017,0.295604944,-0.030848702,0.33352828,0.250797063,-0.044770103,0.368028313,0.236377001,-0.053996075,0.259443521,0.440327048,-0.038805198,0.275903285,0.313096166,-0.059281018,0.310287327,0.260345221,-0.070758209,0.340773046,0.231625482,-0.078076601,0.258878529,0.482263088,-0.065579481,0.27137512,0.386909813,-0.087725721,0.290511429,0.32162571,-0.099958479,0.311990738,0.269676268,-0.108018443 +Left,0.278004527,0.705939054,9.98E-08,0.334956437,0.616580546,0.021027068,0.362479717,0.534486175,0.021399956,0.389816165,0.480274349,0.013022125,0.406721026,0.43300128,0.00394566,0.29727605,0.415890455,0.018015277,0.333695263,0.3407166,-0.004552375,0.372668445,0.35205251,-0.023149965,0.400624633,0.383332133,-0.033932455,0.279114664,0.416179061,-0.008275173,0.299868524,0.299658954,-0.026785163,0.337889731,0.254467189,-0.040997546,0.37019068,0.239453003,-0.051078346,0.266552806,0.441958129,-0.036456719,0.284252256,0.31568855,-0.055416331,0.319291472,0.268476129,-0.06617102,0.349911094,0.245840788,-0.073323689,0.264221817,0.480962902,-0.063442484,0.278793693,0.386232764,-0.08362373,0.298653215,0.323230028,-0.094434895,0.320278019,0.274257481,-0.101690285 +Left,0.273479342,0.706241369,1.51E-07,0.335844696,0.603179336,0.014184185,0.357574582,0.513973236,0.009642098,0.384140253,0.462497503,-0.00171084,0.404754639,0.423162401,-0.013113686,0.268042356,0.407538086,0.002429674,0.3250404,0.33342427,-0.028660959,0.367149264,0.354256362,-0.053661693,0.396184772,0.397084892,-0.06788981,0.253676593,0.418232381,-0.021070216,0.30132103,0.298052907,-0.048802655,0.345678419,0.261927009,-0.068127371,0.381767899,0.253488123,-0.079406798,0.253017068,0.453645796,-0.046227418,0.292153835,0.327243239,-0.071391381,0.330094427,0.275077283,-0.087940812,0.35936287,0.245914668,-0.09719336,0.268280149,0.499552608,-0.070178352,0.296938837,0.408183366,-0.091998309,0.320352495,0.349848449,-0.104988024,0.343147993,0.303718984,-0.113321282 +Left,0.260499477,0.707052708,2.14E-07,0.324544549,0.602295637,0.01500899,0.344572425,0.512742758,0.013077018,0.366879165,0.459090531,0.004345723,0.389081091,0.425100267,-0.004731254,0.253913492,0.405355155,0.004341958,0.298310548,0.318721503,-0.020705679,0.342193246,0.308705926,-0.041189291,0.375518084,0.32197386,-0.054243594,0.240375757,0.416798323,-0.018129285,0.285364121,0.29606849,-0.042412039,0.331970036,0.257689595,-0.058442324,0.368681818,0.246350572,-0.068179421,0.241780043,0.44917053,-0.041589122,0.278775454,0.327720761,-0.063779585,0.317519158,0.278709114,-0.076087669,0.347557425,0.254832864,-0.083058469,0.257416517,0.491470605,-0.064261153,0.285874695,0.40158987,-0.08534541,0.310910344,0.343431085,-0.097086199,0.335563958,0.300880253,-0.104460098 +Left,0.235269338,0.719606638,2.29E-07,0.296255767,0.613881707,0.01258967,0.317798734,0.529345036,0.008181385,0.34130767,0.477302939,-0.003491987,0.361742914,0.43184647,-0.014847069,0.230270877,0.419537514,0.011128859,0.277774066,0.341363937,-0.014916945,0.322870076,0.344608217,-0.037415951,0.356428266,0.369257152,-0.050918151,0.215674222,0.4251329,-0.010817425,0.255414277,0.309328586,-0.032812752,0.298811287,0.269492298,-0.048995227,0.334036827,0.259613037,-0.05916822,0.213614941,0.454536259,-0.035010755,0.248291925,0.33151412,-0.055998098,0.285818309,0.28643778,-0.067168862,0.315576434,0.268111765,-0.072999328,0.225430951,0.494513243,-0.058824025,0.252381235,0.405395865,-0.07696759,0.275039494,0.346945703,-0.085765548,0.29712984,0.303775311,-0.0907607 +Left,0.231539637,0.710910439,1.40E-07,0.287159115,0.614225805,0.01323608,0.31154865,0.533325911,0.009426777,0.334981084,0.481331736,-0.001480859,0.351709574,0.43839407,-0.012688188,0.232022703,0.412650079,0.006101191,0.274093509,0.329799831,-0.016472301,0.31371212,0.326139271,-0.033956271,0.34179908,0.342841476,-0.044232015,0.216044962,0.420618623,-0.015887786,0.248208255,0.301795363,-0.040226147,0.290965825,0.271773279,-0.055678055,0.323952675,0.272930205,-0.064511754,0.208713382,0.451653779,-0.038985413,0.241959006,0.33243838,-0.063805752,0.289583415,0.322979987,-0.072507493,0.324622333,0.336959958,-0.075034723,0.212698013,0.494221956,-0.061208695,0.233071238,0.399111331,-0.082917839,0.253563792,0.332169235,-0.092870161,0.273800701,0.280959785,-0.098329619 +Left,0.233974516,0.708104432,1.24E-07,0.284499198,0.619447052,0.011143495,0.310497552,0.544641972,0.007628824,0.333588779,0.493445188,-0.003129785,0.343754321,0.444416493,-0.013988802,0.252328008,0.422818184,0.014939099,0.278778464,0.349853247,-0.009998395,0.313088357,0.358404577,-0.030982347,0.337594032,0.386161804,-0.042614233,0.236288786,0.420167178,-0.00598833,0.251470417,0.312427402,-0.027893875,0.283433318,0.27116549,-0.044784326,0.308946937,0.256247044,-0.055105433,0.220560879,0.441307157,-0.029991152,0.228606239,0.321494341,-0.050743472,0.257990599,0.271775693,-0.062872268,0.284631699,0.246012628,-0.069245219,0.20941861,0.479643762,-0.053740919,0.216652825,0.389798552,-0.073525913,0.234025717,0.326460838,-0.083971024,0.254478306,0.278593034,-0.089943238 +Left,0.230991587,0.702865064,2.04E-07,0.279457569,0.621146619,9.91E-05,0.307928532,0.54798913,-0.006877644,0.332031369,0.49591589,-0.019150091,0.340450048,0.439085126,-0.030847924,0.251975328,0.423658729,0.010742822,0.277238011,0.352835178,-0.017409576,0.309531391,0.366427481,-0.041781563,0.333455265,0.396588653,-0.054646257,0.235091686,0.417972535,-0.004576521,0.248110488,0.314778388,-0.027041754,0.277172416,0.274761438,-0.045704059,0.303010046,0.257453978,-0.056744982,0.217339993,0.435509831,-0.02428611,0.222510695,0.325910509,-0.044562224,0.245443314,0.269898832,-0.057585958,0.269133806,0.235498086,-0.064172104,0.201965615,0.472566515,-0.044932459,0.205085233,0.386672199,-0.060968745,0.219597071,0.326033086,-0.06840843,0.239101216,0.280516028,-0.072156623 +Left,0.223702505,0.699608207,2.17E-07,0.271725655,0.62531364,-0.002358818,0.302023143,0.554748833,-0.009159558,0.326097518,0.504237235,-0.021063296,0.333127201,0.44389528,-0.032094963,0.248327181,0.429478288,0.013442556,0.273666382,0.358699232,-0.015407151,0.304014087,0.376034915,-0.040949561,0.326468468,0.409612,-0.053787161,0.231400162,0.417820394,-0.000137093,0.245588019,0.317708433,-0.021462742,0.274416685,0.279677421,-0.039208118,0.301150858,0.263357937,-0.049043782,0.211939692,0.429180205,-0.018891942,0.218895718,0.32440877,-0.037929635,0.24054648,0.267604291,-0.049470007,0.263885975,0.230465412,-0.054566622,0.19309862,0.46086511,-0.039070576,0.193593085,0.376850724,-0.053350631,0.205992654,0.316883624,-0.058838755,0.22471495,0.270019114,-0.060839027 +Left,0.219576567,0.696192026,2.36E-07,0.265698642,0.626375377,-0.00552534,0.297707617,0.551487982,-0.01338213,0.324817777,0.497700244,-0.025747098,0.328866333,0.437368959,-0.036846783,0.242413864,0.428541422,0.008753966,0.268848956,0.355374694,-0.020867607,0.299096227,0.37580052,-0.046278257,0.321773648,0.41075626,-0.058722466,0.224247575,0.41580534,-0.003425098,0.237594232,0.315275252,-0.025859784,0.267330885,0.277020484,-0.042939257,0.296195418,0.262134254,-0.051572576,0.203628972,0.427232951,-0.020930707,0.207791626,0.321207464,-0.04024557,0.228216082,0.263539314,-0.051223744,0.251799673,0.226546481,-0.055553216,0.18433699,0.459083676,-0.040207062,0.183324903,0.375285476,-0.054223727,0.194123596,0.313509166,-0.059568644,0.212298825,0.264900208,-0.061321907 +Left,0.229346231,0.67448771,2.32E-07,0.275563478,0.602529883,-0.005498568,0.307725906,0.533399463,-0.013498468,0.334837943,0.48122099,-0.026345331,0.33614102,0.420968115,-0.037965111,0.250977725,0.412256807,0.011158395,0.275146782,0.338744819,-0.018536976,0.305277318,0.355951428,-0.044169538,0.328281462,0.389941812,-0.056327134,0.232838988,0.398444921,-0.00076653,0.244991034,0.297602475,-0.022073416,0.273722261,0.258864105,-0.038436886,0.301566929,0.242904529,-0.046517253,0.212332591,0.408076137,-0.018270034,0.217854723,0.302171707,-0.036348209,0.23812142,0.245012477,-0.046395052,0.260880172,0.208742157,-0.049971446,0.192932397,0.437373161,-0.037694715,0.190478981,0.35308522,-0.050422858,0.19980669,0.290918529,-0.054865971,0.216609269,0.242040962,-0.055749007 +Left,0.240444988,0.661923826,2.10E-07,0.287272722,0.593222797,-0.003824563,0.317523688,0.52354908,-0.010305441,0.342478007,0.474193752,-0.022077665,0.345415831,0.417419642,-0.032308582,0.26135397,0.401637018,0.014813245,0.284817368,0.327770233,-0.0147698,0.314908147,0.347517461,-0.040259168,0.338241398,0.385495722,-0.051983807,0.243940979,0.388552547,0.00216133,0.255611777,0.287474513,-0.018792735,0.28400448,0.250072837,-0.034707706,0.311833233,0.236977816,-0.04202712,0.224525303,0.398519039,-0.01625078,0.230456918,0.292783767,-0.033878587,0.249950469,0.23625569,-0.042851303,0.272102892,0.201469362,-0.045242745,0.206309363,0.427926302,-0.036606718,0.20453018,0.343150586,-0.048624258,0.212217033,0.279670835,-0.05231012,0.227121338,0.229648858,-0.052471057 +Left,0.258101255,0.647514999,2.32E-07,0.303954482,0.579844713,-0.004263685,0.33446604,0.51292187,-0.011702218,0.361230433,0.464229673,-0.024085231,0.363917768,0.403574944,-0.035258513,0.275139064,0.394454449,0.012489371,0.300419986,0.321443319,-0.016099453,0.331775904,0.338450342,-0.04108081,0.356011927,0.372439146,-0.053019851,0.259574354,0.380555451,-5.83E-05,0.271109819,0.2793926,-0.020091489,0.300415695,0.238930017,-0.036271386,0.329108268,0.224154294,-0.044595838,0.241598919,0.389790982,-0.018048167,0.246281058,0.284596324,-0.034896456,0.267547458,0.225401193,-0.044735115,0.291345626,0.188858613,-0.048536021,0.225221366,0.417679995,-0.037869122,0.221609488,0.332635045,-0.049891938,0.23170495,0.268773079,-0.054164317,0.249481276,0.219932839,-0.055200841 +Left,0.275850147,0.644683659,2.29E-07,0.32034719,0.573069155,-0.001204403,0.3471331,0.503448486,-0.007625251,0.369558454,0.455105573,-0.01936657,0.372870535,0.398172915,-0.030245043,0.288481265,0.383154631,0.013738748,0.312317282,0.312686533,-0.012463861,0.343916208,0.325136244,-0.035815213,0.367576301,0.354302883,-0.048034996,0.272824436,0.37482211,-0.000514045,0.285701215,0.276321203,-0.020453295,0.314974576,0.234392315,-0.038203251,0.342465818,0.214996144,-0.048873089,0.255990505,0.388489366,-0.019564759,0.263470352,0.285220623,-0.037598457,0.286607742,0.230151057,-0.049958624,0.310562074,0.195535198,-0.056350555,0.241606086,0.420614153,-0.039928269,0.244288862,0.337952316,-0.054404508,0.25766632,0.278358459,-0.061336979,0.276326835,0.2324159,-0.064844988 +Left,0.268865705,0.652069509,1.95E-07,0.314834327,0.572202086,0.012429918,0.33876124,0.498682052,0.009593699,0.361347646,0.448631436,-0.00092967,0.370232671,0.397426307,-0.011618239,0.27509591,0.387219906,0.016642909,0.301459461,0.314853609,-0.003038676,0.337043673,0.314284444,-0.020101272,0.364342749,0.328933895,-0.030534154,0.259036809,0.384719819,-0.005630597,0.271393627,0.275366247,-0.022867218,0.304204851,0.231136382,-0.037280284,0.334023505,0.211573929,-0.047528431,0.245599449,0.404079616,-0.030535406,0.2562356,0.289486438,-0.049450632,0.287950784,0.249667019,-0.059911534,0.317186028,0.23266302,-0.066162214,0.238790914,0.437190682,-0.055152077,0.246872976,0.345957339,-0.073743887,0.265783668,0.286882281,-0.082746826,0.288379014,0.242881387,-0.088404812 +Left,0.276710838,0.670857489,1.53E-07,0.321302772,0.593983233,0.002444121,0.344628721,0.521196008,-0.003356119,0.364265501,0.473647863,-0.01456396,0.372161895,0.42484203,-0.024634466,0.282013774,0.410152614,0.011244716,0.3082726,0.338001013,-0.014711067,0.34071511,0.358687401,-0.035457067,0.364074379,0.395005643,-0.045920037,0.266858071,0.405119568,-0.004770726,0.28137362,0.300296336,-0.025987566,0.310982853,0.256100416,-0.041810416,0.33822751,0.234836414,-0.050788805,0.251218557,0.423411191,-0.025053222,0.256594539,0.309510261,-0.044525295,0.276142925,0.249046341,-0.057142433,0.295636386,0.207058907,-0.063938081,0.239524573,0.460050344,-0.045879103,0.240023047,0.37962243,-0.062048964,0.248882979,0.317933828,-0.070488729,0.261591762,0.264570296,-0.075531729 +Left,0.277471542,0.695367813,2.06E-07,0.320869952,0.620105624,-0.00558105,0.347883016,0.543593764,-0.014399728,0.3701877,0.490767747,-0.027171383,0.372343272,0.437781364,-0.038528401,0.282385081,0.435363382,0.005656783,0.308041066,0.35510987,-0.024070038,0.340044379,0.37596935,-0.048652746,0.364344776,0.414755911,-0.060591731,0.267406493,0.427169085,-0.006430229,0.281312287,0.320339829,-0.028524036,0.31085813,0.27700913,-0.045215923,0.339072287,0.256238341,-0.053979848,0.250975221,0.444530278,-0.023695396,0.253890872,0.333953559,-0.042511236,0.270563692,0.270215005,-0.055074755,0.288743854,0.222175598,-0.061472084,0.237680674,0.483225226,-0.042412814,0.226941317,0.408659369,-0.056280274,0.228590965,0.348859698,-0.062668949,0.236045077,0.295144022,-0.066137254 +Left,0.279624462,0.697693527,2.22E-07,0.323009461,0.625638366,-0.006485217,0.350845367,0.549101949,-0.015804539,0.374527872,0.495690823,-0.029052719,0.378085017,0.440686166,-0.04095193,0.287081957,0.438035667,0.005212276,0.312298149,0.358199626,-0.023848943,0.343399853,0.377444148,-0.048025809,0.36702919,0.414738864,-0.060009614,0.271741956,0.429409742,-0.006563393,0.285852045,0.3248083,-0.029241582,0.316127777,0.282354772,-0.046580717,0.345437407,0.261566997,-0.055826243,0.254224718,0.445605844,-0.023554543,0.258080095,0.337112874,-0.042805973,0.27630803,0.274334967,-0.056311846,0.296453387,0.227016196,-0.063435413,0.239224255,0.482906491,-0.042073537,0.229595527,0.406551093,-0.05618925,0.231946737,0.346352637,-0.06340611,0.240503147,0.293240756,-0.067681298 +Left,0.282735169,0.690644503,2.20E-07,0.326607883,0.617546082,-0.004910753,0.354313761,0.541912198,-0.01330764,0.377741784,0.490822583,-0.026128003,0.381699741,0.434661925,-0.0374896,0.29055962,0.428996325,0.007930509,0.316778123,0.34904331,-0.020740127,0.348743081,0.368226886,-0.044608973,0.373417467,0.405085921,-0.056476317,0.276089072,0.419023126,-0.004929855,0.290638804,0.314395428,-0.027224369,0.321017414,0.270120442,-0.044512767,0.35053727,0.24805592,-0.053898819,0.259229869,0.434122413,-0.02306678,0.263701499,0.323915601,-0.042124219,0.281913251,0.260823071,-0.055147838,0.302189112,0.213725016,-0.061979432,0.244882673,0.470013887,-0.042733997,0.237411126,0.391848952,-0.056926213,0.240019232,0.330177814,-0.063993059,0.248556316,0.275981724,-0.068086244 +Left,0.289060652,0.669794798,2.28E-07,0.333882689,0.599620759,-0.003275922,0.361614317,0.52858001,-0.010398964,0.385089189,0.478530675,-0.022760384,0.387527466,0.420068592,-0.033692181,0.300600201,0.415209323,0.012478831,0.324705034,0.339437425,-0.014475118,0.355349243,0.356662273,-0.036940936,0.378919721,0.390584886,-0.047821373,0.286316127,0.403736413,-0.001274027,0.299597889,0.301999509,-0.021167167,0.328372687,0.255727947,-0.036826335,0.357085794,0.230373025,-0.045576178,0.269236028,0.416044086,-0.020629963,0.275187075,0.305838287,-0.038599532,0.2932944,0.241245791,-0.050813936,0.314064741,0.195310175,-0.057075221,0.253641456,0.446771801,-0.041584879,0.249850422,0.361135364,-0.054880261,0.254134834,0.29448095,-0.06170154,0.264991075,0.239786565,-0.065631755 +Left,0.291055024,0.650842905,2.35E-07,0.335702568,0.579975605,-0.001308101,0.363833964,0.513932824,-0.00772224,0.387854159,0.467712224,-0.019940197,0.389332205,0.410296917,-0.031098522,0.303156167,0.401350588,0.015452792,0.327102274,0.328157932,-0.011459399,0.358427405,0.346364021,-0.034866281,0.382436186,0.37952438,-0.046409387,0.289330602,0.389098674,0.000568093,0.302919835,0.288603902,-0.019448582,0.332761377,0.242736876,-0.036382057,0.362159938,0.219029993,-0.04594478,0.27233392,0.399841845,-0.019762656,0.280184746,0.288938046,-0.037713021,0.299545109,0.224147767,-0.05052061,0.320907474,0.179930419,-0.056926828,0.256540954,0.427959859,-0.041526023,0.255442798,0.339012742,-0.054588664,0.261928082,0.270976722,-0.061202236,0.274861306,0.217131257,-0.064717792 +Left,0.291058481,0.646652997,2.17E-07,0.337534308,0.579094887,-0.002229852,0.366351426,0.511276484,-0.008801884,0.390777558,0.461891294,-0.021022772,0.393566251,0.402145952,-0.031807885,0.306381375,0.398158342,0.015458294,0.331535488,0.324985206,-0.011332274,0.362353444,0.342420369,-0.034381546,0.386526525,0.37701565,-0.045294631,0.290974796,0.382089466,0.001274082,0.305491209,0.276975751,-0.019028815,0.335206896,0.234061047,-0.035273444,0.36432296,0.215397045,-0.043499302,0.272417516,0.388954431,-0.018425662,0.279846609,0.273922175,-0.035628922,0.300326228,0.209139317,-0.047411349,0.322837681,0.166231275,-0.052824322,0.255372643,0.414917737,-0.039724961,0.250649929,0.324366033,-0.051255029,0.256643891,0.256218076,-0.056643739,0.269717097,0.20252043,-0.05932815 +Left,0.287295878,0.64695394,2.15E-07,0.333795279,0.581100941,-0.002266079,0.364639252,0.513445258,-0.008788362,0.390503556,0.463962466,-0.020833539,0.394516289,0.405388117,-0.031458866,0.307428122,0.397598684,0.014850208,0.334094316,0.324977905,-0.012168797,0.364757031,0.341827601,-0.035491314,0.389698863,0.377406329,-0.046652064,0.290801167,0.379388511,0.000922033,0.305753201,0.274075091,-0.019615142,0.336384237,0.233590811,-0.035696108,0.367089868,0.218714178,-0.043758851,0.271099538,0.384736419,-0.018385738,0.279037684,0.269472957,-0.035474461,0.29981783,0.207965106,-0.046608087,0.323298693,0.168127924,-0.051735848,0.253128886,0.410041749,-0.039307978,0.248810738,0.321840405,-0.050585844,0.254827678,0.256790817,-0.055368666,0.267962277,0.205308452,-0.057690706 +Left,0.285892636,0.65074861,2.27E-07,0.331097007,0.577875376,-0.001533662,0.359914094,0.507640541,-0.008068628,0.385572791,0.459094107,-0.020118626,0.390749156,0.401920497,-0.030988861,0.300475001,0.393334746,0.01406662,0.32884714,0.319206834,-0.012894841,0.361511648,0.336448193,-0.035642829,0.386254251,0.369791448,-0.046966758,0.286667377,0.382320523,-0.000871535,0.303093016,0.279265195,-0.022255948,0.334024251,0.237738326,-0.039376304,0.363687009,0.218103796,-0.048759066,0.269866437,0.39411068,-0.021060579,0.280689955,0.284985185,-0.040178478,0.302737564,0.22490041,-0.052679155,0.325987607,0.18397069,-0.058770206,0.254155725,0.423131257,-0.042680454,0.254977286,0.33733207,-0.057208497,0.26305908,0.271961212,-0.064455658,0.277233213,0.21871163,-0.068323597 +Left,0.281393826,0.650934994,2.32E-07,0.325439841,0.57905221,-0.00085044,0.353263438,0.504652619,-0.006599707,0.378644377,0.455567926,-0.017432408,0.385836333,0.403944045,-0.027097758,0.295471698,0.386725485,0.011962975,0.323645443,0.31415984,-0.0144773,0.358471632,0.329514295,-0.036838915,0.385132432,0.358460933,-0.048572786,0.281465799,0.379004896,-0.002667548,0.297202766,0.279494226,-0.022548374,0.326857805,0.234312817,-0.038611289,0.35362488,0.207568973,-0.04837295,0.265961856,0.395263702,-0.022128699,0.275825053,0.288921297,-0.041126687,0.298618108,0.232112214,-0.052030504,0.321086407,0.191897213,-0.057487886,0.252158225,0.428785294,-0.042882148,0.256073534,0.348586738,-0.05864403,0.266626775,0.286154568,-0.065789104,0.281381994,0.231758863,-0.069518521 +Left,0.264408469,0.647616923,8.09E-08,0.317774296,0.558909237,0.01983672,0.342671812,0.484809011,0.020382963,0.364325315,0.436164051,0.012438152,0.383479625,0.391439706,0.003110332,0.269215524,0.363420397,0.012914122,0.311175168,0.290412247,-0.004731356,0.34824881,0.282127231,-0.017921939,0.378546685,0.290364623,-0.026265431,0.253878593,0.367703289,-0.012608815,0.293471605,0.264088452,-0.034404781,0.336682856,0.234869912,-0.048752517,0.371985525,0.23171699,-0.057565428,0.245297268,0.396512121,-0.038749635,0.291867852,0.299498886,-0.063510127,0.340740383,0.307595223,-0.072136708,0.374804288,0.32784465,-0.074918404,0.246584237,0.438436449,-0.063482806,0.264049262,0.345973134,-0.086452492,0.28042379,0.28003037,-0.097275577,0.29784888,0.227850407,-0.103779517 +Left,0.252784669,0.632410169,1.50E-07,0.310414433,0.540727854,0.016132904,0.331218421,0.457578838,0.013812648,0.353538424,0.405423671,0.004620816,0.370408207,0.365276456,-0.00511091,0.248781323,0.350572228,0.006622425,0.299823791,0.273030758,-0.018005105,0.340086579,0.278022021,-0.037183385,0.368695855,0.304465383,-0.048442338,0.234372199,0.35779506,-0.016515046,0.282586366,0.244118124,-0.038774159,0.326225191,0.208558515,-0.052915458,0.361676961,0.201319709,-0.061182167,0.232624471,0.387958378,-0.041006979,0.271872282,0.265108824,-0.062212247,0.308963329,0.218396991,-0.073214225,0.337788463,0.193491966,-0.079438224,0.244731218,0.427574992,-0.064361155,0.267702281,0.338371396,-0.085334308,0.287348121,0.280428201,-0.096255966,0.307621807,0.233327493,-0.102912165 +Left,0.241449326,0.639428377,1.15E-07,0.30216378,0.536153078,0.020875668,0.321181089,0.451686114,0.02144202,0.342443824,0.400285304,0.013696118,0.360996723,0.3618384,0.00577352,0.232790828,0.346933305,0.015923837,0.286968678,0.265089512,-0.008094016,0.328257859,0.275843799,-0.027516888,0.35615021,0.308810532,-0.038383335,0.221103132,0.35491991,-0.009072381,0.275498867,0.243929982,-0.030068407,0.319902182,0.210492015,-0.044008128,0.35441345,0.205812573,-0.05163645,0.223636985,0.386014521,-0.035624981,0.267869771,0.26486221,-0.055145446,0.305288345,0.218891531,-0.064646699,0.332828432,0.194740981,-0.069394968,0.239862457,0.426323473,-0.060906354,0.26580888,0.333864689,-0.079659067,0.28583774,0.27378419,-0.088587604,0.305638134,0.225798756,-0.093511932 +Left,0.232368991,0.638957441,2.46E-07,0.295534819,0.528082967,0.018678959,0.314578652,0.443549037,0.018859791,0.33581543,0.388258785,0.011022091,0.345921099,0.346505493,0.002260284,0.221087024,0.352084458,0.009809406,0.261110365,0.253083587,-0.010266257,0.30250901,0.227264598,-0.027051808,0.335356683,0.221880332,-0.038602717,0.212601423,0.365425944,-0.014222289,0.260333478,0.237139314,-0.036006574,0.307144672,0.19877094,-0.051135041,0.343083829,0.18755129,-0.060275063,0.219714001,0.395006001,-0.038738374,0.260540545,0.265079916,-0.058543965,0.301842988,0.216731563,-0.069233723,0.332220256,0.191626266,-0.075293474,0.241002485,0.433058947,-0.062102038,0.269798636,0.334156781,-0.07988777,0.291959971,0.273944736,-0.089147016,0.312469035,0.228970796,-0.095139004 +Left,0.227845728,0.656266272,2.38E-07,0.292112738,0.541472197,0.017224811,0.310312241,0.451773763,0.016877525,0.330162019,0.394716531,0.008522405,0.341041028,0.350696802,-0.00065934,0.216367066,0.359421968,0.011554484,0.260346055,0.26302731,-0.009456366,0.302004963,0.240187615,-0.027385022,0.333842278,0.238159999,-0.039732907,0.207039297,0.372750759,-0.012232921,0.256863952,0.246009916,-0.034815472,0.303107351,0.207163334,-0.051493928,0.339194745,0.19548431,-0.061618369,0.212939814,0.4030056,-0.036960579,0.255555302,0.27212292,-0.057950322,0.29633373,0.221376449,-0.070501462,0.327204943,0.193769053,-0.077704243,0.233592421,0.442022413,-0.060630508,0.263645142,0.344793797,-0.07961043,0.286844045,0.285037249,-0.090116441,0.308732361,0.240302667,-0.096946888 +Left,0.236380279,0.666459858,1.08E-07,0.296159714,0.566539228,0.022647712,0.316648602,0.483741164,0.023362719,0.341038883,0.430534124,0.015023637,0.360861033,0.387307525,0.005980638,0.233566299,0.38127324,0.017325649,0.279553533,0.299289823,-0.006391551,0.321456462,0.302384943,-0.026173087,0.351551741,0.328041762,-0.037612502,0.219981864,0.388309658,-0.009119755,0.266687065,0.277150542,-0.029926287,0.313167155,0.24011983,-0.044080969,0.349672168,0.233714283,-0.05229608,0.219052613,0.416743636,-0.036937002,0.256230682,0.29364574,-0.056060098,0.294879258,0.245779395,-0.064975083,0.323911548,0.222637251,-0.069535337,0.231579468,0.452551723,-0.063518271,0.254469514,0.357407749,-0.081459172,0.274557263,0.297386229,-0.08917512,0.294031024,0.252114922,-0.093378335 +Left,0.24302946,0.658076167,1.26E-07,0.298935264,0.56810379,0.019177882,0.323954463,0.492107034,0.018629044,0.347499877,0.444458544,0.009693949,0.367429763,0.399012625,-0.000405635,0.250751287,0.379229367,0.014148657,0.29315576,0.305313826,-0.005756496,0.331174135,0.302163303,-0.022420214,0.360171705,0.316333026,-0.032938771,0.234974235,0.381529599,-0.010133202,0.276910901,0.277933925,-0.02947126,0.320407331,0.247743025,-0.044030305,0.355656356,0.244913384,-0.05359434,0.227756083,0.405992031,-0.035404705,0.26462844,0.290614188,-0.054539163,0.306106955,0.263055205,-0.063856423,0.338068247,0.256189346,-0.069115154,0.231596053,0.442163646,-0.059548929,0.250401586,0.34634012,-0.078430302,0.270966142,0.286898732,-0.087457776,0.292383969,0.243104845,-0.092978999 +Left,0.264139235,0.657322168,1.65E-07,0.311923712,0.584039092,0.006093159,0.339690983,0.514089644,0.001933067,0.363080025,0.470078409,-0.008844424,0.378483534,0.419302195,-0.019135118,0.284911424,0.395761788,0.016963279,0.3149499,0.330383211,-0.009123642,0.347356617,0.350116789,-0.031210767,0.370617568,0.383995712,-0.042251345,0.271169931,0.388697505,-0.001176325,0.293625563,0.291731,-0.021288088,0.325144738,0.249929219,-0.037378475,0.352400035,0.229612321,-0.046546083,0.255565375,0.403951198,-0.023608366,0.269990742,0.29892391,-0.041639216,0.292463183,0.242419302,-0.052018516,0.313381523,0.205151871,-0.05700824,0.241556495,0.436054528,-0.046693828,0.247723058,0.351143032,-0.061164968,0.260643274,0.289475977,-0.067098461,0.277424693,0.239885479,-0.069959611 +Left,0.269961655,0.64752984,2.21E-07,0.317761511,0.581121624,0.001241833,0.347020119,0.518630803,-0.003371855,0.371478617,0.475949943,-0.014169154,0.382677764,0.42118302,-0.023907151,0.293416351,0.402195275,0.019218121,0.323420107,0.336022437,-0.006131603,0.354825467,0.355461061,-0.02783123,0.377572,0.390462995,-0.037929788,0.280448675,0.387521088,0.003881887,0.300322503,0.291736603,-0.015611038,0.332455069,0.252458453,-0.031737596,0.362841308,0.235511437,-0.040234692,0.263391435,0.393327326,-0.016662311,0.278197467,0.288036048,-0.035067268,0.302697867,0.231069028,-0.046836242,0.327968955,0.196787208,-0.051745631,0.245824456,0.415138543,-0.038362131,0.250098914,0.326194048,-0.052215517,0.263622999,0.264086843,-0.058040604,0.283790886,0.21868512,-0.060253978 +Left,0.269645274,0.640732408,2.38E-07,0.315841734,0.584266126,-0.005650156,0.348510832,0.522917271,-0.013441665,0.374788344,0.478423595,-0.025813736,0.383070379,0.420953453,-0.03669649,0.299124748,0.398676187,0.010187593,0.328732997,0.333228707,-0.017069081,0.357819349,0.352830708,-0.039464194,0.380626708,0.388712615,-0.049694609,0.283566356,0.379334241,-0.001894518,0.302851021,0.278645337,-0.02386287,0.334324598,0.245650157,-0.039266709,0.365213931,0.238027006,-0.045714442,0.263906419,0.382560343,-0.019334789,0.276238352,0.272853523,-0.038157027,0.301079154,0.218000636,-0.048528571,0.328017324,0.186712727,-0.051719531,0.243900448,0.404499084,-0.038545515,0.24343884,0.315462381,-0.051492345,0.255250096,0.251954317,-0.056415431,0.274873435,0.205997318,-0.057628829 +Left,0.265800387,0.635578036,2.44E-07,0.313735873,0.580471039,-0.005849985,0.34777683,0.519744396,-0.014640611,0.375747263,0.473751515,-0.027989764,0.380573124,0.415544927,-0.039764453,0.296066552,0.393542469,0.007448335,0.324807316,0.327755749,-0.021038061,0.353883177,0.346339524,-0.044421475,0.377989709,0.382314652,-0.055471458,0.278863996,0.372297943,-0.004763221,0.29717654,0.271452397,-0.027455986,0.329925984,0.237606511,-0.042894043,0.362440377,0.23068437,-0.049684316,0.258217245,0.375015706,-0.022173274,0.267402112,0.262636244,-0.040861268,0.29176718,0.208388999,-0.050954979,0.319513708,0.177362457,-0.054539934,0.238661125,0.399083883,-0.041372795,0.235201418,0.310996532,-0.05369667,0.243528932,0.24586226,-0.058427323,0.259812534,0.196314842,-0.060096964 +Left,0.262685478,0.631002128,2.37E-07,0.310407937,0.57934922,-0.008008192,0.345122695,0.52046895,-0.018369272,0.37343514,0.473536879,-0.0328582,0.377417237,0.414633125,-0.045798227,0.296811283,0.395589709,0.00288579,0.32339704,0.326168776,-0.027625006,0.350184351,0.344434798,-0.052248493,0.372504741,0.381008744,-0.063899197,0.277532429,0.373232096,-0.008150706,0.295078933,0.273264647,-0.031878177,0.32654947,0.240650818,-0.047338031,0.357597709,0.232608438,-0.054201361,0.255157918,0.374630064,-0.024424583,0.262881279,0.263889939,-0.043734308,0.284984559,0.210136876,-0.053595118,0.310711741,0.176055536,-0.057156168,0.233702421,0.397652119,-0.042552888,0.2290456,0.31256187,-0.054841999,0.235001594,0.248548701,-0.059216268,0.248341858,0.196655869,-0.060777858 +Left,0.261004388,0.631423414,2.52E-07,0.309185475,0.582140923,-0.007649405,0.344484776,0.523427606,-0.017659666,0.37303257,0.477068126,-0.0319524,0.376078129,0.419420093,-0.044487465,0.294416964,0.395098984,0.003712634,0.320241898,0.325281918,-0.026400331,0.347643733,0.343253225,-0.050572485,0.370110095,0.381018817,-0.061785541,0.275381237,0.373271167,-0.007564139,0.291943163,0.274142444,-0.030916201,0.324043632,0.240800858,-0.046234183,0.35562411,0.233643577,-0.052862544,0.253199816,0.374594033,-0.024103686,0.259058475,0.264608294,-0.04304501,0.28131932,0.20986855,-0.052828785,0.307579041,0.176720798,-0.056196574,0.232116133,0.397838056,-0.042562351,0.226770252,0.312354624,-0.054872125,0.231859148,0.246638134,-0.059521783,0.244569555,0.19472985,-0.061091248 +Left,0.258562207,0.63918066,2.42E-07,0.306544691,0.591264248,-0.008887528,0.342515916,0.530210376,-0.019417925,0.371460944,0.481766313,-0.033965502,0.374125272,0.424778134,-0.046873495,0.294326425,0.401635587,0.001378106,0.31896171,0.330908746,-0.029063152,0.345483899,0.34949106,-0.053237155,0.367350161,0.387423396,-0.064458422,0.274231881,0.380120933,-0.009338072,0.290125698,0.281239897,-0.033105507,0.321588188,0.248316944,-0.048168633,0.352219939,0.240826368,-0.054460827,0.25114727,0.381976932,-0.025302807,0.256236017,0.272462666,-0.04449328,0.277772129,0.216966361,-0.05397274,0.303116411,0.181368604,-0.057108339,0.229147315,0.406056434,-0.0432522,0.222976714,0.321549356,-0.055571675,0.226961985,0.255980194,-0.059929695,0.238090917,0.202278882,-0.061291412 +Left,0.259748816,0.65353322,2.26E-07,0.306146234,0.595713735,-0.005888687,0.339714766,0.531818628,-0.014869862,0.366814256,0.483747512,-0.028212294,0.370162308,0.426663697,-0.0398173,0.284785181,0.410317183,0.00599586,0.312160611,0.337244093,-0.023976769,0.340927392,0.355571121,-0.048402697,0.364340991,0.392688543,-0.059582617,0.267264754,0.391920328,-0.005865737,0.28286013,0.28824687,-0.028762262,0.31368345,0.252001941,-0.044156846,0.343907565,0.242544442,-0.050716791,0.246696025,0.396781594,-0.022903876,0.25137955,0.28502965,-0.040968534,0.272458315,0.22635749,-0.05037253,0.297188669,0.189037785,-0.053433973,0.227566123,0.422946751,-0.041720204,0.219219267,0.336914539,-0.052602727,0.223286286,0.271219254,-0.056110427,0.235183358,0.218570396,-0.056955103 +Left,0.254605144,0.691460252,2.18E-07,0.298773021,0.611896753,-2.09E-06,0.324248254,0.538262546,-0.007854182,0.347406864,0.487617821,-0.020674801,0.358320594,0.432468295,-0.032870036,0.261851579,0.420326412,0.009384548,0.290526003,0.346298993,-0.019224923,0.324416488,0.357026309,-0.043370292,0.35197562,0.384240448,-0.056403849,0.246003315,0.416102767,-0.006183279,0.261626005,0.311963111,-0.028078742,0.288747698,0.266294301,-0.045287538,0.313432395,0.24113135,-0.055585012,0.230627328,0.436631143,-0.026163828,0.240839258,0.327649176,-0.046251088,0.261330962,0.271101415,-0.057029638,0.280948818,0.230748445,-0.062534779,0.219113857,0.475711465,-0.047084462,0.219622016,0.397918791,-0.064013883,0.229539767,0.336942315,-0.071007051,0.244126529,0.283631384,-0.074513778 +Left,0.239985317,0.705932736,1.32E-07,0.28970322,0.615122557,0.009181861,0.316037863,0.535740077,0.003355538,0.338397831,0.4820638,-0.008933584,0.3533867,0.431695372,-0.020932097,0.244016856,0.414609134,0.008023946,0.283599913,0.347036213,-0.017266491,0.317560107,0.355059773,-0.03756639,0.344222665,0.380362451,-0.048974913,0.22783637,0.418426335,-0.012785708,0.256929189,0.310916901,-0.037482329,0.291163236,0.276002526,-0.055471953,0.320594937,0.26468575,-0.06629163,0.215138257,0.445803434,-0.035932858,0.245298982,0.335693419,-0.059256829,0.285151869,0.318538606,-0.070075847,0.316638798,0.317662358,-0.075019881,0.210000947,0.489199966,-0.058835823,0.22146596,0.402239829,-0.078345545,0.234443843,0.336908638,-0.088046119,0.249341503,0.282873988,-0.094073988 +Left,0.228226662,0.704316735,2.09E-07,0.290442705,0.589264512,0.018885251,0.307841659,0.497523487,0.017777642,0.330002666,0.440946519,0.008338125,0.350159228,0.400822312,-0.001405881,0.207626104,0.397866935,0.014254104,0.256865442,0.303551078,-0.009837392,0.300793976,0.293372571,-0.030450318,0.332823604,0.307898521,-0.043120448,0.19627893,0.409075439,-0.01051015,0.249148786,0.28707695,-0.032900773,0.296721607,0.244922191,-0.049188297,0.334236026,0.23076731,-0.059064668,0.200912029,0.439062089,-0.036642961,0.241312429,0.310364038,-0.057061937,0.280497968,0.255940795,-0.068189755,0.31022501,0.226295009,-0.074303612,0.220010936,0.476384789,-0.061768223,0.244664222,0.372809172,-0.078942455,0.265650839,0.307768285,-0.086928546,0.286763251,0.25794363,-0.091808006 +Left,0.244469091,0.70088625,2.41E-07,0.309359789,0.585669816,0.023807433,0.32743299,0.495984912,0.025717238,0.350670576,0.440036327,0.017940531,0.364815652,0.394867152,0.008884049,0.233558401,0.39059937,0.018192286,0.278433293,0.289087236,-0.003796454,0.322960615,0.266103208,-0.023238946,0.355080307,0.265722334,-0.035547066,0.223829359,0.39897117,-0.009085591,0.276989609,0.271625966,-0.029270282,0.328248113,0.227810577,-0.044284437,0.366887003,0.214635804,-0.053285319,0.229766577,0.428913713,-0.037286602,0.277114391,0.292042822,-0.056778602,0.321279168,0.235371217,-0.066657789,0.353037715,0.205791339,-0.071576096,0.250638962,0.468604535,-0.064087138,0.284812391,0.359611839,-0.081499122,0.311126441,0.29669565,-0.088243112,0.334150106,0.25135386,-0.091595896 +Left,0.250052273,0.702682495,1.74E-07,0.316066325,0.587903619,0.0273827,0.334301233,0.498819381,0.031378753,0.356028974,0.442236423,0.02510489,0.371570945,0.399081051,0.017664239,0.242115334,0.394644767,0.02271211,0.291280001,0.295944631,0.000124908,0.336708337,0.283987284,-0.019833939,0.368346304,0.298663855,-0.031689372,0.231458336,0.40118593,-0.005482956,0.288030595,0.270196497,-0.025321029,0.33985725,0.229419082,-0.040003233,0.378669202,0.222028658,-0.048395969,0.237375498,0.429074675,-0.034647714,0.285621166,0.287232876,-0.052736793,0.329277694,0.231407702,-0.062539577,0.360894024,0.204545096,-0.067457542,0.258952409,0.466821194,-0.06223632,0.291749954,0.354942173,-0.078516841,0.318036497,0.292579323,-0.085614286,0.341870785,0.24873966,-0.089375861 +Left,0.254370272,0.685863256,3.44E-07,0.32291019,0.573936403,0.020483593,0.340925276,0.486921698,0.022143304,0.362429589,0.429937631,0.014659103,0.371182442,0.381506145,0.006168021,0.245670468,0.38840729,0.01807669,0.291580796,0.285997391,0.001154494,0.336288601,0.252547204,-0.015383517,0.368890107,0.238742158,-0.027262835,0.237308323,0.396119893,-0.006489435,0.288239688,0.263957143,-0.022528278,0.338234603,0.220337436,-0.036435094,0.376090825,0.205106944,-0.045959681,0.245886207,0.422049671,-0.031688053,0.293431878,0.288357615,-0.04670104,0.338546157,0.234926641,-0.055438519,0.370890498,0.207148582,-0.060994811,0.271133661,0.459638417,-0.056043204,0.309290171,0.354245782,-0.068432644,0.336891979,0.294761032,-0.073176086,0.359808564,0.252947152,-0.07647074 +Left,0.266205758,0.666638553,3.44E-07,0.325565726,0.560519338,0.025733523,0.342894435,0.475508094,0.028662251,0.364642531,0.423071593,0.021728,0.378249943,0.382593632,0.013660742,0.24958162,0.376064807,0.024815727,0.286266506,0.273058176,0.011338436,0.327323467,0.225355908,-0.002155406,0.361164123,0.202504307,-0.011456341,0.241329402,0.382834375,-0.001782756,0.29006654,0.263885647,-0.015577008,0.337725341,0.218119383,-0.025735721,0.37460798,0.20434624,-0.031441379,0.248478457,0.403602242,-0.028707223,0.293343157,0.281647861,-0.040746883,0.337388277,0.233062357,-0.043803707,0.369913995,0.214414373,-0.044582047,0.269858718,0.431216449,-0.054709896,0.299455643,0.331649125,-0.065665163,0.324724585,0.280564845,-0.066929199,0.346776307,0.249315545,-0.066191375 +Left,0.277291,0.642124236,2.33E-07,0.323792636,0.567803383,0.00301966,0.351897001,0.500999689,-0.002589863,0.377256215,0.456660956,-0.014263995,0.386642307,0.404169261,-0.024972375,0.297819912,0.38038528,0.015102517,0.327041,0.314313769,-0.009740949,0.361264855,0.331879318,-0.031056903,0.3869268,0.362315208,-0.042335689,0.28387627,0.371782809,-0.001876965,0.301177025,0.273257941,-0.021266365,0.333406091,0.230247617,-0.037421029,0.363039196,0.208997354,-0.047436614,0.268342942,0.386022806,-0.023301795,0.279539615,0.281446725,-0.041718327,0.304943353,0.226661608,-0.053727318,0.33056578,0.192526668,-0.060252771,0.255393595,0.417258859,-0.045657765,0.261175275,0.334990263,-0.060850386,0.27563867,0.275132895,-0.068350211,0.294948936,0.228377208,-0.072577633 +Left,0.275521636,0.627548099,2.09E-07,0.322151631,0.56686604,-0.004672199,0.354645103,0.50707984,-0.012800736,0.380767226,0.464732111,-0.025587356,0.386528611,0.409346551,-0.03688534,0.304327697,0.387060791,0.009978127,0.334182858,0.322219759,-0.018080117,0.361823738,0.342991531,-0.041309934,0.383501142,0.378924251,-0.052243825,0.288498372,0.370548159,-0.002296382,0.307792157,0.27045393,-0.025797315,0.337813795,0.240090579,-0.042477567,0.367618471,0.233908698,-0.049716637,0.269221216,0.376013458,-0.019679168,0.281199545,0.269377947,-0.039009109,0.304580986,0.217034101,-0.050271802,0.330345809,0.185773298,-0.054145616,0.250481397,0.400462419,-0.038643252,0.2510162,0.316070706,-0.051296219,0.261135072,0.255434692,-0.056628618,0.278297931,0.209278181,-0.058491077 +Left,0.267409742,0.626080275,2.36E-07,0.31352672,0.582792878,-0.011731145,0.350195229,0.52535522,-0.023339119,0.378792763,0.480158031,-0.03781319,0.380224884,0.425984502,-0.05065972,0.307909966,0.399042994,-0.005415451,0.330175906,0.331892818,-0.036572233,0.355195373,0.351753026,-0.061227292,0.375562906,0.388997048,-0.072768301,0.286151558,0.377073258,-0.014050762,0.300145864,0.281055599,-0.03847751,0.329870582,0.251481086,-0.053901162,0.358835101,0.245392323,-0.060389385,0.261336178,0.377709091,-0.027589213,0.263676137,0.271727055,-0.047154725,0.284577787,0.219608694,-0.057459533,0.310133159,0.184785143,-0.061050579,0.237217188,0.400785387,-0.043130126,0.230011821,0.317783087,-0.055185802,0.232113972,0.255093992,-0.059720691,0.241457999,0.203665912,-0.061217729 +Left,0.263243258,0.628929317,1.96E-07,0.310317874,0.587512851,-0.01206666,0.347799987,0.530425787,-0.02187941,0.373411149,0.479026079,-0.034022987,0.369798481,0.422438651,-0.044478398,0.311097503,0.402609259,-0.005002845,0.327072859,0.335758716,-0.033724785,0.348332494,0.349689543,-0.05713306,0.36669904,0.380062044,-0.068875156,0.284571439,0.377738684,-0.012727264,0.291154683,0.283903301,-0.034709882,0.316593468,0.252285242,-0.04931996,0.342861652,0.240175471,-0.056771494,0.256599456,0.375125349,-0.025286673,0.251990527,0.27505374,-0.045083914,0.268104076,0.221674532,-0.056666262,0.290977389,0.18266201,-0.061884243,0.23064521,0.39508912,-0.03971523,0.21811232,0.314634234,-0.053507883,0.213509232,0.25274235,-0.059729725,0.216283888,0.197304532,-0.062861621 +Left,0.25409469,0.655731678,2.07E-07,0.306643009,0.613556981,-0.014967483,0.345544875,0.555634856,-0.024796644,0.366120011,0.494971395,-0.036323875,0.354711711,0.439335167,-0.046572424,0.313303024,0.43131724,-0.004314973,0.320265949,0.362579256,-0.029997449,0.335446388,0.362974554,-0.050955936,0.351294041,0.384789735,-0.061654393,0.28138876,0.404053062,-0.010030253,0.282934785,0.310167015,-0.027675407,0.299800843,0.273896724,-0.039861057,0.320452154,0.251217186,-0.04701142,0.249221697,0.399609059,-0.020951504,0.242584586,0.300738096,-0.038889565,0.251714379,0.244725615,-0.049295373,0.26771304,0.203197062,-0.054442503,0.217809528,0.417421222,-0.033988144,0.203364938,0.333320081,-0.04705891,0.19629474,0.272228301,-0.0528403,0.195383742,0.216795668,-0.056083649 +Left,0.2517685,0.662483156,2.27E-07,0.300748795,0.613791466,-0.013155711,0.337905586,0.552094221,-0.023123851,0.359476507,0.494210452,-0.035146601,0.349647284,0.441579401,-0.045991659,0.298714966,0.427562326,-0.006403433,0.30940631,0.354723006,-0.03247413,0.328837484,0.361490726,-0.05269555,0.347580582,0.387173742,-0.062567048,0.268184721,0.406163454,-0.013408809,0.271521449,0.312951982,-0.03220937,0.290954918,0.276815087,-0.044569246,0.313016981,0.255573213,-0.051544115,0.23689267,0.406249523,-0.02517459,0.229325533,0.30699414,-0.043377787,0.239992782,0.248970032,-0.053858425,0.25782603,0.205905586,-0.059063286,0.207131922,0.427839935,-0.038856272,0.190171391,0.343456507,-0.051735718,0.182448998,0.281241298,-0.057278186,0.182789862,0.224249184,-0.060320862 +Left,0.246940583,0.662260413,2.47E-07,0.289083034,0.606426895,-0.012891168,0.320611894,0.53727293,-0.025476895,0.344734192,0.481646299,-0.040676791,0.341816425,0.426000237,-0.054162342,0.267264217,0.412753135,-0.00709754,0.282515168,0.335867405,-0.038853075,0.308743864,0.354277998,-0.06399788,0.330611527,0.393697053,-0.075735264,0.240819782,0.398481637,-0.015342186,0.24262546,0.297962755,-0.039330844,0.268959463,0.263729692,-0.054942712,0.296912223,0.253095627,-0.062100269,0.214162901,0.40848726,-0.028505111,0.20453693,0.305565506,-0.047892373,0.219872862,0.245510861,-0.058853619,0.241363615,0.200535029,-0.063547656,0.191678643,0.44154647,-0.04371297,0.177106023,0.362402916,-0.056038223,0.171427757,0.300240636,-0.060779277,0.172731549,0.244060755,-0.062800519 +Left,0.231042057,0.663330078,2.51E-07,0.272316784,0.596498728,-0.00977074,0.304716736,0.523265123,-0.020566151,0.329946816,0.467123926,-0.034857143,0.328400403,0.408098847,-0.047991741,0.24446322,0.411168605,0.00016664,0.265638173,0.336930305,-0.031529862,0.295025915,0.350518346,-0.057577997,0.3199597,0.382886708,-0.069741197,0.221944004,0.399056405,-0.009882643,0.229689956,0.298203051,-0.034786996,0.25847888,0.260460466,-0.051702641,0.28814286,0.249861315,-0.058723982,0.199076965,0.411569536,-0.024981113,0.196328804,0.304944038,-0.044760086,0.213903129,0.246170059,-0.055227086,0.236484364,0.206630155,-0.058508668,0.179253966,0.446559846,-0.041962329,0.167548716,0.367716938,-0.05439559,0.168634862,0.305181324,-0.058595158,0.178500503,0.253469884,-0.059286185 +Left,0.220186189,0.66203481,2.52E-07,0.260909915,0.583764911,-0.005972453,0.286890566,0.509349465,-0.016265266,0.310032666,0.456103414,-0.030391723,0.317049265,0.39762342,-0.04318618,0.223124593,0.395839989,0.002975205,0.249812916,0.325194478,-0.02630806,0.283411324,0.339089721,-0.050438199,0.308743954,0.369722903,-0.062748,0.205246508,0.390629262,-0.009058316,0.214686424,0.295111179,-0.033096783,0.245331392,0.255011767,-0.050801814,0.274950206,0.239349365,-0.06017568,0.188093051,0.411172479,-0.025622182,0.188833207,0.307536781,-0.047588583,0.212645277,0.258025467,-0.058924858,0.238389328,0.228561208,-0.06331908,0.175304532,0.45325613,-0.043465838,0.172561467,0.381354302,-0.060975954,0.182034656,0.324840426,-0.068016998,0.197205201,0.279300094,-0.070527561 +Left,0.202111572,0.664671659,2.85E-07,0.267286927,0.540670633,0.010420309,0.286085814,0.445562661,0.003050855,0.305862188,0.38541162,-0.011032434,0.31584233,0.344442308,-0.024834059,0.182094142,0.362624466,0.004297854,0.233828738,0.276316464,-0.022630997,0.279073775,0.275737107,-0.045574389,0.310815513,0.29769063,-0.060171928,0.172864646,0.382803321,-0.017383236,0.225452423,0.262512684,-0.043474015,0.27199918,0.231001735,-0.061617911,0.308642715,0.227177233,-0.072424524,0.178479716,0.420877814,-0.04072636,0.226226702,0.293691814,-0.064129449,0.267643213,0.248913318,-0.076335922,0.298646986,0.22979562,-0.082662016,0.199958116,0.467156798,-0.063508891,0.233576253,0.379092485,-0.081933074,0.256785721,0.324730307,-0.090526819,0.277874768,0.284948289,-0.095737413 +Left,0.212437674,0.638696909,3.68E-07,0.277162194,0.514685631,0.009733347,0.291555554,0.417133719,0.00565107,0.307595521,0.353014112,-0.004832485,0.314517081,0.300550967,-0.015385997,0.196493804,0.34374541,0.006544807,0.24183163,0.253901333,-0.014703284,0.285358727,0.233219162,-0.033443838,0.315949529,0.229480758,-0.046484765,0.18750684,0.362350941,-0.013126402,0.234377354,0.24842529,-0.035662461,0.28274098,0.214907721,-0.051858172,0.319523096,0.206870332,-0.061567295,0.193219945,0.398341,-0.034128521,0.234219238,0.279231697,-0.056496989,0.277749956,0.230290949,-0.067789853,0.310109794,0.202632874,-0.073449001,0.214996025,0.443603933,-0.054423172,0.25071761,0.353595912,-0.071824655,0.277367055,0.301561028,-0.078103036,0.299422622,0.264201105,-0.081512921 +Left,0.206270456,0.655910075,2.72E-07,0.272167563,0.536836267,0.011044676,0.290501565,0.441771567,0.005895016,0.309942663,0.3809838,-0.006268247,0.315903038,0.335705101,-0.018685803,0.195628449,0.351289362,0.005104025,0.240892217,0.261811256,-0.022219578,0.283663124,0.246320486,-0.045424037,0.316213936,0.255973697,-0.060306825,0.184158832,0.367495447,-0.017180039,0.230294034,0.244013891,-0.045629356,0.279026777,0.211604506,-0.066243172,0.317320734,0.210109293,-0.077910691,0.186586797,0.403782547,-0.040929388,0.225799322,0.275546193,-0.067102842,0.269585639,0.232026085,-0.081679814,0.303024679,0.21347551,-0.08880695,0.203907147,0.451040417,-0.063935935,0.234523341,0.360727698,-0.085606702,0.258719057,0.30474937,-0.09656553,0.28122583,0.264396131,-0.102890573 +Left,0.219879538,0.6324265,2.01E-07,0.270993084,0.543896556,0.006796332,0.293562025,0.458488256,-0.000375243,0.316369981,0.401149154,-0.012318568,0.329094887,0.357835323,-0.02436693,0.208789185,0.349055767,-0.003237776,0.255852282,0.269825399,-0.028063349,0.295507461,0.265498608,-0.047006182,0.324924827,0.282135934,-0.058694851,0.191190243,0.359689385,-0.02175574,0.233653888,0.247893572,-0.047416728,0.278285444,0.220258027,-0.062828071,0.315058827,0.22191678,-0.071196355,0.185241282,0.392719179,-0.041651964,0.218859464,0.2740345,-0.06546139,0.258079439,0.233644217,-0.077245116,0.29013747,0.215760633,-0.0832358,0.192672163,0.437176615,-0.060976263,0.215173751,0.352490813,-0.083580717,0.235934377,0.294387847,-0.095532216,0.257800162,0.247376576,-0.102488913 +Left,0.230335742,0.617625594,1.46E-07,0.275973111,0.543416739,0.006264771,0.303356528,0.463960946,-0.000233539,0.325451285,0.410992712,-0.012420231,0.339292854,0.359260321,-0.024128158,0.23714669,0.342319071,0.00498978,0.272453487,0.279417187,-0.017711917,0.30866918,0.291427344,-0.035688858,0.334028989,0.316413522,-0.045976032,0.219507456,0.343456626,-0.013253666,0.249749094,0.248661622,-0.03600926,0.289723068,0.226926267,-0.051854152,0.321666241,0.230644807,-0.061055221,0.20569773,0.367235422,-0.033634759,0.229570374,0.261206388,-0.054781292,0.268971622,0.243978873,-0.0634427,0.300958216,0.247070625,-0.067239389,0.198818892,0.409433573,-0.054041039,0.211830944,0.32876119,-0.072672248,0.228139132,0.269460529,-0.081277788,0.245883644,0.22204715,-0.086215571 +Left,0.238639444,0.622469187,2.06E-07,0.284239918,0.547653139,-0.000980505,0.312098652,0.477779001,-0.007935672,0.334894091,0.428006709,-0.020158248,0.346332103,0.369001538,-0.031039771,0.259146661,0.362015277,0.013145876,0.283252031,0.292313397,-0.012602491,0.315452158,0.307771206,-0.034163825,0.339819044,0.336605847,-0.045302715,0.243998885,0.353348255,-0.001302826,0.257848859,0.258180082,-0.021328799,0.286674678,0.218147397,-0.037186414,0.312020749,0.197299585,-0.0464487,0.227285609,0.366638839,-0.020546177,0.23448801,0.262322158,-0.038721792,0.257182837,0.211395457,-0.048198871,0.279687792,0.17852135,-0.052638464,0.211289644,0.398559421,-0.041126553,0.211322248,0.321053654,-0.055434264,0.223248452,0.263576567,-0.061053053,0.240219489,0.21626471,-0.063696899 +Left,0.244331986,0.626055121,2.29E-07,0.289411247,0.561648667,-0.00797026,0.320355475,0.496954024,-0.017249875,0.344900072,0.449032485,-0.03036877,0.348906815,0.388733268,-0.041602463,0.264491349,0.377306581,0.006923072,0.292107254,0.305919528,-0.021931252,0.322186351,0.325588107,-0.045316435,0.345279753,0.361266017,-0.055879384,0.24813275,0.36350137,-0.003306259,0.264284372,0.264897346,-0.025703162,0.293395996,0.230499655,-0.041496232,0.32139942,0.219266638,-0.048431449,0.229121268,0.37148875,-0.018892225,0.237960815,0.267313719,-0.037016787,0.259251744,0.213541135,-0.04615685,0.2824274,0.179353774,-0.048821896,0.210515082,0.399572849,-0.036466505,0.207140923,0.318980575,-0.04828291,0.216053978,0.258835346,-0.052153837,0.232322812,0.210961729,-0.052740518 +Left,0.242969781,0.623888969,2.43E-07,0.287549257,0.562368035,-0.008591658,0.319171131,0.496322721,-0.018270243,0.343753725,0.445504367,-0.031711765,0.344903499,0.384369254,-0.043229122,0.261015326,0.376717359,0.00450423,0.287864059,0.30249396,-0.025474418,0.317391157,0.320225745,-0.049371649,0.341039926,0.356448889,-0.060185071,0.24300307,0.360412449,-0.005829594,0.257476389,0.258047819,-0.030158214,0.288613379,0.223907843,-0.046488117,0.319738477,0.217072248,-0.053286403,0.222717077,0.367960274,-0.021495918,0.227298081,0.258493602,-0.040899996,0.249337852,0.204421535,-0.051330969,0.274986237,0.172197849,-0.054680094,0.20380643,0.397046775,-0.039123997,0.197484225,0.314229459,-0.051738698,0.203568891,0.249913335,-0.057070907,0.217827499,0.198558271,-0.058844142 +Left,0.244889513,0.625072002,2.40E-07,0.288578659,0.567799568,-0.009881645,0.319778174,0.502780259,-0.021104656,0.345277637,0.450478703,-0.035885341,0.34647122,0.387259275,-0.048911143,0.263620824,0.382799178,0.000923078,0.287424803,0.307204843,-0.030068377,0.315455794,0.321313292,-0.054969911,0.338305146,0.355604053,-0.066280127,0.243028805,0.364849418,-0.008950964,0.254577696,0.260613263,-0.033567533,0.284821779,0.224676564,-0.049705345,0.314960212,0.215418622,-0.056262534,0.220665634,0.371461928,-0.02397972,0.221934229,0.260846496,-0.043412473,0.242055744,0.202726826,-0.053485855,0.266088873,0.164819837,-0.056627888,0.200407058,0.399399281,-0.040938035,0.190092638,0.314279318,-0.052910473,0.193570256,0.248325139,-0.057100244,0.20535326,0.194238707,-0.058119725 +Left,0.246934742,0.6343804,2.46E-07,0.289406776,0.575643599,-0.009449348,0.319257468,0.508967042,-0.020119226,0.343932331,0.454854459,-0.034571093,0.343605757,0.395062447,-0.047191642,0.261941999,0.389672756,0.002489879,0.284099281,0.313400209,-0.028345812,0.312591344,0.326340914,-0.053344801,0.336022824,0.360331923,-0.064586394,0.240477994,0.372150511,-0.007606881,0.249838233,0.268136263,-0.031432852,0.279585212,0.229710832,-0.047134917,0.309340209,0.218323916,-0.053465627,0.217471346,0.378420919,-0.022993535,0.215981767,0.267792761,-0.041958567,0.235032097,0.208780229,-0.051637679,0.258694887,0.170288831,-0.05445483,0.196754783,0.406014025,-0.04038737,0.184117734,0.32164523,-0.051803853,0.186394602,0.256011605,-0.055473484,0.197724789,0.201407164,-0.056081507 +Left,0.250841826,0.644571841,2.19E-07,0.294967175,0.582436919,-0.007924921,0.324692428,0.515602231,-0.018456401,0.349541515,0.4627949,-0.032971509,0.34868899,0.406816602,-0.045706768,0.266743481,0.396413982,0.003326045,0.291652054,0.319426626,-0.02814232,0.319908112,0.334762454,-0.053785179,0.34233135,0.371697992,-0.065412074,0.246416837,0.38000378,-0.007576608,0.255949795,0.271510422,-0.03298125,0.28610757,0.236280039,-0.049930841,0.315984905,0.229965046,-0.056559466,0.224559426,0.388503909,-0.023550004,0.223789856,0.276862413,-0.043016024,0.243208021,0.217902839,-0.053568482,0.266364574,0.179629326,-0.056789428,0.2053314,0.418436646,-0.041321598,0.194024682,0.334547132,-0.052535236,0.195206225,0.26946038,-0.056403242,0.204010785,0.214666829,-0.057259914 +Left,0.248009115,0.671924293,1.92E-07,0.292597085,0.605481982,-0.004906519,0.323693931,0.533373177,-0.013815054,0.348783374,0.48110196,-0.027160767,0.351070851,0.422484308,-0.038990814,0.266404837,0.415638,0.006025949,0.292314142,0.340466589,-0.02427911,0.320745647,0.357838869,-0.049181562,0.343740463,0.39396742,-0.060594909,0.246344492,0.401212096,-0.006205195,0.257606596,0.295826852,-0.030553857,0.287645936,0.259888172,-0.046753433,0.317594588,0.252514422,-0.053163048,0.224664211,0.411283195,-0.023273466,0.226286232,0.300142676,-0.042212758,0.246408492,0.242807716,-0.051729944,0.26993081,0.205520079,-0.054482736,0.205562815,0.442940205,-0.041891888,0.194016576,0.3609007,-0.053393755,0.197326317,0.298758328,-0.056794893,0.208968043,0.246627837,-0.057259705 +Left,0.248200968,0.6527282,2.27E-07,0.292143166,0.585188329,-0.006011133,0.321514934,0.515532255,-0.015578924,0.344589025,0.464303762,-0.029364645,0.346728235,0.405240476,-0.041425463,0.260976166,0.399789035,0.004823657,0.286728352,0.325063825,-0.025512051,0.316703409,0.342947274,-0.049729984,0.341522932,0.380471647,-0.060520705,0.242206112,0.384915888,-0.007073827,0.253804922,0.279743254,-0.030960772,0.284563065,0.241944328,-0.046455301,0.315862894,0.232095197,-0.052625045,0.222044513,0.395697385,-0.024032893,0.222480416,0.283714563,-0.04313587,0.241942361,0.224888057,-0.052922376,0.2657004,0.18749325,-0.05595354,0.204875201,0.428632468,-0.042627957,0.192437008,0.345551193,-0.054407772,0.194746941,0.281547695,-0.058225051,0.205907851,0.229791582,-0.059095491 diff --git a/data/open_palm.csv b/data/open_palm.csv new file mode 100644 index 0000000..17757af --- /dev/null +++ b/data/open_palm.csv @@ -0,0 +1,243 @@ +handedness,0_x,0_y,0_z,1_x,1_y,1_z,2_x,2_y,2_z,3_x,3_y,3_z,4_x,4_y,4_z,5_x,5_y,5_z,6_x,6_y,6_z,7_x,7_y,7_z,8_x,8_y,8_z,9_x,9_y,9_z,10_x,10_y,10_z,11_x,11_y,11_z,12_x,12_y,12_z,13_x,13_y,13_z,14_x,14_y,14_z,15_x,15_y,15_z,16_x,16_y,16_z,17_x,17_y,17_z,18_x,18_y,18_z,19_x,19_y,19_z,20_x,20_y,20_z +Right,0.76980561,0.795948446,3.87E-07,0.704792619,0.761952639,-0.024881065,0.663629711,0.678817749,-0.037905596,0.64768362,0.596816242,-0.048552427,0.628214717,0.529113948,-0.059571382,0.699117243,0.546493411,-0.024948254,0.686807394,0.451373816,-0.045093358,0.681989968,0.393296123,-0.061232612,0.681114197,0.334268689,-0.073768362,0.74448812,0.527622938,-0.029013114,0.746969163,0.412154406,-0.046027184,0.750856876,0.342234731,-0.061615441,0.754291713,0.272872388,-0.074057736,0.784958422,0.539446771,-0.036578778,0.794423461,0.426347673,-0.05873489,0.802828133,0.355683267,-0.072793819,0.808026195,0.285864472,-0.082404509,0.822181702,0.572050154,-0.045752678,0.838819504,0.479272842,-0.067144752,0.85223186,0.420087695,-0.075825803,0.861939192,0.36021623,-0.081404462 +Right,0.776053548,0.766657889,4.51E-07,0.710565627,0.728527009,-0.023349911,0.667555273,0.64401859,-0.03625856,0.649590194,0.561036527,-0.047441542,0.628964484,0.496589154,-0.059117209,0.704513729,0.5114972,-0.023672922,0.69159174,0.412570298,-0.044320349,0.687239707,0.351187319,-0.060885724,0.68779701,0.290304869,-0.07340043,0.749681175,0.492779315,-0.028659195,0.753713965,0.37163353,-0.045702118,0.760435224,0.295435548,-0.061138865,0.767496049,0.224225998,-0.073290311,0.790598154,0.505072832,-0.037167709,0.8012833,0.387910187,-0.059088305,0.809995413,0.314274281,-0.073690578,0.816775262,0.245086312,-0.083568595,0.828777075,0.537803292,-0.047200046,0.848124266,0.44249022,-0.068316728,0.862315059,0.379666984,-0.077405043,0.873272121,0.318283439,-0.083211161 +Right,0.794264436,0.708659291,4.83E-07,0.727434874,0.669425368,-0.022578143,0.682213247,0.586314261,-0.035570193,0.663332283,0.505816519,-0.046956412,0.645827174,0.443080127,-0.058696136,0.721046448,0.452327669,-0.024869682,0.708726823,0.347163916,-0.046130676,0.705505371,0.281611741,-0.062739834,0.706497729,0.218616933,-0.07496807,0.765778661,0.433895767,-0.029763605,0.771262705,0.308984578,-0.048254605,0.779196084,0.229104161,-0.063799515,0.787277222,0.155415416,-0.075439826,0.806945026,0.443933994,-0.03801804,0.816726804,0.322789043,-0.06058659,0.825704277,0.244671762,-0.075244643,0.833275437,0.172433317,-0.084651805,0.846358597,0.473138362,-0.047719918,0.864570737,0.373134553,-0.06913022,0.877821326,0.306441277,-0.078457929,0.888436019,0.241525739,-0.084077962 +Right,0.809389293,0.680451334,4.51E-07,0.741131306,0.64793396,-0.027367497,0.695397377,0.566291928,-0.041457132,0.678392112,0.48204422,-0.052795354,0.661085963,0.413874,-0.064281046,0.733584881,0.423977911,-0.028387636,0.720632136,0.317614555,-0.050285768,0.717736006,0.251682222,-0.067273721,0.719589114,0.188206464,-0.079986058,0.779114604,0.40069139,-0.031263404,0.782749176,0.27622667,-0.050273713,0.790033638,0.197660029,-0.066327654,0.797613621,0.124232978,-0.078703351,0.820281386,0.40858084,-0.037951495,0.829536378,0.288160145,-0.060935684,0.83859694,0.210622951,-0.075788878,0.845887005,0.13806057,-0.085649505,0.859670997,0.43661955,-0.046603203,0.875802934,0.33654359,-0.068640277,0.888375342,0.269508958,-0.078697614,0.898460388,0.203873873,-0.085067563 +Right,0.817004323,0.691325128,5.00E-07,0.748460114,0.662809968,-0.030441789,0.702264011,0.586136758,-0.046605989,0.683684886,0.501873255,-0.059419144,0.6638816,0.430929035,-0.072202154,0.736669898,0.437459946,-0.032419663,0.724271953,0.328220814,-0.055914983,0.722601771,0.261321247,-0.073825479,0.725023389,0.195921093,-0.087070011,0.782109857,0.41191411,-0.034023121,0.785233915,0.285855889,-0.054559376,0.793198049,0.206721753,-0.071453899,0.800763786,0.131295145,-0.08449807,0.82334125,0.417409241,-0.039621215,0.831406891,0.296390772,-0.063768514,0.839932919,0.218278214,-0.078983933,0.846704006,0.144128263,-0.089109555,0.86310339,0.442420751,-0.047415797,0.877267838,0.341617048,-0.070384607,0.88968122,0.274790168,-0.080883257,0.899812102,0.208872214,-0.087555282 +Right,0.828691185,0.715774894,5.29E-07,0.763383865,0.691849828,-0.036997214,0.718270898,0.616480708,-0.057406977,0.700243711,0.531190217,-0.073169813,0.680907488,0.4605681,-0.088682771,0.751880884,0.465734571,-0.042363424,0.744200885,0.355133116,-0.068621226,0.745398283,0.288383067,-0.088112615,0.750238359,0.222991616,-0.102508597,0.797564268,0.439157665,-0.041424587,0.802899122,0.314447403,-0.064950839,0.81353128,0.235863939,-0.083014138,0.823733449,0.161161274,-0.096895173,0.838505983,0.445038378,-0.044627547,0.848629832,0.325340837,-0.070704065,0.859497964,0.248639002,-0.086722009,0.868450701,0.176036388,-0.097475648,0.877694249,0.471234769,-0.050498482,0.892245471,0.371860266,-0.074470043,0.904629052,0.306673706,-0.085874587,0.914721131,0.242417216,-0.093455747 +Right,0.825923502,0.752140224,5.26E-07,0.762055993,0.724166274,-0.035512738,0.717416823,0.65280664,-0.056053389,0.699259222,0.571215391,-0.072425991,0.678972125,0.49978146,-0.08859238,0.750205398,0.504026413,-0.040449675,0.741892397,0.395142496,-0.067204356,0.743234038,0.328215182,-0.087344743,0.748777926,0.262840629,-0.102002285,0.796154082,0.478825867,-0.040819936,0.801421225,0.354959369,-0.064495444,0.812303841,0.277836144,-0.082561836,0.82288897,0.20476687,-0.096214548,0.837562442,0.484582812,-0.04542426,0.848436832,0.364369154,-0.071356848,0.859808922,0.287197471,-0.086589798,0.868993938,0.214578003,-0.096622929,0.877242327,0.510506094,-0.052703131,0.892802417,0.410991043,-0.075907528,0.905818939,0.344219506,-0.086215042,0.915999532,0.278882384,-0.092877127 +Right,0.821500897,0.793573737,5.25E-07,0.758005261,0.76776278,-0.036497321,0.713540792,0.694098294,-0.056998141,0.697933555,0.609886527,-0.072914563,0.680221081,0.535284102,-0.088736504,0.747585952,0.543181419,-0.042885166,0.738266945,0.439226568,-0.069849782,0.740226626,0.376887202,-0.089758255,0.747315884,0.315799177,-0.104204051,0.794928789,0.51976496,-0.042586785,0.802487671,0.397078872,-0.066907778,0.81509155,0.323068947,-0.08562997,0.828032553,0.25248149,-0.09985932,0.836500108,0.528699338,-0.046386037,0.85087055,0.412186354,-0.073721081,0.864972472,0.339535236,-0.090624928,0.877045274,0.271031976,-0.101757154,0.875727713,0.557932913,-0.052661695,0.894991577,0.461592555,-0.077368595,0.910724938,0.398688704,-0.089119218,0.923490047,0.336595476,-0.096829921 +Right,0.82156527,0.792034149,5.36E-07,0.758303761,0.764471412,-0.03599121,0.714533925,0.689991117,-0.05622422,0.698326111,0.606412649,-0.071983628,0.680639565,0.532120883,-0.087835461,0.748399854,0.543376207,-0.041689739,0.73926115,0.440651506,-0.068332806,0.740754128,0.378711343,-0.088001445,0.74809736,0.317198038,-0.102216542,0.795676112,0.519301236,-0.041135129,0.803385019,0.39547655,-0.064723745,0.816159964,0.320930123,-0.08309073,0.829879284,0.250914007,-0.097162917,0.83747077,0.527746439,-0.044667605,0.851108015,0.409660637,-0.071462393,0.865417719,0.336755097,-0.088350423,0.878176928,0.269514918,-0.099541135,0.876543105,0.556464374,-0.050575227,0.894987941,0.459742308,-0.074924752,0.910659552,0.397358209,-0.086586751,0.923739314,0.337227702,-0.094296239 +Right,0.816047728,0.785393476,5.51E-07,0.74917686,0.755134284,-0.035083227,0.706846833,0.677719355,-0.054595545,0.695338309,0.592504382,-0.069990985,0.679821849,0.519378662,-0.085234776,0.743281662,0.531928062,-0.039634325,0.742474616,0.419883966,-0.066774786,0.750312626,0.354330242,-0.087056622,0.762010515,0.291637123,-0.101319708,0.789293766,0.511851966,-0.039486337,0.79727602,0.386182964,-0.063304573,0.809912384,0.308171332,-0.081527032,0.822891176,0.235304117,-0.095145985,0.830228686,0.520969272,-0.043580037,0.841287017,0.400766075,-0.068792544,0.852554381,0.325710177,-0.083826572,0.862851024,0.256630003,-0.093699917,0.869475663,0.549295008,-0.050404813,0.88246721,0.45028618,-0.072857939,0.893014312,0.384938419,-0.083123915,0.901966631,0.321490675,-0.089725144 +Right,0.802375376,0.801754653,4.78E-07,0.735913396,0.76139313,-0.030520951,0.694671869,0.679682314,-0.046934146,0.681938231,0.591839969,-0.060550407,0.667339265,0.514895618,-0.073520988,0.731997788,0.535646141,-0.026257779,0.731167197,0.425909281,-0.050480511,0.739201963,0.362786382,-0.070051402,0.751347959,0.302009374,-0.083973266,0.776238501,0.519184053,-0.027684484,0.779511273,0.396621913,-0.047760099,0.788183928,0.322259396,-0.064535312,0.797655225,0.2521272,-0.077299021,0.816258967,0.529975832,-0.033765849,0.822587788,0.411682755,-0.055298094,0.82968241,0.338172793,-0.067494757,0.836833239,0.270043343,-0.075689062,0.855294704,0.559968948,-0.042714953,0.862749517,0.461013943,-0.062078327,0.869164228,0.395012617,-0.070031673,0.874483109,0.330498368,-0.075020589 +Right,0.796765566,0.788012385,4.36E-07,0.730212212,0.744657159,-0.027069323,0.689420879,0.658786476,-0.041565746,0.677843869,0.570166945,-0.053971197,0.665605843,0.495051384,-0.065968752,0.730940461,0.517225564,-0.020780019,0.733853698,0.411617041,-0.042915307,0.740588367,0.350146472,-0.062047955,0.749676108,0.289282918,-0.076087967,0.773891687,0.503807843,-0.023371652,0.778800309,0.38415575,-0.041644782,0.784692466,0.310563147,-0.058335319,0.789746106,0.238964945,-0.071270257,0.812599897,0.516767383,-0.030329941,0.819454074,0.398779988,-0.050164789,0.824450493,0.326646924,-0.061768793,0.827997804,0.259164244,-0.069625564,0.850352943,0.548214078,-0.03992467,0.857569575,0.447327226,-0.058084823,0.861853719,0.380799264,-0.06535805,0.864181936,0.316171646,-0.069886647 +Right,0.794869721,0.783891559,3.98E-07,0.727277815,0.735781193,-0.023734853,0.687227786,0.646920562,-0.03619431,0.676360726,0.559469044,-0.04740984,0.665359199,0.487138629,-0.058340605,0.729874134,0.509158015,-0.015064009,0.731895924,0.403541744,-0.035878886,0.738472998,0.341892898,-0.054390889,0.747454584,0.281401128,-0.068053365,0.772352338,0.495376348,-0.019222118,0.776653111,0.375651538,-0.036128398,0.782593369,0.302152276,-0.052293491,0.788132966,0.231679201,-0.064846076,0.81100589,0.507590294,-0.027735045,0.817002833,0.39011991,-0.045909822,0.821515918,0.316735595,-0.057152037,0.824859977,0.248448312,-0.065013021,0.848900437,0.538652778,-0.038800623,0.854139209,0.438637644,-0.055305902,0.856745303,0.371639788,-0.061841808,0.857796848,0.306152076,-0.066074394 +Right,0.794516802,0.772886634,3.58E-07,0.727930486,0.720368683,-0.021212323,0.68898946,0.628264725,-0.031622361,0.678705156,0.540405512,-0.041279543,0.669661343,0.46768859,-0.050628942,0.733168662,0.497342676,-0.01091452,0.73436451,0.390538871,-0.030047845,0.739590943,0.328253776,-0.047518127,0.746932924,0.26750803,-0.060461111,0.774065077,0.484965503,-0.015632089,0.777567506,0.365474999,-0.031187423,0.781826854,0.291439623,-0.046539929,0.785724461,0.221132278,-0.058422148,0.811550736,0.497129261,-0.024593934,0.816424072,0.379496604,-0.041352522,0.819969118,0.305709302,-0.051953021,0.822601497,0.238044769,-0.059389912,0.848708451,0.527991652,-0.036014941,0.85309577,0.426553398,-0.051597789,0.854819536,0.358594418,-0.057664502,0.855057716,0.293113589,-0.061505001 +Right,0.796003163,0.753579736,3.12E-07,0.729794025,0.699650466,-0.017668152,0.692634404,0.605975866,-0.024475271,0.683958173,0.518148065,-0.03123823,0.674305081,0.448650509,-0.037846092,0.737510026,0.478139997,-0.002435534,0.737860382,0.375225455,-0.018294143,0.740946531,0.314484447,-0.034790259,0.745672345,0.254463762,-0.04753283,0.776599407,0.464506865,-0.007989434,0.778705537,0.347270399,-0.020714829,0.780869305,0.273254633,-0.035988107,0.782391191,0.203304112,-0.048175275,0.812413216,0.474648148,-0.017750949,0.816230655,0.360109925,-0.032389726,0.818411648,0.287557513,-0.043467581,0.819396853,0.220802784,-0.05160312,0.848585963,0.504163682,-0.029829586,0.852211893,0.404572845,-0.044088915,0.853012443,0.338594675,-0.050124016,0.852009654,0.274364412,-0.054255757 +Right,0.805373311,0.726475298,2.80E-07,0.738038659,0.680004597,-0.016755629,0.696692288,0.592761517,-0.023109764,0.684025764,0.507111192,-0.029488303,0.673186958,0.439281732,-0.035681058,0.735105276,0.463093638,-0.001486251,0.729893506,0.362772763,-0.016847162,0.728384137,0.302562773,-0.032901,0.727976501,0.243625522,-0.045299109,0.773202777,0.443661928,-0.00690369,0.76962024,0.328630149,-0.019328061,0.76611656,0.256169558,-0.033921108,0.761594117,0.189849615,-0.045332205,0.809796751,0.448081046,-0.016396867,0.807562172,0.334830344,-0.030420933,0.804271221,0.264338255,-0.040652007,0.799889624,0.200276524,-0.047982421,0.847596824,0.472385049,-0.02812428,0.84730643,0.372451007,-0.041937858,0.84470731,0.305930197,-0.047521837,0.840243638,0.24197045,-0.051069733 +Right,0.819817126,0.705538094,3.05E-07,0.748666465,0.667689145,-0.017329626,0.702619553,0.586975753,-0.023972129,0.685028076,0.502495825,-0.030700538,0.673507571,0.434324503,-0.036993168,0.73612529,0.452882439,-0.00038329,0.725138545,0.352791369,-0.015135546,0.7209391,0.29344669,-0.030207587,0.718356311,0.235845923,-0.041943338,0.774100959,0.427828819,-0.005371156,0.766324401,0.316392481,-0.017854331,0.762089074,0.246988609,-0.032141458,0.757117212,0.182039618,-0.043184876,0.811768174,0.427276045,-0.014659856,0.805569589,0.31688714,-0.029488435,0.801038086,0.249033034,-0.039987028,0.795487583,0.186740696,-0.047261048,0.851125002,0.445671201,-0.026132101,0.848762095,0.347908467,-0.04053092,0.845399916,0.283181489,-0.046710953,0.840462983,0.220331103,-0.050610431 +Right,0.819353521,0.706165075,3.18E-07,0.750936866,0.671524405,-0.021077465,0.704915285,0.593390763,-0.030840622,0.687483311,0.507758319,-0.039620247,0.677428961,0.437145293,-0.047975667,0.739114821,0.455342561,-0.011347046,0.72762239,0.354415685,-0.028829748,0.723147333,0.296745956,-0.044617172,0.720831037,0.239605695,-0.056967262,0.779237688,0.430525213,-0.01572929,0.772258699,0.319136679,-0.031367484,0.768446684,0.249806151,-0.047100637,0.76432246,0.1825957,-0.059349615,0.818331599,0.432617158,-0.024099406,0.817246974,0.3204256,-0.043267172,0.816744924,0.250517875,-0.056305941,0.814555764,0.184469193,-0.06513942,0.85776943,0.455220163,-0.034424752,0.863007426,0.357651502,-0.053170219,0.865773022,0.292552829,-0.061890345,0.866459966,0.228084475,-0.06737525 +Right,0.829998016,0.70479399,3.40E-07,0.759968042,0.675743163,-0.022710141,0.711382329,0.597993255,-0.032710105,0.692233741,0.510160685,-0.041299969,0.678897679,0.438250214,-0.049188651,0.741741359,0.45894438,-0.011719391,0.729486763,0.35989666,-0.029599493,0.725651383,0.302811205,-0.045671187,0.724096358,0.245551929,-0.058178097,0.782011867,0.430741727,-0.01504938,0.774027765,0.320624173,-0.030696725,0.77120924,0.253006727,-0.046207294,0.768033028,0.186516076,-0.058399212,0.821215987,0.430089891,-0.022656471,0.818334639,0.319417477,-0.042274527,0.817779601,0.252095997,-0.055155952,0.815760553,0.1881302,-0.063783154,0.861384034,0.449390173,-0.032370038,0.865824938,0.35181886,-0.051583339,0.869253218,0.287275553,-0.060592357,0.870636642,0.222986192,-0.066234417 +Right,0.838732958,0.696911931,3.79E-07,0.769059896,0.676407158,-0.027570983,0.718877912,0.611158192,-0.041168552,0.697612762,0.525007963,-0.052640881,0.686333001,0.448624372,-0.063130103,0.739101648,0.466805696,-0.016246824,0.722695053,0.367281526,-0.037478004,0.719664633,0.309120774,-0.055663601,0.720028102,0.251109958,-0.069254287,0.778829992,0.432100773,-0.017737038,0.767285883,0.321426451,-0.036656681,0.764674306,0.25371176,-0.05411005,0.761621594,0.186979175,-0.067428567,0.817696452,0.424624771,-0.023986988,0.811216831,0.316246301,-0.045730416,0.809398472,0.248876259,-0.059296601,0.807242751,0.186006635,-0.06811592,0.858278096,0.43613261,-0.032816239,0.856002331,0.341844648,-0.052903783,0.855624318,0.278596461,-0.062321819,0.853948414,0.216275156,-0.068197943 +Right,0.833937705,0.703208387,4.03E-07,0.763560891,0.681726873,-0.027566005,0.714609981,0.618977487,-0.041859351,0.695623219,0.531832218,-0.054215647,0.688457668,0.452248007,-0.065729141,0.736230969,0.475407243,-0.016341954,0.719127059,0.376407415,-0.038687997,0.716133595,0.316759467,-0.057973515,0.7167449,0.256010532,-0.072256207,0.774224997,0.441007793,-0.018183526,0.761804104,0.330043912,-0.037825074,0.75954932,0.262108713,-0.055755723,0.757527471,0.195143521,-0.069524169,0.811817884,0.433565557,-0.024865713,0.804418564,0.325277865,-0.046640892,0.802752793,0.259159088,-0.059712995,0.801643729,0.199026614,-0.068224564,0.851335883,0.444401681,-0.034297362,0.847305059,0.349355936,-0.053520069,0.846348584,0.286847055,-0.062291957,0.844228864,0.226198137,-0.067903087 +Right,0.831620395,0.7136361,4.17E-07,0.762192547,0.687725425,-0.028596077,0.714406848,0.620864511,-0.044045709,0.696795166,0.53237021,-0.057482645,0.693886638,0.448868483,-0.070026703,0.736969471,0.477667451,-0.017240139,0.722038984,0.377401382,-0.04045878,0.721576154,0.318026394,-0.060619686,0.725059688,0.2572909,-0.075567171,0.775605977,0.445583224,-0.018618207,0.765793145,0.333415657,-0.038953878,0.765424073,0.265728235,-0.057538409,0.764923453,0.198285252,-0.071894333,0.81325537,0.441110522,-0.024931373,0.807980001,0.330405146,-0.047162879,0.807105005,0.26397115,-0.060425781,0.807167828,0.203987241,-0.069162428,0.852835,0.455280215,-0.034060244,0.850105762,0.359033942,-0.053501658,0.849753201,0.296218812,-0.062438034,0.848479271,0.235332727,-0.068302542 +Right,0.823387563,0.73286581,4.06E-07,0.755925834,0.694363117,-0.025884146,0.712862074,0.618074954,-0.040367313,0.702107072,0.52707386,-0.053206149,0.703239501,0.443267167,-0.065174006,0.743219256,0.479838848,-0.015256459,0.73386842,0.3765876,-0.037381284,0.736031711,0.315789998,-0.056639787,0.7416749,0.254213929,-0.070808887,0.783029914,0.454764813,-0.018015333,0.778697193,0.338331163,-0.036554448,0.780775309,0.267670393,-0.053250294,0.782100856,0.198139191,-0.06606587,0.820822775,0.456396312,-0.025484432,0.819423437,0.340923667,-0.045312148,0.820080638,0.271822751,-0.055946283,0.820328951,0.207733542,-0.063022926,0.859702289,0.476317674,-0.035713278,0.858604491,0.377454996,-0.052999541,0.858281255,0.312566191,-0.059556052,0.856080651,0.248687536,-0.06367179 +Right,0.813551366,0.753740311,3.70E-07,0.74695611,0.708637655,-0.026038047,0.704410255,0.625996709,-0.04031264,0.695795417,0.531271458,-0.053213783,0.705396175,0.446938634,-0.0652055,0.742802978,0.48988983,-0.012285267,0.736425459,0.383189023,-0.033838332,0.738689542,0.320431411,-0.053127438,0.744827509,0.257770926,-0.06765569,0.782145083,0.46730867,-0.015492127,0.780458152,0.346990883,-0.033237495,0.782372057,0.273186684,-0.049965229,0.784170151,0.201434553,-0.063024506,0.819696486,0.470979571,-0.023728477,0.819859982,0.352858067,-0.042849526,0.821539581,0.279657423,-0.054062031,0.822817504,0.211911708,-0.061890595,0.85835129,0.493833452,-0.03487134,0.858338833,0.393289685,-0.051835794,0.858442783,0.327558994,-0.058514968,0.856856644,0.263063967,-0.063005172 +Right,0.809825897,0.769019723,3.73E-07,0.744852185,0.720420003,-0.025967114,0.703327119,0.635656714,-0.040737707,0.694220841,0.541086137,-0.054278661,0.706866384,0.457969636,-0.067116678,0.744954467,0.501734436,-0.014099872,0.739343166,0.392370641,-0.036620315,0.74149549,0.327259243,-0.056274652,0.747966766,0.26241827,-0.070925772,0.78464371,0.481111586,-0.017689139,0.784036517,0.355787963,-0.036152367,0.786077857,0.277475715,-0.05308247,0.788307786,0.202130198,-0.066099823,0.822425902,0.48742348,-0.026166975,0.823561072,0.366062701,-0.045581192,0.825235724,0.290881634,-0.057105567,0.826351523,0.220580816,-0.065114267,0.860233784,0.51351732,-0.037520483,0.861361086,0.412931502,-0.05477095,0.86156714,0.346842706,-0.061745699,0.860032022,0.282130241,-0.066416278 +Right,0.807071388,0.786083102,3.41E-07,0.745276093,0.742490411,-0.024034223,0.698917747,0.661552191,-0.039432459,0.681915641,0.571136951,-0.054171473,0.703755617,0.503598273,-0.068612806,0.740626633,0.515970528,-0.014379236,0.734348834,0.408996701,-0.037094418,0.734092116,0.344052553,-0.057415862,0.738438964,0.279342473,-0.073003851,0.779784143,0.494930595,-0.019213207,0.776758432,0.370524883,-0.037850462,0.777267933,0.291318059,-0.054746084,0.777807713,0.214053631,-0.067950472,0.818027973,0.500608563,-0.028581411,0.81599009,0.381284237,-0.047577582,0.816631198,0.305679768,-0.058865301,0.816176891,0.234575301,-0.066963837,0.856089652,0.527663231,-0.040722173,0.853725433,0.427940071,-0.05734982,0.851545632,0.36241287,-0.064015172,0.847776711,0.297652185,-0.068795472 +Right,0.804985583,0.791923046,3.64E-07,0.744815826,0.747385442,-0.02592434,0.699166238,0.665142179,-0.042630028,0.683090866,0.572109759,-0.058315851,0.709207118,0.503932118,-0.073404931,0.740913391,0.51861757,-0.016133223,0.736530185,0.40871349,-0.03991678,0.738828063,0.342934817,-0.060499635,0.74610436,0.278730989,-0.075967722,0.779889345,0.4997437,-0.019956453,0.778585255,0.37384814,-0.039475501,0.780679822,0.295611918,-0.056079868,0.782621443,0.220126063,-0.068723887,0.817929149,0.507682502,-0.02852444,0.816975951,0.385367274,-0.0481776,0.817994475,0.310045004,-0.058830053,0.818144858,0.239270359,-0.066088982,0.855933726,0.537086427,-0.040040296,0.854341745,0.434878409,-0.05702145,0.853321373,0.368795276,-0.063520685,0.850739062,0.30398941,-0.067904703 +Right,0.806891918,0.795042396,3.55E-07,0.746460259,0.742934585,-0.023792828,0.706065059,0.652196646,-0.038085535,0.697188854,0.555478334,-0.051945627,0.724651754,0.490504354,-0.065359265,0.745795369,0.514728308,-0.009327861,0.741201997,0.408602059,-0.029970791,0.742158949,0.344873965,-0.049398687,0.747647643,0.28088963,-0.064602807,0.783567607,0.497874111,-0.013925049,0.78252089,0.37341547,-0.031066673,0.783287466,0.295030087,-0.048064549,0.784429908,0.21755293,-0.061292604,0.820333302,0.507126272,-0.023255726,0.820568025,0.386353344,-0.041276786,0.821268737,0.310811609,-0.053031787,0.821452022,0.239600688,-0.06143653,0.856877685,0.536426783,-0.035442654,0.856172442,0.436090231,-0.051026322,0.855071545,0.369809657,-0.057654805,0.852580607,0.303980887,-0.062564015 +Right,0.80769515,0.796616793,4.06E-07,0.752411246,0.747506559,-0.026597884,0.713506103,0.656870842,-0.043037456,0.720046699,0.55969131,-0.057976406,0.761032224,0.505375683,-0.072997779,0.743241072,0.521682084,-0.021808906,0.74083209,0.413294196,-0.044372197,0.746040881,0.347358137,-0.063818142,0.755769968,0.282564551,-0.079128176,0.782880902,0.504714906,-0.02560403,0.784564495,0.37981379,-0.04411887,0.789510727,0.301714659,-0.061005954,0.794768095,0.223838687,-0.074502982,0.82081908,0.514645219,-0.033584569,0.8246333,0.395629048,-0.053027261,0.828125477,0.319607437,-0.066412009,0.830953181,0.247963607,-0.076209903,0.859310329,0.544061244,-0.04438388,0.861414254,0.444110543,-0.061484709,0.86347729,0.378168285,-0.069846436,0.863590717,0.314226687,-0.076304138 +Right,0.808677852,0.796564579,4.03E-07,0.752861559,0.746255457,-0.025321098,0.713687778,0.654618502,-0.040717497,0.720564008,0.557214081,-0.054951705,0.762259722,0.504247546,-0.069245018,0.744562089,0.524244547,-0.018996231,0.741719127,0.417450309,-0.040991172,0.746803164,0.352169335,-0.060170054,0.756662786,0.28823781,-0.075148739,0.783909321,0.507011414,-0.022957262,0.785619497,0.382866263,-0.040947415,0.790527165,0.304764539,-0.057342269,0.796279252,0.227639675,-0.070310511,0.82163775,0.515950382,-0.031153157,0.825429559,0.397652656,-0.050165709,0.828511178,0.322578728,-0.063051298,0.831261873,0.252673954,-0.072309896,0.860053599,0.543779671,-0.042124446,0.862981617,0.444548249,-0.058540065,0.864919484,0.379605055,-0.066341132,0.864843726,0.316699386,-0.072328307 +Right,0.810962796,0.800487578,4.07E-07,0.757100046,0.75046593,-0.024574472,0.718133628,0.660594463,-0.040334318,0.728534281,0.564583361,-0.054984551,0.773779333,0.51641351,-0.069959357,0.744035244,0.527120292,-0.020322151,0.740699351,0.421236753,-0.041401926,0.745213926,0.357079387,-0.059992246,0.754081368,0.293281704,-0.075072572,0.782667577,0.510076761,-0.024889845,0.783994317,0.385827541,-0.04242257,0.788709581,0.308943838,-0.058729883,0.793723881,0.232471853,-0.071885683,0.820086777,0.520466566,-0.033363819,0.823259652,0.401611507,-0.052089497,0.825835228,0.327071548,-0.065407388,0.827770472,0.256879121,-0.075238347,0.858245254,0.550263405,-0.044469487,0.860652208,0.450564206,-0.061151419,0.86262393,0.385009944,-0.069555998,0.862723827,0.321934879,-0.076135017 +Right,0.812288463,0.79843843,4.09E-07,0.756954551,0.748090327,-0.025019512,0.71984154,0.655261874,-0.039447032,0.723976135,0.553992331,-0.05273512,0.762994289,0.49834007,-0.06602069,0.741588652,0.524103522,-0.015567039,0.737862587,0.420750201,-0.036024332,0.74188453,0.35700959,-0.054770127,0.749943614,0.293186665,-0.06968087,0.780252516,0.507252932,-0.019294331,0.780521572,0.386718214,-0.036115743,0.783982277,0.310443521,-0.052684434,0.787481666,0.233243078,-0.065944292,0.818049192,0.516815543,-0.027334969,0.819909692,0.40048182,-0.045541771,0.821522892,0.327103972,-0.058824327,0.822792411,0.258046091,-0.068453804,0.856422663,0.54471159,-0.038166873,0.85693723,0.446334004,-0.05385194,0.85730207,0.380729318,-0.062021185,0.855960608,0.316738516,-0.068428226 +Right,0.809336841,0.791834116,3.86E-07,0.751280129,0.740252435,-0.024266865,0.713775218,0.646571755,-0.03840762,0.712290645,0.549119592,-0.051714744,0.740864098,0.482337236,-0.06488771,0.744900882,0.521714747,-0.014460625,0.739776015,0.415614724,-0.035998747,0.743013859,0.352963835,-0.054805938,0.750712514,0.290519595,-0.069256864,0.782764912,0.505735219,-0.018713133,0.783048689,0.382517308,-0.036846377,0.785844028,0.306292892,-0.053719122,0.788918018,0.230571955,-0.06679412,0.819676638,0.515000641,-0.027406277,0.821817279,0.395347863,-0.046665143,0.824073195,0.321577102,-0.059211351,0.825788319,0.252273411,-0.068072483,0.857121587,0.54258883,-0.038759787,0.858786464,0.443494767,-0.055119321,0.859643221,0.378241599,-0.0626112,0.858345509,0.313739657,-0.068282425 +Right,0.808256269,0.787939548,3.57E-07,0.747085869,0.739281178,-0.022974361,0.70833391,0.646406651,-0.036183257,0.702012658,0.550812006,-0.048886314,0.726386487,0.484586895,-0.061301857,0.746708035,0.520373642,-0.011745637,0.74127084,0.412918627,-0.032482855,0.742978334,0.349849164,-0.050751492,0.749522805,0.288703471,-0.064581506,0.784492433,0.504640341,-0.016276911,0.783983588,0.380685687,-0.033466164,0.786591411,0.303764045,-0.049557209,0.79012841,0.230201006,-0.061859824,0.821288645,0.513091445,-0.025257116,0.822194397,0.393212259,-0.043368828,0.82393539,0.318523854,-0.054975383,0.825329483,0.249814749,-0.063135192,0.857952595,0.539697766,-0.036860436,0.859331846,0.440288126,-0.052602012,0.859735191,0.37474364,-0.059262201,0.858562768,0.31070739,-0.064053826 +Right,0.809383631,0.782789469,3.71E-07,0.747650266,0.729854465,-0.024678981,0.710259378,0.638084412,-0.039214611,0.704846025,0.542810321,-0.052747082,0.722532392,0.463990688,-0.065636128,0.749476552,0.511663735,-0.013108156,0.745045543,0.405863971,-0.034855265,0.747352004,0.343969047,-0.053948924,0.754446745,0.282926828,-0.068172865,0.787647665,0.496802688,-0.01692725,0.788223028,0.373834074,-0.034925736,0.791213512,0.296835542,-0.05181795,0.794997394,0.221977741,-0.064737983,0.824144721,0.507050991,-0.025404042,0.827014148,0.388026655,-0.0445063,0.829801321,0.313504696,-0.056595128,0.832047105,0.244125038,-0.064997613,0.860745132,0.535558641,-0.036554758,0.86409843,0.436284631,-0.053348005,0.865156174,0.37073645,-0.06053279,0.864263356,0.306130588,-0.065482609 +Right,0.811424911,0.778742313,3.86E-07,0.748384356,0.728211999,-0.027059652,0.711416066,0.634831071,-0.042178247,0.707071424,0.538859844,-0.055602353,0.71871984,0.45295006,-0.068274483,0.749588788,0.506785333,-0.016467312,0.746280491,0.399935603,-0.039218523,0.750344098,0.337379813,-0.058821928,0.759242475,0.275621235,-0.073315702,0.789248168,0.491131902,-0.019318154,0.79062736,0.367976099,-0.037857179,0.794234693,0.29127121,-0.055176754,0.798684537,0.216895282,-0.068572216,0.826488078,0.501203835,-0.026968896,0.829883039,0.382292002,-0.046446435,0.832679749,0.308072418,-0.058713056,0.835310936,0.238530964,-0.067485444,0.863636732,0.530056,-0.037463088,0.867052853,0.431547791,-0.054722704,0.868513227,0.366492897,-0.062230129,0.868201375,0.302185297,-0.067477033 +Right,0.815455079,0.775303543,3.68E-07,0.751294315,0.725292981,-0.026679175,0.715006292,0.630791724,-0.040652625,0.711200833,0.534622014,-0.052942853,0.714738488,0.447639793,-0.064691976,0.753881872,0.502183974,-0.016690988,0.74940294,0.395902157,-0.038817178,0.752362669,0.333995938,-0.058004454,0.759832799,0.271939903,-0.072311617,0.794024229,0.48561734,-0.019968102,0.793954074,0.362751484,-0.038491905,0.796005309,0.286223948,-0.056056552,0.798836708,0.211985439,-0.069678508,0.831342101,0.495791048,-0.027964933,0.835335374,0.37629348,-0.047934476,0.837922513,0.301596165,-0.060871784,0.840027928,0.23112765,-0.070093505,0.868324339,0.525344908,-0.038709469,0.87344116,0.425659269,-0.056760263,0.876522303,0.359508842,-0.064815782,0.877735078,0.294176728,-0.070403844 +Right,0.824608028,0.772657156,3.67E-07,0.760228157,0.725555003,-0.026626026,0.723204494,0.632933378,-0.040310897,0.717217684,0.537038863,-0.052254356,0.71247828,0.450637788,-0.063724123,0.758812189,0.502630889,-0.017096283,0.752485156,0.394637764,-0.038911562,0.75457257,0.332495809,-0.057722069,0.760844469,0.270074666,-0.07168743,0.799160719,0.484966993,-0.020282559,0.797040045,0.361519277,-0.038321845,0.798759222,0.285747021,-0.055552028,0.80119139,0.212563306,-0.068927579,0.836816907,0.493715286,-0.028128831,0.838263631,0.37369436,-0.047538113,0.840401351,0.29861784,-0.060263596,0.842101574,0.227343738,-0.069437705,0.874476731,0.521297574,-0.038695235,0.877029896,0.422317982,-0.056323946,0.879064202,0.356518805,-0.064097054,0.879531801,0.291595846,-0.069516726 +Right,0.838460565,0.773030043,4.44E-07,0.771675408,0.736032724,-0.030582909,0.729632616,0.655320525,-0.047183458,0.719331741,0.560438991,-0.061496817,0.712942183,0.472017467,-0.075115852,0.758325279,0.513911366,-0.020853475,0.750677645,0.405006886,-0.045568116,0.754297137,0.340669215,-0.066658564,0.762753427,0.275512159,-0.082024299,0.798673451,0.48928082,-0.022642095,0.794205368,0.364511549,-0.042962492,0.795943022,0.286745071,-0.06165931,0.798171997,0.210987866,-0.076200441,0.837038159,0.49221465,-0.029561482,0.835361302,0.370995581,-0.05099567,0.835674047,0.294775784,-0.064613469,0.835996151,0.224158347,-0.074212104,0.876790285,0.513687789,-0.039550461,0.875186324,0.412331551,-0.05871645,0.874321461,0.344958186,-0.067494065,0.871642113,0.279439569,-0.073582999 +Right,0.835291207,0.773475826,4.46E-07,0.767736733,0.738753319,-0.030648753,0.724793196,0.659689605,-0.047116332,0.714501441,0.564387381,-0.061093893,0.7077263,0.476978481,-0.074224822,0.75530529,0.51468581,-0.021342136,0.746753812,0.406095117,-0.045304991,0.749347866,0.341607988,-0.065815531,0.756622553,0.275812924,-0.080921903,0.79538238,0.488588363,-0.023052322,0.791602492,0.363516599,-0.042908084,0.792898715,0.285453141,-0.061330233,0.794442236,0.208902806,-0.075793482,0.833512604,0.49075672,-0.029787943,0.833592713,0.369517893,-0.051176783,0.834449351,0.292644322,-0.064969942,0.834855139,0.220965058,-0.074721903,0.873066664,0.511900306,-0.039558753,0.874925911,0.410050988,-0.058908135,0.875859141,0.341217577,-0.067953065,0.874483585,0.273727268,-0.074233755 +Right,0.826251686,0.778137207,4.74E-07,0.759254098,0.743122935,-0.032837652,0.716484606,0.663852215,-0.050851312,0.705478311,0.569735527,-0.065851428,0.702918231,0.484850049,-0.07981994,0.750935197,0.513533652,-0.02490532,0.746343255,0.403480619,-0.049995936,0.750554144,0.337735176,-0.071336262,0.759073555,0.272156745,-0.086897984,0.791817486,0.488434881,-0.025772275,0.791181624,0.361740172,-0.046326686,0.794090033,0.282176763,-0.064829171,0.796705008,0.20456019,-0.079217784,0.830265403,0.491921633,-0.031682406,0.833307505,0.369725376,-0.053634834,0.836198628,0.290949792,-0.067312337,0.838033259,0.217409998,-0.076830797,0.869727552,0.515603304,-0.040764961,0.874833822,0.412983507,-0.060404129,0.87759161,0.343486249,-0.069103442,0.877535462,0.275550574,-0.074953668 +Right,0.817687511,0.766157269,4.42E-07,0.746688902,0.732756615,-0.030268146,0.701072216,0.652275085,-0.046560179,0.689748108,0.556032181,-0.060265724,0.685455799,0.471362352,-0.0731823,0.737068594,0.502671957,-0.023073705,0.730967879,0.389341176,-0.047107317,0.734111369,0.322089553,-0.067246847,0.740696549,0.256136745,-0.081980892,0.779431939,0.47647348,-0.025162688,0.777631044,0.348300219,-0.045324638,0.779740751,0.269015789,-0.06318108,0.781085968,0.193223089,-0.077007316,0.819229126,0.478931993,-0.032106068,0.820827484,0.35540396,-0.05379134,0.822450101,0.277389735,-0.067075081,0.822885454,0.204898357,-0.076302357,0.859926462,0.501179755,-0.04199066,0.863058984,0.396894455,-0.061774649,0.864837646,0.326981694,-0.070494495,0.864257574,0.25844875,-0.076262429 +Right,0.796769857,0.777126968,4.09E-07,0.725599945,0.730102599,-0.025321709,0.682681561,0.642294466,-0.03834052,0.672344148,0.546642601,-0.05026225,0.665888429,0.464621365,-0.061661724,0.719182312,0.505022526,-0.013438866,0.71436286,0.390571803,-0.0357037,0.71745944,0.322686195,-0.05547123,0.723404586,0.255449712,-0.069933593,0.760633528,0.481455564,-0.017659241,0.759099185,0.351716101,-0.036003616,0.760510564,0.270533711,-0.053570479,0.761181772,0.192432106,-0.06714581,0.799830675,0.484772831,-0.026752325,0.799633741,0.359003246,-0.046113763,0.80019635,0.280053616,-0.058129404,0.799977064,0.207606733,-0.06646663,0.840091467,0.507675767,-0.038732357,0.839495659,0.399770707,-0.055879191,0.838423133,0.328605771,-0.062667668,0.83523953,0.260172844,-0.067185506 +Right,0.79397589,0.791711152,3.39E-07,0.723325074,0.739094138,-0.020251911,0.681280851,0.646649301,-0.030012304,0.6695925,0.551208854,-0.039924778,0.669157445,0.475378722,-0.049521752,0.718828678,0.512310505,-0.002149583,0.710946977,0.403218746,-0.021143539,0.710547209,0.338095903,-0.040041499,0.713400483,0.272891462,-0.054518916,0.758820772,0.489619732,-0.008163261,0.753995001,0.362494737,-0.0237987,0.751636803,0.282429963,-0.04118317,0.749188066,0.204697311,-0.054738771,0.797073781,0.493055582,-0.018965362,0.793401182,0.369659662,-0.035815019,0.79005599,0.292767793,-0.047157098,0.786244214,0.221082658,-0.055397645,0.836617589,0.516911089,-0.032461204,0.834056675,0.412545085,-0.047448136,0.830387831,0.343040287,-0.053137362,0.824718654,0.274629056,-0.057188645 +Right,0.799128294,0.790400088,3.24E-07,0.729756832,0.735772192,-0.018965239,0.688999236,0.640740454,-0.027593814,0.678861022,0.544635594,-0.036605284,0.682375073,0.472278774,-0.045402419,0.728669882,0.505045414,-5.30E-05,0.721801996,0.396371603,-0.017494988,0.721033156,0.330686927,-0.035490807,0.723566473,0.264897466,-0.049585242,0.768645227,0.483602315,-0.006555551,0.764992177,0.357921004,-0.020946328,0.763274252,0.277903289,-0.037681982,0.761572897,0.200519204,-0.050785303,0.806849897,0.488687187,-0.017735099,0.804134727,0.366533369,-0.033605002,0.801473737,0.28892976,-0.044691365,0.798233747,0.216114521,-0.052847125,0.846122503,0.515096903,-0.031553365,0.843938053,0.410066664,-0.045960147,0.840931237,0.340521038,-0.051292241,0.835858941,0.271841019,-0.055097941 +Right,0.799593329,0.779637396,3.11E-07,0.73174566,0.728756666,-0.018759558,0.688224912,0.635966659,-0.028323319,0.675144017,0.54188323,-0.03847152,0.690374672,0.476607025,-0.048425488,0.729178488,0.49573642,-0.000611615,0.721345723,0.390179902,-0.018692231,0.720320225,0.325318277,-0.037244856,0.723021269,0.260620266,-0.051967561,0.768067241,0.47396788,-0.007157154,0.763312995,0.349965751,-0.022251476,0.760953844,0.271420598,-0.038873617,0.758575618,0.194945186,-0.051882416,0.806290507,0.478328466,-0.018306939,0.801938295,0.35673207,-0.034555677,0.798313558,0.280608177,-0.045403447,0.793964207,0.208710313,-0.053344183,0.845544457,0.504312873,-0.032100186,0.842962027,0.399648249,-0.046637405,0.839483142,0.329964012,-0.052264802,0.833862066,0.260341227,-0.056394473 +Right,0.794274747,0.775903583,2.93E-07,0.728947043,0.725007236,-0.02038905,0.687199175,0.63366276,-0.031711381,0.675938547,0.540180564,-0.04324244,0.691115022,0.469689429,-0.0544158,0.728152812,0.495770961,-0.004061842,0.71971184,0.390872061,-0.023349769,0.717515469,0.326958358,-0.042338263,0.719225287,0.263302624,-0.057238344,0.766485155,0.474564105,-0.010124747,0.760338247,0.351450384,-0.026225833,0.756989717,0.273468107,-0.042978339,0.754273057,0.197898865,-0.056098454,0.804043531,0.479401022,-0.020826131,0.79928875,0.35850203,-0.037877146,0.795825541,0.28224057,-0.048652411,0.792009354,0.210558563,-0.056567833,0.842709661,0.505413115,-0.034237087,0.839613914,0.402038306,-0.049462639,0.835788965,0.33300519,-0.055207066,0.829969227,0.26460129,-0.05937605 +Right,0.792716324,0.778430641,3.13E-07,0.728006601,0.729270101,-0.022146659,0.684692442,0.639075637,-0.034915939,0.672173977,0.544858992,-0.047520719,0.688898861,0.472559214,-0.059716906,0.7255674,0.502927423,-0.007742892,0.717525125,0.397040218,-0.027885841,0.716015279,0.334057808,-0.046662901,0.718909442,0.271440119,-0.061227784,0.764458239,0.483030498,-0.013244218,0.759673357,0.35962975,-0.030288268,0.757533848,0.28156364,-0.047067136,0.75613749,0.206504047,-0.060044404,0.802519023,0.489345461,-0.023398746,0.799109697,0.369707525,-0.041440856,0.79693985,0.293447077,-0.052765917,0.794472158,0.221608043,-0.060889684,0.840692043,0.516474545,-0.036233418,0.83869189,0.414598584,-0.05231427,0.836711884,0.34699446,-0.058620322,0.833090246,0.280269265,-0.063062504 +Right,0.785748363,0.779335082,3.54E-07,0.721905887,0.731248021,-0.022752963,0.679232359,0.644692123,-0.036526848,0.665427327,0.554067016,-0.049801875,0.677540183,0.482551843,-0.062652625,0.716233432,0.508289695,-0.01204213,0.709757209,0.401775002,-0.0338418,0.71043092,0.338579148,-0.053216282,0.715223074,0.275794864,-0.067738943,0.756130338,0.487586886,-0.017194016,0.753213525,0.364127457,-0.035568543,0.752320588,0.286350489,-0.052473404,0.75139755,0.211829036,-0.065312974,0.794984818,0.493239909,-0.026773522,0.794218481,0.373207271,-0.045560796,0.793764651,0.299022973,-0.056524564,0.792226791,0.230326831,-0.064066656,0.833218753,0.519830585,-0.038996279,0.834205806,0.417225987,-0.055262268,0.833900094,0.349425614,-0.061489295,0.831256092,0.283913314,-0.065583937 +Right,0.784708142,0.811448812,3.96E-07,0.721897125,0.761352777,-0.028044894,0.677094221,0.679286718,-0.046584949,0.660108507,0.591209888,-0.063431211,0.67331022,0.51143229,-0.079740427,0.719668806,0.542136312,-0.024151376,0.718760371,0.43326813,-0.050599698,0.72281462,0.370289356,-0.072269358,0.730338037,0.30818975,-0.088082597,0.76179409,0.524428725,-0.027967133,0.764546275,0.398573101,-0.050198607,0.769074261,0.321514368,-0.068132907,0.772597015,0.247734487,-0.081546329,0.801947355,0.534938157,-0.03628087,0.806533635,0.411055446,-0.058810458,0.810316086,0.334767103,-0.070264511,0.812049508,0.263070166,-0.07777708,0.840061069,0.567542136,-0.04730431,0.845626295,0.464696914,-0.066753916,0.849051356,0.39621684,-0.073840223,0.850103319,0.330216736,-0.078168251 +Right,0.781184375,0.787403762,4.47E-07,0.718028724,0.743501425,-0.030344261,0.67460233,0.659938514,-0.049688142,0.660058677,0.570461929,-0.066596918,0.670537949,0.492526084,-0.083093792,0.717170835,0.514847398,-0.028396577,0.718990028,0.405388057,-0.055002108,0.724149585,0.339910328,-0.076807901,0.733073592,0.275069773,-0.092586242,0.760401368,0.498387784,-0.030606067,0.765011311,0.371671796,-0.052611653,0.769958019,0.291817784,-0.070605665,0.773867309,0.215209544,-0.084227256,0.800901413,0.509793878,-0.037195183,0.807119489,0.387296051,-0.059378672,0.812183917,0.309777021,-0.071640655,0.815164685,0.237594932,-0.079850145,0.838989437,0.542566299,-0.046592694,0.844395101,0.438694328,-0.066244401,0.84754163,0.370686471,-0.074036971,0.848347902,0.305474877,-0.078878261 +Right,0.779987454,0.77784121,4.51E-07,0.716978312,0.734712362,-0.031399392,0.67163384,0.653294742,-0.051679727,0.6532107,0.563529849,-0.069604255,0.667200208,0.484362513,-0.086865492,0.712239563,0.504194021,-0.026812406,0.711897492,0.392635345,-0.053821307,0.716988981,0.326230168,-0.076108977,0.726703107,0.26135245,-0.092278756,0.754851222,0.485046357,-0.028702186,0.75804615,0.355673134,-0.050531387,0.762795985,0.275433123,-0.068616241,0.766672134,0.198481292,-0.082485639,0.795136392,0.494698077,-0.035309047,0.79885751,0.371062279,-0.056820691,0.802803576,0.292655051,-0.068647817,0.805189788,0.22000879,-0.07684622,0.833734274,0.526318073,-0.044999748,0.836385489,0.421871305,-0.063484557,0.83799392,0.353524923,-0.070766591,0.837436736,0.287938118,-0.075595006 +Right,0.779912412,0.768150866,4.69E-07,0.716191888,0.730285168,-0.032744031,0.669036448,0.653097272,-0.053849179,0.649418831,0.564965367,-0.072264709,0.662495673,0.484834522,-0.090125605,0.710025907,0.503261089,-0.03093194,0.708957016,0.389645755,-0.058513377,0.713290691,0.322524697,-0.080601171,0.721830726,0.257003635,-0.096536115,0.752138436,0.481599569,-0.032407731,0.754786909,0.350025892,-0.05536221,0.759197652,0.266961336,-0.073783562,0.762495816,0.187327057,-0.08773125,0.792235434,0.488986999,-0.03842555,0.796043336,0.363300383,-0.061017629,0.799953997,0.282353342,-0.073601529,0.80172962,0.20682022,-0.082119323,0.830948174,0.518707871,-0.047490627,0.83457303,0.412388921,-0.066839665,0.836693168,0.342487603,-0.074557416,0.836190999,0.275551885,-0.079567865 +Right,0.782428205,0.783180952,4.85E-07,0.716762304,0.748950243,-0.033105258,0.666454673,0.678429544,-0.054140933,0.64268589,0.590010047,-0.07255543,0.655833602,0.509485185,-0.090203397,0.703785658,0.521144271,-0.029384833,0.701012075,0.405721188,-0.056676421,0.705688,0.337934494,-0.078798033,0.714222848,0.271652758,-0.094721869,0.7458179,0.494410813,-0.030407444,0.747286975,0.360603452,-0.052736454,0.751411438,0.276418805,-0.070623688,0.753957927,0.196455151,-0.084071152,0.786524832,0.497160196,-0.036135182,0.788421869,0.369410962,-0.058158986,0.790741563,0.28732723,-0.069964662,0.791207969,0.211542636,-0.077661879,0.826333225,0.522936106,-0.045063712,0.828060627,0.414207518,-0.063552469,0.82922864,0.343100727,-0.070423387,0.828160703,0.275422037,-0.074640438 +Right,0.785250306,0.788342476,5.13E-07,0.719438791,0.762346566,-0.03514421,0.668039262,0.696897268,-0.057904243,0.643996716,0.610522211,-0.077572078,0.657431364,0.532411873,-0.096425973,0.704298913,0.53149277,-0.033208679,0.700897157,0.417769253,-0.061335135,0.706183732,0.350852013,-0.083994731,0.715227425,0.284799576,-0.100274786,0.746807992,0.502854943,-0.033602629,0.74769026,0.369594574,-0.056570549,0.752185762,0.286281943,-0.074493043,0.755233228,0.206910372,-0.087978639,0.787447572,0.504276216,-0.038739037,0.788376331,0.376958609,-0.06121796,0.790195763,0.295257062,-0.07295303,0.790536761,0.219380498,-0.080627546,0.82760483,0.528937876,-0.047214638,0.828757167,0.420126557,-0.065862209,0.829725623,0.349384785,-0.072714984,0.828487277,0.281384081,-0.076995052 +Right,0.787545443,0.763368368,5.51E-07,0.722503304,0.740569949,-0.037031747,0.670089364,0.678671539,-0.061066456,0.643801212,0.593354762,-0.081500694,0.653646588,0.510158241,-0.101056166,0.702165246,0.51246047,-0.037036512,0.697619021,0.395318449,-0.066623665,0.702730119,0.325928837,-0.089750037,0.712087095,0.258977234,-0.105951361,0.744801879,0.480506569,-0.036337156,0.744812787,0.342966318,-0.060006581,0.748912096,0.256551236,-0.077834219,0.751826525,0.176163614,-0.091146685,0.786345124,0.478946388,-0.040426146,0.786476672,0.348392725,-0.063037544,0.787835658,0.266106695,-0.074573994,0.787899017,0.191194654,-0.082079336,0.827405334,0.501057863,-0.047954556,0.828093529,0.391795516,-0.066720024,0.828483045,0.320533276,-0.073573135,0.826795697,0.253398895,-0.077697091 +Right,0.78192389,0.724221408,5.25E-07,0.71582669,0.705744028,-0.034390248,0.663012743,0.644170165,-0.056514964,0.636286676,0.561744034,-0.075621217,0.641468465,0.476067662,-0.093983345,0.69138068,0.479028195,-0.032136571,0.68414849,0.364196002,-0.060583834,0.685893118,0.29373008,-0.083451532,0.692358553,0.225843608,-0.099407405,0.732208908,0.446579039,-0.032571517,0.727991223,0.309469938,-0.055096079,0.728036463,0.222584486,-0.073167056,0.727335572,0.142042637,-0.086711146,0.772727668,0.443207592,-0.037749048,0.769780874,0.311474383,-0.059825435,0.76816529,0.230098248,-0.071775243,0.765089095,0.156260699,-0.079652421,0.813636363,0.462890178,-0.046150688,0.812265337,0.35239163,-0.065241151,0.811004698,0.279935718,-0.072563931,0.807215929,0.211950541,-0.076959178 +Right,0.776217699,0.719994783,4.85E-07,0.709269762,0.692802191,-0.030776447,0.658197463,0.622651935,-0.050177131,0.63399905,0.535513699,-0.067208283,0.639221847,0.452804744,-0.083685927,0.689486623,0.464171499,-0.028231291,0.681168973,0.348210633,-0.053979535,0.680981517,0.278771222,-0.074633986,0.684321761,0.211155117,-0.08955124,0.730806589,0.433638602,-0.030181186,0.726482034,0.299036622,-0.051473156,0.727615952,0.213619351,-0.068184718,0.727866292,0.135298878,-0.080797002,0.77137816,0.433289617,-0.036609404,0.768339336,0.303249121,-0.058139093,0.768299878,0.220510393,-0.0697475,0.766638696,0.145892203,-0.077472255,0.811798811,0.455530167,-0.045934334,0.810911,0.346459031,-0.06460128,0.809789777,0.273210406,-0.071993448,0.806403339,0.204422861,-0.076692246 +Right,0.774697661,0.723718643,4.41E-07,0.707861185,0.689019978,-0.027607461,0.659172058,0.611820698,-0.04504472,0.638845384,0.522830606,-0.060819656,0.645153701,0.443356782,-0.076070666,0.694581211,0.458753884,-0.022383941,0.68903774,0.342757285,-0.046773456,0.689775944,0.272773951,-0.066907547,0.694540083,0.205699354,-0.081561752,0.735525548,0.432090342,-0.025947507,0.73311305,0.297474265,-0.046061907,0.734888971,0.212808371,-0.062656231,0.736560464,0.135345221,-0.075197384,0.775385797,0.4339239,-0.033960368,0.774269462,0.303983867,-0.054363701,0.77526921,0.221927792,-0.065582946,0.775136709,0.148010671,-0.073254749,0.815220356,0.457766443,-0.044772841,0.815643132,0.349102736,-0.062588491,0.815877795,0.276127815,-0.06929969,0.813922167,0.207167208,-0.073583484 +Right,0.786497533,0.744623423,3.73E-07,0.718836308,0.70340389,-0.023709143,0.670740426,0.622253895,-0.038386032,0.650816321,0.530939937,-0.052498948,0.660365343,0.452915102,-0.066177867,0.70658505,0.475158751,-0.012712535,0.698947906,0.361982614,-0.034827475,0.69658035,0.294660151,-0.054400329,0.697904468,0.229629278,-0.068975523,0.746458769,0.449712396,-0.017705888,0.740882277,0.318068922,-0.036192998,0.737794816,0.234785467,-0.053125896,0.734546185,0.157834023,-0.065913349,0.785759091,0.450933844,-0.027234642,0.781291723,0.323583484,-0.046081241,0.778917074,0.243453592,-0.057341762,0.775318563,0.170750529,-0.065127,0.824990273,0.473507613,-0.039395224,0.821908593,0.367403001,-0.055822104,0.818941116,0.296975493,-0.061908677,0.813807845,0.230402082,-0.065846607 +Right,0.795205653,0.731613278,2.97E-07,0.727897942,0.691208243,-0.018391555,0.679730594,0.60844481,-0.029231643,0.661553502,0.518201709,-0.040568143,0.672994077,0.449395537,-0.051800516,0.713601649,0.466076136,-0.004452096,0.702448428,0.361989856,-0.023429483,0.697517335,0.299340516,-0.041775718,0.696128368,0.237924993,-0.05597176,0.7518453,0.439882338,-0.011378237,0.741991103,0.316016763,-0.027145082,0.735938609,0.237524778,-0.043388005,0.73042196,0.164682657,-0.05594762,0.790189147,0.439732224,-0.022569798,0.782079875,0.319355726,-0.039267473,0.776151001,0.24336651,-0.050003432,0.769467235,0.173915744,-0.057734307,0.829670668,0.461137295,-0.036107749,0.824374974,0.357980371,-0.0509497,0.818809867,0.289962113,-0.056215309,0.811028898,0.224457085,-0.059848629 +Right,0.7932356,0.714108586,3.03E-07,0.725346148,0.675084233,-0.017095771,0.679332733,0.594780028,-0.026452465,0.662992716,0.505340517,-0.036365077,0.675117493,0.439893097,-0.046202004,0.714646935,0.456019729,-0.002421529,0.703407168,0.353757501,-0.019913532,0.699307144,0.293226182,-0.037184425,0.698737144,0.232954279,-0.050598077,0.751762569,0.431457698,-0.00898021,0.743083715,0.311274648,-0.023513969,0.737705171,0.235806152,-0.038771991,0.732444465,0.164221197,-0.050563093,0.788904071,0.43219319,-0.019708578,0.782094002,0.31358853,-0.035447914,0.777086496,0.240954384,-0.045381162,0.77134037,0.174008429,-0.052345145,0.8273983,0.453241557,-0.03271696,0.823029995,0.35022068,-0.046779357,0.818343043,0.283908129,-0.051743358,0.811592579,0.219265401,-0.055042654 +Right,0.783435583,0.704040051,3.56E-07,0.716462612,0.660725713,-0.019854821,0.673681438,0.577627778,-0.030633831,0.661460102,0.487392366,-0.041205592,0.675468445,0.418634087,-0.051667787,0.716758132,0.440360963,-0.008521035,0.71117872,0.332466006,-0.02730508,0.710554421,0.268398762,-0.044849914,0.712928116,0.207123786,-0.058164332,0.755693913,0.419963568,-0.013738129,0.75475657,0.294964969,-0.02948286,0.753346801,0.216451585,-0.045445167,0.750711918,0.143572688,-0.057639249,0.792986572,0.425089806,-0.022995936,0.794494033,0.302228451,-0.040170174,0.793417454,0.226550937,-0.051590648,0.790442824,0.158285946,-0.059462447,0.82968992,0.450745195,-0.034475267,0.834392071,0.346529603,-0.050117593,0.835429668,0.278157413,-0.056459811,0.833764553,0.212608516,-0.060537159 +Right,0.757004201,0.703653753,2.83E-07,0.693194985,0.646483421,-0.015950209,0.656811476,0.558254838,-0.024811232,0.650642157,0.468048662,-0.03457725,0.667581081,0.405658066,-0.04432188,0.706849158,0.431877226,0.000142698,0.706891418,0.325600892,-0.017265009,0.707730114,0.260622948,-0.035025928,0.711204231,0.198783606,-0.048734203,0.745243728,0.416315466,-0.006935237,0.747469544,0.292215228,-0.020792801,0.748421788,0.211713582,-0.036277685,0.748814821,0.13836652,-0.048375268,0.781443536,0.424405932,-0.018200707,0.78467536,0.303162932,-0.033098575,0.786406755,0.225776806,-0.043007247,0.78692925,0.155488938,-0.050126657,0.817326963,0.453409016,-0.031735502,0.821223438,0.350195557,-0.045547277,0.821412563,0.281989336,-0.050143421,0.819290638,0.216086626,-0.053108413 +Right,0.740680456,0.710719705,3.15E-07,0.67880851,0.646532953,-0.017390119,0.646612406,0.556054056,-0.027254803,0.644679368,0.464544654,-0.037822958,0.664916694,0.401566833,-0.048523124,0.703617573,0.436091155,-0.00317539,0.70865494,0.326915622,-0.021796819,0.712213337,0.259460866,-0.03984762,0.718319774,0.195539206,-0.053534735,0.742171288,0.425789237,-0.009946155,0.751006901,0.299758613,-0.025095806,0.75594759,0.218230918,-0.040640481,0.75973314,0.144560605,-0.052557103,0.777821839,0.438194603,-0.020948779,0.787006736,0.314744592,-0.037045833,0.792364359,0.236381382,-0.047066219,0.795995831,0.166701168,-0.053944115,0.812376499,0.469963849,-0.034314409,0.821248174,0.364360034,-0.048757989,0.825420499,0.295130789,-0.053590231,0.826994359,0.22951667,-0.05657481 +Right,0.716890097,0.768933713,2.82E-07,0.661049187,0.692432284,-0.01804837,0.63437444,0.593545079,-0.028152296,0.636271119,0.504315197,-0.038861651,0.658230603,0.442204535,-0.0494272,0.698590577,0.48597309,-0.0034984,0.709373057,0.381152332,-0.023289399,0.7173751,0.31611526,-0.042609908,0.727846146,0.253923267,-0.057099178,0.737323225,0.482580483,-0.010327442,0.752933323,0.361370087,-0.026251646,0.762652993,0.281103432,-0.042739678,0.771180928,0.207280099,-0.055376209,0.77218318,0.501511991,-0.02153022,0.789318979,0.383544654,-0.038158659,0.799785733,0.308000088,-0.048626356,0.807947457,0.239455432,-0.055752113,0.804543614,0.539866745,-0.03522284,0.820651412,0.438082278,-0.049757846,0.829402745,0.370774895,-0.054605205,0.83535707,0.30579865,-0.057587069 +Right,0.726344585,0.801241934,3.39E-07,0.668826342,0.725925446,-0.01991461,0.641934454,0.623307765,-0.030236704,0.643238425,0.528959572,-0.04073273,0.667693496,0.467779696,-0.050818123,0.704957306,0.513591766,-0.003637877,0.717885315,0.407052696,-0.022942003,0.728719831,0.342901051,-0.04181087,0.742402256,0.283020318,-0.055976283,0.744570434,0.511242568,-0.008788921,0.761895478,0.389586747,-0.024121471,0.773917377,0.311076224,-0.040118359,0.784872532,0.238105625,-0.052382108,0.77960223,0.532020152,-0.018485481,0.797456682,0.414640754,-0.034553148,0.80894047,0.340771973,-0.044562891,0.818575501,0.273735374,-0.051479671,0.812440753,0.572273433,-0.030852621,0.828975618,0.473159671,-0.045265339,0.838594556,0.406743675,-0.050380979,0.846153378,0.341911852,-0.053583022 +Right,0.763921678,0.805573285,3.30E-07,0.700397372,0.749308705,-0.021192484,0.659967244,0.662691236,-0.033447511,0.649261773,0.573394418,-0.045513067,0.662266195,0.500297308,-0.057065036,0.703729808,0.531034112,-0.008644162,0.700890243,0.427410424,-0.029240003,0.702669442,0.365742892,-0.048192579,0.708123267,0.305117816,-0.062454905,0.743063748,0.513780475,-0.013889931,0.743820608,0.395155728,-0.030940976,0.746337414,0.320704937,-0.047160849,0.748768091,0.249371499,-0.059568871,0.78028661,0.523334265,-0.023634756,0.782810748,0.407116413,-0.041726973,0.785209119,0.335014164,-0.052567836,0.786656499,0.268515736,-0.059818719,0.816836238,0.554225385,-0.035903402,0.820734799,0.453775495,-0.052196186,0.821301579,0.386997521,-0.058656588,0.819856226,0.322217047,-0.062671363 +Right,0.781727552,0.793510318,2.10E-07,0.71710211,0.745797157,-0.014332862,0.675464988,0.661209226,-0.02145916,0.661880553,0.576850593,-0.02996718,0.664313078,0.510329723,-0.038394492,0.706917465,0.532347977,0.003041929,0.692831874,0.434376597,-0.012793876,0.684864163,0.375526786,-0.029273655,0.679597974,0.316823155,-0.042411685,0.740995526,0.509196937,-0.004802681,0.7277053,0.394628465,-0.018568903,0.717567801,0.321361154,-0.034502566,0.708280802,0.250756919,-0.046841342,0.775593281,0.509778261,-0.016705787,0.763089538,0.396892726,-0.031757109,0.752888501,0.326024801,-0.042642869,0.742402554,0.259431988,-0.050489765,0.81237483,0.53008604,-0.030774653,0.803917229,0.432628572,-0.044694863,0.794873655,0.368092954,-0.05025797,0.784264863,0.305016577,-0.054119609 +Right,0.796586871,0.789880753,1.88E-07,0.731541395,0.741039217,-0.010476011,0.691387534,0.65080899,-0.013422459,0.68020016,0.5669626,-0.018394737,0.680209458,0.506669044,-0.023658834,0.721741617,0.527132332,0.00867928,0.706435382,0.429812849,-0.00419891,0.696794093,0.37105906,-0.019117158,0.689232111,0.312793642,-0.031594507,0.753508627,0.50398314,-0.000218408,0.738407671,0.390882909,-0.011828161,0.72674334,0.318680853,-0.027321929,0.715964615,0.248684287,-0.039635267,0.786502481,0.504792273,-0.012928215,0.773138523,0.39170599,-0.026384229,0.761865079,0.322477788,-0.037808847,0.749807596,0.257584453,-0.046419419,0.8230744,0.52514112,-0.027555481,0.813754857,0.428486437,-0.040596716,0.803023338,0.364930212,-0.046789818,0.790025711,0.302463323,-0.051520225 +Right,0.79488337,0.800159276,1.83E-07,0.730020046,0.747814,-0.011219043,0.691070199,0.657362163,-0.015098309,0.681197107,0.573411763,-0.020990632,0.683125019,0.512031615,-0.026930969,0.723564863,0.532104075,0.008876186,0.708249986,0.436485589,-0.004314684,0.699007452,0.378968269,-0.019724689,0.691994131,0.320773542,-0.032650787,0.755428076,0.510736585,0.000195225,0.740373909,0.399033964,-0.011761759,0.728297174,0.327478409,-0.027721586,0.717026889,0.25708738,-0.040300731,0.78833729,0.513769329,-0.012368747,0.774036467,0.401986033,-0.026059927,0.762758613,0.333623588,-0.037348777,0.75146246,0.268954456,-0.045697372,0.824262023,0.536801279,-0.026944712,0.813934982,0.440851837,-0.039924111,0.803156972,0.377619565,-0.045888409,0.791179478,0.315074503,-0.05034006 +Right,0.792373896,0.790942252,2.69E-07,0.729301155,0.735870183,-0.015168577,0.690787733,0.643363595,-0.022903692,0.680263162,0.556622863,-0.031565148,0.688860059,0.493442267,-0.040204253,0.728652477,0.517026186,-3.93E-05,0.720774889,0.415947407,-0.017179288,0.718192995,0.354525357,-0.034555309,0.718735158,0.293297201,-0.048172913,0.765493631,0.498212367,-0.007547945,0.759091079,0.380356312,-0.021760207,0.754479289,0.304027587,-0.037545785,0.750280738,0.230301499,-0.04979451,0.802106023,0.503694594,-0.019083299,0.796425283,0.385756612,-0.034397218,0.791722894,0.313049704,-0.044582065,0.78627032,0.244294018,-0.051912311,0.83973372,0.529777646,-0.032834087,0.836294055,0.428579628,-0.046898864,0.831736922,0.361983657,-0.052025117,0.825082898,0.295982301,-0.055515643 +Right,0.788924456,0.766041696,3.04E-07,0.724802256,0.712489724,-0.018135503,0.684615731,0.62302947,-0.02884458,0.673177242,0.532146156,-0.039931495,0.686171234,0.467918187,-0.050990164,0.728606701,0.488803983,-0.005560139,0.725200355,0.380578995,-0.024636311,0.725705028,0.315853596,-0.042961489,0.729399741,0.252337843,-0.057100389,0.768219054,0.4727391,-0.012412406,0.767221808,0.34807393,-0.028319616,0.76692754,0.268823534,-0.044684555,0.766140103,0.19399932,-0.057359096,0.806240499,0.481219381,-0.023338625,0.80630523,0.360323608,-0.040052496,0.806289852,0.283371508,-0.05065158,0.805107892,0.212413371,-0.05824288,0.844220459,0.510279238,-0.036577214,0.845612705,0.405950636,-0.051609501,0.845535219,0.337304771,-0.056871768,0.843406856,0.270267487,-0.060393285 +Right,0.781305373,0.734895945,4.29E-07,0.713000536,0.698209643,-0.02766715,0.666163087,0.619675398,-0.043907925,0.649626195,0.527425706,-0.05857965,0.659745514,0.449083716,-0.072691292,0.704521716,0.470856935,-0.018160909,0.699999511,0.358689904,-0.04179509,0.701267481,0.291036427,-0.062691435,0.705795705,0.224599838,-0.078104094,0.745230198,0.445964485,-0.021161836,0.743484259,0.315321743,-0.040372964,0.74298501,0.233289361,-0.05802786,0.741264284,0.155403316,-0.071604095,0.784208536,0.448123276,-0.028842906,0.784463823,0.321757823,-0.048705868,0.784541845,0.242603481,-0.060368109,0.783278227,0.170284867,-0.068407118,0.823263466,0.47189182,-0.039452616,0.824672341,0.365429103,-0.057007674,0.824791789,0.295554131,-0.063630238,0.822656929,0.228854477,-0.06789308 +Right,0.777526259,0.716522574,4.74E-07,0.71169585,0.683573306,-0.031313028,0.661899447,0.610364258,-0.051166717,0.642116189,0.516946614,-0.068620332,0.661636353,0.4371126,-0.085375264,0.701973736,0.456020594,-0.026967766,0.69872719,0.339679778,-0.0537518,0.703055263,0.270467341,-0.075831056,0.711725473,0.203896165,-0.091783307,0.742714822,0.4289698,-0.028522676,0.743732452,0.29396835,-0.049904525,0.748432875,0.209612131,-0.06709177,0.751729548,0.131092966,-0.080114819,0.782472908,0.43092528,-0.034804251,0.784548342,0.301489979,-0.05613533,0.78772068,0.220253974,-0.067386016,0.789073765,0.14558053,-0.074804224,0.821701527,0.455583155,-0.044210237,0.824143171,0.347379714,-0.062408548,0.826446652,0.277088255,-0.069210485,0.826369107,0.209856868,-0.073487692 +Right,0.774975419,0.739381194,5.46E-07,0.711942136,0.709158361,-0.04210243,0.663449347,0.64221549,-0.068414666,0.645995378,0.549540877,-0.090359211,0.66528964,0.464288563,-0.11113216,0.70432955,0.476859272,-0.040223911,0.705677867,0.36093998,-0.071429871,0.713825107,0.2928707,-0.096384458,0.726092577,0.226233393,-0.114286408,0.74679476,0.449734986,-0.038031258,0.751851678,0.315462381,-0.063395269,0.759598017,0.23172769,-0.083122611,0.766485393,0.151883543,-0.098168992,0.786227286,0.453972787,-0.041309763,0.791647315,0.326751232,-0.066173248,0.798113048,0.245378733,-0.0795459,0.803018034,0.169657826,-0.088403113,0.824515641,0.481110275,-0.048519131,0.828737855,0.373993158,-0.069569193,0.833176672,0.304196626,-0.078274392,0.835500658,0.237304464,-0.083947495 +Right,0.77878654,0.730091512,5.49E-07,0.715873599,0.71165967,-0.041749071,0.666741192,0.651735008,-0.067573518,0.649143219,0.563410163,-0.088888332,0.663546741,0.477888077,-0.109224625,0.702653408,0.483101636,-0.041078039,0.700424671,0.368263006,-0.071944758,0.706484079,0.299278617,-0.096557491,0.717210233,0.230790138,-0.114039063,0.743487239,0.452767104,-0.038468581,0.74513793,0.319089949,-0.063981652,0.749858677,0.234885514,-0.083927199,0.753741145,0.153454334,-0.098915115,0.782070696,0.452570289,-0.041062679,0.784582138,0.325586855,-0.06607724,0.787633955,0.244651467,-0.079880469,0.789401054,0.169410467,-0.088842086,0.820640385,0.47443229,-0.047439232,0.823336601,0.366312444,-0.068770818,0.826089561,0.296559751,-0.077772781,0.826360345,0.229641855,-0.083455503 +Right,0.79015702,0.714764476,5.09E-07,0.72449261,0.691746175,-0.035368565,0.673201025,0.628085494,-0.057568412,0.652101398,0.536924183,-0.0763762,0.670034409,0.455071807,-0.09427467,0.71004802,0.466305822,-0.03264913,0.705995262,0.35163337,-0.060741849,0.710613132,0.283539027,-0.083396524,0.719581127,0.218358457,-0.099563852,0.75058651,0.435587943,-0.032362215,0.75053829,0.302175373,-0.054807458,0.754915953,0.218957335,-0.072311446,0.75818336,0.140815049,-0.08538942,0.790238321,0.434161782,-0.036974404,0.79108268,0.305549771,-0.059398346,0.793602228,0.224726766,-0.071168907,0.794523776,0.149591684,-0.078732498,0.829993546,0.455617785,-0.044893347,0.832035303,0.348546565,-0.063991807,0.834202707,0.279205352,-0.071130022,0.834338784,0.212270886,-0.075458296 +Right,0.789591491,0.728759766,2.75E-07,0.724222064,0.679690897,-0.01802144,0.683481336,0.591265082,-0.028318277,0.67285794,0.498965919,-0.039100774,0.688826978,0.434202075,-0.049948603,0.724530697,0.458579719,-0.004032834,0.715080917,0.355151653,-0.022832232,0.711162865,0.292679131,-0.04137066,0.71084547,0.231011271,-0.055884711,0.761767745,0.43817389,-0.010726115,0.755183935,0.315079868,-0.02675605,0.751075745,0.236783594,-0.043337997,0.747388661,0.16219902,-0.056149852,0.798497558,0.443795174,-0.021563752,0.793991745,0.322733104,-0.038596317,0.791280329,0.247348264,-0.049488667,0.7877689,0.176972598,-0.057345822,0.836220562,0.470745742,-0.034701969,0.834977567,0.368746221,-0.049760249,0.832810163,0.302721709,-0.055155292,0.828721941,0.237274244,-0.05898181 +Right,0.792990625,0.737555802,2.33E-07,0.729513288,0.677828193,-0.013519617,0.693565607,0.584492505,-0.020477077,0.687823892,0.492148042,-0.028982624,0.704550087,0.433858871,-0.038029153,0.740744948,0.458451241,0.002318835,0.732855797,0.353839576,-0.014324581,0.728213906,0.289615005,-0.031780787,0.726741254,0.226916611,-0.04565575,0.777020752,0.442934513,-0.006143195,0.772097886,0.319975555,-0.020595293,0.766611218,0.240387142,-0.037079576,0.761075139,0.165643066,-0.049722698,0.812798858,0.450944066,-0.018487109,0.808976769,0.329854906,-0.033993769,0.805040061,0.25341785,-0.045143526,0.799884021,0.182861537,-0.053073317,0.849461317,0.479547948,-0.032921445,0.847498178,0.375204444,-0.046778459,0.84358567,0.307407618,-0.052029021,0.83723557,0.241620764,-0.055714946 +Right,0.784878969,0.743712425,1.52E-07,0.724840224,0.677989364,-0.009821947,0.697160304,0.580458581,-0.012962212,0.698393524,0.494583905,-0.018362453,0.711196005,0.43683055,-0.02410931,0.747108459,0.460042417,0.009005828,0.7394014,0.358782768,-0.004976043,0.735429943,0.294829994,-0.021080289,0.735690296,0.233069211,-0.034197189,0.781308532,0.447248042,-9.10E-05,0.776395023,0.325956225,-0.011949613,0.772420406,0.246527568,-0.027520688,0.770209372,0.172423929,-0.039598297,0.815051198,0.458394319,-0.01301908,0.811326027,0.337538123,-0.026854066,0.807486176,0.25994581,-0.038327672,0.804026783,0.187173009,-0.046570215,0.850013554,0.489686161,-0.027821122,0.849996567,0.386546642,-0.041120537,0.846231282,0.31727767,-0.047063932,0.841136575,0.247996137,-0.051247362 +Right,0.780505061,0.74529165,1.02E-07,0.721542656,0.675551713,-0.006883246,0.697736025,0.57742238,-0.007271011,0.701075137,0.491922051,-0.010519683,0.710462809,0.435822278,-0.01403348,0.746884704,0.461202353,0.015801392,0.73966527,0.362281561,0.004926573,0.735351384,0.300186783,-0.009716362,0.734008133,0.238949001,-0.022433583,0.779372752,0.449080735,0.005922816,0.773258924,0.330662161,-0.004254023,0.76797235,0.253990531,-0.019715875,0.763129354,0.179974616,-0.032059863,0.810751319,0.460864246,-0.007680329,0.805949748,0.342127442,-0.02073041,0.801354229,0.266901016,-0.032237064,0.796322525,0.19598788,-0.040631749,0.843892515,0.492305607,-0.022979969,0.84160912,0.390440583,-0.036123645,0.836291492,0.323068678,-0.042396858,0.829174936,0.255645186,-0.046956185 +Right,0.771169841,0.744222403,9.45E-08,0.713528335,0.681345105,-0.008899131,0.685946882,0.585599482,-0.01139214,0.687143266,0.499811083,-0.016355727,0.698320031,0.441858411,-0.021390308,0.734170258,0.464423954,0.011768242,0.724765301,0.366991043,8.95E-05,0.718746603,0.306940794,-0.014803305,0.716044128,0.247962624,-0.027724579,0.765801132,0.450612187,0.002565258,0.758027554,0.334282458,-0.008328244,0.751734912,0.2600618,-0.023645198,0.746014833,0.18897742,-0.036012895,0.79641217,0.461622149,-0.010373786,0.791196704,0.345580637,-0.023801483,0.7867136,0.272281051,-0.035215747,0.781642437,0.203226507,-0.043748464,0.82874018,0.492742002,-0.025129545,0.827189982,0.393425047,-0.038523454,0.821757793,0.327673227,-0.045022994,0.814190984,0.262196064,-0.049877744 +Right,0.769973636,0.736961126,1.83E-07,0.708483756,0.677782536,-0.011908751,0.675585985,0.58585912,-0.01690639,0.672801495,0.497450054,-0.023720097,0.687598109,0.440475315,-0.030724738,0.720586121,0.465215772,0.00642261,0.712774992,0.367520809,-0.008781024,0.708706856,0.307103753,-0.025744094,0.707905114,0.246983424,-0.039520159,0.755424201,0.448428392,-0.001791982,0.749340236,0.330965102,-0.014921737,0.74446249,0.255529881,-0.03045276,0.739993155,0.184262991,-0.042545807,0.789580941,0.455729455,-0.01396724,0.784688771,0.339356124,-0.028911017,0.780378282,0.265986085,-0.039274018,0.775754333,0.198288172,-0.046538647,0.825428486,0.482617438,-0.028172202,0.824996293,0.381373078,-0.04195796,0.821668565,0.314355046,-0.047229379,0.816381037,0.247681752,-0.050845347 +Right,0.765760481,0.732780159,2.55E-07,0.70307833,0.678917229,-0.017821979,0.665338814,0.593642175,-0.028225774,0.656498909,0.504012942,-0.039285854,0.674857795,0.441744655,-0.050371435,0.710188985,0.466584772,-0.003046876,0.703277469,0.365690589,-0.022244109,0.699126661,0.303498507,-0.041051034,0.698426485,0.242245942,-0.055673797,0.747105896,0.447867393,-0.009777914,0.742323756,0.326736718,-0.026124269,0.738498926,0.248821378,-0.042523012,0.734694481,0.174574673,-0.055026703,0.782959998,0.454032898,-0.020819349,0.779766679,0.335801452,-0.03840154,0.77693671,0.260444254,-0.049120497,0.7733441,0.189537346,-0.056384016,0.819412351,0.481270671,-0.034195535,0.819857717,0.379199445,-0.049712401,0.818092346,0.31222254,-0.055228595,0.814247906,0.245462507,-0.058837432 +Right,0.767270386,0.740505457,3.22E-07,0.70339942,0.692464411,-0.020249452,0.660134554,0.609639227,-0.032388911,0.647196472,0.517455459,-0.044486418,0.664963126,0.448480815,-0.056452986,0.702839792,0.472403973,-0.007938217,0.697047591,0.366876185,-0.028065387,0.695535123,0.302673966,-0.046898209,0.697520971,0.240513533,-0.061209034,0.741804123,0.451260924,-0.013647285,0.740012825,0.327108502,-0.030522922,0.737852395,0.248720586,-0.046960328,0.735058725,0.175506234,-0.059459176,0.779727399,0.456114173,-0.023613675,0.780761063,0.33507508,-0.041429777,0.779529631,0.259725481,-0.052297197,0.776744187,0.190403342,-0.059726868,0.816966057,0.482825428,-0.035961583,0.820417464,0.378929615,-0.051614281,0.821303666,0.31105727,-0.05726764,0.81972295,0.245139241,-0.060866207 +Right,0.760478854,0.727692544,3.71E-07,0.695859015,0.682125568,-0.024396049,0.652662098,0.600189745,-0.039478883,0.640398443,0.506989121,-0.053621579,0.660558343,0.43471244,-0.067415766,0.698578894,0.459456056,-0.015248734,0.696556032,0.348591715,-0.037759166,0.69858712,0.282760441,-0.057516016,0.704470634,0.218776375,-0.072264269,0.739219308,0.440603107,-0.019464998,0.74087137,0.313112617,-0.038034149,0.743165195,0.233011767,-0.054874405,0.744322956,0.157000452,-0.067709014,0.777798593,0.448053062,-0.028089022,0.78131783,0.324899852,-0.04766091,0.784468889,0.247573301,-0.058997147,0.785940826,0.176043242,-0.066566005,0.815460324,0.476608217,-0.039284199,0.819639802,0.370600492,-0.056452066,0.822806716,0.302649856,-0.062761687,0.823960662,0.236995399,-0.066717178 +Right,0.770066738,0.700356424,4.60E-07,0.705596149,0.667558432,-0.028217634,0.65691483,0.593093991,-0.046046846,0.640970886,0.500748098,-0.061961036,0.664699316,0.428301156,-0.077371679,0.700100005,0.445166856,-0.025345972,0.698318183,0.330006242,-0.051019005,0.703516543,0.262271464,-0.072249167,0.712875009,0.198209316,-0.087282412,0.740339994,0.421875566,-0.0273761,0.743178427,0.290054202,-0.047929693,0.749611437,0.206386685,-0.064234205,0.754893064,0.12846306,-0.076274149,0.779366255,0.425329924,-0.033670705,0.782950222,0.298882037,-0.054457687,0.787419558,0.220057845,-0.065303721,0.790250063,0.147887886,-0.071914382,0.817865968,0.450263381,-0.042748116,0.823319852,0.34213233,-0.060462408,0.82737726,0.273342967,-0.066615358,0.829225838,0.207971841,-0.070029773 +Right,0.785434365,0.661021113,5.40E-07,0.721133113,0.63642931,-0.034126759,0.671162248,0.568500519,-0.055513028,0.655262709,0.476562351,-0.073543318,0.679279149,0.400496036,-0.090874895,0.712664187,0.411823064,-0.034310523,0.711029708,0.297399938,-0.062547624,0.717397213,0.228849635,-0.085188493,0.72781527,0.163702935,-0.101133779,0.752885699,0.385496914,-0.033798628,0.75763309,0.253499031,-0.057067987,0.766683817,0.169127822,-0.074535526,0.774734318,0.090164602,-0.087321103,0.7910887,0.387756407,-0.03774631,0.796745598,0.261856556,-0.061368357,0.803566277,0.180863619,-0.073819503,0.80907923,0.107680827,-0.081306085,0.828714967,0.411319524,-0.044757299,0.836366773,0.303873479,-0.064834006,0.842667103,0.233108506,-0.072788946,0.847268283,0.165753365,-0.077437818 +Right,0.789796114,0.647678614,5.84E-07,0.725687385,0.625936687,-0.041446581,0.675074518,0.559476078,-0.066441819,0.659138262,0.464856535,-0.086643375,0.684534192,0.385076851,-0.105710797,0.72041595,0.401165426,-0.042822734,0.720611811,0.282250673,-0.07386227,0.728876233,0.212248951,-0.097859807,0.741918564,0.145501792,-0.11476928,0.761378467,0.372385532,-0.039550111,0.76792711,0.236563042,-0.065307558,0.77846384,0.150618911,-0.084059976,0.788744211,0.069996655,-0.098010026,0.798965991,0.373895645,-0.041304208,0.805837691,0.246858209,-0.067114174,0.813988209,0.166141212,-0.081008054,0.821884096,0.093770772,-0.089605354,0.835950792,0.396521986,-0.046700068,0.843894839,0.290825307,-0.068489425,0.8512339,0.221698046,-0.078026392,0.8574301,0.155780196,-0.083999313 +Right,0.794891775,0.666525781,5.53E-07,0.732879996,0.644979298,-0.041683178,0.683836162,0.578300834,-0.06655179,0.671873987,0.487406105,-0.086701714,0.692821026,0.408964217,-0.105748475,0.728877008,0.417174786,-0.043519456,0.729264438,0.302679092,-0.075338513,0.740051806,0.234157324,-0.100253657,0.75498718,0.167267412,-0.117845878,0.769112229,0.389874309,-0.040948234,0.77550739,0.258410901,-0.067328297,0.787311316,0.175213456,-0.08644668,0.799469829,0.095610678,-0.100637875,0.805538535,0.392884731,-0.04359559,0.813492954,0.267772734,-0.069635473,0.823130071,0.187884346,-0.083216719,0.832506418,0.114874661,-0.091697574,0.84131217,0.417491555,-0.050118446,0.84965843,0.313206822,-0.072283573,0.857383013,0.243880153,-0.081878968,0.864007831,0.176590413,-0.087937057 +Right,0.800923288,0.694046497,5.85E-07,0.738358438,0.676449835,-0.041793376,0.690013051,0.613955915,-0.067084834,0.676417947,0.523258388,-0.087455943,0.694313824,0.442364842,-0.106594324,0.729763269,0.453344434,-0.044118971,0.728592396,0.335411906,-0.075331032,0.738077879,0.267040491,-0.099195607,0.752557814,0.201256394,-0.115777582,0.769534469,0.423404247,-0.040839221,0.774074912,0.290492773,-0.066889249,0.784419537,0.206015825,-0.085528485,0.795283079,0.126678169,-0.099166639,0.806417406,0.423683822,-0.042594496,0.812143505,0.298030615,-0.068249643,0.820314229,0.216733128,-0.081849597,0.828474879,0.143651068,-0.090250596,0.843158424,0.444300234,-0.048075628,0.849609971,0.339140207,-0.069955476,0.855550826,0.269212872,-0.079529621,0.860251904,0.202543169,-0.085381791 +Right,0.810144424,0.727971017,4.68E-07,0.744292855,0.71353662,-0.030135887,0.692032695,0.658637166,-0.048416905,0.667375565,0.573690653,-0.064420089,0.679333508,0.493242085,-0.079339862,0.717890561,0.497848719,-0.021914903,0.706026673,0.386574328,-0.046214178,0.707576811,0.320369482,-0.066547394,0.714083135,0.258301854,-0.080918908,0.754975796,0.464770555,-0.022455191,0.747193933,0.340133727,-0.041581493,0.749352515,0.263001561,-0.056874793,0.751928747,0.193016469,-0.068105713,0.79272747,0.457543135,-0.027808007,0.785644591,0.338715881,-0.04689372,0.78369385,0.264931858,-0.056455616,0.782196283,0.198591948,-0.062463474,0.832327425,0.471060246,-0.036313403,0.828092813,0.369607091,-0.052367024,0.826683164,0.304831713,-0.057682466,0.824343622,0.243182659,-0.06061947 +Right,0.811163545,0.749279082,3.99E-07,0.743311405,0.734725714,-0.024208181,0.688337743,0.676805377,-0.037813816,0.663018167,0.590877533,-0.050319679,0.673906744,0.514761627,-0.061901037,0.710386693,0.521966755,-0.011540057,0.694613695,0.419650286,-0.031617034,0.691156447,0.356009603,-0.049817327,0.691195667,0.292176753,-0.063745879,0.745767593,0.486318797,-0.014611775,0.732686937,0.368306309,-0.031706583,0.729736447,0.293935299,-0.046881698,0.725656807,0.221434355,-0.058406174,0.782317042,0.478257865,-0.022306673,0.771559834,0.363599956,-0.04093685,0.766564846,0.291362584,-0.0510079,0.760614097,0.224466503,-0.05745909,0.822434664,0.489294529,-0.03267901,0.813666046,0.389563024,-0.048758443,0.807637453,0.324653625,-0.054831166,0.799632788,0.260341614,-0.05870118 +Right,0.801973462,0.787269056,3.54E-07,0.732003689,0.761452258,-0.020174349,0.681232214,0.691792965,-0.029961929,0.659798086,0.603208959,-0.03969403,0.671366274,0.531927407,-0.048546053,0.708204269,0.545741558,-0.001208271,0.692358136,0.443877995,-0.018365175,0.68821311,0.381181657,-0.035472468,0.687872648,0.318963826,-0.048788447,0.743888795,0.514183223,-0.005635266,0.731353045,0.397527158,-0.019781904,0.727423489,0.324093282,-0.034483697,0.723148584,0.253645927,-0.045848798,0.779879749,0.509059012,-0.014836798,0.769707441,0.395839602,-0.030865831,0.76374191,0.323801309,-0.040670898,0.757610142,0.25827834,-0.047352467,0.819207609,0.522916615,-0.026670024,0.811229885,0.424533933,-0.040539414,0.804764569,0.3603912,-0.045738034,0.796379685,0.297297925,-0.049289703 +Right,0.787255883,0.778038085,3.20E-07,0.718366623,0.734478831,-0.017264929,0.674518287,0.650507569,-0.02475293,0.662446141,0.556426346,-0.032897554,0.676785529,0.491637588,-0.040621858,0.716211021,0.513632536,0.003335867,0.705925465,0.40985471,-0.012072094,0.703738928,0.347987682,-0.028509643,0.705382466,0.286812633,-0.041517705,0.753300905,0.48969385,-0.002399768,0.748088896,0.36904794,-0.014631769,0.746303678,0.292371392,-0.029228903,0.74512136,0.220229745,-0.040690895,0.789286673,0.491088629,-0.012775912,0.786287546,0.374294639,-0.02687729,0.783981502,0.300836533,-0.036959287,0.781283438,0.233594298,-0.044174243,0.826528847,0.512188137,-0.025670793,0.826167464,0.411621422,-0.038563237,0.823783755,0.344662994,-0.043701444,0.819695055,0.278635889,-0.04731055 +Right,0.768521667,0.735799551,2.05E-07,0.706853986,0.679443479,-0.010965003,0.673876226,0.593686044,-0.01542438,0.671102583,0.509844005,-0.021882309,0.682304502,0.450173497,-0.028527522,0.721569717,0.465788066,0.008272447,0.713653624,0.366001487,-0.005344294,0.709429622,0.304179668,-0.020875914,0.708878338,0.245141745,-0.033248179,0.755666077,0.447973758,-0.000268367,0.751177788,0.329402953,-0.01176078,0.746799111,0.25154835,-0.026310397,0.743573487,0.181151211,-0.037469074,0.788836956,0.453423053,-0.012796567,0.786006451,0.336579442,-0.026002936,0.782180309,0.261332482,-0.03607114,0.778261304,0.192313492,-0.043197736,0.823240697,0.478703827,-0.027342357,0.825267136,0.377294481,-0.039801475,0.823384345,0.308868229,-0.044438381,0.819643021,0.241801202,-0.04748936 +Right,0.780279815,0.716735601,1.71E-07,0.718767405,0.66247797,-0.009955137,0.685478687,0.575462341,-0.01297151,0.682289958,0.491992474,-0.017929371,0.69026804,0.43496722,-0.023101959,0.728490174,0.446029097,0.009168491,0.72030437,0.346982419,-0.003066007,0.714863837,0.285506368,-0.017910818,0.711874127,0.226024643,-0.030166876,0.761859894,0.429169625,0.000759029,0.754962802,0.312434375,-0.009745145,0.74891001,0.236737028,-0.024169989,0.743616223,0.166634083,-0.035480969,0.794567049,0.435433269,-0.011392463,0.78903234,0.319918752,-0.024040964,0.784110665,0.246174425,-0.034558054,0.779002488,0.177561671,-0.042178389,0.829175234,0.461157292,-0.025416652,0.828563809,0.36148876,-0.037790239,0.825209379,0.294876069,-0.042860284,0.820682287,0.22835432,-0.046388317 +Right,0.794857681,0.717870593,2.18E-07,0.732743561,0.666969717,-0.014561243,0.69530195,0.58068198,-0.02253096,0.686768353,0.496518821,-0.031770982,0.697097182,0.433816791,-0.041209992,0.734938025,0.450095028,-0.000239143,0.724335074,0.349473476,-0.016925957,0.718184352,0.288841784,-0.033702139,0.715104878,0.229009777,-0.047055572,0.769004345,0.43209672,-0.008089358,0.76003933,0.31427592,-0.022908457,0.752559066,0.239301413,-0.038653113,0.745497167,0.167639345,-0.050705981,0.803130865,0.437720507,-0.019839399,0.795369446,0.320256323,-0.03590231,0.789104521,0.247299567,-0.046762895,0.781872392,0.178596318,-0.054480441,0.839070976,0.462845922,-0.033665445,0.836065114,0.362522513,-0.048289742,0.831291318,0.296875715,-0.054021221,0.824475348,0.232113421,-0.058056545 +Right,0.805471122,0.702469647,2.24E-07,0.745494008,0.660485983,-0.018139932,0.70292592,0.578219771,-0.029364342,0.68806994,0.496389568,-0.040780954,0.698060513,0.43347764,-0.052213863,0.738054633,0.440440595,-0.007908191,0.72680074,0.34310618,-0.026359081,0.719406664,0.284493178,-0.043982398,0.715106547,0.225749001,-0.058091782,0.774380028,0.420061171,-0.014633616,0.763320625,0.304675281,-0.030728877,0.755237341,0.231393263,-0.046743724,0.747122705,0.160711795,-0.059303951,0.810419738,0.425496161,-0.02517131,0.801213324,0.311594248,-0.042122338,0.794777095,0.239971727,-0.052923728,0.787253082,0.171837419,-0.060903464,0.847521424,0.452013314,-0.037882689,0.842011571,0.355045259,-0.053256966,0.837163866,0.290663451,-0.059242427,0.830730498,0.226497874,-0.063586056 +Right,0.813704729,0.720668912,2.51E-07,0.752643585,0.683185875,-0.021034688,0.706666946,0.605590224,-0.035665076,0.687661707,0.525603771,-0.049486265,0.695244431,0.454763651,-0.063113801,0.739502609,0.464668632,-0.017306436,0.728896618,0.367415667,-0.038455322,0.723245978,0.312082946,-0.056807894,0.719652534,0.256726146,-0.070975341,0.777864158,0.445114315,-0.023270369,0.769032598,0.330832452,-0.0416908,0.761548758,0.263074607,-0.057903487,0.751928568,0.198056549,-0.07033436,0.816599965,0.451566756,-0.032789949,0.809994698,0.338654906,-0.051835246,0.804499924,0.271080613,-0.062371425,0.796178579,0.206870377,-0.06982936,0.854827881,0.47904548,-0.044362497,0.851987064,0.382609546,-0.061559748,0.848980963,0.31982103,-0.067812257,0.843463421,0.258488744,-0.07187888 +Right,0.815697312,0.730633318,3.24E-07,0.755363882,0.695731044,-0.024873652,0.709719002,0.619045496,-0.042697832,0.690561235,0.537737548,-0.05880053,0.701275527,0.467242122,-0.074651219,0.744382024,0.476071179,-0.025809424,0.735833526,0.377238274,-0.050091814,0.733126819,0.321214378,-0.069835588,0.733827114,0.265062094,-0.084764697,0.784969926,0.457797647,-0.030484911,0.77977711,0.342699349,-0.051770821,0.776919842,0.273743093,-0.069227487,0.77225101,0.206512123,-0.082421482,0.825122535,0.467337906,-0.038754825,0.822959125,0.353532761,-0.060988978,0.822223604,0.282210588,-0.073692679,0.818448007,0.213604301,-0.082341217,0.863897502,0.498017967,-0.049015615,0.86623311,0.400482565,-0.069083109,0.866780639,0.336004198,-0.077473849,0.864383221,0.272045463,-0.082889415 +Right,0.816675007,0.738632798,3.51E-07,0.757311225,0.69869554,-0.027863748,0.712008297,0.61965692,-0.047802303,0.693343103,0.535639286,-0.065373033,0.71191752,0.465052843,-0.082585573,0.755255103,0.482753664,-0.030967783,0.751621366,0.37878257,-0.057301868,0.752719522,0.320796311,-0.077672228,0.758094251,0.264747798,-0.092707105,0.797644496,0.46685949,-0.034202978,0.798692226,0.347594917,-0.056767698,0.800885975,0.276737392,-0.073998176,0.801687956,0.207922012,-0.08682061,0.838746071,0.478753775,-0.0411672,0.842669785,0.36051023,-0.064316988,0.847194254,0.286885142,-0.07662759,0.849174738,0.216546446,-0.084698498,0.877522945,0.511832118,-0.050261982,0.884446919,0.412979007,-0.070547253,0.889241576,0.348141283,-0.078553706,0.89193213,0.284221232,-0.083532214 +Right,0.819192767,0.74442637,3.44E-07,0.75904882,0.70214498,-0.028508581,0.71367377,0.617127359,-0.048526477,0.699135542,0.527863085,-0.065967478,0.722455382,0.458288074,-0.082976274,0.76385051,0.480621636,-0.032300852,0.764443398,0.376060724,-0.059310239,0.768886089,0.317663729,-0.080220208,0.777965248,0.262195826,-0.095669195,0.808240592,0.467700958,-0.035415735,0.81368953,0.347514719,-0.058612086,0.819888651,0.276246607,-0.076099351,0.825224817,0.207354546,-0.08920943,0.849584639,0.483213574,-0.042374261,0.858328104,0.363779724,-0.06661807,0.866023481,0.289354682,-0.07986065,0.871491551,0.217854828,-0.08854486,0.888138652,0.520093918,-0.051453143,0.899899721,0.420031488,-0.073186286,0.908002913,0.354188263,-0.082318753,0.914092064,0.288706422,-0.088010028 +Right,0.829780877,0.765955806,4.67E-07,0.76698643,0.732942641,-0.035567489,0.718117118,0.654960752,-0.058868349,0.701673031,0.562960446,-0.078394443,0.725692034,0.489377618,-0.097325824,0.764695764,0.506794512,-0.039368451,0.766393006,0.402712524,-0.070105404,0.774341464,0.341527551,-0.09410622,0.786832452,0.281825006,-0.111627705,0.809951007,0.487966478,-0.039826963,0.816971064,0.366122603,-0.066239357,0.827109158,0.292997241,-0.085267715,0.835986495,0.220405847,-0.099258691,0.852514923,0.499158561,-0.044793792,0.860689044,0.377379417,-0.072068661,0.869984865,0.30194205,-0.085549608,0.877060056,0.229356527,-0.093836918,0.89364624,0.532058716,-0.052580945,0.903829157,0.428982079,-0.07626503,0.912215471,0.361797303,-0.085883088,0.91869086,0.29426825,-0.091711015 +Right,0.824035227,0.761236429,4.49E-07,0.761448562,0.729465485,-0.035091158,0.711886168,0.653506756,-0.058197882,0.69366312,0.561824918,-0.077519193,0.715631783,0.487651527,-0.09624815,0.755261481,0.505239546,-0.038597852,0.755268335,0.398575693,-0.068459764,0.760210991,0.337513924,-0.091587029,0.769916177,0.278518736,-0.108401157,0.8004179,0.484119713,-0.038879789,0.804869652,0.36052376,-0.064383201,0.811921537,0.286829591,-0.082840145,0.818034172,0.215323359,-0.096426271,0.843281031,0.492711335,-0.043563269,0.849530458,0.369238853,-0.069702454,0.856434822,0.294618517,-0.082644589,0.861214221,0.224169165,-0.090621062,0.884222388,0.522897243,-0.05104712,0.892390013,0.418397158,-0.073787458,0.898848414,0.350670516,-0.08292599,0.903402984,0.284097761,-0.088367425 +Right,0.814974129,0.756513119,4.13E-07,0.752794445,0.711088896,-0.027818181,0.707920074,0.627514541,-0.047173727,0.692787886,0.539251864,-0.064481035,0.715716958,0.468694746,-0.081485085,0.754559159,0.486133695,-0.029578183,0.752301991,0.381386727,-0.057013687,0.755141973,0.319962084,-0.078754753,0.762357473,0.259565383,-0.094745174,0.797540188,0.471122026,-0.033528496,0.800260246,0.348785758,-0.05689894,0.805210888,0.275480449,-0.07441359,0.80929482,0.204179734,-0.087260015,0.838810861,0.485466331,-0.041525211,0.843644917,0.362617075,-0.06576094,0.848916292,0.288848639,-0.077412218,0.851969421,0.219317079,-0.084589109,0.878254414,0.52150625,-0.05190834,0.886767268,0.417966306,-0.073076591,0.892322183,0.350238681,-0.081045233,0.895512223,0.283614188,-0.085746415 +Right,0.808696091,0.752643943,2.81E-07,0.747179091,0.700306535,-0.022130216,0.705521464,0.610029101,-0.036735278,0.693110943,0.51856488,-0.05050648,0.711305082,0.450573385,-0.06402465,0.753767669,0.475369394,-0.01639853,0.750382841,0.3726179,-0.038306233,0.748905957,0.312741518,-0.057603039,0.750963628,0.25372082,-0.072370507,0.794483304,0.462009788,-0.021691564,0.794881403,0.342943758,-0.040102445,0.794935882,0.270422518,-0.05630381,0.79418993,0.201201916,-0.068818994,0.833693862,0.475183129,-0.030946264,0.837308943,0.356133819,-0.050397366,0.838900149,0.282401472,-0.061665747,0.838314176,0.213017911,-0.069524743,0.871115863,0.509818375,-0.042416196,0.87792623,0.407426119,-0.060189202,0.881658018,0.34052074,-0.067205943,0.883032918,0.27476564,-0.071747184 +Right,0.803786755,0.752076983,2.42E-07,0.742486298,0.698529005,-0.018636664,0.702162027,0.604091227,-0.03007167,0.691003382,0.512963712,-0.041603208,0.707253933,0.451822042,-0.053131465,0.748121142,0.472449601,-0.008936554,0.742051363,0.371632367,-0.028264217,0.738526642,0.312805653,-0.046205536,0.738540828,0.254181147,-0.060546745,0.78755492,0.458465517,-0.015794585,0.784508705,0.340683073,-0.03270996,0.781645775,0.267594516,-0.048724338,0.778516829,0.196858913,-0.061268501,0.825582683,0.47090739,-0.026607404,0.825235724,0.353295326,-0.04509344,0.824155331,0.280968755,-0.056375422,0.821152449,0.211538523,-0.064478815,0.862753391,0.504665911,-0.039508041,0.867175758,0.404414713,-0.056566931,0.868884206,0.339260995,-0.063471086,0.868141532,0.273775637,-0.068259798 +Right,0.799217463,0.753797889,2.13E-07,0.736178637,0.695742965,-0.014312932,0.698117375,0.599354386,-0.021884779,0.69052279,0.509982049,-0.030608971,0.704406857,0.449310839,-0.039645247,0.743482232,0.469728351,-0.000478269,0.735765517,0.368018776,-0.017175416,0.730593979,0.306547552,-0.034228146,0.72818768,0.245343119,-0.048151467,0.780843139,0.453966975,-0.008996076,0.775119185,0.334518313,-0.023603758,0.769440353,0.258454174,-0.039517265,0.763345301,0.185326874,-0.052034102,0.817520499,0.463850677,-0.021418093,0.81387639,0.343411356,-0.037845597,0.809796214,0.269649446,-0.049159568,0.803932309,0.199095458,-0.057376441,0.854642868,0.494804412,-0.035841245,0.854993701,0.390979052,-0.051451258,0.853100657,0.323477387,-0.057856098,0.849069238,0.255923629,-0.062396344 +Right,0.799338877,0.783937216,2.28E-07,0.734345555,0.724602282,-0.012822461,0.696343422,0.629384875,-0.018759947,0.689103484,0.538508892,-0.026382102,0.704188228,0.478534162,-0.03433197,0.744395494,0.49815166,0.00471328,0.737787008,0.393599868,-0.011725527,0.733979344,0.329163373,-0.029270604,0.73385942,0.266497463,-0.043161754,0.783421993,0.480401784,-0.004011857,0.780427217,0.35511893,-0.017625047,0.776882768,0.27458176,-0.033270787,0.773841381,0.201200783,-0.04525334,0.821451485,0.487698823,-0.016862169,0.819859385,0.362602562,-0.032176781,0.815782726,0.283538312,-0.042756155,0.810920358,0.209993482,-0.050161321,0.860227168,0.516848981,-0.031749096,0.863840401,0.408680141,-0.045946594,0.862861216,0.337411582,-0.050964907,0.859601617,0.266885281,-0.054230362 +Right,0.805933356,0.84828341,3.03E-07,0.741051257,0.785834432,-0.019902017,0.701777697,0.69144237,-0.031329773,0.690919518,0.597525239,-0.042974044,0.704033136,0.523145854,-0.05449206,0.751087189,0.559165537,-0.006106237,0.748578012,0.447655618,-0.02628918,0.748014927,0.380827248,-0.045215368,0.75032568,0.316626489,-0.059571922,0.792389989,0.544938624,-0.012568667,0.793627262,0.418075204,-0.030148599,0.794578433,0.337515563,-0.047458768,0.794853449,0.262612134,-0.060349558,0.831850588,0.556085229,-0.023471693,0.835738719,0.428923368,-0.042600859,0.836881638,0.348549366,-0.054768715,0.836218417,0.273996621,-0.062792897,0.870538294,0.588713884,-0.036623552,0.877864897,0.479355454,-0.054095916,0.881435394,0.407628357,-0.060831081,0.882684529,0.338061005,-0.06481304 +Right,0.83654052,0.898399115,3.24E-07,0.771546841,0.843196154,-0.023895552,0.724350572,0.750499725,-0.038675603,0.709016323,0.65489924,-0.052356984,0.728834689,0.584115565,-0.065495223,0.77282697,0.609395206,-0.016629256,0.769119203,0.500439405,-0.039041903,0.770727158,0.439491212,-0.058401227,0.77571702,0.378016293,-0.073568679,0.817383587,0.59412688,-0.02195468,0.820336342,0.470411271,-0.041058827,0.824290276,0.396544576,-0.057747796,0.827043653,0.322825938,-0.070638001,0.85978967,0.608837068,-0.031591307,0.866261184,0.485483319,-0.052850615,0.87232697,0.411744565,-0.064136729,0.875943303,0.339683652,-0.071681842,0.900053442,0.646960616,-0.04353492,0.910066009,0.543433845,-0.062894352,0.917944431,0.477681935,-0.069816098,0.9238047,0.412209988,-0.074058704 +Right,0.846845388,0.850599945,4.20E-07,0.779473364,0.810211957,-0.028030649,0.73077476,0.729631543,-0.045357298,0.714258254,0.636450887,-0.060596701,0.727905571,0.5613783,-0.075205848,0.770439804,0.581825972,-0.023535486,0.765182674,0.472624093,-0.047520477,0.767726481,0.40964663,-0.067489475,0.774051785,0.348476291,-0.08213789,0.816422641,0.561832488,-0.026413217,0.816956162,0.437051713,-0.046311188,0.821403444,0.361241639,-0.063141152,0.824841321,0.289120525,-0.075912066,0.859686852,0.570601225,-0.033684541,0.864997506,0.445843846,-0.05587947,0.870070279,0.370068908,-0.068336368,0.873173177,0.300455123,-0.076235317,0.90165484,0.601391196,-0.043360226,0.911080837,0.493071556,-0.063478,0.917233348,0.423428595,-0.071221396,0.920726657,0.357205182,-0.075658858 +Right,0.840791523,0.799245834,4.34E-07,0.773719072,0.762815595,-0.028968522,0.723171532,0.685012281,-0.047691751,0.703507245,0.595552802,-0.064196378,0.715572894,0.517995119,-0.080291674,0.761033833,0.53744632,-0.028754836,0.75131917,0.425774604,-0.055112962,0.75108999,0.361354887,-0.075518884,0.755532384,0.299153537,-0.090248197,0.805350244,0.514288962,-0.031809036,0.803683639,0.388088882,-0.055053949,0.807561815,0.310074389,-0.072760843,0.811186373,0.23528105,-0.085553169,0.848339081,0.519490242,-0.039104335,0.850077093,0.395460129,-0.063961402,0.855118394,0.317753464,-0.077156238,0.858766198,0.245247126,-0.085088022,0.890260756,0.545543432,-0.04876003,0.896445394,0.438397259,-0.070500076,0.902374089,0.368734658,-0.079053514,0.906877518,0.301690489,-0.083918482 +Right,0.827455819,0.760692239,4.22E-07,0.759167135,0.730102479,-0.028925467,0.707492113,0.653777122,-0.046254549,0.689829648,0.561573088,-0.061306722,0.704306662,0.487450063,-0.075888641,0.744136333,0.503478527,-0.026298383,0.735076845,0.396598816,-0.050994769,0.733888566,0.334027588,-0.070775062,0.736055493,0.271471918,-0.085631683,0.787546515,0.475489736,-0.028822405,0.785851777,0.354504347,-0.051143173,0.789328694,0.277321696,-0.068396427,0.791555166,0.201333374,-0.081184044,0.829676092,0.477378488,-0.035707977,0.831874728,0.357388258,-0.060521994,0.837382376,0.279389918,-0.074085526,0.84024328,0.205501199,-0.08220733,0.871499956,0.499405056,-0.044987973,0.877704203,0.392500043,-0.066931009,0.882694006,0.322124362,-0.076192707,0.885334373,0.252962112,-0.081724435 +Right,0.816220164,0.754380703,4.34E-07,0.748795509,0.731917918,-0.029593972,0.69476366,0.662809193,-0.0466245,0.672623217,0.572073996,-0.061243653,0.683984339,0.495009422,-0.075068168,0.722672403,0.506182134,-0.023276672,0.711003542,0.400100172,-0.046895184,0.71094507,0.338659942,-0.066292852,0.715345323,0.278021008,-0.080805652,0.764986873,0.472734541,-0.02503401,0.759995043,0.3504107,-0.045285866,0.762011707,0.274272442,-0.062294226,0.76331389,0.200352371,-0.075235225,0.806676686,0.469396472,-0.031414602,0.805251002,0.350261688,-0.054108012,0.807890773,0.274472535,-0.067229167,0.808773696,0.203653574,-0.075544067,0.848532081,0.487083286,-0.040420864,0.850049257,0.383570284,-0.060773674,0.852134049,0.315095961,-0.069474988,0.852421641,0.248181313,-0.074848227 +Right,0.815105021,0.753426492,4.61E-07,0.748427451,0.734995484,-0.030627245,0.692796648,0.672107339,-0.049055204,0.666448712,0.583887279,-0.06512332,0.679934978,0.504303992,-0.080250405,0.71877259,0.514113128,-0.023554983,0.704355061,0.408837885,-0.04806326,0.703854442,0.347232044,-0.068014123,0.708409429,0.285339177,-0.082697414,0.758647382,0.478214383,-0.024487797,0.752713621,0.355441272,-0.04584831,0.755963385,0.27870208,-0.062558234,0.75905019,0.205398947,-0.074873209,0.799171567,0.472267151,-0.030196263,0.795991004,0.351537496,-0.053317025,0.797661304,0.276977777,-0.065409869,0.798491359,0.20833835,-0.072587982,0.840683222,0.487170964,-0.038683064,0.840226352,0.381846786,-0.058460847,0.841022968,0.313307822,-0.066476412,0.840412498,0.246592611,-0.071221396 +Right,0.874366343,0.871376753,4.12E-07,0.809814453,0.829049289,-0.032812156,0.763675272,0.744639218,-0.052638311,0.749999285,0.653142333,-0.069369093,0.763735414,0.575019121,-0.085490383,0.810348392,0.606194675,-0.032095183,0.809221745,0.501564264,-0.060042154,0.815769792,0.441362798,-0.081901662,0.826422811,0.383573472,-0.09761095,0.856099129,0.591690719,-0.033288062,0.862113833,0.475040942,-0.057879649,0.871716559,0.407649457,-0.07674896,0.880815387,0.342777729,-0.090500906,0.897807002,0.604503453,-0.039082054,0.906506002,0.490496993,-0.064930096,0.916685462,0.422573745,-0.07855358,0.925115824,0.359908104,-0.086864173,0.937038958,0.636631072,-0.047586914,0.946500301,0.537852585,-0.070076928,0.954988062,0.47599408,-0.079294257,0.961946011,0.416262567,-0.084703989 +Right,0.82415396,0.804106176,4.14E-07,0.76363045,0.761209369,-0.026699426,0.720801115,0.681458294,-0.043121796,0.70765847,0.591745377,-0.057482317,0.724453628,0.522110164,-0.071274541,0.763388157,0.546472073,-0.02084823,0.763349891,0.448189259,-0.044075958,0.767834663,0.389592946,-0.064160906,0.775400579,0.332660407,-0.078588098,0.804574847,0.530353487,-0.022853058,0.81056124,0.41576767,-0.040303864,0.81514591,0.345432997,-0.055370837,0.818592191,0.279416859,-0.067071497,0.843146324,0.538772821,-0.029246669,0.851210475,0.42602998,-0.046886619,0.856335223,0.356643081,-0.056383051,0.860262215,0.294303477,-0.062862843,0.879837632,0.567649603,-0.03840033,0.88773942,0.470792651,-0.053720076,0.892980874,0.407572001,-0.058956675,0.896619558,0.348033071,-0.062115312 +Right,0.802727103,0.78573364,3.35E-07,0.740867555,0.743712425,-0.024201978,0.697742939,0.663716078,-0.038704913,0.684691489,0.575349808,-0.051835269,0.695511639,0.503729045,-0.064255461,0.736647666,0.522392631,-0.015245575,0.730867326,0.424589068,-0.035803463,0.732544005,0.369687974,-0.054015331,0.738040626,0.315411717,-0.067807041,0.776694655,0.50444144,-0.018614748,0.775265515,0.392212182,-0.03550496,0.776519895,0.326150924,-0.050953347,0.777348816,0.262609899,-0.063065022,0.815314353,0.512289107,-0.026358895,0.817414224,0.401006579,-0.044593778,0.818562865,0.333729446,-0.05541582,0.818476677,0.270863712,-0.0630446,0.853247523,0.54075402,-0.036601231,0.857310057,0.444374651,-0.053172898,0.859419823,0.381716311,-0.060047209,0.859388173,0.320373923,-0.064571686 +Right,0.172359794,1.060790658,-6.13E-08,0.263433874,1.026836753,-0.014507407,0.315571368,0.945552707,-0.024826081,0.343473613,0.836142719,-0.032385144,0.347765684,0.733241081,-0.034735519,0.255761027,0.641666174,-0.006801093,0.259691447,0.523222506,-0.007207038,0.26158458,0.561143458,-0.004477469,0.258127034,0.625226021,0.000643121,0.192690611,0.622378349,-0.003495477,0.197721407,0.468285501,-0.001978911,0.20697701,0.514065146,0.004465776,0.204832256,0.584095001,0.012594671,0.132027388,0.651167631,-0.000746088,0.13711822,0.517522097,-0.000321232,0.15000841,0.566112995,0.012070268,0.150124177,0.630056739,0.023419814,0.080071867,0.713355184,0.001459494,0.07032153,0.611276388,0.008636952,0.082776114,0.628718078,0.025280023,0.090283312,0.66778934,0.040259242 +Left,0.213629633,0.928044617,2.76E-07,0.282920569,0.879349649,-0.031910907,0.334077656,0.769217312,-0.0450892,0.356233537,0.662468076,-0.055303656,0.377321273,0.577927411,-0.065877616,0.295239419,0.600024343,-0.030279029,0.296789944,0.484969795,-0.054963026,0.290441632,0.407270074,-0.075896733,0.283042222,0.339390367,-0.09134572,0.243457854,0.579151571,-0.030590419,0.234178379,0.438952982,-0.053101443,0.226208061,0.347628683,-0.072319202,0.218920261,0.270505756,-0.08635021,0.1948919,0.591671109,-0.034840502,0.184029743,0.454148054,-0.059241761,0.174569607,0.364437491,-0.076663926,0.165969908,0.287122935,-0.08790683,0.150839195,0.631527662,-0.041491363,0.127734825,0.525696814,-0.067306228,0.111791819,0.453394711,-0.080731854,0.098739028,0.387517869,-0.087911516 +Left,0.250991106,0.823717952,2.92E-07,0.322160304,0.776771903,-0.035407282,0.372689188,0.676205218,-0.052015211,0.387898207,0.56940192,-0.065704666,0.40298003,0.477740854,-0.079310134,0.33975482,0.513234854,-0.034072604,0.341233373,0.388820171,-0.062274966,0.335784256,0.308609366,-0.084582008,0.328493357,0.234521896,-0.10054566,0.292996049,0.488833785,-0.034876056,0.289360762,0.337622464,-0.059872795,0.282325596,0.241864949,-0.080177777,0.273863882,0.157858491,-0.095048338,0.247743607,0.494112968,-0.040149447,0.240833655,0.347969472,-0.065640174,0.233678624,0.254153013,-0.082165912,0.226856396,0.171747416,-0.092857793,0.201940089,0.524406195,-0.048496738,0.184416071,0.405122072,-0.073667109,0.174216896,0.329058528,-0.085852571,0.166366279,0.257337391,-0.092768438 +Left,0.267112136,0.811553001,3.02E-07,0.340519935,0.762148559,-0.033164527,0.390775144,0.657551169,-0.047175869,0.406325042,0.547358036,-0.058901832,0.418648899,0.454969317,-0.070179678,0.356686324,0.495617419,-0.025985397,0.359330922,0.368371189,-0.05198814,0.354171932,0.285953403,-0.073634587,0.347229838,0.210319281,-0.089069158,0.310603857,0.467474312,-0.026865182,0.311027914,0.313239038,-0.049529269,0.307294011,0.214494526,-0.069053553,0.302151382,0.130302817,-0.083107196,0.266111791,0.4687922,-0.032428179,0.26289615,0.320186138,-0.055391382,0.26037395,0.223199785,-0.071173534,0.257405996,0.139808774,-0.081229649,0.220449716,0.495627105,-0.041142445,0.211512774,0.374092519,-0.06352438,0.206852421,0.295211345,-0.074457489,0.203160107,0.222379476,-0.080551773 +Left,0.269925028,0.823115349,2.65E-07,0.3430852,0.770950913,-0.031316601,0.395336926,0.664231956,-0.043745574,0.41265595,0.557943583,-0.054313917,0.425636321,0.467871457,-0.064515464,0.365495741,0.501999795,-0.022097372,0.372459382,0.374005139,-0.047285344,0.366928816,0.293317914,-0.068886295,0.358087271,0.217457682,-0.084197648,0.320394754,0.474058092,-0.023604684,0.325037271,0.322582185,-0.04543715,0.321172148,0.224884123,-0.065248676,0.315099448,0.139222175,-0.079734802,0.276396573,0.475371569,-0.02984364,0.276933759,0.32887128,-0.05125789,0.275505304,0.232765049,-0.066282503,0.272798121,0.1477952,-0.076178402,0.23027119,0.500798225,-0.039283473,0.22810638,0.378800124,-0.059301719,0.22760272,0.29921788,-0.068997376,0.227437854,0.224282414,-0.074711464 +Left,0.271445215,0.836370826,2.40E-07,0.348034203,0.786116302,-0.023446489,0.399778813,0.679591238,-0.030910177,0.42034021,0.578635991,-0.038266558,0.437351733,0.495132774,-0.045490399,0.37886259,0.525863528,-0.010507011,0.390998036,0.40141356,-0.032065541,0.39111948,0.320594609,-0.051478352,0.388686448,0.246151924,-0.065846443,0.335492939,0.494189054,-0.015225324,0.346214056,0.345138609,-0.035219759,0.347767502,0.248180628,-0.053850979,0.347117364,0.164508045,-0.067281932,0.292132646,0.491021991,-0.024459274,0.300340772,0.345152497,-0.045151442,0.304354995,0.249490976,-0.059792064,0.307009518,0.165750206,-0.069203675,0.246261746,0.511120021,-0.036302507,0.251703382,0.390158594,-0.056409221,0.25669539,0.309773564,-0.066300623,0.262169689,0.233270377,-0.07213182 +Left,0.25658673,0.852753997,2.95E-07,0.332906157,0.8074826,-0.024663724,0.388798535,0.704897225,-0.032549202,0.414182782,0.604014158,-0.04018043,0.434925437,0.519081891,-0.04738323,0.372295111,0.54482764,-0.007976503,0.390695959,0.428190738,-0.028720463,0.395361841,0.350089312,-0.048566904,0.396819323,0.273557246,-0.063587144,0.330858856,0.509340584,-0.01229521,0.34991011,0.370535433,-0.030992568,0.357382894,0.277644932,-0.049273822,0.362238944,0.192401826,-0.062842652,0.287756264,0.501987755,-0.021543339,0.303229183,0.361466289,-0.041106902,0.311972916,0.269346625,-0.054622069,0.319543719,0.185293138,-0.063595183,0.240868092,0.517772853,-0.033738576,0.251334697,0.401178867,-0.052701294,0.260837913,0.323335916,-0.061471637,0.271451622,0.247848481,-0.066715866 +Left,0.234920949,0.872713089,2.95E-07,0.313013047,0.821902752,-0.021905694,0.368592829,0.716318607,-0.027039424,0.395019144,0.613121748,-0.032587361,0.411323458,0.525467634,-0.038135696,0.349623203,0.559505999,-0.000252668,0.368817717,0.442989528,-0.018036019,0.373472124,0.369626969,-0.036973879,0.375796497,0.297043353,-0.051387377,0.308911443,0.525115788,-0.005330103,0.328052759,0.3855142,-0.020762684,0.335439086,0.294032902,-0.038882628,0.34061709,0.209603667,-0.052610677,0.266131997,0.51856935,-0.015417818,0.281637847,0.378717482,-0.032644976,0.290632814,0.288199991,-0.046456389,0.298631936,0.204245538,-0.055897694,0.217950761,0.535439253,-0.02822767,0.228652716,0.418551862,-0.045049831,0.238180816,0.344101787,-0.052535627,0.248717397,0.271544546,-0.057133701 +Left,0.218812436,0.841873229,3.58E-07,0.297152638,0.780430317,-0.020634821,0.34724158,0.667190969,-0.025125617,0.366480261,0.560757995,-0.030202862,0.382130444,0.474156201,-0.035501145,0.320741534,0.520710409,-0.001678228,0.338947892,0.405056059,-0.020112665,0.345748425,0.330681592,-0.038755696,0.349883139,0.256401896,-0.05312781,0.280729204,0.490818202,-0.007541023,0.29913792,0.350002497,-0.024295639,0.308567226,0.256694525,-0.042191524,0.315630138,0.16896382,-0.055651885,0.239391252,0.48894912,-0.018289736,0.252807319,0.347451836,-0.037021954,0.262487054,0.254904896,-0.051229645,0.271526635,0.169485867,-0.060675386,0.192562595,0.509927332,-0.031545553,0.200490087,0.391731322,-0.050102018,0.211135119,0.312996566,-0.059154857,0.223480016,0.236478627,-0.064805239 +Left,0.2009992,0.833425641,3.42E-07,0.282192469,0.772288084,-0.020266436,0.332939088,0.65654397,-0.022871185,0.352663398,0.54901135,-0.026173543,0.365565628,0.460152954,-0.029490488,0.304420233,0.512396932,0.001019117,0.32267645,0.393824816,-0.016109852,0.329049408,0.31719774,-0.033731673,0.333161473,0.241114199,-0.047465038,0.264269978,0.480315983,-0.004179799,0.282909065,0.337885261,-0.019835703,0.292159796,0.243383646,-0.036799598,0.300098062,0.154762268,-0.049584202,0.222756088,0.476063281,-0.014396319,0.236476928,0.331875771,-0.032364715,0.246134713,0.239253014,-0.045835845,0.255756825,0.154293269,-0.054700918,0.175733268,0.495116621,-0.027230339,0.184345394,0.375393182,-0.045253772,0.194305837,0.295537442,-0.053976685,0.205720097,0.218571216,-0.059332769 +Left,0.19323425,0.816599309,3.57E-07,0.272119254,0.750650644,-0.021718426,0.320105791,0.633753538,-0.02591504,0.334953666,0.526893735,-0.030157289,0.345396012,0.438501596,-0.034520164,0.285398304,0.49305287,-0.004924194,0.300852746,0.374016166,-0.02391403,0.305823892,0.294951022,-0.042088114,0.30918932,0.218331009,-0.056034744,0.2429021,0.462362438,-0.00955537,0.257125944,0.317707628,-0.026850771,0.26536417,0.221163958,-0.043802068,0.273284435,0.133971959,-0.056486625,0.200263262,0.461022645,-0.01909147,0.207357779,0.312590957,-0.038261108,0.216432661,0.217108607,-0.052454431,0.226677224,0.132309705,-0.061920937,0.154325545,0.484593451,-0.031220542,0.154839844,0.363137722,-0.050302844,0.160914838,0.280313313,-0.060232446,0.169764712,0.201436937,-0.06661579 +Left,0.19079867,0.814197659,3.73E-07,0.269529253,0.745877266,-0.023484759,0.315080881,0.624942839,-0.028592037,0.326452792,0.517034531,-0.033067688,0.335301667,0.43081075,-0.037697706,0.276512593,0.486960262,-0.008715372,0.290397137,0.367238432,-0.028898083,0.29457584,0.288472116,-0.04760424,0.296649188,0.214023322,-0.06161239,0.231207505,0.459734052,-0.012125645,0.242891848,0.314069927,-0.030394208,0.249182314,0.217360228,-0.047638882,0.254897594,0.130859762,-0.06038231,0.187050864,0.461644173,-0.020364249,0.192163795,0.314568192,-0.039997943,0.199829578,0.218100905,-0.054603849,0.20858264,0.133207649,-0.06428688,0.14044106,0.488025278,-0.031179627,0.140205935,0.368484199,-0.050545286,0.146149889,0.285127103,-0.060880773,0.154689834,0.205515742,-0.067516737 +Left,0.191182673,0.818225145,4.36E-07,0.265362918,0.739578128,-0.023581199,0.304586768,0.619035602,-0.029351169,0.311615527,0.512797534,-0.034703583,0.317661881,0.427529275,-0.040317878,0.253651112,0.482762545,-0.009461375,0.266990542,0.361251503,-0.029714029,0.273609817,0.285553128,-0.048232757,0.279670358,0.211644828,-0.062130146,0.205808058,0.460584521,-0.013115315,0.210321859,0.314721853,-0.031403948,0.214644626,0.219707608,-0.049005874,0.220108256,0.131897122,-0.062177703,0.160904408,0.470646024,-0.021633681,0.152993098,0.323595047,-0.042411853,0.154217348,0.228724927,-0.058738697,0.158617437,0.143335491,-0.069458582,0.115983263,0.50720346,-0.032594163,0.102303453,0.386054844,-0.053539053,0.098061271,0.303463966,-0.065415598,0.097217716,0.221735537,-0.073086999 +Left,0.196465701,0.839893103,4.14E-07,0.270601988,0.758919597,-0.025248021,0.309604108,0.63586241,-0.031816054,0.315716088,0.525920749,-0.037547428,0.319972634,0.438843787,-0.043661863,0.260637641,0.501682341,-0.010812378,0.269662231,0.38317889,-0.032170605,0.274006218,0.307295322,-0.052002486,0.277510494,0.231424272,-0.0668623,0.211953491,0.480667293,-0.013555032,0.213709906,0.337503314,-0.032086607,0.215663821,0.243002236,-0.050002515,0.218625814,0.155950487,-0.063564897,0.165814981,0.491044402,-0.021330019,0.156175658,0.346820474,-0.042208083,0.155193821,0.253414214,-0.058184989,0.157710537,0.169331461,-0.068720803,0.119402401,0.527024627,-0.03170285,0.105097286,0.408404738,-0.052398589,0.100758165,0.32711941,-0.063852869,0.099757619,0.246942699,-0.07129401 +Left,0.205238283,0.838754892,3.94E-07,0.280300379,0.764833808,-0.027054586,0.321825206,0.645060182,-0.035836127,0.329633445,0.533659995,-0.043275647,0.337153614,0.444575846,-0.051115971,0.273187667,0.503736734,-0.016652334,0.279712051,0.383478343,-0.039106339,0.281125426,0.306212962,-0.05882794,0.2819888,0.230734289,-0.073389053,0.223130986,0.483460486,-0.018614117,0.222103342,0.341520458,-0.038067404,0.221846685,0.247751683,-0.055527687,0.223305821,0.159793407,-0.068652138,0.176372498,0.492686987,-0.025331168,0.165430158,0.351300776,-0.046418287,0.162893251,0.258108467,-0.061147302,0.164072081,0.173898757,-0.070731476,0.129753217,0.526735902,-0.034720387,0.114014447,0.408078104,-0.055395193,0.108679689,0.327611923,-0.065827794,0.106293045,0.248555899,-0.072148919 +Left,0.261165321,0.834249616,2.99E-07,0.338561028,0.771673381,-0.023921952,0.387805164,0.657896399,-0.029639605,0.400502086,0.548694551,-0.035177089,0.405632675,0.460461706,-0.040893506,0.351650059,0.515204608,-0.008465358,0.362547696,0.398417979,-0.028728232,0.365708798,0.322795987,-0.047811821,0.366573155,0.249218166,-0.062007975,0.305629551,0.487212032,-0.011844571,0.309515774,0.345817447,-0.029626891,0.309810489,0.252236485,-0.046918139,0.309383631,0.166535228,-0.059837922,0.260532737,0.487526655,-0.020055294,0.257751614,0.346224487,-0.039440494,0.257177979,0.253912449,-0.053512413,0.25758034,0.171874702,-0.0626873,0.213940784,0.511506081,-0.031029206,0.205541134,0.392358243,-0.050267596,0.203033701,0.312422007,-0.05984078,0.202145994,0.235099524,-0.065582588 +Left,0.277159005,0.817635179,3.08E-07,0.35543853,0.76138705,-0.026868513,0.405941635,0.652062476,-0.034964263,0.421850115,0.543278873,-0.042003758,0.430017173,0.454255074,-0.049043421,0.372444451,0.50505656,-0.014341284,0.385223776,0.390658498,-0.036820553,0.388370395,0.312988222,-0.056991171,0.388663024,0.239579618,-0.072051883,0.326996863,0.473667085,-0.016976288,0.332771987,0.329353809,-0.037721649,0.33251223,0.236043036,-0.056720808,0.330829471,0.152557611,-0.070594095,0.282521755,0.471856296,-0.024302907,0.280718386,0.330361873,-0.046449751,0.27897951,0.239411712,-0.061638437,0.277400613,0.158450842,-0.071277395,0.236254424,0.495470643,-0.034372762,0.229649603,0.377978474,-0.055684492,0.227145314,0.300235868,-0.06611453,0.225475773,0.225670189,-0.0722472 +Left,0.29381001,0.806543589,2.73E-07,0.370116234,0.748596668,-0.02851861,0.422263473,0.64130348,-0.038033221,0.440418661,0.528414547,-0.046315048,0.447271287,0.432749033,-0.054430019,0.387273371,0.488030136,-0.013963518,0.39484483,0.370707273,-0.036412153,0.393402845,0.2913239,-0.057050873,0.390215576,0.216881603,-0.07252232,0.341819227,0.459571898,-0.01633116,0.342323363,0.312573671,-0.0365371,0.337525755,0.217397004,-0.056425437,0.33133775,0.134233773,-0.071462944,0.297034711,0.45948559,-0.023661779,0.292175472,0.316529214,-0.045718051,0.287136972,0.223871917,-0.062024262,0.281638592,0.143059134,-0.072723582,0.250142843,0.484212101,-0.033890583,0.240318179,0.363580525,-0.055554822,0.233963549,0.284853935,-0.066807508,0.228255272,0.209840894,-0.07362406 +Left,0.309898108,0.802334011,2.52E-07,0.385705203,0.740392685,-0.028505145,0.431127429,0.62221545,-0.036093075,0.436009586,0.503670573,-0.04236057,0.443934649,0.411778748,-0.048075192,0.391849905,0.477076769,-0.009355447,0.393065989,0.353242517,-0.029636247,0.386022657,0.273128033,-0.048629317,0.377164692,0.19794324,-0.062761173,0.34696883,0.451684922,-0.010020872,0.343919337,0.304412127,-0.028014196,0.336622864,0.208500862,-0.04610246,0.328604609,0.125521332,-0.059337825,0.304426551,0.45202893,-0.015881713,0.296929091,0.308855891,-0.035461627,0.290442407,0.217216104,-0.050075844,0.283545524,0.13679415,-0.059303802,0.260381401,0.476112425,-0.024827773,0.252120316,0.355170131,-0.04364327,0.247343123,0.278750837,-0.053307604,0.242866918,0.206565529,-0.058914695 +Left,0.317482263,0.819331646,2.71E-07,0.392793924,0.743407845,-0.025100037,0.431648225,0.618594229,-0.028791567,0.434820592,0.499445826,-0.032251585,0.438760161,0.405943781,-0.035555568,0.390867054,0.487855345,-0.000989638,0.394474596,0.364443034,-0.019533018,0.389746308,0.285774052,-0.037965398,0.3824462,0.21127975,-0.051808935,0.348489136,0.466315091,-0.003491879,0.349896103,0.319842398,-0.020531856,0.345463723,0.221754372,-0.038668547,0.339851856,0.135049164,-0.051819738,0.308220565,0.471285343,-0.011546277,0.305499017,0.324979305,-0.031116653,0.302171111,0.228213668,-0.046006143,0.29844141,0.142085254,-0.055172909,0.265433073,0.49988845,-0.022552228,0.26114136,0.376062095,-0.042104416,0.26061815,0.294122219,-0.052116953,0.260991901,0.215668648,-0.057903413 +Left,0.310515046,0.835893214,3.01E-07,0.386164844,0.751219034,-0.021182908,0.421022415,0.622228444,-0.024033042,0.42309618,0.506030679,-0.027439935,0.425088346,0.413019001,-0.031095959,0.377037346,0.495907784,-0.000641528,0.382048547,0.37096402,-0.019703746,0.379103303,0.292350352,-0.038233209,0.372711062,0.21629262,-0.052192632,0.334731489,0.475751579,-0.005756299,0.337259173,0.325541586,-0.023193698,0.334528029,0.227230042,-0.041245349,0.329823047,0.138059258,-0.054459803,0.294723511,0.482336313,-0.015954228,0.293021053,0.332163334,-0.03539899,0.291061074,0.233187288,-0.050081935,0.288481653,0.144725382,-0.059370875,0.252143502,0.513277948,-0.028740503,0.247895032,0.388612926,-0.047953729,0.249325246,0.303297281,-0.057606328,0.251961797,0.222146124,-0.063372709 +Left,0.303248733,0.847289741,3.58E-07,0.377513289,0.760472357,-0.022640446,0.412964284,0.629829228,-0.026079183,0.41405651,0.513132155,-0.029734164,0.415760577,0.420437217,-0.033272289,0.368951499,0.502487242,0.000496169,0.376693308,0.381315798,-0.018661244,0.377263725,0.302787811,-0.037715081,0.374047905,0.22803849,-0.051886544,0.325805902,0.482828707,-0.003424296,0.331679583,0.335568845,-0.02110154,0.331780255,0.238160521,-0.039029852,0.329727501,0.15044266,-0.051820301,0.284528047,0.489430249,-0.012770573,0.286127925,0.340198278,-0.032324146,0.287668049,0.243880898,-0.046738986,0.28884232,0.160032153,-0.055467993,0.240714639,0.520293295,-0.024888391,0.24012883,0.397344768,-0.043651935,0.24333322,0.312496483,-0.052978076,0.247428328,0.232767373,-0.058358181 +Left,0.281503886,0.873259664,3.90E-07,0.355480671,0.780449212,-0.019211898,0.389948994,0.645580947,-0.020401664,0.39106065,0.531408906,-0.022820041,0.393314123,0.437645316,-0.025575498,0.345661849,0.523811936,0.006429558,0.358036041,0.403613567,-0.011676162,0.362609327,0.326938361,-0.03035577,0.364022136,0.251608044,-0.04447988,0.305361331,0.5060063,0.00013238,0.317498177,0.359581947,-0.016744429,0.322559506,0.261545926,-0.03515891,0.326075017,0.169960648,-0.048640907,0.265792847,0.51534164,-0.011805424,0.273315877,0.366568625,-0.031755913,0.279149592,0.268761307,-0.047647353,0.284946561,0.180567503,-0.057648826,0.222674847,0.549791694,-0.026245628,0.225880831,0.427274287,-0.045811225,0.231874824,0.342917264,-0.055971526,0.239202008,0.261968642,-0.062306561 +Left,0.297363579,0.868097067,4.45E-07,0.359630287,0.769093633,-0.015586727,0.381166041,0.620992661,-0.014813447,0.377665818,0.514483035,-0.015640801,0.377141118,0.425541282,-0.016424669,0.33127436,0.513877392,0.008122336,0.344151348,0.394855171,-0.010149866,0.357080251,0.323212683,-0.027696965,0.36770153,0.253837645,-0.040385541,0.296807826,0.504968345,0.00078748,0.310784906,0.363467038,-0.016135441,0.322477311,0.271248758,-0.032536063,0.33351469,0.183166355,-0.044163667,0.26379168,0.522134185,-0.01220448,0.272674948,0.377002716,-0.031739585,0.28306374,0.28186214,-0.04576597,0.294460982,0.194537789,-0.054466683,0.22824949,0.56241256,-0.027588651,0.233190596,0.444350541,-0.04631548,0.241506755,0.360181242,-0.056028478,0.252091646,0.278003246,-0.062290102 +Left,0.298544168,0.840197682,4.75E-07,0.359180599,0.754822493,-0.013121486,0.385795176,0.620455861,-0.013341635,0.397954762,0.523955524,-0.015317143,0.411015332,0.446429849,-0.017775353,0.340489268,0.511321783,0.004880879,0.361728281,0.401143312,-0.013119532,0.381176054,0.334905267,-0.030436266,0.398092896,0.268937111,-0.043009792,0.307985097,0.495714754,-0.002986472,0.33039701,0.364086628,-0.018476175,0.349613816,0.280295074,-0.033244714,0.367052346,0.199135751,-0.044389002,0.27549547,0.506031394,-0.015847288,0.294265985,0.371863455,-0.034228295,0.3123914,0.285069823,-0.046912808,0.329854578,0.207740694,-0.055083007,0.240012437,0.536850989,-0.030762998,0.250741333,0.422224492,-0.048282593,0.265702456,0.342340231,-0.056863502,0.283293277,0.269574553,-0.062645175 +Left,0.286409676,0.846596897,4.81E-07,0.349348992,0.757962763,-0.013188926,0.376252651,0.61715126,-0.013377115,0.386913717,0.516992569,-0.015636606,0.397920549,0.435894579,-0.018322233,0.330082119,0.511085808,0.006022959,0.348630637,0.399225652,-0.013018592,0.367210329,0.331588268,-0.03128048,0.384461671,0.265268236,-0.044532325,0.295586497,0.496498585,-0.002333087,0.315253496,0.36289227,-0.019378306,0.333175182,0.275250435,-0.035727408,0.350483865,0.191146195,-0.047881808,0.260914803,0.508238435,-0.015870348,0.276712686,0.371870279,-0.036043331,0.2941899,0.284336835,-0.05008585,0.31227389,0.20647338,-0.059054673,0.223073915,0.541692674,-0.031441659,0.229826212,0.429774582,-0.050617803,0.243406579,0.350088477,-0.060458336,0.260744721,0.276564986,-0.067129783 +Left,0.273720413,0.849651337,4.87E-07,0.338555425,0.758953631,-0.013181324,0.365869254,0.618759334,-0.013189431,0.374710023,0.518660247,-0.015438158,0.384692013,0.437790334,-0.018218942,0.320013732,0.511163592,0.007339461,0.33732143,0.400429398,-0.011222485,0.354284883,0.333958507,-0.029291132,0.370504528,0.266732335,-0.042645648,0.283463299,0.495407015,-0.000967667,0.300865352,0.363128811,-0.018257033,0.316688001,0.27539432,-0.035120629,0.332485437,0.189474106,-0.047615733,0.246546417,0.507468283,-0.014485748,0.258449793,0.369529247,-0.035139121,0.273830235,0.284895778,-0.04935633,0.290684432,0.208972454,-0.058285598,0.206213027,0.542800784,-0.030017657,0.210481435,0.42997694,-0.049426258,0.223053053,0.350942582,-0.059411652,0.240093485,0.277491271,-0.066128805 +Left,0.263489127,0.843813658,5.01E-07,0.330333054,0.749166012,-0.016300701,0.358902633,0.611346245,-0.018040096,0.361847878,0.509379506,-0.021353673,0.368311524,0.424644887,-0.025282042,0.310051411,0.500643969,0.004357748,0.325655282,0.389494956,-0.015475221,0.341182679,0.322236478,-0.034402147,0.356128693,0.253369421,-0.0483783,0.271287084,0.486333787,-0.003091278,0.286805362,0.35311383,-0.021688063,0.300950736,0.26463744,-0.039905477,0.315296769,0.176863074,-0.053284716,0.23265025,0.500293672,-0.015957873,0.240982816,0.361528307,-0.03847158,0.254285395,0.273382008,-0.054604072,0.269420385,0.192065954,-0.064580016,0.190769762,0.53876245,-0.030875321,0.192107424,0.422948897,-0.052005593,0.203039825,0.341572851,-0.063392706,0.218448728,0.264307261,-0.070928641 +Left,0.268752486,0.829601765,5.03E-07,0.334321022,0.737399161,-0.015815826,0.362022758,0.602031112,-0.016602207,0.36648494,0.501935482,-0.018672079,0.370584249,0.421562403,-0.021152785,0.31219852,0.492454886,0.00366218,0.32839027,0.381004155,-0.01510922,0.344592988,0.314230263,-0.03318242,0.36004886,0.246260732,-0.046415526,0.272965282,0.476269066,-0.002868186,0.288737267,0.343552887,-0.019693565,0.303585112,0.256922245,-0.036128368,0.318052858,0.171919674,-0.04837428,0.234098002,0.488305241,-0.01463131,0.242059693,0.350490034,-0.034857657,0.255304813,0.264587462,-0.049607638,0.270010054,0.187112212,-0.058879144,0.192040622,0.525245309,-0.028504742,0.193742439,0.409645885,-0.047479138,0.202516824,0.328584433,-0.057796791,0.215186656,0.251335293,-0.064790502 +Left,0.266425788,0.821619153,5.17E-07,0.336176515,0.734780669,-0.021976747,0.373024583,0.606758058,-0.027077025,0.379827708,0.499803692,-0.032091357,0.384538442,0.412072003,-0.037320849,0.326871872,0.485334873,-0.003478862,0.344458699,0.375684053,-0.025314637,0.361214101,0.309866428,-0.045839339,0.37702921,0.242265791,-0.06019422,0.284540772,0.465198159,-0.007624914,0.301700771,0.330762535,-0.026107868,0.317474902,0.244045287,-0.043071076,0.33289966,0.161122024,-0.055388577,0.242149591,0.47329253,-0.017412068,0.249724209,0.332787156,-0.038710568,0.261979997,0.243121624,-0.053671584,0.276399672,0.16400972,-0.062734976,0.196553022,0.507819116,-0.029705752,0.196998924,0.388772547,-0.048960555,0.203234181,0.304871857,-0.058686469,0.212706387,0.224499136,-0.064927019 +Left,0.25353694,0.832902849,4.49E-07,0.327269465,0.754062176,-0.025120253,0.374696732,0.635398984,-0.033819936,0.390136838,0.526876867,-0.041851167,0.395645201,0.433122814,-0.050124198,0.33793059,0.505787194,-0.013388257,0.354766816,0.397458971,-0.038815431,0.365983844,0.329912245,-0.061138518,0.376902461,0.261073351,-0.076834001,0.292499334,0.476091683,-0.017511027,0.308063358,0.341505229,-0.038687088,0.319721818,0.254579008,-0.056813996,0.331653982,0.173176795,-0.070176609,0.2465031,0.477141887,-0.026891446,0.252415925,0.337674677,-0.049565062,0.261792988,0.251877069,-0.063580483,0.274193913,0.174881488,-0.072372638,0.197181553,0.506465793,-0.038957082,0.196301475,0.39140296,-0.059921805,0.200675294,0.311327159,-0.069457702,0.208067864,0.232859761,-0.075298876 +Left,0.253134727,0.829097509,3.37E-07,0.326677561,0.763607323,-0.026663879,0.379888237,0.652474761,-0.035894144,0.398436308,0.544929624,-0.044076093,0.401379406,0.449198902,-0.052612305,0.349488616,0.519624174,-0.016668502,0.364623785,0.410320401,-0.041386798,0.370025814,0.339669228,-0.063165411,0.374795109,0.269655585,-0.078807585,0.303396255,0.490074754,-0.019944655,0.314699233,0.357446611,-0.040686738,0.319622159,0.269577473,-0.059423346,0.325024068,0.188299477,-0.073774196,0.257350206,0.489752829,-0.028207613,0.261973739,0.355546385,-0.049902126,0.266530395,0.265169054,-0.065178864,0.272758484,0.183678299,-0.075651199,0.208491325,0.514705777,-0.039247062,0.20667848,0.401057541,-0.060184509,0.207859337,0.322298706,-0.070899896,0.211022466,0.244495541,-0.0779204 +Left,0.261509866,0.841407537,2.68E-07,0.335528821,0.785063863,-0.028550552,0.38666743,0.673741579,-0.036947642,0.402122796,0.560917854,-0.043758765,0.407184303,0.46620363,-0.050435405,0.354892135,0.534433424,-0.014591181,0.364681661,0.418680906,-0.037190728,0.362499416,0.341977686,-0.05759874,0.357986271,0.270569384,-0.07236322,0.31150344,0.505982101,-0.016029706,0.318823844,0.36703229,-0.035494298,0.318880379,0.274815232,-0.05431962,0.317472696,0.193654895,-0.068400562,0.268271923,0.50402385,-0.022513857,0.270283669,0.365165651,-0.043232698,0.271143109,0.271503448,-0.058620695,0.271528363,0.187907338,-0.068802044,0.221774638,0.525181174,-0.031917054,0.219668031,0.406316787,-0.052185878,0.220159754,0.329039842,-0.062681772,0.221364617,0.255108386,-0.069112763 +Left,0.257271528,0.867475867,2.66E-07,0.330340743,0.799873471,-0.028201297,0.379030854,0.685054183,-0.036493719,0.390790343,0.570804894,-0.043672618,0.396838814,0.473356545,-0.050746936,0.3449018,0.552390814,-0.010827568,0.352795213,0.434981167,-0.033305004,0.349404842,0.358194262,-0.054175388,0.34389174,0.284298688,-0.069298819,0.302083552,0.526486576,-0.012833578,0.306468278,0.387598455,-0.032189339,0.303316861,0.293727458,-0.051861741,0.298947722,0.210020036,-0.066595592,0.259943455,0.526636243,-0.02006685,0.259832889,0.389056444,-0.040490035,0.258352131,0.295760721,-0.055601645,0.256523907,0.211568981,-0.065576576,0.214366019,0.549783468,-0.03033042,0.212566897,0.431464434,-0.049792584,0.21348083,0.353186637,-0.05950122,0.214951396,0.278429151,-0.065392122 +Left,0.245219424,0.87576592,2.73E-07,0.31759277,0.805221319,-0.026470397,0.367142618,0.690940917,-0.033750046,0.377062857,0.576278627,-0.039763983,0.37741223,0.477203846,-0.045539416,0.330641508,0.554748952,-0.010417635,0.337630749,0.434360802,-0.03115592,0.33328402,0.356632084,-0.050735835,0.326559752,0.28175354,-0.065024935,0.286838382,0.529204071,-0.012545481,0.289206415,0.387964427,-0.029952757,0.284379393,0.294047564,-0.048340455,0.278485179,0.210778594,-0.062266931,0.244180247,0.529825747,-0.019499676,0.241004795,0.390977442,-0.037667364,0.238388553,0.298648357,-0.051966209,0.235839725,0.214928031,-0.06178588,0.198770881,0.554020882,-0.029343512,0.194478959,0.435305834,-0.046866082,0.193671644,0.358047485,-0.055649869,0.194014907,0.284105301,-0.061058436 +Left,0.239357561,0.86842525,3.46E-07,0.314043075,0.791911304,-0.026543267,0.361870468,0.673150063,-0.033037655,0.369849026,0.56008637,-0.038419314,0.370155454,0.466722429,-0.04367695,0.321415961,0.54525125,-0.009116189,0.330606759,0.429790467,-0.030268632,0.330426008,0.352096617,-0.050234899,0.327834249,0.275934607,-0.065062664,0.277442604,0.520943165,-0.01142,0.284590602,0.382512748,-0.030219881,0.284052283,0.290176541,-0.04880983,0.282615572,0.205222875,-0.062507965,0.234797582,0.522452891,-0.018787803,0.235710159,0.384052426,-0.038882021,0.236062601,0.290722549,-0.05304331,0.237034842,0.206187129,-0.062105104,0.188282818,0.547971129,-0.029083718,0.188358337,0.429900825,-0.048002038,0.191318586,0.350567997,-0.056807537,0.195480466,0.27412501,-0.061964586 +Left,0.225788549,0.855325222,3.36E-07,0.301388234,0.781392455,-0.025094008,0.349971205,0.666510701,-0.030363373,0.358417541,0.549079597,-0.034663334,0.357126981,0.45002237,-0.039056025,0.309378505,0.536734581,-0.006886141,0.319496036,0.420441747,-0.026600018,0.319462419,0.343650877,-0.045683607,0.316736758,0.267873913,-0.059828125,0.266967118,0.510723054,-0.009543419,0.275248051,0.369227022,-0.026521979,0.274919927,0.275060415,-0.044503056,0.273171008,0.1897479,-0.057949126,0.224855855,0.511179388,-0.017149514,0.227295563,0.370328069,-0.035838425,0.228430465,0.276859581,-0.050172061,0.229651257,0.191129893,-0.059616882,0.17763114,0.536802113,-0.027538,0.179061383,0.417202115,-0.046003886,0.182097673,0.338638961,-0.054956708,0.186078995,0.262269258,-0.060276546 +Left,0.226138532,0.832231998,3.60E-07,0.300986171,0.756804943,-0.02561765,0.345236421,0.636190712,-0.02963868,0.349307537,0.518674314,-0.032611527,0.347876906,0.422354758,-0.035348944,0.302158952,0.509575725,-0.004191101,0.312898338,0.395223439,-0.023055973,0.31540373,0.320592821,-0.041348912,0.315117955,0.24709481,-0.054968219,0.259631932,0.486669302,-0.005857063,0.269080579,0.349989444,-0.022756828,0.271690488,0.258761764,-0.039920326,0.273400217,0.173491031,-0.052589055,0.218455121,0.488708645,-0.012957525,0.223553449,0.350001752,-0.032069255,0.227302253,0.25849402,-0.046111334,0.231309593,0.175179809,-0.054913636,0.172528803,0.514291883,-0.022971915,0.175635368,0.397475868,-0.041716121,0.180736154,0.317172468,-0.051268477,0.187062323,0.239087582,-0.056933008 +Left,0.233882695,0.814724922,4.13E-07,0.306878686,0.733304262,-0.021609331,0.341788113,0.610326052,-0.023629019,0.34219414,0.500333846,-0.02569749,0.341920316,0.408729792,-0.027628265,0.296608806,0.493896842,0.001947979,0.309006214,0.379262298,-0.016069951,0.314729393,0.305639774,-0.033717174,0.317038,0.232800066,-0.046612866,0.256541759,0.472934842,-0.001039953,0.26794821,0.335919529,-0.017130174,0.273062617,0.245687634,-0.033547074,0.277260989,0.160517156,-0.045344904,0.217281044,0.477357179,-0.009459648,0.223245829,0.338205487,-0.027775483,0.229082793,0.247352213,-0.04147011,0.235413358,0.165207982,-0.049712442,0.174279451,0.50422895,-0.020556951,0.178725675,0.387126923,-0.038165022,0.185184777,0.304924905,-0.047344662,0.193118528,0.226545513,-0.052742254 +Left,0.226539373,0.818843484,4.10E-07,0.300587267,0.73607409,-0.021566756,0.336921066,0.611692131,-0.023714604,0.336748868,0.501455605,-0.025897166,0.336491704,0.410981357,-0.027982727,0.290791512,0.496005893,0.001293459,0.302969187,0.381553233,-0.017329985,0.308938861,0.307311833,-0.035344996,0.311926097,0.234341413,-0.048397012,0.249754906,0.475191087,-0.001974889,0.261000574,0.337893307,-0.018541906,0.266385287,0.246708184,-0.035172161,0.271445841,0.160071999,-0.046977032,0.20952265,0.479221553,-0.010610152,0.215305388,0.33918488,-0.029389488,0.221107841,0.247119009,-0.042944156,0.228188366,0.16331625,-0.050947558,0.165346682,0.506476104,-0.021879068,0.169185013,0.38882184,-0.039593093,0.17611976,0.306652337,-0.048357721,0.185009763,0.228055507,-0.053348128 +Left,0.207048535,0.828849494,3.70E-07,0.281140268,0.741475463,-0.018228799,0.313640088,0.614045441,-0.01858783,0.313084632,0.503174365,-0.019530408,0.314361662,0.414244294,-0.020736823,0.268105477,0.500824392,0.004094086,0.279744178,0.383425355,-0.01238306,0.283671826,0.309692472,-0.029012997,0.284789145,0.237526894,-0.041550931,0.227466524,0.481285006,-0.000449207,0.236677006,0.343975246,-0.015488624,0.240278393,0.253031105,-0.031664934,0.243248239,0.166216731,-0.043570999,0.187619463,0.486983299,-0.010044594,0.192575336,0.345894754,-0.027773716,0.197566465,0.255051851,-0.041707259,0.203039527,0.172506571,-0.050471321,0.144126564,0.51659143,-0.021904681,0.145321786,0.399865448,-0.039519966,0.151769221,0.318541408,-0.048831929,0.160370693,0.240953833,-0.054531489 +Left,0.182128251,0.851111293,3.44E-07,0.257433444,0.777477384,-0.026662881,0.30301702,0.657098413,-0.032511793,0.308734715,0.543570936,-0.036887705,0.306443453,0.451197684,-0.041285176,0.261846125,0.531248271,-0.010126173,0.269193351,0.413866937,-0.031027626,0.26736781,0.337509274,-0.050226226,0.263540983,0.266279995,-0.064204752,0.215913519,0.508791149,-0.011234155,0.220264927,0.372009516,-0.030073417,0.218720689,0.279510796,-0.048256509,0.217317462,0.195668668,-0.061526358,0.171510845,0.513432205,-0.017400438,0.17059052,0.375716388,-0.037839048,0.170631856,0.283876091,-0.052755151,0.172157884,0.201061487,-0.06229366,0.124207228,0.541522324,-0.0262853,0.123176165,0.426442027,-0.046143778,0.125647351,0.347738028,-0.056465797,0.129848003,0.270434111,-0.062696151 +Left,0.186921358,0.860844135,2.97E-07,0.262474269,0.791744411,-0.024346601,0.313780874,0.678874254,-0.029333958,0.323483467,0.565670788,-0.033399865,0.325807929,0.472725481,-0.037497591,0.276625514,0.546030223,-0.005296201,0.285278618,0.430686742,-0.024409235,0.282538712,0.35276556,-0.043199141,0.27736026,0.279886782,-0.056993086,0.231902748,0.519894242,-0.007843002,0.237860411,0.37950331,-0.024333486,0.235771671,0.285361707,-0.042080104,0.232358053,0.203707129,-0.055151682,0.187885925,0.519577503,-0.015257291,0.188754126,0.380276322,-0.033243001,0.189080521,0.287882149,-0.046905316,0.189500973,0.205239922,-0.055917621,0.139956966,0.542785287,-0.025338465,0.139667153,0.425055981,-0.042411771,0.142503306,0.35073179,-0.050078698,0.14679499,0.279078096,-0.054562207 +Left,0.207818359,0.86945498,2.75E-07,0.282997906,0.803768396,-0.023853065,0.334339559,0.692929924,-0.029464809,0.348052442,0.583366334,-0.034426227,0.352653682,0.491803288,-0.039353129,0.299718767,0.559159815,-0.005456677,0.309563816,0.447064757,-0.024778793,0.307465523,0.370045781,-0.043644663,0.302308202,0.296859771,-0.057627577,0.256701738,0.531612217,-0.008681408,0.263173878,0.392040193,-0.02564086,0.261113316,0.299327195,-0.043391079,0.257055283,0.218039364,-0.056492459,0.213711604,0.52954185,-0.016710699,0.215246022,0.390551865,-0.035169281,0.214924276,0.297918409,-0.048711713,0.214015484,0.214989781,-0.057592332,0.16685608,0.550376952,-0.027388232,0.166941896,0.433314264,-0.044618178,0.169680893,0.35812971,-0.052343648,0.173302308,0.285930425,-0.056938346 +Left,0.234454036,0.843374133,2.78E-07,0.312292457,0.782463789,-0.024959669,0.362727702,0.673208296,-0.03017788,0.374888867,0.562443018,-0.034745861,0.381415844,0.472667575,-0.039279427,0.328812778,0.539837241,-0.005545645,0.338931918,0.425320625,-0.024854712,0.338097006,0.346836567,-0.043335803,0.334437996,0.272472173,-0.057149339,0.286695153,0.511274517,-0.00820446,0.2940211,0.371964097,-0.025854887,0.293881446,0.278495818,-0.043830704,0.292437643,0.196394056,-0.056911871,0.2448771,0.508246362,-0.015891345,0.246608973,0.369848669,-0.03539877,0.247674763,0.276847482,-0.049584962,0.248994857,0.194505662,-0.058519371,0.199076116,0.526986599,-0.026364103,0.199149176,0.408999234,-0.044979155,0.202552944,0.332238257,-0.053955648,0.20725745,0.258422554,-0.059200753 +Left,0.259140193,0.824777126,2.79E-07,0.336513847,0.764998972,-0.02758305,0.385696113,0.655055225,-0.034520987,0.394522369,0.541474283,-0.040078007,0.402061701,0.450809419,-0.04544463,0.349667579,0.522405505,-0.009913563,0.35777393,0.406605184,-0.030521207,0.35611397,0.329280317,-0.049790744,0.351775557,0.256417483,-0.063872822,0.30748859,0.494674355,-0.011070274,0.314702779,0.353997171,-0.029084422,0.314107656,0.261365324,-0.047026351,0.312021971,0.181257427,-0.060082532,0.266057551,0.492448598,-0.017259566,0.269082189,0.352087677,-0.03691135,0.269572377,0.260788262,-0.051003374,0.269403905,0.180193782,-0.059822105,0.220461696,0.513137698,-0.02633444,0.221158385,0.394431651,-0.045047138,0.223226666,0.318862796,-0.05391001,0.22564742,0.24667269,-0.058931869 +Left,0.273092598,0.817640066,2.61E-07,0.348708868,0.753225684,-0.028801626,0.395249248,0.640449584,-0.036483359,0.400390834,0.523840606,-0.042499486,0.40467757,0.43076244,-0.048198547,0.356009841,0.506201148,-0.010950481,0.359950989,0.3851915,-0.03174974,0.354000777,0.307314992,-0.051086895,0.345709443,0.234482795,-0.06523101,0.312837899,0.481830031,-0.011284382,0.313359946,0.338261247,-0.029441154,0.30806762,0.244298637,-0.047851074,0.301843792,0.163998693,-0.061443605,0.271512657,0.483474702,-0.016733648,0.267789811,0.342217892,-0.03631236,0.264241487,0.250990093,-0.051146932,0.260276556,0.170471758,-0.060731344,0.227474511,0.508635819,-0.025124351,0.223976314,0.39029178,-0.044134337,0.222428843,0.314037621,-0.054018646,0.221099779,0.241538793,-0.059877284 +Left,0.263791591,0.812489986,1.99E-07,0.336870492,0.73992908,-0.025571933,0.380836904,0.628426313,-0.032684002,0.386122823,0.51504463,-0.039334495,0.386572838,0.417950004,-0.046368424,0.341858447,0.500810564,-0.009404148,0.342811376,0.379558504,-0.031650458,0.33407402,0.30306536,-0.051457629,0.323263824,0.231365234,-0.065552212,0.299087644,0.479954422,-0.012188246,0.291665077,0.336498439,-0.032553408,0.28115654,0.24345997,-0.052157857,0.271016896,0.162713259,-0.066030927,0.258788049,0.484588385,-0.019865572,0.247167468,0.345143318,-0.041241359,0.239180177,0.253915548,-0.055818353,0.23233363,0.172271162,-0.064655267,0.216875508,0.512558877,-0.030249719,0.206252426,0.391774505,-0.050306931,0.202124923,0.314389229,-0.059822872,0.200075373,0.23987326,-0.0650272 +Left,0.238014862,0.848346353,2.13E-07,0.308220714,0.775022447,-0.026544519,0.348419607,0.656348109,-0.032510202,0.350900859,0.540081978,-0.03741847,0.347958386,0.445275545,-0.042470496,0.30666694,0.527675211,-0.009863475,0.303699523,0.402870953,-0.0306831,0.292152017,0.325039059,-0.049879972,0.277670562,0.252055645,-0.063781649,0.263174534,0.507766783,-0.011434507,0.253240258,0.361880362,-0.030069744,0.240105778,0.267426491,-0.049078405,0.226164073,0.186925381,-0.062758788,0.222786993,0.513909459,-0.017809175,0.208917856,0.374310195,-0.037323669,0.199751928,0.28325817,-0.052005645,0.190503985,0.203175694,-0.061273571,0.181411281,0.543408155,-0.027026866,0.170442045,0.424384892,-0.045670867,0.165211201,0.347864002,-0.054953035,0.160974383,0.275684983,-0.060236834 +Left,0.234629169,0.857337534,2.72E-07,0.306616873,0.775494695,-0.023627613,0.34728241,0.657169402,-0.027173154,0.349491119,0.544070363,-0.030209426,0.340890527,0.452378869,-0.033545159,0.300932586,0.532693624,-0.003881329,0.300437301,0.410977602,-0.022070853,0.292059004,0.331960231,-0.04026923,0.281647623,0.257371306,-0.053833891,0.257937104,0.514032304,-0.006594203,0.252327353,0.36885345,-0.023096981,0.242923036,0.272112072,-0.041547783,0.233164042,0.188792408,-0.055103671,0.217408627,0.521082997,-0.014073917,0.208238304,0.380113631,-0.032414611,0.201628253,0.284527212,-0.047817416,0.195264474,0.199587226,-0.057819586,0.174514785,0.551740706,-0.024151275,0.166982055,0.432287931,-0.042146299,0.164055616,0.353605151,-0.051422812,0.161789536,0.278503984,-0.056929614 +Left,0.227085054,0.853359222,2.91E-07,0.299432367,0.773598075,-0.021902932,0.341087222,0.656376004,-0.024976186,0.346678793,0.543995857,-0.027923048,0.339779764,0.453344524,-0.030870024,0.300523281,0.531613231,-0.001869509,0.306670815,0.411629498,-0.019952882,0.303441495,0.335231602,-0.038010363,0.296930075,0.261881024,-0.051313501,0.259070486,0.508681417,-0.005213983,0.262204736,0.365869224,-0.021530526,0.258133084,0.271764517,-0.038926117,0.25196588,0.188152999,-0.05141611,0.219025791,0.511913657,-0.013369682,0.216550708,0.371017724,-0.031115523,0.214381471,0.277227759,-0.044997044,0.211499244,0.194130063,-0.053625453,0.175444245,0.539028049,-0.024148656,0.173541486,0.418544441,-0.041556116,0.174780518,0.337241203,-0.05006472,0.1766693,0.25971964,-0.054797363 +Left,0.217808574,0.846881986,2.88E-07,0.292362273,0.769760489,-0.020567676,0.335895479,0.656094432,-0.022565093,0.341781646,0.543895662,-0.024674384,0.338325083,0.452321857,-0.026761821,0.296521842,0.527555406,0.001797332,0.306113839,0.409995973,-0.015445633,0.304848105,0.334312141,-0.033397943,0.299941897,0.261511326,-0.04660413,0.255178809,0.502743304,-0.001701098,0.262102872,0.362717927,-0.01698499,0.260384738,0.269297898,-0.03413124,0.256288767,0.185919791,-0.046478633,0.215131551,0.504157782,-0.010084478,0.216202766,0.365335315,-0.026913637,0.216755897,0.272997946,-0.040373791,0.216302559,0.190670043,-0.04876196,0.17133297,0.529662669,-0.021023314,0.172680169,0.411215127,-0.037490625,0.176084384,0.33149305,-0.045348734,0.180027932,0.254946738,-0.049641546 +Left,0.204482734,0.827419519,2.94E-07,0.280483425,0.75316143,-0.021794796,0.325114757,0.638835847,-0.024474371,0.33144173,0.525954127,-0.027048508,0.330058962,0.433949053,-0.029527016,0.287242591,0.510654926,-0.000686319,0.298434883,0.392657876,-0.01871283,0.297913015,0.315898776,-0.036864132,0.293464214,0.241808116,-0.050179709,0.245574698,0.484259576,-0.003827133,0.254790992,0.343367875,-0.019814676,0.254048169,0.248710811,-0.036976028,0.250579953,0.163865864,-0.049257547,0.205149889,0.484193087,-0.011866645,0.208225295,0.344385475,-0.029112225,0.209749579,0.2510809,-0.042454861,0.209990785,0.167524219,-0.050756387,0.160603434,0.50851965,-0.02256356,0.16316627,0.389760405,-0.039357778,0.167247206,0.309639871,-0.047295965,0.171809644,0.232859761,-0.051627137 +Left,0.192878619,0.824024081,3.36E-07,0.267864615,0.754180908,-0.024650393,0.314239502,0.640211225,-0.028959671,0.32115221,0.52720803,-0.032671075,0.324960172,0.43509832,-0.036110282,0.280439228,0.51077801,-0.003447846,0.294518918,0.395816892,-0.022939637,0.297343194,0.318322361,-0.041777231,0.296446025,0.242448598,-0.055687424,0.238086745,0.482372105,-0.006044746,0.251072109,0.343482494,-0.02383977,0.253404588,0.2489025,-0.04154449,0.253924221,0.162322968,-0.054171488,0.196741551,0.480163336,-0.013932506,0.204401225,0.340293527,-0.033287343,0.209018305,0.246259779,-0.047435381,0.21327135,0.16181761,-0.056081563,0.15056023,0.500990868,-0.024694424,0.156801999,0.382725298,-0.043164182,0.163714021,0.301130801,-0.052222252,0.171803236,0.222882569,-0.057384893 +Left,0.19638893,0.832419634,3.35E-07,0.270484924,0.755232811,-0.020565329,0.31015113,0.63464123,-0.022439921,0.314432263,0.523166955,-0.024550321,0.31879881,0.43387261,-0.02671276,0.274671704,0.50830847,0.001367123,0.287542641,0.393299043,-0.016222052,0.290282786,0.317857504,-0.03401861,0.289097279,0.243461996,-0.047501747,0.23296003,0.483521521,-0.002985786,0.245294243,0.34332934,-0.01921279,0.247848049,0.248912752,-0.036123689,0.247974128,0.162054628,-0.04840998,0.192059904,0.485492498,-0.012506691,0.199574307,0.342958093,-0.031042542,0.204600438,0.248088688,-0.045360632,0.208649784,0.161966592,-0.054351624,0.146086946,0.511135697,-0.024544111,0.151294023,0.39246875,-0.043003906,0.158337563,0.309956372,-0.052533504,0.166408449,0.229726046,-0.058278359 +Left,0.204616249,0.846564651,3.83E-07,0.274436623,0.754495025,-0.019226972,0.309979498,0.629065275,-0.021196213,0.311592519,0.521312118,-0.024034852,0.312561929,0.431213468,-0.027134344,0.268472642,0.508309245,0.003893473,0.282631844,0.393373489,-0.015078237,0.287033409,0.319885194,-0.034406513,0.286577284,0.246078253,-0.048601322,0.228530526,0.489786327,-0.001623489,0.242075399,0.351055741,-0.01843917,0.245446071,0.257711768,-0.03616222,0.246128738,0.170714885,-0.048985641,0.189058721,0.497595906,-0.012503604,0.197192863,0.356532395,-0.031286597,0.202212974,0.262324631,-0.045590371,0.20649679,0.176921368,-0.0545623,0.145050496,0.530055285,-0.02592604,0.150140733,0.413321555,-0.043898217,0.15677768,0.331142515,-0.052569877,0.164788872,0.251724124,-0.057717066 +Left,0.205807462,0.85332036,3.89E-07,0.276230574,0.759635687,-0.01794301,0.311806262,0.634154439,-0.018668944,0.313810408,0.525910616,-0.020504234,0.31247443,0.436203957,-0.022450842,0.269811839,0.514282823,0.008027909,0.282492995,0.397883296,-0.008956692,0.285955817,0.323046654,-0.027342016,0.284862816,0.248963088,-0.040980045,0.229511365,0.495104253,0.002448232,0.24104771,0.354610443,-0.012520668,0.243200496,0.260468662,-0.029686429,0.242795527,0.173624337,-0.042109676,0.189371526,0.501789153,-0.008466152,0.196090832,0.36065945,-0.025460208,0.200617179,0.266534448,-0.039203241,0.204357103,0.181614965,-0.047887728,0.144731238,0.532873571,-0.021896148,0.149655521,0.415617079,-0.038235132,0.156138748,0.333796024,-0.045988273,0.163839981,0.255010754,-0.050534692 +Left,0.222549751,0.846471369,3.69E-07,0.293209016,0.760389984,-0.020556884,0.33087945,0.634095728,-0.02250378,0.331408918,0.522180259,-0.024994461,0.332692206,0.430815816,-0.027235746,0.28737244,0.512940347,0.005013131,0.299553692,0.395873249,-0.013186021,0.304865509,0.320896804,-0.031641349,0.306622475,0.247173309,-0.045226756,0.247551814,0.493169487,0.000537822,0.257491499,0.353232712,-0.015894977,0.260206252,0.260713845,-0.033186093,0.261701584,0.173586816,-0.045521326,0.208618864,0.498053908,-0.00948328,0.215120286,0.357033134,-0.028280303,0.218891993,0.26489839,-0.042042769,0.222519636,0.180228114,-0.050310038,0.165736586,0.526767433,-0.022176243,0.171097904,0.408894151,-0.039987385,0.177376896,0.328085363,-0.048344698,0.184771493,0.250314027,-0.053015996 +Left,0.231826097,0.85025984,3.54E-07,0.302583754,0.776481032,-0.025026839,0.349036217,0.658382952,-0.030668154,0.355487198,0.545112371,-0.035891309,0.357661873,0.450851917,-0.040699337,0.311688036,0.528283238,-0.004096282,0.324668467,0.410429478,-0.024735397,0.329554915,0.335197687,-0.044133443,0.33113265,0.261544585,-0.058314614,0.270380616,0.503276885,-0.007118824,0.281503975,0.364189267,-0.026099397,0.284970343,0.272049248,-0.044357862,0.2872428,0.187424004,-0.057319112,0.229589358,0.504168212,-0.015546411,0.236931488,0.364535272,-0.036398776,0.241298825,0.2728585,-0.050955649,0.245562762,0.190302283,-0.059754737,0.185311973,0.528853595,-0.026825074,0.191133738,0.41214776,-0.046485342,0.197145388,0.33278501,-0.05590751,0.204205573,0.257016748,-0.061164428 +Left,0.239806011,0.853982329,3.19E-07,0.312584072,0.784522831,-0.02811192,0.358136624,0.667672455,-0.034917813,0.36507833,0.550996363,-0.040470194,0.368063867,0.453190923,-0.0457002,0.320490956,0.534514964,-0.009407234,0.329667777,0.418551743,-0.030417439,0.328664124,0.340701878,-0.049971033,0.325241089,0.263756722,-0.064509869,0.278727919,0.508468628,-0.011294473,0.285733998,0.369018793,-0.030114621,0.284908861,0.273191273,-0.048473973,0.282962859,0.186207205,-0.061938748,0.237947881,0.509470046,-0.018548889,0.239239484,0.369746536,-0.039130498,0.239657655,0.27462706,-0.054081302,0.240422606,0.187829316,-0.063559279,0.193489477,0.534779131,-0.028901758,0.193420082,0.416713357,-0.048904322,0.196041167,0.336203277,-0.059014063,0.200017825,0.258136332,-0.065005422 +Left,0.24601908,0.851073503,3.24E-07,0.31628111,0.778583169,-0.029814253,0.361623853,0.662670851,-0.03899955,0.365892857,0.548068047,-0.046620701,0.366700649,0.451817632,-0.053817462,0.322734624,0.53058362,-0.014236653,0.328206152,0.414415836,-0.037445698,0.324960291,0.336504519,-0.05806797,0.319497615,0.259562194,-0.073113769,0.279659241,0.507051587,-0.016036652,0.282869965,0.36611706,-0.037079722,0.279131979,0.270399153,-0.056207232,0.275000542,0.182951689,-0.069958583,0.23832202,0.509390175,-0.023091178,0.235984981,0.368749708,-0.045340233,0.233680904,0.27274856,-0.060273316,0.232383505,0.185574442,-0.069425888,0.193740696,0.535726249,-0.033317287,0.190612674,0.415754616,-0.05402087,0.191302165,0.334060073,-0.063912503,0.193702862,0.255449027,-0.069550872 +Left,0.25823915,0.849463224,3.33E-07,0.328060955,0.776131153,-0.031106101,0.373056889,0.661999285,-0.041680537,0.3786771,0.54802227,-0.050584208,0.380189598,0.451365739,-0.059062317,0.333540618,0.527500331,-0.016355203,0.34000814,0.410069764,-0.040745933,0.336076647,0.331473887,-0.062157769,0.329473376,0.253986418,-0.077656783,0.290184826,0.504787743,-0.017885886,0.294135332,0.363367826,-0.039764907,0.290629387,0.26684016,-0.059233356,0.286138713,0.178619236,-0.073291168,0.248794302,0.508863091,-0.024771169,0.246172696,0.368797123,-0.047421344,0.24416168,0.271925956,-0.062367145,0.242777258,0.184501469,-0.071691081,0.204996556,0.536761045,-0.034969289,0.201650679,0.418459773,-0.056063995,0.202543095,0.336744905,-0.066207983,0.204821929,0.257720828,-0.072134428 +Left,0.271013886,0.849189043,3.28E-07,0.340790808,0.777723312,-0.030047668,0.385738105,0.664989054,-0.040291172,0.391457617,0.55137682,-0.048901331,0.392183483,0.454916716,-0.057039384,0.345551789,0.530770659,-0.015450213,0.35205856,0.411886066,-0.038958009,0.349458575,0.334290683,-0.059736725,0.343502581,0.259295851,-0.074553289,0.303079903,0.50897187,-0.017044898,0.307607919,0.366271526,-0.037687179,0.304679871,0.271016121,-0.056412391,0.299592048,0.186338931,-0.06987197,0.262568057,0.512755692,-0.023801878,0.262937278,0.372533381,-0.045077339,0.261815161,0.277156442,-0.059476506,0.259757489,0.192337424,-0.068391606,0.219313517,0.539961934,-0.033718903,0.218341738,0.420209825,-0.053806923,0.219531074,0.33922559,-0.063201576,0.220905393,0.262610674,-0.068414539 +Left,0.2688348,0.836110711,3.04E-07,0.339441627,0.766981006,-0.030821839,0.385412365,0.65530169,-0.04137161,0.389785558,0.540286064,-0.050135769,0.392406225,0.443459153,-0.05856188,0.346542269,0.521266222,-0.016527556,0.351595014,0.402402401,-0.040714826,0.347158462,0.32325092,-0.061920855,0.339428753,0.247598439,-0.076898463,0.303939611,0.498945504,-0.017872488,0.307790935,0.35561794,-0.039078496,0.303030521,0.258539587,-0.058273703,0.296084881,0.174147278,-0.071970567,0.262974501,0.502134144,-0.024382083,0.262759447,0.360360205,-0.046234068,0.259927213,0.264091849,-0.060940977,0.256141931,0.179802924,-0.069934331,0.218796968,0.528633952,-0.034057427,0.216984034,0.408026099,-0.054405723,0.217247695,0.32789129,-0.063779958,0.217616767,0.252926469,-0.068885058 +Left,0.25857234,0.826762438,2.79E-07,0.33053866,0.764214516,-0.030670723,0.377511472,0.653758883,-0.040763419,0.387677699,0.537975311,-0.049141642,0.393157244,0.4401173,-0.05718457,0.345546812,0.518667758,-0.014823362,0.350816488,0.395814538,-0.038228627,0.34508431,0.315068454,-0.059182871,0.336725116,0.239328623,-0.074085683,0.30329904,0.491802216,-0.015544699,0.304858476,0.345294595,-0.036017936,0.299551368,0.246998966,-0.055433832,0.293550938,0.163756132,-0.0693992,0.262044162,0.49131301,-0.021463726,0.260736138,0.347248822,-0.042848393,0.258510083,0.251189858,-0.057977617,0.256403029,0.167756438,-0.067417778,0.218352199,0.513614178,-0.030517427,0.217025444,0.393085063,-0.050613072,0.21710144,0.314163983,-0.060273379,0.217646122,0.240434468,-0.065673776 +Left,0.242548034,0.834802628,2.10E-07,0.315613598,0.779569685,-0.028492061,0.364702702,0.667893589,-0.036228091,0.375856966,0.551238954,-0.042640463,0.383153886,0.45690915,-0.049173821,0.335576266,0.530313671,-0.012679585,0.343455762,0.4076913,-0.034845967,0.338424891,0.328836083,-0.054712325,0.330204278,0.254325569,-0.068991564,0.294039518,0.50375551,-0.014198657,0.296939194,0.358880877,-0.033965334,0.291501522,0.26290229,-0.053072575,0.283976287,0.179933041,-0.066872992,0.253469974,0.50330627,-0.020758096,0.252678275,0.361759305,-0.041525953,0.250309497,0.268363297,-0.056244198,0.246816501,0.185708255,-0.065465644,0.209704697,0.524596751,-0.030290769,0.208365172,0.403736115,-0.050269473,0.209409297,0.325458825,-0.06008286,0.210856974,0.251256704,-0.065708779 +Left,0.235911801,0.863730192,2.64E-07,0.309281796,0.796473801,-0.024763038,0.357523799,0.68653506,-0.031209258,0.36498642,0.572668731,-0.036996532,0.37119174,0.477760226,-0.042578336,0.323528618,0.550826013,-0.006910116,0.331785262,0.428530574,-0.027268874,0.32862094,0.348326743,-0.046393033,0.321755797,0.273094773,-0.06007342,0.282087356,0.525976241,-0.010003323,0.287896752,0.382098436,-0.02751106,0.284827739,0.284565151,-0.045412973,0.279229641,0.201618493,-0.058352027,0.2414269,0.526123464,-0.017968396,0.24261865,0.383821666,-0.036419425,0.242865443,0.289220393,-0.049964998,0.242239922,0.206945747,-0.058527261,0.196940362,0.548778534,-0.028692715,0.195590764,0.428151727,-0.0463381,0.197853401,0.350012541,-0.054340519,0.200921237,0.276732445,-0.058633588 +Left,0.225995213,0.899889469,3.13E-07,0.299327523,0.827185094,-0.02348025,0.344865441,0.711708844,-0.026714873,0.352867097,0.596562445,-0.029506817,0.353910327,0.50236392,-0.031841442,0.307861,0.582287252,0.001557008,0.318704277,0.467002451,-0.015951419,0.318210959,0.390705258,-0.034334339,0.314136535,0.317001879,-0.048096184,0.26658839,0.556846261,-0.000889582,0.275935203,0.419441611,-0.016205557,0.276601225,0.326729417,-0.033601191,0.275073916,0.243884087,-0.046389692,0.2259489,0.556090653,-0.008707594,0.230251193,0.417863011,-0.026100816,0.23278302,0.327329397,-0.039865408,0.234207407,0.246391445,-0.048600037,0.18137902,0.578106225,-0.019386567,0.185091555,0.460753262,-0.036460143,0.189654291,0.383584231,-0.044897251,0.194939628,0.309340835,-0.049762338 +Left,0.22554481,0.865894198,3.34E-07,0.296753287,0.784606636,-0.020350099,0.333087713,0.666559696,-0.022013446,0.33263582,0.557200074,-0.023740364,0.332250088,0.470069945,-0.025289703,0.289821237,0.544159532,0.004267236,0.299454629,0.428988785,-0.012122947,0.30083248,0.356254756,-0.029099435,0.298209131,0.287640274,-0.041424274,0.24987267,0.525683522,0.001104479,0.257628411,0.390089989,-0.013181641,0.258217961,0.30106324,-0.028980317,0.25658986,0.22171849,-0.040144693,0.211292416,0.530973077,-0.007268033,0.214085877,0.394024551,-0.023333255,0.216989502,0.307084829,-0.035752647,0.219568297,0.229854822,-0.043214645,0.169065461,0.55910641,-0.018256124,0.170889199,0.44362995,-0.034002058,0.175453603,0.365431398,-0.041506417,0.181254029,0.290083647,-0.045523986 +Left,0.244983524,0.82657367,3.95E-07,0.304778069,0.728124917,-0.017085159,0.321326524,0.596409261,-0.017249644,0.314565539,0.495643467,-0.018506695,0.308911413,0.411467642,-0.019606676,0.269603819,0.497411698,0.006513275,0.278085709,0.380873442,-0.009722362,0.282509238,0.309445024,-0.025865406,0.28330791,0.239630967,-0.037720811,0.235407114,0.486692965,0.00109626,0.240484238,0.349983752,-0.013353645,0.242498666,0.260548443,-0.028610004,0.242819414,0.176271498,-0.039663721,0.202641726,0.500119209,-0.00963238,0.20426932,0.362100542,-0.026297515,0.206770867,0.270099819,-0.039975755,0.20870629,0.185943544,-0.048601292,0.167510778,0.535559595,-0.022756513,0.164706558,0.421011627,-0.039048366,0.167105541,0.338821292,-0.048081677,0.171665281,0.260339856,-0.053810786 +Left,0.249632329,0.832579255,4.16E-07,0.305270314,0.726481915,-0.014537627,0.317627788,0.592085004,-0.013373182,0.307915628,0.494821191,-0.013795361,0.300672799,0.41154024,-0.014019749,0.265017658,0.501763463,0.011110726,0.270950228,0.384638608,-0.00393116,0.276180625,0.314070046,-0.019200964,0.278673291,0.245787799,-0.030218331,0.232502058,0.495652616,0.004805472,0.236902237,0.358815461,-0.008541109,0.240749061,0.269742936,-0.02308714,0.243583009,0.188061208,-0.033439234,0.201881215,0.512824953,-0.006885179,0.202298671,0.375674248,-0.022456508,0.205502614,0.283394724,-0.03529577,0.208937064,0.200814009,-0.043366332,0.169547111,0.55025202,-0.020902291,0.166132659,0.435127854,-0.035996322,0.168759525,0.352301747,-0.044114761,0.173921138,0.272288173,-0.049285941 +Left,0.24381426,0.834963679,4.15E-07,0.298941463,0.729867518,-0.015513295,0.312660009,0.596268654,-0.015025875,0.303509414,0.498842776,-0.016000142,0.295427203,0.415906966,-0.016805243,0.260011673,0.506308556,0.010322283,0.265585899,0.391537875,-0.005242612,0.270587146,0.322911739,-0.020994965,0.27314803,0.255036831,-0.032549985,0.227161154,0.500315428,0.004233279,0.230524272,0.365969986,-0.009905138,0.233433574,0.27839157,-0.025198804,0.235915035,0.195559055,-0.036267269,0.196039557,0.517914176,-0.007364866,0.195231497,0.382774323,-0.024110762,0.197801515,0.291824192,-0.037903089,0.201502264,0.20901832,-0.046721067,0.163062036,0.556271076,-0.021280857,0.15867728,0.445439488,-0.037406262,0.161082894,0.365352869,-0.04641065,0.166525871,0.287293494,-0.052383736 +Left,0.239742845,0.842691123,3.96E-07,0.301296502,0.748386502,-0.017779425,0.321617365,0.620330989,-0.018591428,0.316206157,0.517644584,-0.020087887,0.311239362,0.433879256,-0.021572143,0.27165398,0.520053923,0.004652899,0.280644596,0.405561358,-0.011716679,0.284814417,0.335226536,-0.02824657,0.284950078,0.26618281,-0.040416036,0.236803129,0.509414852,8.69E-05,0.24246113,0.375707567,-0.01418031,0.244415954,0.288380235,-0.029465407,0.244265184,0.20564729,-0.040679615,0.203198671,0.522211671,-0.009589708,0.205402792,0.387446672,-0.025975304,0.207450628,0.29755336,-0.03930879,0.208804786,0.215158761,-0.047842901,0.166850418,0.556719959,-0.021609357,0.165676564,0.446207643,-0.037475172,0.16888997,0.367263854,-0.046031732,0.1737445,0.291774005,-0.051437303 +Left,0.252634853,0.858131409,3.82E-07,0.318768442,0.771259904,-0.021457266,0.347898096,0.647896945,-0.024786923,0.34624958,0.541715801,-0.028053528,0.34398222,0.453283012,-0.031021174,0.301897019,0.537237048,-5.71E-05,0.310250103,0.42661798,-0.017885061,0.312658399,0.356289804,-0.035395999,0.311232269,0.286591202,-0.048233159,0.263073266,0.523310125,-0.002996083,0.269227862,0.393269271,-0.018605532,0.270528853,0.306989133,-0.034347016,0.270184189,0.225293666,-0.045669917,0.225872487,0.533093333,-0.011087933,0.226882651,0.401241362,-0.028393427,0.228725597,0.314199626,-0.040764488,0.230751619,0.234793931,-0.048247162,0.186497808,0.564254224,-0.02185132,0.186546549,0.454104275,-0.038346652,0.190081269,0.375984073,-0.04641103,0.194969743,0.301655591,-0.050987937 +Left,0.275601834,0.836650848,2.98E-07,0.345475376,0.769003034,-0.021830354,0.385364681,0.649804056,-0.025988266,0.389891028,0.539647043,-0.029971758,0.393489212,0.452877671,-0.034007169,0.348083645,0.523895383,-0.003406958,0.355790555,0.408978492,-0.02167213,0.357268423,0.337364942,-0.038795356,0.354780436,0.270172656,-0.051155724,0.307419717,0.50563997,-0.006445138,0.311141431,0.369723022,-0.023091778,0.311600566,0.28137058,-0.039103068,0.310459882,0.202813953,-0.050449986,0.267501682,0.50955981,-0.014360933,0.26900813,0.37264812,-0.033116154,0.269911319,0.282844245,-0.046387691,0.269892842,0.204160333,-0.054216579,0.224871188,0.534366012,-0.024682295,0.224381566,0.417297721,-0.04241867,0.227072537,0.339770555,-0.050903186,0.230305001,0.266974598,-0.055570837 +Left,0.297809213,0.830825329,2.82E-07,0.367452621,0.764580905,-0.025144754,0.408186227,0.652584136,-0.031011511,0.413150579,0.544801712,-0.036034409,0.416615784,0.458204091,-0.040646501,0.373164654,0.524267197,-0.007131101,0.379758775,0.412260175,-0.026724897,0.378227979,0.337554604,-0.045051556,0.37314412,0.266140014,-0.058724757,0.332672894,0.50292033,-0.009350408,0.337366372,0.368904918,-0.027526757,0.336418718,0.279758662,-0.044585302,0.333562136,0.200732112,-0.056831162,0.293557882,0.505296707,-0.016599813,0.294723392,0.369995177,-0.036283746,0.294805616,0.280810028,-0.049780533,0.294257373,0.201480538,-0.057992794,0.251457274,0.528942645,-0.026670156,0.251309246,0.415497124,-0.045779694,0.253261566,0.33860606,-0.055172294,0.256132811,0.265961558,-0.060512312 +Left,0.30201,0.835139453,2.50E-07,0.374026507,0.779207945,-0.027024047,0.418275088,0.669570744,-0.033265967,0.423452795,0.55832684,-0.038193718,0.427279681,0.47024411,-0.042561747,0.387707561,0.539252758,-0.008764029,0.391910881,0.422155619,-0.028572725,0.387823939,0.343743861,-0.046483763,0.381321669,0.272622913,-0.059472725,0.345776945,0.51462239,-0.009444348,0.346871644,0.375322461,-0.027986927,0.343640715,0.281683773,-0.045248512,0.339549959,0.202185571,-0.057254028,0.305567473,0.513130486,-0.015132738,0.304126501,0.375908941,-0.034962162,0.303040385,0.283457875,-0.048934519,0.302085012,0.204334557,-0.057132278,0.263380289,0.53200078,-0.023725128,0.262118101,0.416176975,-0.042600952,0.263055652,0.338596165,-0.052058686,0.265012115,0.266620934,-0.057174239 +Left,0.287697613,0.85484314,2.12E-07,0.360444367,0.803873837,-0.022982597,0.407729059,0.704862356,-0.027320541,0.419597208,0.598089993,-0.03143426,0.428513765,0.511045098,-0.035561305,0.381063402,0.574212015,-0.002393791,0.393169343,0.461794019,-0.019969011,0.393055826,0.388630211,-0.037129622,0.390793115,0.317832261,-0.04982483,0.343663514,0.544901907,-0.004890458,0.3521474,0.411882073,-0.021001827,0.352230698,0.322021395,-0.038287662,0.351177752,0.242113084,-0.050808977,0.306126356,0.539401948,-0.012167013,0.311577648,0.407371759,-0.030247545,0.313492805,0.319474429,-0.043905914,0.314674497,0.240935177,-0.052346308,0.264433324,0.554693997,-0.022021193,0.2686719,0.442269444,-0.0393917,0.272578657,0.369179845,-0.047801398,0.276814491,0.299762279,-0.05250081 +Left,0.283716589,0.860109448,2.34E-07,0.355601311,0.803954184,-0.023083298,0.402771026,0.702912509,-0.027774122,0.412525415,0.59465909,-0.032186884,0.421539098,0.507882357,-0.036318317,0.374574989,0.575659096,-0.001231688,0.384548128,0.464985639,-0.019403521,0.383700907,0.391719788,-0.037245896,0.380512178,0.32143718,-0.050503463,0.336684704,0.546096325,-0.003900438,0.345226824,0.414489686,-0.020380834,0.34568423,0.326140314,-0.037728306,0.344872534,0.249030471,-0.050231505,0.298592895,0.540629804,-0.011614828,0.302648485,0.407985866,-0.030318117,0.304075241,0.319789976,-0.044206776,0.305207402,0.240458846,-0.052808836,0.256269574,0.556942761,-0.021928744,0.259298116,0.4443295,-0.039953865,0.262417734,0.371156901,-0.048759129,0.26621753,0.30020538,-0.053761866 +Left,0.294392675,0.857389808,3.67E-07,0.358804911,0.770712018,-0.01884822,0.384574473,0.641636491,-0.020557433,0.381704241,0.535736501,-0.022665326,0.380692959,0.447784394,-0.024814103,0.339658141,0.531601369,0.002260907,0.348082542,0.419602245,-0.013642,0.35106039,0.351338297,-0.029764047,0.350120693,0.284447521,-0.041771043,0.303534716,0.522730708,-0.001833119,0.311931312,0.39442271,-0.016224043,0.314973265,0.30790025,-0.031806804,0.315859944,0.225308448,-0.043233413,0.268865049,0.536486387,-0.010883195,0.272423059,0.40383029,-0.027521774,0.276027381,0.317641169,-0.040574204,0.278409421,0.239031136,-0.048751328,0.231234372,0.571342945,-0.022231812,0.231206328,0.460093319,-0.038987897,0.234570071,0.38250801,-0.047754437,0.238380641,0.30793646,-0.053071976 +Left,0.300982654,0.843421817,3.97E-07,0.3578493,0.748090625,-0.017991841,0.376337796,0.617014825,-0.018897235,0.369513392,0.517391741,-0.020570578,0.36586085,0.433202326,-0.022172246,0.328219205,0.520129144,0.00529783,0.336409956,0.409703761,-0.011059077,0.342283368,0.34218961,-0.027154468,0.34505567,0.274965852,-0.03914525,0.294957757,0.513563633,0.000425161,0.302399665,0.385505646,-0.014842629,0.306463748,0.301197588,-0.030505719,0.30886665,0.218654305,-0.041932754,0.263126194,0.530124307,-0.009810196,0.266717196,0.399463773,-0.027814493,0.270137012,0.311960608,-0.041695125,0.273463368,0.230516553,-0.050404832,0.228456736,0.567903936,-0.022457492,0.227824181,0.459869474,-0.03990829,0.231736779,0.382168114,-0.049507231,0.237646863,0.305661052,-0.055690724 +Left,0.296085835,0.807803392,4.13E-07,0.350902021,0.710848153,-0.014226938,0.36192286,0.578193605,-0.013400214,0.352284312,0.482156217,-0.014012108,0.348608732,0.400987089,-0.014431563,0.316874951,0.488259315,0.008921639,0.324651062,0.379467964,-0.006967017,0.333109409,0.312225461,-0.022643555,0.338643253,0.2470195,-0.033893008,0.286233932,0.480477095,0.003106586,0.29548496,0.352946371,-0.010672742,0.302362829,0.269470185,-0.024695396,0.307511955,0.189753741,-0.034630548,0.257084489,0.49541685,-0.007918174,0.262046367,0.366169691,-0.023625694,0.267760217,0.281117707,-0.035436407,0.272978574,0.203388453,-0.042631596,0.225983113,0.530654967,-0.021220665,0.227630168,0.421512127,-0.035941225,0.231493026,0.343399346,-0.043603297,0.236633882,0.267915368,-0.048474044 +Left,0.284789413,0.800909996,4.11E-07,0.341425031,0.701838136,-0.013519758,0.354381919,0.571008444,-0.012095761,0.347050577,0.47624737,-0.012407267,0.344054699,0.39495641,-0.01255472,0.307058334,0.485330939,0.011106445,0.316584677,0.373582333,-0.004817836,0.325787067,0.304849893,-0.020687286,0.332200319,0.238119304,-0.031954445,0.277071953,0.476191133,0.004946554,0.286615759,0.346858203,-0.008544707,0.293998897,0.260941744,-0.022971261,0.300167918,0.180634618,-0.033252358,0.248227373,0.489425361,-0.006511104,0.253213882,0.359026968,-0.021904154,0.259264082,0.271465361,-0.034177154,0.264995486,0.192390293,-0.041739952,0.217768714,0.521657944,-0.020233024,0.21819374,0.411979854,-0.034739781,0.221668899,0.334051222,-0.042420264,0.226511985,0.259176224,-0.047294546 +Left,0.263439715,0.833312452,3.97E-07,0.324956357,0.738514185,-0.015911929,0.345533729,0.605138063,-0.01495641,0.341652066,0.50426209,-0.015132545,0.341383964,0.422008574,-0.015274309,0.299268275,0.511996329,0.008360229,0.310271084,0.400369108,-0.006908507,0.318029016,0.332305014,-0.022569275,0.32251507,0.263946712,-0.034355059,0.265366852,0.500947773,0.003030639,0.275729954,0.371320724,-0.011184262,0.281737179,0.285681993,-0.026557447,0.286179632,0.202395797,-0.037749011,0.23249273,0.513141751,-0.007556965,0.238705739,0.381331623,-0.024660483,0.244446024,0.292407274,-0.038711738,0.250061691,0.21077314,-0.047544584,0.196812496,0.545816898,-0.020401448,0.19781661,0.435793549,-0.037022844,0.20358637,0.357137263,-0.046457738,0.211803243,0.281518847,-0.052582972 +Left,0.259496421,0.843043685,4.00E-07,0.324002862,0.754374206,-0.019301791,0.351390392,0.632188201,-0.02162293,0.349481285,0.528669775,-0.024456017,0.34984377,0.443044782,-0.027323909,0.306734055,0.525350928,0.003224111,0.316990018,0.414790809,-0.013979042,0.322248071,0.345869184,-0.031177867,0.324014187,0.276754111,-0.04389165,0.269447297,0.512116432,-0.000947577,0.277648509,0.382151484,-0.016305588,0.28149879,0.296550095,-0.032455917,0.28386271,0.214376062,-0.044243254,0.233291566,0.523244143,-0.010299278,0.237881914,0.391342103,-0.028011683,0.241791412,0.303223014,-0.0416492,0.245246515,0.221935183,-0.050134506,0.19408299,0.555613995,-0.022057274,0.196171701,0.444961131,-0.039063696,0.201451808,0.366779387,-0.047938213,0.208216816,0.291385919,-0.053336382 +Left,0.262757152,0.867887139,3.16E-07,0.332890958,0.796419919,-0.023767758,0.373446822,0.682344019,-0.029261062,0.377388448,0.57303232,-0.034064107,0.381701767,0.485598475,-0.038552288,0.33610037,0.557039857,-0.005050433,0.345168322,0.446430504,-0.023814015,0.346664548,0.376116127,-0.041692868,0.345699608,0.30791685,-0.054922998,0.294954449,0.535278499,-0.007503858,0.303103447,0.404144019,-0.02415951,0.304766089,0.318690985,-0.040262669,0.304833114,0.240426481,-0.05190561,0.255571842,0.53851074,-0.015005021,0.25897783,0.404492676,-0.033383992,0.261392146,0.316798985,-0.046143819,0.263773441,0.237447143,-0.054048773,0.213013962,0.564161181,-0.025183944,0.214070275,0.450221151,-0.043003455,0.218001306,0.37339887,-0.051532127,0.223115131,0.299260676,-0.056434106 +Left,0.277727783,0.871240377,3.02E-07,0.349451721,0.807026267,-0.025852658,0.394010961,0.698119223,-0.03296759,0.400712818,0.588770092,-0.039232548,0.409457177,0.500776052,-0.045141477,0.359434754,0.568430007,-0.007204597,0.368371278,0.456448704,-0.026959606,0.368615478,0.383064717,-0.045368053,0.367195874,0.312330812,-0.059013817,0.318758607,0.543474853,-0.009254968,0.325857431,0.408344716,-0.027319416,0.32677111,0.318360537,-0.04468191,0.32714662,0.238509029,-0.057151966,0.279199034,0.543385863,-0.016383177,0.281279504,0.407754064,-0.03612797,0.282592833,0.317421794,-0.049897205,0.284431487,0.237338662,-0.058360271,0.236760736,0.565822959,-0.026333267,0.237511843,0.450973213,-0.045245625,0.239803195,0.374739766,-0.054342475,0.242930979,0.301981449,-0.059480939 +Left,0.298588425,0.875411987,2.76E-07,0.371627718,0.814188421,-0.023381874,0.419288456,0.706225395,-0.028593771,0.429555237,0.599473059,-0.033285283,0.437757254,0.513235688,-0.037372112,0.39063248,0.575973213,-0.003904161,0.403452814,0.463937283,-0.022312421,0.40545857,0.389532983,-0.039871443,0.404835135,0.316883028,-0.053067043,0.350366086,0.545791507,-0.006622552,0.360845685,0.4131172,-0.023729397,0.363535851,0.324290335,-0.040570226,0.365266323,0.242704749,-0.052716669,0.310355365,0.539527655,-0.014244684,0.316182017,0.40541935,-0.032808706,0.319744855,0.315920383,-0.046206266,0.323353708,0.234599888,-0.054569285,0.267146885,0.554409742,-0.024591789,0.27219215,0.439842045,-0.042554051,0.276617229,0.36237219,-0.051424995,0.281769574,0.288164377,-0.056460492 +Left,0.311898917,0.864721179,2.74E-07,0.385931373,0.810499787,-0.024464989,0.434977055,0.7097404,-0.030021045,0.450052679,0.604384661,-0.035065584,0.45955205,0.516520977,-0.039566189,0.408209294,0.574077606,-0.003271411,0.422694951,0.464843035,-0.021603657,0.425442576,0.392729789,-0.039597124,0.425895572,0.320519358,-0.053248532,0.370267421,0.541669488,-0.005933002,0.382125944,0.410295784,-0.02283453,0.385798961,0.32231766,-0.040422823,0.388345152,0.241634846,-0.053297523,0.331456661,0.533831656,-0.013697595,0.339002043,0.401215672,-0.032585654,0.343630433,0.312069625,-0.046660505,0.348193198,0.230337352,-0.055579435,0.288416833,0.547280371,-0.024286995,0.294478089,0.434769034,-0.042631533,0.300003618,0.359096169,-0.05178389,0.306740999,0.285854757,-0.057128578 +Left,0.312116802,0.866152406,2.68E-07,0.386333466,0.815600753,-0.023856571,0.435918927,0.717600882,-0.028336965,0.450169981,0.613681555,-0.032471843,0.459456503,0.527559876,-0.036054477,0.410360932,0.584834814,-0.001272233,0.424638093,0.47329101,-0.018576032,0.42745018,0.399358094,-0.035700664,0.428126276,0.326188177,-0.048679441,0.37348786,0.551823616,-0.00355935,0.385891974,0.419928819,-0.019710248,0.390084684,0.330980122,-0.03702696,0.393515557,0.250330478,-0.049551621,0.335836649,0.542363286,-0.01089858,0.345137417,0.410859227,-0.029213894,0.350239068,0.322149128,-0.043377329,0.355177999,0.24161303,-0.052134279,0.293839782,0.553056717,-0.021029437,0.301659763,0.440711588,-0.039065465,0.307498813,0.365625203,-0.048316535,0.314376295,0.292883426,-0.053524692 +Left,0.308891982,0.864783406,2.73E-07,0.38459149,0.813071907,-0.021580113,0.433041424,0.717921734,-0.023863928,0.44498992,0.614579558,-0.026105763,0.453908414,0.53083396,-0.027911792,0.40639776,0.591168523,0.003569979,0.421727568,0.483162314,-0.01138413,0.425676793,0.411330611,-0.027075332,0.427405179,0.340512663,-0.039161965,0.370542973,0.558103383,0.001144669,0.38520956,0.430037558,-0.012880556,0.391427398,0.343648642,-0.028927991,0.396606445,0.265740752,-0.040518418,0.333942801,0.548641503,-0.0063377,0.344977319,0.419580847,-0.02312582,0.351715267,0.335467726,-0.036331475,0.358236969,0.259072542,-0.044336513,0.292295128,0.559832036,-0.016467828,0.301941067,0.449520469,-0.033549063,0.30908668,0.376364022,-0.042192839,0.317096621,0.304973334,-0.046921577 +Left,0.307088763,0.852519631,3.11E-07,0.381685734,0.799212933,-0.019643551,0.428430974,0.700049281,-0.020223508,0.439969867,0.595122457,-0.020750221,0.446242273,0.509953201,-0.021199226,0.398177177,0.575151861,0.004847825,0.415560007,0.468840092,-0.008134074,0.422149956,0.40268296,-0.022444054,0.426297814,0.337163895,-0.033390008,0.363222778,0.54560709,0.002318746,0.37992543,0.420153022,-0.009771206,0.387663424,0.336420357,-0.024933666,0.393868715,0.26099506,-0.035996739,0.327344596,0.538537502,-0.005040153,0.340460658,0.411968827,-0.019881241,0.349525094,0.330401689,-0.032916043,0.358347863,0.255833834,-0.041122455,0.285315186,0.55109334,-0.014781179,0.296767473,0.441223025,-0.030288259,0.306828648,0.369422793,-0.038494691,0.318563312,0.300100118,-0.043221679 +Left,0.309274644,0.828263164,3.15E-07,0.378297895,0.766038835,-0.017797733,0.416540921,0.656146169,-0.019317109,0.421780229,0.553496838,-0.021252315,0.423770607,0.471856117,-0.022966072,0.382703334,0.541290104,0.00325906,0.395716369,0.432957888,-0.012216335,0.400969714,0.362170994,-0.027475379,0.403229445,0.295809209,-0.038533185,0.34569791,0.517990112,-0.000236801,0.357800335,0.391564727,-0.014224546,0.364671171,0.306567281,-0.028636757,0.370564371,0.230354726,-0.038743213,0.30857414,0.514901817,-0.008393859,0.317941308,0.385049403,-0.02406027,0.32670787,0.301417291,-0.035790049,0.334994227,0.228154629,-0.042751487,0.267993748,0.531180382,-0.018779192,0.274353117,0.421028078,-0.034038186,0.281671584,0.346074998,-0.041556302,0.290116012,0.27713716,-0.04563541 +Left,0.297967672,0.809408426,3.80E-07,0.364517361,0.727958441,-0.0189656,0.393202662,0.609157503,-0.020977678,0.392219245,0.506773233,-0.023572123,0.391106784,0.421137869,-0.026004022,0.347980469,0.502981901,0.004513554,0.357581824,0.395468235,-0.012176439,0.362956464,0.327331364,-0.028736919,0.366033077,0.259773672,-0.040916339,0.311426967,0.485813469,0.000544715,0.320148408,0.357386351,-0.014375252,0.326102614,0.271970361,-0.029790973,0.331507593,0.190668374,-0.040931113,0.275694609,0.491547495,-0.008715349,0.280765474,0.360688239,-0.026145844,0.287149847,0.273764998,-0.039440017,0.293990135,0.194845229,-0.047461208,0.23731567,0.518205523,-0.020380311,0.239327937,0.408468217,-0.037047677,0.245462865,0.33096239,-0.045886878,0.253415048,0.258196026,-0.051222127 +Left,0.284342825,0.812552214,3.81E-07,0.346592247,0.723239899,-0.01671968,0.367297679,0.594760954,-0.016463554,0.363918602,0.493610561,-0.017091408,0.36223501,0.410753846,-0.017768886,0.319879025,0.497248828,0.006374855,0.330165774,0.385469109,-0.008852879,0.336200684,0.316492438,-0.024209281,0.339173347,0.248574525,-0.035759978,0.285903335,0.484409779,0.001908599,0.294009298,0.354805499,-0.011981261,0.299031109,0.269943863,-0.026914522,0.302808762,0.188271344,-0.037950318,0.252737105,0.494564444,-0.007663772,0.258150995,0.362266719,-0.024232967,0.263610601,0.275043786,-0.037953995,0.26862663,0.194846213,-0.046664141,0.216716379,0.525637269,-0.019438956,0.217352897,0.415106595,-0.035698947,0.222072423,0.336720407,-0.045069087,0.228553683,0.262416869,-0.051119462 +Left,0.260858029,0.824769735,3.95E-07,0.323284149,0.730819106,-0.014755996,0.343098134,0.60294807,-0.013171533,0.33829096,0.504671693,-0.012967398,0.336139768,0.423786402,-0.012811182,0.294522643,0.507868588,0.010030299,0.305016279,0.396829963,-0.004289933,0.312144786,0.328740001,-0.019172911,0.316020936,0.260365307,-0.030458666,0.260084987,0.494877577,0.004713212,0.268959343,0.36593616,-0.008369755,0.274886519,0.282176822,-0.022954995,0.279913545,0.200430691,-0.033662215,0.22661458,0.505002677,-0.005720411,0.231993303,0.373510003,-0.021860709,0.237920895,0.28714633,-0.035285342,0.24411054,0.207294673,-0.043671735,0.190600142,0.53593415,-0.018272739,0.191232562,0.424980938,-0.03379808,0.196501642,0.348090917,-0.042540126,0.20428808,0.275521755,-0.0481558 +Left,0.23034887,0.840075135,4.14E-07,0.293675989,0.739817023,-0.016160913,0.315267384,0.615895808,-0.016252147,0.31060189,0.517345428,-0.017549075,0.306311727,0.43489027,-0.018869977,0.264620751,0.520970821,0.009051531,0.275098741,0.409233987,-0.006795659,0.281312138,0.340877473,-0.023359731,0.284318954,0.272030175,-0.03552638,0.229270101,0.508140802,0.003980607,0.23688668,0.378129125,-0.009825179,0.2418603,0.292670995,-0.025511917,0.245779395,0.209514916,-0.036957782,0.194995299,0.518413842,-0.006311138,0.198499188,0.386570036,-0.022333091,0.203665674,0.29873684,-0.035693314,0.209092781,0.217304796,-0.044106528,0.158505946,0.549709022,-0.018886594,0.157998636,0.439537883,-0.033766653,0.163052082,0.362895846,-0.041630644,0.170262903,0.28943181,-0.046557188 +Left,0.18350631,0.88434124,3.05E-07,0.25955385,0.814363182,-0.02220097,0.307920158,0.699682176,-0.024828788,0.316360086,0.593219519,-0.026928956,0.319702178,0.506905973,-0.028969441,0.272205442,0.578130186,-0.000384199,0.285857975,0.471009672,-0.017002508,0.289164394,0.400805414,-0.034247834,0.290161669,0.331539392,-0.04752446,0.230413064,0.552428424,-0.003026725,0.24267973,0.426208019,-0.018133137,0.246078163,0.340750575,-0.035139281,0.248439983,0.261445373,-0.047877267,0.188924551,0.552480578,-0.010655234,0.196707994,0.422440827,-0.028249949,0.20177795,0.336844921,-0.042262554,0.207205057,0.257401258,-0.051442385,0.142925322,0.574391663,-0.020785041,0.147938758,0.46347481,-0.038153939,0.154779777,0.389947951,-0.047141902,0.163409546,0.317708731,-0.052682783 +Left,0.178483456,0.879116595,2.58E-07,0.251632482,0.818511903,-0.025165519,0.303603649,0.709927142,-0.032037109,0.318111062,0.601024985,-0.03762811,0.32259798,0.510266542,-0.043129753,0.272203028,0.577615499,-0.011580023,0.28198579,0.468170702,-0.032210797,0.27924937,0.394158512,-0.051396586,0.273616225,0.322967172,-0.065588005,0.229221225,0.548858285,-0.013995052,0.236269444,0.414642215,-0.031761087,0.233670488,0.325555682,-0.049292143,0.229505658,0.246584296,-0.062457003,0.186147183,0.546301186,-0.020945719,0.188020855,0.411068678,-0.039924785,0.187661096,0.322635025,-0.053414702,0.18718344,0.24178341,-0.062520266,0.139024913,0.567881346,-0.030516682,0.138360947,0.453648686,-0.04884221,0.139479846,0.380218714,-0.057325736,0.142013699,0.309127986,-0.062442556 +Left,0.178065777,0.864179909,2.26E-07,0.24984917,0.809656739,-0.028324014,0.303314418,0.705168784,-0.03722069,0.319748759,0.594665825,-0.044230744,0.326173842,0.500976801,-0.050928067,0.276255935,0.563635528,-0.014766623,0.284568131,0.451079667,-0.03643772,0.279264182,0.376076937,-0.056493718,0.271086723,0.304544359,-0.071079522,0.232646853,0.533407211,-0.015592428,0.235763669,0.397021234,-0.033871919,0.230612054,0.306899279,-0.052056637,0.224366575,0.228904009,-0.065733448,0.189452544,0.529730082,-0.021145709,0.188099772,0.394559056,-0.040213343,0.185731068,0.305314243,-0.054261398,0.183081627,0.225150645,-0.063783124,0.143283635,0.550439417,-0.029570675,0.141408205,0.434880674,-0.04792003,0.140417933,0.360659122,-0.056776665,0.140322983,0.289219528,-0.062071458 +Left,0.187538818,0.857043445,1.83E-07,0.262116224,0.808756113,-0.026894772,0.319681168,0.706035972,-0.034307037,0.337917179,0.592430234,-0.040139358,0.345395505,0.498352826,-0.045656219,0.297219902,0.563034356,-0.01074132,0.307377219,0.449496031,-0.031539757,0.30325821,0.373360217,-0.051257402,0.295763075,0.302967727,-0.065521158,0.255157173,0.52920711,-0.011822639,0.261666268,0.390573502,-0.029295271,0.258418739,0.299377978,-0.047484864,0.252272397,0.222010255,-0.061063785,0.212836653,0.521104217,-0.017671144,0.215542972,0.384127319,-0.036481559,0.214463875,0.294233441,-0.05064388,0.211365446,0.215534925,-0.060031176,0.166051909,0.536526799,-0.026246216,0.167206049,0.419549048,-0.044167854,0.168501884,0.346399903,-0.052752513,0.16967462,0.276765227,-0.057786532 +Left,0.208948165,0.858789206,1.80E-07,0.285297334,0.816704631,-0.026351988,0.345375359,0.717401743,-0.032727923,0.364832997,0.606488883,-0.03773481,0.374203175,0.51504308,-0.042451467,0.324635088,0.57637769,-0.009678557,0.336872101,0.461379737,-0.029738458,0.336086094,0.384913325,-0.048459806,0.332825184,0.314322114,-0.062116951,0.283331096,0.540602028,-0.011019298,0.292960674,0.403051794,-0.028916771,0.293509305,0.312446564,-0.046951801,0.291300833,0.235258192,-0.060114354,0.241863221,0.529975951,-0.017146647,0.248146608,0.393608242,-0.03658827,0.250945657,0.302362442,-0.050806917,0.251853168,0.222596884,-0.059864193,0.196054161,0.541841388,-0.025958832,0.200707614,0.424716204,-0.044698682,0.205152079,0.34995991,-0.053821258,0.209740877,0.278556287,-0.059015088 +Left,0.230450228,0.857116461,1.93E-07,0.308138907,0.817266524,-0.025041955,0.366550744,0.724183917,-0.031726621,0.385661781,0.618050754,-0.037510086,0.401034653,0.533164978,-0.042926572,0.346814305,0.583957314,-0.006334122,0.363131464,0.47261703,-0.025757136,0.364594132,0.400095254,-0.044413004,0.363362432,0.331186116,-0.058130037,0.308166236,0.547106981,-0.008318264,0.322138667,0.413965285,-0.025126539,0.325301856,0.32645303,-0.04316254,0.326057911,0.249759734,-0.05662562,0.268514633,0.534436047,-0.015169255,0.278478205,0.402002811,-0.033664718,0.283001572,0.315562129,-0.047852959,0.285707176,0.237545401,-0.057187174,0.223784432,0.543033659,-0.024644999,0.231054485,0.429946721,-0.042165603,0.236460507,0.359350145,-0.050749864,0.241538838,0.291319311,-0.055898398 +Left,0.258751839,0.854284525,2.01E-07,0.335668772,0.825630128,-0.023920543,0.396459758,0.740083635,-0.028624909,0.420484424,0.635903835,-0.032489318,0.434199363,0.548392236,-0.035717718,0.385625273,0.599265337,-0.003248039,0.405218512,0.488016903,-0.019997064,0.410336554,0.412960291,-0.036367383,0.412062287,0.34336558,-0.048612982,0.348659039,0.557926655,-0.004611233,0.366948009,0.428050697,-0.020078532,0.374307007,0.340168357,-0.036125965,0.378352761,0.265682846,-0.047679048,0.309613615,0.539025307,-0.010854594,0.325181812,0.409191966,-0.02820118,0.334825963,0.324420244,-0.041196492,0.342567891,0.250222892,-0.049255338,0.265435159,0.539760232,-0.019757492,0.279138118,0.428736895,-0.037153896,0.288452178,0.356742263,-0.045816287,0.297890574,0.288441777,-0.050528135 +Left,0.262603581,0.865193009,2.36E-07,0.340385765,0.837782979,-0.024159869,0.401501,0.754613757,-0.028596262,0.428206325,0.651510596,-0.032138713,0.446425706,0.565051734,-0.035031207,0.392048448,0.614022851,-0.000764787,0.415817976,0.50954318,-0.016926501,0.423775852,0.439585149,-0.033857327,0.430178165,0.369971871,-0.046801951,0.358016342,0.56997174,-0.002347823,0.381908745,0.444158435,-0.016357802,0.393578023,0.359951645,-0.032787614,0.403904974,0.284798712,-0.045101885,0.320725799,0.549223065,-0.009024088,0.341900736,0.421598375,-0.025496408,0.35488382,0.339401096,-0.038617875,0.367529362,0.263895273,-0.047196303,0.276730925,0.548391879,-0.018498937,0.294533879,0.440809697,-0.035098799,0.30714494,0.371667504,-0.043274362,0.321001053,0.304244906,-0.048031729 +Left,0.270185888,0.832938194,2.16E-07,0.341128409,0.811761618,-0.029788883,0.399376929,0.734337568,-0.038466748,0.42563957,0.630833864,-0.045199707,0.444820344,0.544720531,-0.051192522,0.394725919,0.587158978,-0.010653036,0.415748239,0.478341907,-0.0305859,0.420190871,0.404444247,-0.049477629,0.422370702,0.332345665,-0.063367635,0.360338151,0.544686496,-0.010096001,0.379516095,0.416577637,-0.027088253,0.387272239,0.331033736,-0.0446955,0.393798739,0.256043464,-0.057795204,0.323207885,0.526302457,-0.01472771,0.3398408,0.399386376,-0.033471644,0.349416971,0.314904034,-0.047370289,0.358253628,0.238211632,-0.056363538,0.280587256,0.528280199,-0.022515895,0.295349032,0.421732008,-0.040929604,0.303922117,0.352380306,-0.049972601,0.312500715,0.285560071,-0.055134926 +Left,0.269178897,0.902201056,2.72E-07,0.346136242,0.861605406,-0.022949131,0.400677681,0.759830356,-0.026776405,0.422032088,0.653597951,-0.030087868,0.438703537,0.569553733,-0.032977659,0.384782523,0.622947991,-0.000858972,0.406885833,0.519458771,-0.016999222,0.415897071,0.449289203,-0.033738114,0.422567755,0.380580008,-0.046816643,0.346063018,0.584846139,-0.003286471,0.365520865,0.46029073,-0.01792413,0.374914944,0.377147645,-0.034147572,0.382931411,0.3014521,-0.046362255,0.305039674,0.571259201,-0.010737814,0.32030201,0.442547798,-0.027975708,0.330215394,0.357119173,-0.041631989,0.340178102,0.278553396,-0.050750829,0.259252906,0.578825593,-0.020826686,0.269046158,0.468953818,-0.038119711,0.277384192,0.396869421,-0.046898264,0.287370712,0.327051967,-0.052377507 +Left,0.272627622,0.928739429,3.89E-07,0.346849978,0.8556422,-0.015989449,0.398700297,0.73130399,-0.018091524,0.421678126,0.629928648,-0.021014895,0.432112098,0.544400394,-0.024265092,0.362714201,0.596345067,-0.000537051,0.385036588,0.48961103,-0.01716416,0.396859348,0.42383939,-0.034676302,0.407299995,0.357344925,-0.048163317,0.319129229,0.569900393,-0.006958968,0.334215999,0.443634093,-0.020333614,0.344175994,0.362505853,-0.035615362,0.353122264,0.282838881,-0.047765616,0.274540752,0.571545362,-0.017750829,0.279356956,0.440872192,-0.032479897,0.287164092,0.358976245,-0.04451514,0.296311915,0.279749095,-0.053620748,0.226785064,0.598629475,-0.030761991,0.224598825,0.490090311,-0.04609419,0.22796464,0.418773234,-0.053267378,0.234220803,0.347199142,-0.058179829 +Left,0.281090558,0.918212235,4.39E-07,0.351714611,0.824164629,-0.016034203,0.394722313,0.696853399,-0.020552613,0.412674308,0.595479727,-0.026407283,0.421910703,0.50890708,-0.032625712,0.351570398,0.565574944,-0.00036437,0.369347215,0.456065238,-0.020862274,0.38251251,0.389975816,-0.041427288,0.395513624,0.321624458,-0.05659065,0.306830317,0.545935035,-0.008133454,0.318429112,0.416078985,-0.024349652,0.328301877,0.331181377,-0.041339137,0.337910295,0.248521656,-0.054497052,0.262876719,0.557262242,-0.020696541,0.262943596,0.423403859,-0.038267892,0.269622505,0.336191237,-0.051416293,0.278970212,0.254325747,-0.060687959,0.217664778,0.597665548,-0.035482068,0.210414663,0.487795413,-0.052641191,0.211492613,0.409910142,-0.060667999,0.215687662,0.331901759,-0.066018566 +Left,0.265735835,0.880648911,4.91E-07,0.337652683,0.790682375,-0.017650401,0.381466985,0.665099382,-0.022337958,0.397580773,0.562375247,-0.027867867,0.405506611,0.473890781,-0.033760615,0.336122304,0.536028326,-0.00415901,0.354514271,0.421599776,-0.025663264,0.369765848,0.353735745,-0.045517385,0.384414643,0.286448538,-0.059582923,0.291882902,0.514016211,-0.011127429,0.30528602,0.376335084,-0.028885249,0.317304403,0.287313968,-0.045667607,0.328739375,0.20312503,-0.058106046,0.248281062,0.523450673,-0.022922376,0.249233156,0.382639647,-0.042414594,0.257235438,0.294143051,-0.05612053,0.268644035,0.212752372,-0.065116994,0.202747524,0.560728848,-0.036905203,0.195781499,0.446089149,-0.055725772,0.197832704,0.366075337,-0.064782247,0.204069525,0.28709197,-0.070488192 +Left,0.272016674,0.841822863,4.68E-07,0.341182321,0.74744308,-0.017903,0.378733367,0.621583462,-0.023728475,0.390172005,0.520910144,-0.030490117,0.400602341,0.435882807,-0.037599858,0.327306658,0.493312001,-0.00384456,0.343015403,0.388066471,-0.026882775,0.359409302,0.327765405,-0.04803028,0.378020525,0.266265929,-0.063373946,0.284081876,0.478031665,-0.010777518,0.296780467,0.351455688,-0.030235957,0.31150791,0.270065695,-0.047274526,0.327839404,0.190306157,-0.059973143,0.243079752,0.495950371,-0.022905096,0.24026078,0.365146279,-0.044936873,0.248647749,0.281426609,-0.058941964,0.262325764,0.201070338,-0.068092428,0.202064574,0.542478085,-0.037237424,0.188837141,0.43959555,-0.058388986,0.188885391,0.364362031,-0.068693027,0.194527924,0.287545741,-0.075427115 +Left,0.275418878,0.853930593,4.35E-07,0.341366231,0.761458695,-0.017428814,0.37370488,0.62860781,-0.021505872,0.381185144,0.524868309,-0.026227543,0.389609694,0.440165401,-0.030946994,0.322282761,0.506009459,-0.001129319,0.337699652,0.399773538,-0.022688905,0.356090605,0.34235093,-0.043013271,0.376054704,0.285157055,-0.057451118,0.281974047,0.494346201,-0.007042983,0.295598686,0.369000733,-0.024337154,0.312363565,0.291327685,-0.040389221,0.330605924,0.215273976,-0.052414048,0.243572503,0.512769043,-0.018127505,0.243705928,0.386113167,-0.037894584,0.25467664,0.305340827,-0.051163513,0.270324647,0.227516592,-0.060080677,0.204598069,0.558737576,-0.031472154,0.192774087,0.459072173,-0.050871972,0.19528988,0.387329012,-0.060294159,0.203575701,0.314479172,-0.066499218 +Left,0.259180546,0.881430924,4.64E-07,0.328729212,0.791052103,-0.017560119,0.364362329,0.664458871,-0.021649031,0.372799158,0.558064103,-0.026537394,0.380603105,0.470766544,-0.031722877,0.315773576,0.538442492,0.001076718,0.33357203,0.433464617,-0.020075658,0.352764517,0.373992026,-0.040795285,0.372153968,0.313347936,-0.055422943,0.273149639,0.522468925,-0.004760009,0.28756991,0.396160305,-0.021915331,0.303723961,0.314552426,-0.038739145,0.320416093,0.235879719,-0.051179647,0.232121199,0.537463725,-0.015896318,0.232462645,0.407120943,-0.036017176,0.243492499,0.321788162,-0.050314389,0.258942693,0.24243775,-0.059407711,0.190445215,0.57958138,-0.02918444,0.180320323,0.47012642,-0.048402812,0.180828556,0.391394198,-0.057876404,0.186187863,0.313187093,-0.063941047 +Left,0.253038287,0.899539649,4.63E-07,0.324444473,0.811218381,-0.017812783,0.365018517,0.686635673,-0.021626079,0.376211882,0.581754744,-0.026221801,0.383379191,0.4941172,-0.031071085,0.31909436,0.55901289,0.000477004,0.341242492,0.454853505,-0.019960165,0.359696209,0.394224703,-0.040092424,0.378167152,0.332162023,-0.05482652,0.275889575,0.539380372,-0.005741704,0.292122841,0.412788928,-0.022484615,0.308204263,0.330558896,-0.039452303,0.323850811,0.252140582,-0.052388884,0.233026862,0.550534368,-0.01724497,0.234917238,0.415412158,-0.037488252,0.245820642,0.328510076,-0.053150635,0.259876221,0.247940481,-0.063558593,0.188796401,0.590031981,-0.030812144,0.178152442,0.480843604,-0.051085044,0.177185878,0.4020423,-0.062035911,0.179959103,0.323140174,-0.069342889 +Left,0.250269145,0.900200367,4.38E-07,0.325726181,0.82534951,-0.018320536,0.371587217,0.702703178,-0.021512274,0.387888312,0.596462965,-0.025213331,0.402943224,0.513391912,-0.029433878,0.326636165,0.570708334,-0.002203297,0.350892603,0.466198772,-0.021058135,0.367325991,0.401517153,-0.039676305,0.382976741,0.334555984,-0.053875394,0.282771587,0.545286238,-0.008058947,0.299066067,0.417721778,-0.024242155,0.313272327,0.332639247,-0.040763576,0.326527953,0.250981748,-0.053534415,0.23839657,0.550656557,-0.018849263,0.238265455,0.416175872,-0.03925946,0.247076586,0.327964216,-0.055435292,0.258401781,0.246373564,-0.066110834,0.191678584,0.58358711,-0.031606622,0.179000959,0.469523162,-0.052420393,0.175157785,0.390905172,-0.063698903,0.174893498,0.312486947,-0.071142592 +Left,0.259565979,0.929365873,4.37E-07,0.338999987,0.850997031,-0.020352708,0.387357891,0.724332333,-0.023330264,0.404749393,0.612627327,-0.02698458,0.418409258,0.521356344,-0.030293323,0.350133359,0.581237793,0.006307944,0.372482985,0.465845734,-0.010853049,0.38670069,0.394765496,-0.02957546,0.398851275,0.323524684,-0.043743737,0.305226237,0.55042547,0.001755086,0.321334928,0.412284255,-0.01268767,0.332432538,0.322126865,-0.029805625,0.342625797,0.237539172,-0.04279542,0.259646475,0.548600435,-0.008458969,0.266740829,0.404412955,-0.025967279,0.274980515,0.31131351,-0.040873062,0.283886969,0.227484524,-0.050667461,0.211002171,0.572717667,-0.021206306,0.212258905,0.448734343,-0.038776461,0.216303021,0.364429027,-0.048021432,0.22201997,0.281600028,-0.053818107 +Left,0.267553836,0.937356055,4.15E-07,0.348017901,0.856497049,-0.020342119,0.398625016,0.731206596,-0.023549361,0.415068656,0.615382373,-0.027628353,0.427147686,0.521707833,-0.031388741,0.360633314,0.585699141,0.006866731,0.382011443,0.46751067,-0.010967293,0.395064056,0.394693732,-0.030185575,0.406500578,0.322173059,-0.044676803,0.316059381,0.553924203,0.001615166,0.331527323,0.411295503,-0.013718403,0.342134774,0.319117457,-0.031581603,0.352256298,0.233157039,-0.04510057,0.27044338,0.551453888,-0.009447145,0.276737243,0.403288662,-0.027990475,0.28317219,0.307580292,-0.043526065,0.291128814,0.221862286,-0.053755023,0.220732808,0.574723244,-0.023071688,0.221521497,0.448294729,-0.041781977,0.224316478,0.361428589,-0.051742747,0.229191408,0.276502073,-0.058014095 +Left,0.265763491,0.923579574,3.93E-07,0.347723663,0.841755033,-0.020717276,0.398728013,0.716081202,-0.024137013,0.414448798,0.599726021,-0.028255314,0.424942136,0.504508257,-0.032284431,0.363310099,0.572611153,0.002735368,0.384202659,0.449163049,-0.01562552,0.393406212,0.371558517,-0.034345973,0.400322855,0.294953704,-0.048620123,0.316539109,0.540845692,-0.002678316,0.328862876,0.395248294,-0.019541126,0.336090446,0.300273359,-0.037646115,0.34310931,0.211794853,-0.051110629,0.268860966,0.538849056,-0.013575541,0.273149818,0.387374401,-0.032968774,0.279257566,0.287779629,-0.048455104,0.287388682,0.197698474,-0.05867805,0.217547521,0.561777771,-0.027014546,0.216772124,0.432347536,-0.046613347,0.220597342,0.343572408,-0.057011046,0.227799803,0.256825954,-0.063495673 +Left,0.262381375,0.916125655,4.03E-07,0.34156692,0.830783844,-0.022908114,0.390042275,0.703599334,-0.028890708,0.403012037,0.588269353,-0.035172611,0.414017975,0.493233442,-0.041359238,0.352858663,0.562195659,-0.002795887,0.368949205,0.439620376,-0.023560816,0.375591666,0.36201036,-0.043476716,0.381167799,0.286048084,-0.058424536,0.304258674,0.534026742,-0.007818472,0.314000607,0.389007568,-0.026603824,0.319156766,0.294501871,-0.045174193,0.325063944,0.207557499,-0.058909208,0.256077766,0.535783112,-0.018312449,0.256526053,0.386698902,-0.039070964,0.26046446,0.288198501,-0.054037876,0.267399132,0.199425757,-0.063861206,0.205545634,0.56326431,-0.031500284,0.201859266,0.436653376,-0.051715631,0.20446676,0.349939793,-0.061841629,0.210872725,0.265176654,-0.068109497 +Left,0.266423523,0.876911938,4.28E-07,0.3415941,0.786623657,-0.022402216,0.384671897,0.658478975,-0.0283568,0.394603103,0.543382943,-0.034513969,0.400334746,0.447878361,-0.040979095,0.337703019,0.524401367,-0.005173991,0.349152088,0.404490054,-0.026398947,0.355396748,0.328948498,-0.046066523,0.360569268,0.254208207,-0.060793441,0.28992483,0.500967503,-0.010629871,0.294369519,0.355950147,-0.02991958,0.298057437,0.261907756,-0.04817852,0.302493751,0.173970282,-0.061713468,0.243498236,0.508843422,-0.021451678,0.239519492,0.360242069,-0.043342993,0.240976095,0.261978954,-0.059288111,0.245363757,0.172673017,-0.069575563,0.194971427,0.544132948,-0.034717485,0.186988607,0.41771996,-0.056299802,0.186171219,0.330756962,-0.067588799,0.188311636,0.245340824,-0.074669868 +Left,0.262953669,0.863279998,4.29E-07,0.337512583,0.771121264,-0.024380008,0.376458734,0.642620146,-0.0312967,0.381833136,0.52760911,-0.038137123,0.38845104,0.43210578,-0.04518497,0.330488145,0.512251139,-0.005198292,0.34048748,0.394441605,-0.027638637,0.344928563,0.318228483,-0.048459522,0.348230004,0.242934465,-0.063828677,0.282559484,0.488774151,-0.009661776,0.287043095,0.34283036,-0.029580992,0.290649712,0.247728556,-0.048182361,0.295332015,0.160598427,-0.061819021,0.236361206,0.4973602,-0.019832009,0.231286824,0.347747713,-0.042442184,0.23123014,0.249374002,-0.058528528,0.23474358,0.161761582,-0.068712197,0.188423499,0.533838391,-0.032609746,0.17863813,0.408807993,-0.054303166,0.177342981,0.32168448,-0.065581813,0.179646447,0.236341119,-0.072677985 diff --git a/data/other_gesture.csv b/data/other_gesture.csv new file mode 100644 index 0000000..6a68d4a --- /dev/null +++ b/data/other_gesture.csv @@ -0,0 +1,748 @@ +handedness,0_x,0_y,0_z,1_x,1_y,1_z,2_x,2_y,2_z,3_x,3_y,3_z,4_x,4_y,4_z,5_x,5_y,5_z,6_x,6_y,6_z,7_x,7_y,7_z,8_x,8_y,8_z,9_x,9_y,9_z,10_x,10_y,10_z,11_x,11_y,11_z,12_x,12_y,12_z,13_x,13_y,13_z,14_x,14_y,14_z,15_x,15_y,15_z,16_x,16_y,16_z,17_x,17_y,17_z,18_x,18_y,18_z,19_x,19_y,19_z,20_x,20_y,20_z +Right,0.74271822,0.951669872,-3.22E-07,0.703873456,0.903940916,-0.014536909,0.67327261,0.844207585,-0.029780217,0.653685808,0.805916905,-0.046507463,0.648792446,0.76282841,-0.062058195,0.722658992,0.723704517,-0.014822674,0.709737062,0.657707691,-0.044785134,0.6824705,0.643820226,-0.065971062,0.65712899,0.648396611,-0.077113576,0.749594152,0.74256593,-0.022144994,0.730492413,0.684078872,-0.054136034,0.690936208,0.721752107,-0.066084452,0.667573333,0.762359679,-0.06762284,0.771082282,0.780255437,-0.033331659,0.752898991,0.731865406,-0.064136736,0.710947573,0.767720044,-0.067524329,0.685587645,0.803941607,-0.062474757,0.786311924,0.833391726,-0.045659114,0.766893268,0.806164861,-0.069204323,0.733184338,0.827431321,-0.071471028,0.711157501,0.851519048,-0.067495227 +Right,0.747208178,0.937961161,-3.16E-07,0.708614707,0.891739011,-0.01475658,0.678166151,0.829212666,-0.028880976,0.659611464,0.788998783,-0.044349041,0.656227827,0.748077095,-0.058543313,0.728637457,0.709217429,-0.012482841,0.718659163,0.64664501,-0.04190458,0.691442728,0.634686649,-0.06353642,0.665422916,0.63814342,-0.07515467,0.755304635,0.728665411,-0.019353919,0.740782678,0.670573831,-0.050480057,0.701463103,0.705156744,-0.06331373,0.677571714,0.742861092,-0.065506339,0.777285337,0.766482055,-0.030155048,0.7639184,0.717984736,-0.059716951,0.722583711,0.75065732,-0.063785367,0.696829915,0.784603238,-0.059295025,0.793549359,0.81954509,-0.042177375,0.776387036,0.791886926,-0.064200699,0.74318397,0.810744762,-0.066286348,0.721077681,0.832621694,-0.062333751 +Right,0.761540651,0.919691801,-2.14E-07,0.720827222,0.872689128,-0.015425593,0.691903293,0.800460279,-0.030211804,0.671245635,0.754093826,-0.045659963,0.650326729,0.711528003,-0.060167827,0.730408609,0.70459801,-0.022106338,0.723733366,0.630635381,-0.054671582,0.697947383,0.620660901,-0.07809937,0.67283684,0.625838697,-0.090646543,0.758816123,0.723277926,-0.030669449,0.753817976,0.641135156,-0.066811979,0.716522574,0.667703032,-0.082717538,0.691812456,0.706660688,-0.086330168,0.783740342,0.76028204,-0.042576317,0.782954156,0.690535188,-0.074231803,0.747006476,0.71173203,-0.08083158,0.722795367,0.739358068,-0.078151323,0.806425691,0.811327398,-0.055636574,0.806679368,0.762212992,-0.078502774,0.780875444,0.770459473,-0.082010753,0.760475993,0.787181914,-0.07972718 +Right,0.770513535,0.904923737,-1.79E-07,0.727405965,0.864357293,-0.015826624,0.695138931,0.793421268,-0.032589048,0.672953904,0.746743381,-0.05015967,0.648999095,0.707391798,-0.067341059,0.731238186,0.700189173,-0.031919014,0.723366678,0.619997084,-0.067814015,0.698163509,0.60933888,-0.092650808,0.673615158,0.615134478,-0.106146194,0.759958327,0.71768415,-0.042124923,0.754915774,0.625091791,-0.082781993,0.71874845,0.651264369,-0.100431263,0.69459331,0.691999733,-0.105124198,0.786175072,0.753110826,-0.05521632,0.785067677,0.674805522,-0.09009634,0.749135494,0.697335839,-0.098644458,0.724488676,0.728326857,-0.097176298,0.810932696,0.801764369,-0.069345921,0.813394129,0.745946884,-0.094691142,0.788425744,0.752000988,-0.100520536,0.767376304,0.76926446,-0.100116655 +Right,0.772166669,0.889239907,-2.02E-07,0.728882492,0.857307911,-0.017244022,0.696078181,0.789550126,-0.035743326,0.673444152,0.745700955,-0.054715861,0.649438739,0.708467603,-0.073480524,0.729634166,0.689988017,-0.038467731,0.719239235,0.610000849,-0.075979024,0.691288352,0.608271956,-0.100994885,0.666179061,0.622734427,-0.114453487,0.758537531,0.706739664,-0.048785124,0.751162708,0.609568238,-0.091326885,0.713168502,0.641161859,-0.109369159,0.690095425,0.685270667,-0.114241116,0.785447955,0.741087854,-0.061833207,0.78288281,0.657349467,-0.097865626,0.745775104,0.68356961,-0.107311033,0.722055972,0.717438877,-0.106701083,0.811899424,0.788431883,-0.075901978,0.814798713,0.729928076,-0.102499709,0.789840937,0.736884236,-0.109663807,0.769486547,0.754254043,-0.110459313 +Right,0.774702787,0.886488378,-2.07E-07,0.729468286,0.858273208,-0.018296637,0.693466604,0.794335842,-0.036804378,0.668706477,0.753890038,-0.055439107,0.64391607,0.71679908,-0.073340967,0.720426559,0.691496789,-0.035858717,0.707249045,0.612205625,-0.07352481,0.678789496,0.621497452,-0.099190839,0.655881047,0.648262799,-0.112438098,0.750314295,0.701466203,-0.045010578,0.741370678,0.600834191,-0.086087458,0.706535339,0.635356128,-0.103909589,0.687464237,0.684338212,-0.108716615,0.779723287,0.729601264,-0.057328753,0.778853714,0.63763541,-0.091069207,0.74596101,0.659466386,-0.100460239,0.725695133,0.692828119,-0.100366183,0.809882998,0.77179426,-0.070912078,0.817269683,0.699377179,-0.094767921,0.795840085,0.701919734,-0.101036146,0.777351618,0.720755994,-0.101706184 +Right,0.766636848,0.906296968,-1.23E-07,0.72126627,0.878983259,-0.018623283,0.684417725,0.820285797,-0.037807859,0.658408761,0.781177402,-0.05698055,0.633579612,0.741365135,-0.075108595,0.711093903,0.712837398,-0.033806574,0.69924587,0.627897441,-0.070367381,0.673332989,0.641100287,-0.095858589,0.653586447,0.678720713,-0.108644567,0.743465304,0.716653883,-0.041466922,0.741315424,0.611433208,-0.078949884,0.713073552,0.631403089,-0.096559763,0.69541961,0.681263983,-0.101721868,0.774875522,0.741914392,-0.052210722,0.779006422,0.643628061,-0.081761897,0.754370749,0.64822799,-0.09118101,0.734987617,0.676080644,-0.092384197,0.805905104,0.784756303,-0.064220436,0.822685003,0.717330456,-0.086308166,0.812497735,0.695623577,-0.093561985,0.798448682,0.692106426,-0.095196187 +Right,0.758112431,0.936934412,-8.56E-08,0.712958395,0.908118248,-0.017178657,0.675372541,0.84495163,-0.033034604,0.648302615,0.799855173,-0.049336296,0.622026622,0.760795355,-0.064393103,0.69964391,0.74072367,-0.020851819,0.686884105,0.66085434,-0.052280467,0.666046262,0.671670914,-0.075832784,0.652049959,0.710443854,-0.087750971,0.733656764,0.737321258,-0.027795983,0.732558787,0.643080413,-0.059236728,0.710752726,0.652858675,-0.077201918,0.696468234,0.700596154,-0.083383657,0.76673317,0.75661993,-0.038230244,0.773456097,0.666306496,-0.063662693,0.755997777,0.657308221,-0.074642695,0.740541458,0.678184867,-0.077753589,0.797991097,0.79480505,-0.049893524,0.817818761,0.7388255,-0.069481395,0.816689491,0.712475538,-0.077283561,0.811671972,0.70437938,-0.079681523 +Right,0.766215622,0.952542484,-1.04E-08,0.718680918,0.923361361,-0.016012961,0.679793358,0.861077785,-0.029941762,0.653708279,0.815277815,-0.044489618,0.629402339,0.772846758,-0.057970911,0.704689324,0.754460931,-0.01385059,0.688924193,0.683596075,-0.041943677,0.673592031,0.693483293,-0.064077683,0.663332522,0.732806146,-0.075009398,0.739737689,0.746992111,-0.019782461,0.740008175,0.663261712,-0.042757325,0.730057538,0.652940631,-0.058051948,0.721835196,0.677926958,-0.064549863,0.773442388,0.763234735,-0.029576689,0.777501464,0.685341656,-0.050562367,0.768599033,0.662460685,-0.05945665,0.758056998,0.662855983,-0.062267795,0.804583132,0.797687948,-0.040594175,0.820533812,0.745589316,-0.057744198,0.825517058,0.718714952,-0.062619276,0.82642436,0.702834368,-0.063136049 +Right,0.76500839,0.962951601,1.18E-09,0.718725979,0.933526397,-0.016326426,0.68078953,0.870241284,-0.030064456,0.65523994,0.824709654,-0.044271395,0.632895112,0.780954897,-0.057285879,0.705157161,0.762397826,-0.013705277,0.692169785,0.691323698,-0.041745301,0.676466227,0.6975196,-0.063918337,0.665773988,0.73652786,-0.074801847,0.740815163,0.755846441,-0.019694787,0.741933763,0.667900205,-0.044784665,0.730885506,0.659671426,-0.061816189,0.722264767,0.693701744,-0.068562225,0.774769604,0.773658812,-0.029461944,0.780470908,0.693042576,-0.052188568,0.770450413,0.672119021,-0.063450739,0.759272635,0.680438638,-0.067125648,0.806320667,0.810405016,-0.040293101,0.823202252,0.756830215,-0.059250169,0.826477408,0.730337441,-0.065965019,0.825520575,0.719653726,-0.067331679 +Right,0.756176591,0.969679892,-7.16E-08,0.713193417,0.927766681,-0.016509278,0.682422161,0.849137068,-0.030827662,0.661368489,0.792997062,-0.045584243,0.642150819,0.742212296,-0.059439179,0.718719065,0.753218412,-0.015785038,0.712859869,0.681046247,-0.046363011,0.691651464,0.672704875,-0.071420424,0.670269012,0.69227773,-0.084684923,0.751695275,0.75769031,-0.022698138,0.761182725,0.659194469,-0.052758437,0.741614997,0.649580777,-0.072269842,0.720769286,0.683350503,-0.079889148,0.781986833,0.785162151,-0.03319579,0.795183182,0.699144542,-0.057131294,0.778750837,0.677599013,-0.069187276,0.758952022,0.687694192,-0.072768837,0.809973776,0.83113575,-0.045044374,0.825822413,0.767543197,-0.062142905,0.819443226,0.737178147,-0.068870403,0.805791855,0.728296518,-0.070693478 +Right,0.751380444,0.972973526,-1.60E-07,0.711423755,0.920903265,-0.016722318,0.684361875,0.839656711,-0.032813847,0.664902568,0.783124149,-0.049551733,0.646679878,0.727284491,-0.065512575,0.726421595,0.749939561,-0.02009986,0.723482311,0.671477437,-0.053536389,0.697708607,0.667952478,-0.079684831,0.672924936,0.685673535,-0.09356039,0.755802333,0.762669504,-0.027642956,0.765125334,0.660076082,-0.061168272,0.737685204,0.654635549,-0.081735924,0.711861193,0.680799663,-0.089918017,0.782458782,0.794968307,-0.038584199,0.797562301,0.70438844,-0.064336643,0.776186526,0.68524009,-0.076020837,0.753332317,0.689969897,-0.079352036,0.807453632,0.844137013,-0.050894145,0.823767006,0.779636562,-0.068117097,0.815524697,0.748557568,-0.074600257,0.80079174,0.73312813,-0.076547608 +Right,0.754107714,0.967785597,-1.85E-07,0.714285731,0.910334766,-0.014145304,0.688963711,0.822115362,-0.027519332,0.672956526,0.760042191,-0.041609533,0.658839583,0.699767351,-0.054947723,0.733397424,0.745433807,-0.017124545,0.726533949,0.674148202,-0.048538055,0.699361801,0.668500364,-0.07317064,0.671741664,0.678988755,-0.086406067,0.761922598,0.759637713,-0.024942257,0.767363727,0.665211082,-0.055457797,0.739666283,0.657320559,-0.073712334,0.713115394,0.674782574,-0.081276864,0.787642121,0.79378444,-0.03601921,0.801815391,0.708319843,-0.061081111,0.778169692,0.688497841,-0.071069457,0.753196299,0.686968088,-0.073529929,0.811168432,0.844054818,-0.0482051,0.827383935,0.782428443,-0.065981127,0.818631411,0.752713084,-0.071816325,0.803089857,0.736081839,-0.073247433 +Right,0.764384985,0.961463571,-2.32E-07,0.721317351,0.902123809,-0.012292892,0.697000384,0.805718184,-0.023657579,0.68293643,0.739797294,-0.036392592,0.666062474,0.681031227,-0.048515335,0.738983512,0.736957431,-0.012091562,0.732158244,0.662279308,-0.042413171,0.705028951,0.651979327,-0.067257874,0.676865935,0.658138275,-0.081063598,0.766223431,0.750768781,-0.020526681,0.765670836,0.658050895,-0.052060768,0.734526694,0.653170347,-0.072974518,0.706331015,0.671980262,-0.082331039,0.791634321,0.78193599,-0.032138839,0.802290976,0.692109883,-0.057902347,0.775288999,0.676284909,-0.070417278,0.747997642,0.681244195,-0.074344337,0.815998375,0.828881383,-0.044741787,0.828868389,0.762228668,-0.063108593,0.815530598,0.734729707,-0.070850544,0.796788037,0.723423183,-0.07365045 +Right,0.767417729,0.94506681,-2.73E-07,0.72385186,0.885131419,-0.012131818,0.698204398,0.78784287,-0.023781354,0.681925833,0.722656727,-0.037102066,0.662374377,0.666545987,-0.050030693,0.7411654,0.723722875,-0.011954395,0.733063638,0.649055898,-0.044503711,0.704462647,0.640087962,-0.070978165,0.675302625,0.647580266,-0.085804306,0.766398489,0.73595196,-0.021147924,0.76249069,0.642488241,-0.055995762,0.728839159,0.641580522,-0.079073466,0.699308336,0.661391079,-0.089301698,0.790399849,0.763161421,-0.033574861,0.791089177,0.678533375,-0.060894698,0.76135093,0.665532529,-0.074491121,0.733711123,0.671281934,-0.0787668,0.814507008,0.805366635,-0.047098886,0.81550765,0.737775445,-0.065604843,0.795841634,0.710507512,-0.073879741,0.774091125,0.697492838,-0.077146225 +Right,0.767664313,0.923473299,-3.17E-07,0.724037409,0.863984048,-0.008753177,0.696674347,0.768764019,-0.019393338,0.678808331,0.704232335,-0.032303661,0.658346295,0.649650455,-0.04468305,0.742081821,0.701997757,-0.008852144,0.730338395,0.629502118,-0.03970667,0.699890733,0.623866796,-0.063723795,0.671164274,0.633386791,-0.077118933,0.765632093,0.711297631,-0.019020509,0.748924077,0.626124263,-0.051929176,0.710571885,0.631353855,-0.070875756,0.68065083,0.650600612,-0.078524582,0.788629174,0.737246513,-0.032562535,0.773360074,0.660615742,-0.060605627,0.736822605,0.657046616,-0.070872128,0.706896186,0.662673235,-0.072659932,0.811769783,0.777244925,-0.046871774,0.803248405,0.715360343,-0.067137457,0.779087842,0.697236419,-0.074221916,0.756168902,0.686804771,-0.076205082 +Right,0.76893425,0.905561864,-3.32E-07,0.724765837,0.847525239,-0.00714813,0.695476055,0.753378808,-0.016412279,0.677136838,0.689007759,-0.028521335,0.656527579,0.636898577,-0.039679613,0.73766017,0.682570457,-0.005047947,0.724515498,0.605935156,-0.035309121,0.694305182,0.601147711,-0.058645587,0.667010665,0.61368376,-0.071377665,0.761121333,0.691384435,-0.015704907,0.743540943,0.606071234,-0.047550183,0.705691338,0.611773968,-0.065480411,0.677708924,0.633253455,-0.07236398,0.784140825,0.715745866,-0.02995489,0.765815496,0.642675877,-0.057534285,0.72739017,0.645126522,-0.067137517,0.6975348,0.656731665,-0.068128802,0.807155848,0.754569829,-0.045000426,0.793989956,0.696459949,-0.065194316,0.767408967,0.681901574,-0.072207794,0.74358964,0.674514771,-0.073877431 +Right,0.764740109,0.902275085,-3.61E-07,0.720547259,0.834733546,-0.007501759,0.695018888,0.739163578,-0.017744001,0.677514076,0.675467372,-0.03074046,0.658130407,0.621503234,-0.042919125,0.742115498,0.664531589,-0.00763248,0.726034164,0.595063984,-0.039986715,0.694837213,0.590922713,-0.065412499,0.666318893,0.602781117,-0.079411291,0.765293181,0.6809389,-0.019267384,0.74730134,0.602388382,-0.052819166,0.70855397,0.608720481,-0.072505318,0.679795325,0.630971014,-0.080794923,0.786547899,0.71271646,-0.034426667,0.768655777,0.64972806,-0.062765807,0.729928493,0.648609877,-0.073804446,0.700020134,0.657608688,-0.076154277,0.805138826,0.758767009,-0.050496541,0.789110422,0.707225621,-0.071161918,0.762109458,0.694314301,-0.078650311,0.739174128,0.688633919,-0.080744833 +Right,0.765258431,0.890202999,-3.49E-07,0.721665502,0.820186138,-0.007597303,0.697757363,0.724462032,-0.018238269,0.681073427,0.659703374,-0.031455535,0.662039578,0.605239809,-0.044193678,0.744700611,0.651923001,-0.010794694,0.72751677,0.583629906,-0.044015475,0.695841312,0.575869799,-0.069954157,0.66526562,0.582892656,-0.084510975,0.767590523,0.670479655,-0.023163117,0.74945122,0.590525389,-0.057388198,0.709537745,0.590899169,-0.077603564,0.678745568,0.606897295,-0.086827941,0.788246155,0.705221236,-0.038913377,0.772518516,0.637586415,-0.069312714,0.732549012,0.633297324,-0.08155328,0.700938106,0.639393568,-0.084833197,0.805057049,0.754383087,-0.055334885,0.79185158,0.701871812,-0.078836814,0.764852703,0.69055891,-0.087546498,0.741053462,0.686945379,-0.090436108 +Right,0.759861887,0.880606115,-3.10E-07,0.719505548,0.813309848,-0.009240808,0.698127866,0.714526296,-0.020648954,0.682038546,0.647827804,-0.034144137,0.661762476,0.594959855,-0.047411676,0.74334681,0.649706841,-0.01674311,0.729946911,0.576186359,-0.051660564,0.697863936,0.565759182,-0.077987492,0.665170372,0.571276426,-0.09251228,0.765415967,0.671056986,-0.029003548,0.754411936,0.582966566,-0.065104268,0.713470995,0.579051256,-0.085387543,0.68061167,0.592314422,-0.094160587,0.785500765,0.70832932,-0.044488989,0.778239071,0.633011997,-0.076444112,0.738775313,0.625748515,-0.088551268,0.707321048,0.62975651,-0.091325365,0.801664352,0.758956313,-0.060665909,0.796065152,0.703102887,-0.085193031,0.770344973,0.688864827,-0.09381929,0.747223258,0.683205903,-0.096541919 +Right,0.755306304,0.877470076,-2.46E-07,0.716461718,0.823814034,-0.011734067,0.693713307,0.727032423,-0.024072861,0.678146005,0.658853889,-0.037600629,0.656307101,0.606219947,-0.051308855,0.733719885,0.666254997,-0.024996258,0.723859012,0.585074842,-0.05879328,0.69346422,0.573658943,-0.083194345,0.66425693,0.579440296,-0.096605703,0.75661546,0.685290158,-0.036066644,0.752890587,0.585481048,-0.070153221,0.714581132,0.578597724,-0.088121116,0.685370326,0.590931892,-0.095931806,0.778514743,0.722432852,-0.049875434,0.784868717,0.630528092,-0.080432065,0.748147905,0.621685505,-0.090857588,0.719248056,0.627362132,-0.093013555,0.798516214,0.77310282,-0.064324662,0.806310594,0.705937326,-0.088421986,0.782763898,0.690646768,-0.095798321,0.75983882,0.689460874,-0.097864047 +Right,0.759193063,0.865938663,-1.52E-07,0.713861763,0.825420141,-0.014236796,0.684722364,0.737003267,-0.029556124,0.663071156,0.674473822,-0.045056775,0.636483192,0.625685036,-0.061144743,0.719045401,0.666755378,-0.034536414,0.705942392,0.589438438,-0.069931671,0.677448571,0.584719658,-0.095280461,0.649518967,0.596445978,-0.109527178,0.746403337,0.679481983,-0.045510259,0.746202826,0.578709126,-0.081627436,0.712905586,0.576641679,-0.100582294,0.685172677,0.596143425,-0.10903351,0.772141457,0.714530945,-0.058864042,0.782658756,0.620281756,-0.089616567,0.752175212,0.610254467,-0.101992056,0.724671245,0.616638243,-0.106613629,0.795798659,0.767376304,-0.072778381,0.812493801,0.705110848,-0.097281612,0.797863364,0.685689569,-0.106753074,0.778288543,0.677874207,-0.111255191 +Right,0.763872683,0.85610497,-1.10E-07,0.716670334,0.821716428,-0.015656529,0.683669448,0.737612307,-0.031595547,0.659517586,0.676614165,-0.047193497,0.631123364,0.628202081,-0.063364774,0.71671325,0.65894115,-0.034725893,0.700061023,0.589505732,-0.069674067,0.674052596,0.584114671,-0.095256798,0.647143304,0.595975041,-0.10996744,0.745972753,0.667865276,-0.045135859,0.743155718,0.5727458,-0.080054268,0.714909911,0.569783628,-0.099827595,0.689297974,0.590084672,-0.109557353,0.774026394,0.701040745,-0.058059577,0.781699717,0.614774525,-0.088528365,0.756542146,0.600693941,-0.102614976,0.730959594,0.603881717,-0.109026849,0.799710095,0.753392577,-0.071511358,0.816791415,0.693257749,-0.095975347,0.805878162,0.671506643,-0.106258959,0.78681916,0.661381185,-0.111836098 +Right,0.768223584,0.852626324,-6.25E-08,0.718449295,0.819283247,-0.014867573,0.68110317,0.741057813,-0.029511571,0.652860582,0.684253097,-0.043937363,0.622534633,0.640024185,-0.058400251,0.71190685,0.655805469,-0.028005054,0.695924699,0.589278519,-0.060260646,0.671722889,0.584730983,-0.084642611,0.647413135,0.600347161,-0.098790094,0.743882477,0.66092515,-0.038252838,0.742705047,0.57043612,-0.070014007,0.718403995,0.567054629,-0.088208139,0.696398199,0.593453765,-0.096744448,0.774972141,0.693282425,-0.05132556,0.784274936,0.609968185,-0.0795784,0.765473247,0.593321264,-0.092450254,0.744692564,0.597120225,-0.098235406,0.803456366,0.746014476,-0.064974539,0.822329521,0.693499744,-0.088717163,0.816213846,0.67055577,-0.098217271,0.80151844,0.659603894,-0.102945589 +Right,0.770791352,0.849284828,-2.76E-08,0.721583247,0.815064251,-0.016292894,0.682610452,0.743125141,-0.031706277,0.653107464,0.689434409,-0.046921417,0.623177528,0.645596802,-0.062040653,0.712168813,0.650882542,-0.026723608,0.699328065,0.582978725,-0.059096582,0.676624,0.578903079,-0.084056556,0.654343724,0.598163009,-0.098383009,0.745133102,0.652453721,-0.036164034,0.745550692,0.558985829,-0.067822061,0.723339379,0.554681242,-0.086867549,0.703445375,0.585363626,-0.095784202,0.777090788,0.682385385,-0.048690192,0.787316024,0.59745121,-0.077018708,0.770282865,0.579649031,-0.091155499,0.751473784,0.586165726,-0.097662799,0.80605185,0.734329879,-0.061951645,0.826778531,0.681370139,-0.085946761,0.824940503,0.656337917,-0.096345678,0.815161228,0.646030724,-0.101562232 +Right,0.771899045,0.861518979,3.10E-08,0.722155035,0.831121683,-0.018023126,0.682412624,0.763313413,-0.033669241,0.652320921,0.711079359,-0.048783977,0.621766746,0.669491708,-0.063623823,0.709367096,0.663645446,-0.02449199,0.697232008,0.595476806,-0.055885416,0.677499473,0.587735772,-0.080421053,0.658363461,0.606101751,-0.094239734,0.743861079,0.659067035,-0.032458425,0.745755672,0.568722188,-0.06218154,0.727531254,0.558164775,-0.08083725,0.710059881,0.585760891,-0.08935485,0.77727139,0.68411994,-0.04384036,0.787075102,0.601351142,-0.070513956,0.771596372,0.579025209,-0.083841033,0.75403899,0.580766141,-0.089761391,0.806930482,0.732311964,-0.05623072,0.826305687,0.68346858,-0.079031952,0.828009486,0.654744804,-0.088840187,0.824152589,0.637087524,-0.093304791 +Right,0.766754866,0.881559432,-3.59E-09,0.718409717,0.845174313,-0.017355919,0.681061447,0.771568775,-0.03269406,0.65351969,0.716122806,-0.048077948,0.62480849,0.67200619,-0.063262194,0.710680783,0.677770913,-0.024999959,0.699944496,0.605559349,-0.057809055,0.6796785,0.597037435,-0.08328139,0.660654128,0.616242886,-0.097470954,0.744735003,0.676821291,-0.033628188,0.747773409,0.5826267,-0.065420702,0.727985859,0.572545767,-0.085299417,0.709551692,0.603529692,-0.094358183,0.777124643,0.704074681,-0.045657616,0.788230121,0.619454026,-0.073722832,0.771596909,0.59764123,-0.088341817,0.752808213,0.603799224,-0.094813637,0.806160748,0.753897965,-0.058653858,0.828025937,0.699623346,-0.082084812,0.827347398,0.671034813,-0.092678994,0.819460332,0.65930897,-0.097757235 +Right,0.759290993,0.897877216,-1.31E-07,0.712999284,0.852006435,-0.016826119,0.682462931,0.766438425,-0.031786375,0.661953211,0.705519438,-0.047209974,0.638647437,0.65286684,-0.06209074,0.721002698,0.677878857,-0.022075586,0.714002728,0.602660537,-0.055657513,0.689453661,0.59416616,-0.082080029,0.664395809,0.60696733,-0.096547082,0.750411689,0.687722325,-0.03028282,0.753972471,0.590834916,-0.063413464,0.724205732,0.586735487,-0.083441004,0.698450327,0.61025244,-0.092337467,0.77835691,0.719180226,-0.041992106,0.790867746,0.629147887,-0.069956064,0.762845397,0.61752224,-0.08197479,0.738175273,0.628773868,-0.085469507,0.804919839,0.768537879,-0.055011369,0.818101227,0.695338845,-0.075221784,0.800456285,0.674541771,-0.082303032,0.779873908,0.674199164,-0.084457703 +Right,0.755741537,0.922241211,-2.87E-07,0.712838054,0.865743279,-0.012961613,0.683914602,0.774013758,-0.026643759,0.665929794,0.710454047,-0.041944586,0.647739053,0.652883232,-0.05604424,0.727664173,0.690543771,-0.014659983,0.722269416,0.605787873,-0.04795336,0.692216158,0.605158508,-0.07281588,0.665776491,0.621877432,-0.086119004,0.754047751,0.702290058,-0.024045251,0.752385259,0.598992705,-0.057363093,0.716453314,0.601315379,-0.075819425,0.690077603,0.62385112,-0.083083384,0.778372407,0.731778681,-0.03713847,0.781065166,0.637433589,-0.064366214,0.746292889,0.63231951,-0.073707439,0.719203293,0.642424226,-0.075112276,0.802012861,0.775946856,-0.051479846,0.799188316,0.705507994,-0.0708896,0.774029076,0.684809089,-0.07709749,0.751099348,0.676102757,-0.07847549 +Right,0.76006031,0.890055418,-3.68E-07,0.721831083,0.821507394,-0.007251672,0.700282216,0.723444521,-0.016021976,0.686300755,0.660294116,-0.027742291,0.6731233,0.603762627,-0.038311362,0.748581886,0.647538483,-0.004624876,0.74099803,0.569884062,-0.034294959,0.70903945,0.563686967,-0.057144351,0.68050909,0.574028611,-0.069647513,0.772747159,0.664338589,-0.015937561,0.763314128,0.572033465,-0.046288665,0.721129417,0.574837446,-0.063087881,0.691610694,0.596202314,-0.069587268,0.794535875,0.69812721,-0.030961914,0.786852002,0.618519008,-0.058721974,0.742941141,0.617817581,-0.068117596,0.711995959,0.630848289,-0.069216967,0.813284636,0.745561302,-0.046786927,0.803921342,0.684303164,-0.068346694,0.77011323,0.677435517,-0.074904561,0.743097126,0.682343125,-0.075997859 +Right,0.76591295,0.876817048,-4.88E-07,0.725116432,0.792162418,-0.006055636,0.707773387,0.693853796,-0.015318372,0.696913719,0.629686117,-0.027851678,0.684601188,0.578222334,-0.039677411,0.776327372,0.604410052,-0.005981412,0.751459002,0.548578918,-0.039005823,0.714242995,0.549185038,-0.065241963,0.683690906,0.565647125,-0.080187827,0.798231542,0.626768231,-0.019268796,0.770662665,0.559782803,-0.052586455,0.724107027,0.566297412,-0.072407022,0.693183959,0.588346839,-0.081638031,0.812779129,0.669157624,-0.036311809,0.788966119,0.610874355,-0.06928499,0.740320921,0.616749585,-0.082130432,0.707868993,0.63270247,-0.085202172,0.818544745,0.727327585,-0.053844161,0.798187375,0.682149053,-0.08176101,0.760171533,0.678719282,-0.091544777,0.730111718,0.68334192,-0.09404102 +Right,0.777381241,0.860581219,-4.98E-07,0.730841279,0.758713424,-0.014565685,0.721567214,0.668168604,-0.028390246,0.71788007,0.606649756,-0.041576885,0.712884188,0.559940577,-0.05507233,0.809978127,0.596448839,-0.033705659,0.763174057,0.535424113,-0.067160636,0.719329715,0.530511618,-0.090850286,0.683383346,0.54167372,-0.104009375,0.821399868,0.633167267,-0.041534238,0.772227585,0.554704726,-0.073559798,0.719618678,0.55089426,-0.090390444,0.683712482,0.565783441,-0.099658541,0.819964826,0.68329972,-0.051618911,0.774147272,0.617229879,-0.084890626,0.721399784,0.610195816,-0.097068593,0.686972797,0.61725539,-0.101080187,0.805951238,0.740878165,-0.061988868,0.765029073,0.691651225,-0.091083236,0.724324048,0.677634299,-0.101075828,0.694594681,0.671697915,-0.104259528 +Right,0.777625978,0.852186203,-4.96E-07,0.732270122,0.750338674,-0.014827029,0.724662721,0.659265578,-0.028000316,0.721936822,0.598368227,-0.040476095,0.716132343,0.552838385,-0.0537664,0.815611899,0.59511447,-0.033768933,0.767859638,0.533011317,-0.067131534,0.723273516,0.529198408,-0.091066152,0.68827939,0.540691376,-0.104468912,0.825915396,0.634494364,-0.041259352,0.777326941,0.556841791,-0.073428005,0.723892868,0.551516831,-0.090668425,0.687306821,0.564601898,-0.100111201,0.82205373,0.685798943,-0.050996095,0.776359618,0.620844662,-0.085007392,0.722822905,0.611457169,-0.098149158,0.687826455,0.616203427,-0.102503434,0.805702388,0.742542088,-0.060878497,0.763154805,0.695531368,-0.091127157,0.723564625,0.681103468,-0.101987898,0.695154786,0.674105465,-0.105433203 +Right,0.78003329,0.851257443,-4.95E-07,0.732677042,0.744316876,-0.014996083,0.725395203,0.653815925,-0.02950222,0.721057773,0.592377603,-0.04297578,0.71306622,0.547581077,-0.057481483,0.81910789,0.588918209,-0.039661981,0.765886962,0.523708403,-0.073363975,0.719867468,0.519599795,-0.096526965,0.684176862,0.530674994,-0.109437004,0.82776475,0.631828487,-0.04741304,0.774250865,0.554152071,-0.080472022,0.71988678,0.548431575,-0.097234048,0.681946158,0.560057461,-0.106753692,0.821133435,0.68644321,-0.05687578,0.772242427,0.619678617,-0.091821454,0.718786299,0.610027492,-0.104755908,0.682605982,0.61362648,-0.109366126,0.801671088,0.744604766,-0.06631285,0.757592976,0.698652267,-0.09720055,0.717490911,0.684586227,-0.108135611,0.687476873,0.676926076,-0.11200425 +Right,0.788274944,0.863687038,-4.87E-07,0.73714304,0.750735819,-0.014923321,0.728623748,0.661907077,-0.032374997,0.722021461,0.600738227,-0.048356947,0.711836636,0.55680114,-0.065702982,0.823793173,0.602665603,-0.052112572,0.768154621,0.536164165,-0.086557947,0.719101727,0.527166247,-0.108840428,0.681206107,0.533979595,-0.121426784,0.828074813,0.651094317,-0.059961572,0.770157754,0.576012969,-0.093077488,0.713390529,0.564549088,-0.108693294,0.674438894,0.572173417,-0.119120926,0.817746103,0.709765196,-0.068416797,0.765109837,0.641403854,-0.102342978,0.710356891,0.62679702,-0.114035688,0.673757553,0.63027674,-0.119315773,0.796663046,0.769159496,-0.076724276,0.752630711,0.714830041,-0.106008895,0.711206853,0.696905613,-0.11593762,0.680276811,0.690259457,-0.120362587 +Right,0.7903952,0.870012224,-4.77E-07,0.74070698,0.755145907,-0.012196788,0.73281014,0.664173067,-0.027139869,0.726562262,0.60050267,-0.041255791,0.716772735,0.554220319,-0.056577191,0.822853208,0.607193053,-0.045645259,0.771785557,0.543322563,-0.0780145,0.725970447,0.53034097,-0.099137031,0.688096404,0.531695724,-0.111207999,0.827241004,0.655866206,-0.054199062,0.769260347,0.585011959,-0.085897394,0.713510275,0.570959866,-0.101216264,0.674164176,0.573655605,-0.111555964,0.817309022,0.714816391,-0.063404128,0.762372375,0.649431467,-0.096635342,0.708451927,0.635386288,-0.108327582,0.671540082,0.637102962,-0.113519207,0.796904027,0.774867594,-0.072335646,0.751917005,0.723041773,-0.101319812,0.711177468,0.7052809,-0.111380547,0.680112064,0.698293805,-0.115823433 +Right,0.769160688,0.901705265,-5.17E-07,0.723101795,0.81070888,-0.012355337,0.707546055,0.727060974,-0.025090154,0.693321764,0.668853879,-0.037827518,0.680035591,0.624778867,-0.050545733,0.787252188,0.640138566,-0.027876902,0.743404925,0.588599622,-0.057479642,0.702021897,0.58923918,-0.077751629,0.670309544,0.603959262,-0.088224448,0.801355958,0.67626965,-0.034771267,0.749009132,0.627923906,-0.062284611,0.69668597,0.635939181,-0.074732512,0.662643969,0.656493425,-0.080871753,0.802868664,0.72747612,-0.043768615,0.754465699,0.687976956,-0.071863689,0.701821148,0.694795907,-0.078667887,0.6680094,0.711647332,-0.079212762,0.793435216,0.787165523,-0.053347465,0.752228439,0.757071078,-0.077822253,0.711347938,0.758290648,-0.083609194,0.681126237,0.765948892,-0.083386153 +Right,0.76812911,0.94437778,-5.51E-07,0.723637164,0.844525933,-0.010250928,0.711302042,0.755342007,-0.020894118,0.702645719,0.691987395,-0.031079799,0.69349122,0.641647339,-0.041247685,0.788743913,0.683810532,-0.031008767,0.73950243,0.631292999,-0.057695948,0.696861267,0.632680178,-0.073777087,0.665038288,0.647253036,-0.081490293,0.799675822,0.726175249,-0.037253726,0.738948762,0.679314971,-0.062302101,0.689001024,0.686814547,-0.072187372,0.657668233,0.705575168,-0.077454075,0.796916664,0.779001951,-0.044742912,0.738020897,0.742564738,-0.070930637,0.689876676,0.751288831,-0.076458007,0.659853876,0.767593265,-0.076832287,0.784524322,0.837490916,-0.052389771,0.736326873,0.809700489,-0.075005576,0.699596465,0.811487734,-0.080031529,0.673109353,0.817370057,-0.079835914 +Right,0.782872856,0.93017602,-4.51E-07,0.755283356,0.825999677,-0.013135217,0.742900372,0.728821814,-0.02730057,0.726737916,0.657301545,-0.039242096,0.710128903,0.600545883,-0.051797461,0.808644831,0.688405335,-0.050090075,0.754147887,0.636457384,-0.076268233,0.70900315,0.633844137,-0.087528132,0.677831292,0.640902936,-0.093122728,0.81211102,0.741588712,-0.055236433,0.744286716,0.690082014,-0.080124244,0.694676995,0.685322165,-0.086376168,0.663650393,0.692689717,-0.091918014,0.801649868,0.799933314,-0.060397398,0.734758914,0.752807498,-0.087165408,0.68759203,0.750580072,-0.090163246,0.659101486,0.759046972,-0.091102928,0.782162189,0.856577873,-0.065292537,0.727283955,0.81862855,-0.090541229,0.692306757,0.813097358,-0.096605219,0.668657243,0.812601149,-0.098660901 +Right,0.794751942,0.903002739,-3.82E-07,0.775731146,0.796183884,-0.013850963,0.762178779,0.697578311,-0.031111453,0.743134379,0.625704706,-0.045404002,0.728745699,0.57359612,-0.060534604,0.828591108,0.676796973,-0.062114622,0.768638194,0.616209626,-0.087336935,0.722342491,0.610266089,-0.094739363,0.693362713,0.617973864,-0.098240457,0.825932145,0.734351277,-0.067672446,0.753364921,0.667358339,-0.092059255,0.70376271,0.655918777,-0.094698749,0.675645471,0.658651471,-0.098581217,0.809507966,0.79327333,-0.072346635,0.738396585,0.72913307,-0.09762089,0.693087518,0.719926,-0.095527291,0.668268085,0.725988507,-0.093913205,0.785041451,0.846915185,-0.07678397,0.72744441,0.794227302,-0.102083124,0.694769681,0.783430874,-0.105979256,0.675075531,0.782315016,-0.106784485 +Right,0.797323942,0.889715314,-3.89E-07,0.789210796,0.783732653,-0.010488269,0.776068628,0.685558379,-0.027599914,0.753261924,0.613919139,-0.042163249,0.739700258,0.559253037,-0.057652839,0.834787369,0.670936644,-0.062481038,0.776171565,0.602813005,-0.085593477,0.731288195,0.590725422,-0.090477034,0.700499177,0.593154669,-0.092407554,0.828585625,0.728194118,-0.069721222,0.753855586,0.653208494,-0.092383809,0.707966506,0.643815398,-0.092856117,0.681693733,0.647386789,-0.095211856,0.809455037,0.785326183,-0.075412616,0.737644494,0.710364997,-0.098013297,0.696563482,0.701913297,-0.093117014,0.674328387,0.707962334,-0.090053342,0.7831828,0.836232781,-0.080565043,0.725343466,0.774197638,-0.10344974,0.694145977,0.760687709,-0.105088353,0.675409734,0.75721699,-0.104420871 +Right,0.80719614,0.876945257,-3.09E-07,0.813601792,0.7803514,-0.010901507,0.800353348,0.679104865,-0.028112736,0.775905788,0.602085114,-0.042491037,0.762190998,0.544663906,-0.058097992,0.842996776,0.676015496,-0.062593468,0.789184451,0.590920329,-0.086895354,0.745056689,0.56610018,-0.093183085,0.713913023,0.561120689,-0.095495433,0.829929769,0.732503057,-0.068939336,0.7594437,0.638814211,-0.092420496,0.714461148,0.613287151,-0.094186284,0.689078987,0.606599391,-0.096731789,0.805659413,0.785435438,-0.073838763,0.737506747,0.695918739,-0.095843121,0.698225975,0.670971811,-0.092815176,0.6774683,0.664754391,-0.090559706,0.775450826,0.829452872,-0.078088358,0.720335841,0.756647348,-0.099093772,0.691597104,0.73343879,-0.101096943,0.674591541,0.722691238,-0.10075061 +Right,0.810893357,0.849204302,-2.13E-07,0.827910006,0.768208444,-0.009663035,0.821434438,0.667827845,-0.025694102,0.804907799,0.586101949,-0.038975868,0.793617308,0.520256341,-0.054485116,0.846473694,0.665998161,-0.061313465,0.800538838,0.570110083,-0.089891464,0.760163844,0.532821715,-0.103069007,0.728944123,0.516564548,-0.109097414,0.826353371,0.719139814,-0.067942597,0.766278148,0.616348565,-0.093074873,0.72444272,0.580167353,-0.097353362,0.697930038,0.568491817,-0.100485347,0.796168864,0.767633498,-0.073390044,0.737714469,0.672287643,-0.095674157,0.702858508,0.637715876,-0.093266234,0.683243871,0.619754612,-0.090392478,0.761932373,0.807027936,-0.078111477,0.714927077,0.730927527,-0.097868405,0.690897584,0.702802956,-0.098390274,0.67596221,0.685483634,-0.096391775 +Right,0.80439049,0.83322233,-1.54E-07,0.830914736,0.758344054,-0.012919553,0.835615575,0.654961228,-0.029004557,0.823505461,0.56837827,-0.0409058,0.817270637,0.501434803,-0.054565948,0.849660277,0.655550897,-0.066603802,0.812550306,0.547901332,-0.095588215,0.774710953,0.502577066,-0.108039357,0.744938791,0.480778039,-0.112874031,0.823266625,0.701865256,-0.071145691,0.771872699,0.588472784,-0.096174754,0.733632147,0.543237031,-0.099817395,0.709468901,0.526613116,-0.102022983,0.788880527,0.740815282,-0.074617058,0.738724589,0.63354969,-0.097226627,0.707461953,0.593773782,-0.096019484,0.689224005,0.573266506,-0.093451142,0.752344608,0.772706985,-0.077463306,0.711210489,0.685993612,-0.096664816,0.690533221,0.65654397,-0.097288683,0.676268101,0.63980478,-0.095202945 +Right,0.797821939,0.838366866,-1.46E-07,0.828972518,0.76315558,-0.009799161,0.838820934,0.658738792,-0.024641385,0.832902789,0.571839631,-0.03602948,0.83472389,0.504812241,-0.049147334,0.84630686,0.658316135,-0.063097104,0.817830622,0.546770155,-0.092480741,0.783284664,0.497266054,-0.105275489,0.754192829,0.473789781,-0.109680355,0.816318929,0.698979497,-0.068208113,0.771596909,0.57972008,-0.093106255,0.736023605,0.530820251,-0.095901623,0.71192205,0.513997316,-0.096733175,0.780324936,0.734207749,-0.072094411,0.733418286,0.623832047,-0.093422756,0.70674932,0.580976367,-0.090638824,0.690905333,0.561450005,-0.086376838,0.74350673,0.764060616,-0.07521069,0.704972088,0.672426462,-0.09191712,0.687007546,0.638734281,-0.090796635,0.675572634,0.620910585,-0.087234974 +Right,0.784578204,0.841607869,-9.72E-08,0.820744395,0.772415519,-0.007547514,0.835711896,0.668001652,-0.021399135,0.836259484,0.577548683,-0.032719713,0.853532791,0.51947999,-0.046322457,0.840132773,0.663465619,-0.052320026,0.818250179,0.553864956,-0.078147531,0.789913774,0.496516198,-0.090869971,0.762791932,0.462348402,-0.096869484,0.806217253,0.694936335,-0.058534686,0.766507506,0.569487035,-0.081624679,0.73412919,0.520000041,-0.087410159,0.710221589,0.496431142,-0.090785675,0.767722249,0.723587155,-0.063318491,0.728432477,0.610576987,-0.08234629,0.703000247,0.56194526,-0.082328424,0.684677839,0.53234756,-0.081140399,0.728821576,0.748356521,-0.067139469,0.695037127,0.657859325,-0.081504658,0.676969349,0.622629642,-0.081067339,0.663345039,0.595949411,-0.079094358 +Right,0.770639598,0.836197734,-5.71E-08,0.812489629,0.767790556,-0.00395529,0.834942341,0.666100383,-0.016087307,0.845267415,0.575879335,-0.026158126,0.866083264,0.518443823,-0.03855437,0.833508611,0.65370369,-0.051592313,0.817280233,0.533827662,-0.076375172,0.790884614,0.472258031,-0.086461246,0.765639484,0.440319359,-0.0894728,0.797707498,0.676449358,-0.057331771,0.764929533,0.545684576,-0.078645043,0.736097157,0.490649164,-0.079837136,0.714653134,0.473222286,-0.078974277,0.757997811,0.698133051,-0.061487459,0.723596156,0.578525364,-0.078815304,0.702340722,0.527858555,-0.075879969,0.688028514,0.507991612,-0.07178998,0.718874753,0.719015241,-0.064400874,0.689270079,0.623665035,-0.077492282,0.675069511,0.591323137,-0.075615786,0.666416824,0.575266719,-0.071654633 +Right,0.765763283,0.835527658,-6.14E-08,0.810763717,0.764831066,-6.24E-05,0.839097142,0.668043852,-0.009416582,0.853480458,0.581865907,-0.017389106,0.8744362,0.526315689,-0.02691376,0.833026052,0.648372591,-0.047412209,0.82404685,0.521118701,-0.070340283,0.799785495,0.457528204,-0.076245412,0.776562452,0.427193522,-0.075120218,0.79730618,0.665555954,-0.053883646,0.771134496,0.522731066,-0.075468004,0.742365777,0.466387391,-0.07183437,0.721085012,0.455752969,-0.06504827,0.756704032,0.682939649,-0.058515858,0.727503359,0.551984191,-0.075451888,0.70651269,0.503460288,-0.066122174,0.693369746,0.492603481,-0.055159383,0.716295183,0.701946795,-0.061870333,0.689897835,0.59675175,-0.07298357,0.676406384,0.562692821,-0.066519544,0.669436514,0.553253233,-0.057405926 +Right,0.7624107,0.84636271,-9.92E-08,0.808686554,0.779018164,-0.00072869,0.837288439,0.682207406,-0.010526435,0.851625085,0.594365537,-0.01837985,0.873431623,0.539352655,-0.027632628,0.835832477,0.665412843,-0.049722537,0.826933086,0.537716508,-0.073531248,0.802987516,0.470810652,-0.079938203,0.77996999,0.435604572,-0.079426385,0.799559355,0.680779696,-0.056124754,0.775036752,0.535092473,-0.079412736,0.745032191,0.475523114,-0.076823875,0.722417772,0.459650218,-0.070906579,0.758627415,0.693885744,-0.060644597,0.730950534,0.560747504,-0.079863831,0.709488809,0.509856284,-0.072443515,0.695518017,0.494428694,-0.062724791,0.717939436,0.70847553,-0.063638121,0.691683412,0.602617443,-0.076234058,0.678516388,0.569172144,-0.070970096,0.671867728,0.558137774,-0.062953532 +Right,0.774348259,0.864129186,-2.49E-07,0.814613402,0.789166451,-0.003243015,0.836193442,0.69035989,-0.016455989,0.841599584,0.599870265,-0.028483726,0.85449779,0.53574419,-0.042296682,0.851608396,0.680768371,-0.051304922,0.829613924,0.55079788,-0.077926092,0.798129082,0.494132757,-0.088625506,0.771100938,0.467321128,-0.09202984,0.821961761,0.707674682,-0.059801571,0.789834619,0.568791866,-0.084532201,0.753883302,0.512154639,-0.087696247,0.7271896,0.491413742,-0.088325195,0.784032881,0.728462577,-0.06679038,0.749760211,0.599903166,-0.087283127,0.719930649,0.553246677,-0.084082693,0.699701965,0.533489406,-0.079953127,0.74296397,0.744856179,-0.072730407,0.712282419,0.646597147,-0.088967241,0.691861093,0.612591207,-0.088065699,0.677025735,0.591374457,-0.084832035 +Right,0.775864542,0.856240511,-3.05E-07,0.809934258,0.776961386,-0.004661652,0.826500475,0.677075744,-0.018621961,0.825876415,0.584079325,-0.031225041,0.83265692,0.516517937,-0.045282908,0.847292066,0.664832234,-0.054843802,0.820047021,0.535149097,-0.082400985,0.782712936,0.487941504,-0.092594288,0.753665447,0.470227242,-0.095606819,0.822118163,0.695288181,-0.063175753,0.784558177,0.556432724,-0.089177549,0.743875146,0.507290363,-0.091907509,0.715309083,0.49736464,-0.092262179,0.787886918,0.721483588,-0.070021249,0.745694995,0.595649302,-0.091768213,0.711227179,0.557905197,-0.088917196,0.68930012,0.549668014,-0.085043505,0.750126362,0.743802607,-0.076040231,0.711464524,0.65035373,-0.094823815,0.688947797,0.622665584,-0.095908448,0.673457682,0.610688031,-0.093849674 +Right,0.783652902,0.868728757,-3.72E-07,0.807188869,0.778256774,-0.00330309,0.815014362,0.675696671,-0.016678002,0.80908221,0.585718811,-0.029143726,0.806158841,0.520032167,-0.043230269,0.84304285,0.66460216,-0.053230502,0.805250525,0.540974259,-0.078296535,0.76490587,0.500124693,-0.086825266,0.735652208,0.48641175,-0.089819968,0.824857175,0.702116907,-0.062395371,0.776760876,0.572526038,-0.085261405,0.732144952,0.530729949,-0.087612249,0.703010321,0.521078348,-0.089766368,0.795163989,0.737441659,-0.069921851,0.746275365,0.617654204,-0.089877948,0.706399083,0.5849967,-0.088123158,0.680854619,0.579404771,-0.086911075,0.759780049,0.768537045,-0.076560825,0.715705633,0.682888448,-0.095178343,0.688208818,0.654555857,-0.09801928,0.66871959,0.641150355,-0.098647252 +Right,0.792810738,0.85701263,-3.41E-07,0.813017011,0.766247153,-0.004795915,0.821649909,0.664705336,-0.019506887,0.814876437,0.577418208,-0.032878183,0.809640408,0.514121175,-0.047953039,0.852564633,0.65771997,-0.056474987,0.813219011,0.541158319,-0.082754195,0.773492396,0.500669956,-0.092472292,0.743747652,0.485022843,-0.0964339,0.83555758,0.698016286,-0.065259106,0.787131667,0.5765028,-0.090736739,0.742652535,0.537821293,-0.094460107,0.713306367,0.529874086,-0.097144336,0.807165027,0.735578477,-0.072258614,0.757276773,0.622407973,-0.094748847,0.71616745,0.593392253,-0.093858972,0.690103233,0.590192318,-0.09250249,0.773365676,0.767050087,-0.07833416,0.729354262,0.685000777,-0.099180505,0.700622678,0.659062445,-0.102760568,0.680543602,0.647223771,-0.103436932 +Right,0.791442752,0.851160288,-4.17E-07,0.793418944,0.745508432,-0.002461983,0.796708465,0.655484498,-0.015666628,0.789666653,0.586832345,-0.028772039,0.777650714,0.54034698,-0.043419588,0.851016879,0.63851285,-0.047975283,0.814488053,0.52661705,-0.075713128,0.770675957,0.495984972,-0.087876178,0.738185406,0.490728736,-0.092726,0.842171848,0.678348839,-0.057855394,0.798906088,0.560896039,-0.083349623,0.750120461,0.526752591,-0.087893844,0.717433512,0.523233712,-0.090147674,0.818953753,0.716805518,-0.066588283,0.770618558,0.606912494,-0.090037659,0.724944651,0.582662165,-0.091085725,0.695553958,0.585728765,-0.090156324,0.788863003,0.751525998,-0.074418917,0.741851807,0.676447809,-0.095473088,0.709329128,0.653219759,-0.099505298,0.686236858,0.645943761,-0.099959001 +Right,0.780716479,0.863047421,-4.72E-07,0.741846204,0.733905733,-0.006331231,0.747042894,0.647352636,-0.017754672,0.754852057,0.585439265,-0.029444033,0.757309675,0.533940852,-0.041878413,0.840382576,0.628777862,-0.033722296,0.810575068,0.533447325,-0.062108997,0.768979311,0.501736939,-0.079688415,0.734610021,0.492103815,-0.088542379,0.841211796,0.667459369,-0.042112526,0.804107487,0.561256766,-0.069511011,0.752866507,0.535057127,-0.080388188,0.718024552,0.537685335,-0.086235084,0.827051997,0.706586003,-0.051232435,0.785319328,0.610705912,-0.078631371,0.736611068,0.59124583,-0.085899122,0.70491457,0.596874535,-0.08787901,0.80246383,0.743807852,-0.060093716,0.758997917,0.677083433,-0.083458908,0.722048044,0.658070564,-0.091181561,0.695655346,0.654407382,-0.093871459 +Right,0.778244972,0.866148889,-4.85E-07,0.737969339,0.748566091,-0.008929119,0.734383285,0.652659595,-0.019967742,0.734407544,0.588409245,-0.032127932,0.734633267,0.538053572,-0.044147614,0.820899904,0.606121302,-0.022555726,0.793394148,0.522761166,-0.054186963,0.750900328,0.500676632,-0.076450735,0.716153085,0.501687109,-0.087785527,0.830783606,0.641342521,-0.031750418,0.800869226,0.5458709,-0.061742064,0.747326732,0.530791223,-0.075341687,0.713509798,0.543731451,-0.081086248,0.827312529,0.684098125,-0.043355227,0.794326782,0.602881968,-0.072441868,0.74004072,0.592469752,-0.079149768,0.707680166,0.605084956,-0.078834005,0.811771035,0.731594086,-0.055511076,0.779659212,0.669649899,-0.078126602,0.740206897,0.659088314,-0.082380667,0.713340163,0.666559219,-0.081317216 +Right,0.778649688,0.850773096,-4.85E-07,0.737785399,0.748583615,-0.004696223,0.727487087,0.650518,-0.013195222,0.720775008,0.588054657,-0.024488926,0.714136422,0.537639081,-0.035517786,0.80355835,0.580091,-0.007225119,0.778624356,0.512298703,-0.037850395,0.739157915,0.497337699,-0.061483674,0.706920922,0.503165483,-0.073986508,0.820509255,0.608412743,-0.019417426,0.794381917,0.526346147,-0.049483415,0.74320811,0.52278024,-0.064786397,0.709913433,0.544067621,-0.07068529,0.827302217,0.650638044,-0.034865074,0.798296571,0.58281821,-0.063523225,0.747422695,0.580931306,-0.071922585,0.716672301,0.596824169,-0.072426081,0.823571324,0.703938067,-0.050839528,0.79335475,0.65210408,-0.073440179,0.753711104,0.651055932,-0.078435197,0.726755738,0.664135396,-0.077898584 +Right,0.764236808,0.851585746,-3.47E-07,0.72881484,0.779214501,-0.011228194,0.712001204,0.683849037,-0.023603683,0.699679732,0.619200528,-0.038914651,0.689279556,0.561649621,-0.053039774,0.760074914,0.612007558,-0.009930477,0.758986235,0.528952897,-0.044025362,0.726324141,0.521336436,-0.068615906,0.698368192,0.530973911,-0.081240498,0.781742692,0.634566784,-0.021457979,0.792158484,0.531636834,-0.058274552,0.748295128,0.538645804,-0.076252483,0.719457626,0.567365885,-0.081099518,0.799935341,0.671599507,-0.037032016,0.807381809,0.582607031,-0.069792725,0.761972249,0.591336787,-0.07885953,0.733861506,0.615098655,-0.077721782,0.816348076,0.721125245,-0.053694207,0.818231404,0.654350698,-0.076452032,0.783564627,0.656266809,-0.081167728,0.757546127,0.676482916,-0.080262266 +Right,0.758250952,0.856379151,-2.67E-07,0.718686581,0.79817462,-0.017014885,0.694706142,0.706735432,-0.032603398,0.679513335,0.644837797,-0.049260627,0.665537238,0.588279724,-0.06502001,0.741734266,0.627961695,-0.023075497,0.742902815,0.538147807,-0.05926878,0.712602019,0.53527987,-0.085583903,0.686555266,0.553351402,-0.099080279,0.767773449,0.649350166,-0.031961624,0.780606866,0.540729046,-0.070789374,0.74146086,0.55144459,-0.091582537,0.715035737,0.58289665,-0.098644987,0.790837288,0.684654713,-0.044414122,0.806990564,0.587700963,-0.076400213,0.76851058,0.596258402,-0.087330908,0.743226647,0.622329056,-0.08812353,0.813469291,0.73252511,-0.058205899,0.824522436,0.658072531,-0.079589941,0.796604753,0.657639027,-0.08474087,0.773998618,0.676133394,-0.084718682 +Right,0.768601,0.85169369,-2.17E-07,0.723620772,0.806230247,-0.02002096,0.691331267,0.721403956,-0.035421457,0.673048735,0.661328554,-0.051329192,0.65692842,0.605332792,-0.065924898,0.732028306,0.620691538,-0.021617267,0.731487274,0.534166336,-0.056340769,0.704182327,0.533752203,-0.081989519,0.681496739,0.556279778,-0.094825782,0.762698829,0.628800929,-0.028453961,0.773850143,0.515981674,-0.064357251,0.740251482,0.530432224,-0.083588719,0.718467474,0.572753847,-0.089763157,0.7908355,0.655843079,-0.039479773,0.807723105,0.557832778,-0.069987848,0.775547743,0.567236185,-0.081702329,0.754379511,0.600132167,-0.083240189,0.818800151,0.699291945,-0.052200098,0.836378753,0.621757269,-0.073270671,0.814737201,0.623852134,-0.079188153,0.794849813,0.650647819,-0.079691321 +Right,0.774287879,0.840078056,-2.75E-08,0.72689116,0.807019711,-0.022605935,0.691058755,0.7384938,-0.039401226,0.669850647,0.684851885,-0.056091644,0.653212368,0.629242897,-0.0711753,0.723031878,0.621065855,-0.021150138,0.716059089,0.553589046,-0.0543052,0.698277295,0.542186737,-0.080996878,0.683460414,0.565661073,-0.094498098,0.7590608,0.614562035,-0.026041957,0.768943667,0.514672041,-0.05913097,0.750908196,0.505541801,-0.079686545,0.73579967,0.551696777,-0.087087721,0.792474091,0.635658264,-0.035214074,0.80530262,0.54544872,-0.06395486,0.786681533,0.535155952,-0.076955974,0.770178914,0.56896168,-0.079222776,0.82371676,0.67946887,-0.046281435,0.842683554,0.604275584,-0.068988398,0.832283854,0.586594462,-0.076745033,0.817256689,0.608579695,-0.077240974 +Right,0.783494711,0.833352208,8.67E-08,0.735057056,0.819041729,-0.02486526,0.694433808,0.769406796,-0.04292275,0.670979261,0.721605361,-0.06016684,0.653571606,0.667079329,-0.075053737,0.716869414,0.636711836,-0.024895228,0.702007771,0.566836298,-0.058771349,0.694440484,0.560300648,-0.084545903,0.691072822,0.60362184,-0.096398205,0.755464494,0.618950486,-0.028035192,0.756024957,0.524008512,-0.059883248,0.752426267,0.50975281,-0.08110223,0.750392139,0.560431004,-0.089328274,0.791056156,0.630366266,-0.035474863,0.797503293,0.548182368,-0.064201422,0.794753194,0.526210666,-0.077596948,0.789004982,0.554091752,-0.080496706,0.823711872,0.662422001,-0.04471758,0.841975749,0.598197222,-0.071220316,0.846928954,0.57637471,-0.081443869,0.845511258,0.591659307,-0.082712576 +Right,0.795063555,0.816065133,2.65E-08,0.750002086,0.816205978,-0.026498454,0.707902133,0.783027768,-0.047068115,0.679717779,0.748739004,-0.066841967,0.657316089,0.706886828,-0.084991723,0.716635346,0.659090877,-0.03507369,0.691159606,0.587694168,-0.072284088,0.68939358,0.597537041,-0.099609978,0.699412763,0.651863635,-0.112523399,0.754545987,0.632352114,-0.039274525,0.746388555,0.528992772,-0.077075183,0.746008813,0.535996318,-0.100392073,0.752780437,0.601583123,-0.109106235,0.791976035,0.634896815,-0.047193307,0.792341769,0.544001818,-0.080462903,0.793543935,0.538921952,-0.096215971,0.795731068,0.580569923,-0.100385338,0.826916814,0.658214867,-0.056584105,0.842478514,0.594084203,-0.086273722,0.852343202,0.574543834,-0.098303623,0.859487534,0.589808583,-0.101163022 +Right,0.817419469,0.784282506,-3.39E-08,0.776105821,0.80044961,-0.036181126,0.732572556,0.781276166,-0.062934428,0.699576795,0.762625277,-0.087215133,0.669186711,0.735987842,-0.110901974,0.733660281,0.665970027,-0.055520657,0.697611392,0.608259261,-0.09707962,0.698378503,0.633324742,-0.126422137,0.715051949,0.68869549,-0.1415914,0.769283354,0.632167161,-0.05744236,0.746898532,0.538570702,-0.102220967,0.749179363,0.557190895,-0.130014047,0.763323903,0.617633641,-0.142960086,0.806647718,0.622808993,-0.062967986,0.795927346,0.536141634,-0.104489863,0.800182283,0.539802909,-0.12849775,0.810322523,0.582674325,-0.139031753,0.843506277,0.633260965,-0.070122793,0.85108602,0.567732811,-0.107649051,0.865500689,0.55385083,-0.126797214,0.881997049,0.573792279,-0.136016116 +Right,0.828535914,0.768979073,-3.71E-08,0.790591598,0.792153358,-0.040270053,0.746321917,0.774081051,-0.069339484,0.713602364,0.762385726,-0.095151581,0.684619844,0.744650543,-0.12022426,0.739384055,0.664830744,-0.063615136,0.702737331,0.613141954,-0.108814411,0.706734419,0.642536819,-0.139635786,0.727432489,0.699277699,-0.15604116,0.774576962,0.625153005,-0.064849399,0.749386907,0.533881724,-0.115709856,0.754105628,0.56194061,-0.146782726,0.770576775,0.622546256,-0.161892384,0.810900748,0.609072506,-0.069754325,0.796661973,0.523930907,-0.11590004,0.802538931,0.535564542,-0.142372429,0.813858569,0.579507828,-0.154775202,0.846672535,0.612677276,-0.076402701,0.854675472,0.54710108,-0.117047325,0.869796872,0.538093388,-0.138694376,0.885755002,0.559473157,-0.150450364 +Right,0.831822217,0.790832162,-3.09E-08,0.792099178,0.813530624,-0.037374131,0.750090122,0.801736832,-0.06541831,0.720674694,0.784485817,-0.090774126,0.691723883,0.758107066,-0.114856854,0.742716312,0.680291414,-0.055350091,0.707001805,0.62368232,-0.096236676,0.711495459,0.651946068,-0.123852409,0.731975138,0.704498827,-0.137583211,0.776520014,0.637961268,-0.05585127,0.749715269,0.548318863,-0.097626626,0.755081654,0.567599118,-0.122224063,0.772592485,0.619530857,-0.133447811,0.812405586,0.620797873,-0.060282469,0.796147883,0.538436353,-0.099775083,0.803237259,0.54389888,-0.121061437,0.817073166,0.582328677,-0.130059958,0.84887892,0.623544931,-0.066570833,0.854282618,0.555740893,-0.101984039,0.868910015,0.545121431,-0.119079679,0.885922313,0.565467954,-0.126955986 +Right,0.836135447,0.817779064,-2.11E-08,0.798513055,0.840817928,-0.043200761,0.756156385,0.820987821,-0.073288955,0.725219965,0.803932726,-0.099930093,0.701778948,0.771963835,-0.125056803,0.75249815,0.698003888,-0.061284214,0.71609503,0.644235849,-0.106507748,0.723068416,0.672488272,-0.13637194,0.74429363,0.726908624,-0.151604682,0.786873639,0.656662703,-0.059881665,0.76111424,0.561695158,-0.108931169,0.772204041,0.585610211,-0.137634784,0.790696621,0.640746713,-0.150414988,0.822300315,0.640253901,-0.062687203,0.808030427,0.551159978,-0.107734449,0.824181259,0.563872993,-0.129786268,0.841146708,0.605711937,-0.137908369,0.857189178,0.644084156,-0.067798458,0.86749649,0.583960652,-0.108784586,0.887772441,0.577787101,-0.129123881,0.905593514,0.597819567,-0.138349488 +Right,0.843725026,0.834667861,-4.26E-08,0.80502212,0.847521961,-0.03758309,0.761712372,0.82501018,-0.065788992,0.728753924,0.803408563,-0.091472618,0.712539911,0.760251343,-0.115784213,0.762292206,0.696167648,-0.05212054,0.729298174,0.63166815,-0.097558357,0.737096667,0.65816927,-0.129812419,0.757795811,0.714071572,-0.146341905,0.797966242,0.65775454,-0.052562345,0.779836297,0.552436709,-0.100604817,0.789510965,0.576167703,-0.129086867,0.805375993,0.636619806,-0.140905082,0.834210098,0.644890726,-0.057397626,0.827484429,0.555882156,-0.099108487,0.839082003,0.557412028,-0.121995017,0.851420701,0.591469646,-0.130889773,0.868459404,0.653073251,-0.064267196,0.881995797,0.593579113,-0.09841942,0.900421619,0.576432884,-0.116403498,0.917305052,0.584782839,-0.124874234 +Right,0.850128293,0.835526466,-2.33E-08,0.813448668,0.854134798,-0.041068479,0.771731436,0.836047471,-0.071657248,0.740713537,0.815058231,-0.099298656,0.722703934,0.769432306,-0.125849769,0.772726476,0.706908047,-0.058320526,0.737334788,0.642365813,-0.1059376,0.747471273,0.670077741,-0.139909774,0.769856393,0.722994924,-0.15764308,0.806151152,0.663565636,-0.057660323,0.78263545,0.561234415,-0.106871627,0.7961604,0.580257952,-0.137578994,0.815356672,0.633466125,-0.151791573,0.84097755,0.645385444,-0.06146764,0.832562625,0.551866889,-0.104960158,0.849444985,0.54879874,-0.130952239,0.867152095,0.580318749,-0.142318636,0.874059439,0.649116695,-0.067436151,0.888183355,0.587631822,-0.103709906,0.908471107,0.569538713,-0.124454327,0.927218676,0.577486992,-0.135150999 +Right,0.851782322,0.837415934,-4.80E-08,0.815908611,0.855566502,-0.037843216,0.773313582,0.843209565,-0.066977486,0.741393805,0.825366676,-0.093711093,0.726323009,0.781586647,-0.118930511,0.770722926,0.71124965,-0.052456837,0.735531747,0.652439535,-0.098169141,0.748639822,0.68575877,-0.130026177,0.773299813,0.739027739,-0.146057367,0.802444041,0.66349858,-0.05238454,0.777313471,0.567539811,-0.099616453,0.793796301,0.587942004,-0.126584396,0.816656828,0.640544772,-0.13761425,0.836773336,0.640845835,-0.056854945,0.825557351,0.55031985,-0.098374791,0.843335271,0.548718393,-0.120228224,0.861551285,0.576970816,-0.128451541,0.86978209,0.639888883,-0.063449502,0.882509768,0.57980001,-0.097762428,0.903750718,0.563094676,-0.115301527,0.923218131,0.569012225,-0.123172052 +Right,0.853234589,0.833529115,-9.62E-08,0.817132711,0.857787967,-0.033529859,0.773562908,0.852284968,-0.059691191,0.740988374,0.839035273,-0.08409439,0.723139465,0.799486756,-0.106735051,0.761710048,0.718546212,-0.045882538,0.72405082,0.665542603,-0.089943804,0.737514198,0.697423339,-0.120216064,0.763548017,0.746054053,-0.134926811,0.790443301,0.665806293,-0.047007609,0.760452926,0.573706448,-0.092502512,0.777020991,0.59583801,-0.116709344,0.801291525,0.64590317,-0.125053972,0.823743284,0.637215257,-0.052599952,0.807688177,0.549310803,-0.093442976,0.825658977,0.551140785,-0.112411924,0.845034719,0.577569306,-0.117793955,0.857739866,0.629701018,-0.060026675,0.867242694,0.570363879,-0.094562806,0.887816191,0.554857016,-0.11050868,0.908073425,0.560023069,-0.116208099 +Right,0.849015057,0.832248032,-9.03E-08,0.811576903,0.854189932,-0.027573826,0.773585677,0.854262829,-0.050047752,0.745390654,0.849204898,-0.072309732,0.723377764,0.822587729,-0.092273042,0.747701585,0.722003996,-0.029651998,0.713841558,0.689731956,-0.069175005,0.730206132,0.729784012,-0.097577557,0.758480847,0.776176035,-0.110933408,0.773422599,0.666124761,-0.031532533,0.741160393,0.592463255,-0.069652438,0.753193021,0.60631299,-0.090732947,0.776681781,0.647512794,-0.097929917,0.805658758,0.635818303,-0.038592353,0.7900033,0.55652523,-0.071714692,0.798970759,0.549097598,-0.088705756,0.811767161,0.572175503,-0.093764767,0.841417432,0.626004994,-0.047565676,0.851268828,0.56202805,-0.073636338,0.859340549,0.53556025,-0.087495528,0.866520762,0.532486677,-0.092854515 +Right,0.857749701,0.822491288,-2.38E-07,0.823506355,0.848912597,-0.024426389,0.782126129,0.861315727,-0.044972926,0.748649836,0.879056036,-0.065982945,0.725528479,0.852787614,-0.084849924,0.747960567,0.736785948,-0.026848713,0.708774328,0.730409086,-0.065655969,0.723440051,0.778070867,-0.09425611,0.753772378,0.826785982,-0.108196795,0.767545342,0.68108058,-0.029894741,0.726649284,0.626100898,-0.069812402,0.738648713,0.65499711,-0.089006416,0.765614569,0.706155121,-0.093355305,0.796939075,0.645445406,-0.037656657,0.7695297,0.57047683,-0.072561301,0.778834522,0.575190842,-0.084310628,0.795669317,0.604821086,-0.084254041,0.831991136,0.630211413,-0.047050383,0.83487308,0.566343069,-0.076525964,0.837738574,0.546444416,-0.087912455,0.84334749,0.55052501,-0.089743599 +Right,0.846019149,0.788448274,-3.13E-07,0.815523088,0.841535449,-0.037920233,0.768145561,0.882881284,-0.069021337,0.739073217,0.920951486,-0.097089067,0.726643682,0.888432086,-0.124459699,0.727944791,0.7701689,-0.066560447,0.694511235,0.778706789,-0.110276453,0.718702137,0.836052477,-0.138583541,0.748426795,0.886597335,-0.155347362,0.750470638,0.708962858,-0.069843121,0.707061946,0.66612339,-0.124058172,0.731012881,0.72849828,-0.151788086,0.759314358,0.790633142,-0.16380623,0.781301141,0.661434531,-0.075957902,0.742907763,0.612309933,-0.125386626,0.756347775,0.653530121,-0.146206886,0.773121476,0.703401804,-0.154172644,0.817025721,0.63004005,-0.083157845,0.807163954,0.577381432,-0.124423318,0.81735605,0.585310578,-0.141550377,0.826078415,0.60796243,-0.15030691 +Right,0.838968754,0.800913692,-3.94E-07,0.801670313,0.828833044,-0.034079,0.751857102,0.836561739,-0.062818669,0.719926894,0.862346411,-0.090084903,0.702763021,0.842109799,-0.116274685,0.723367035,0.712435365,-0.048907194,0.687976837,0.706812561,-0.092114709,0.701084375,0.773929477,-0.122920766,0.725196719,0.835118413,-0.140090212,0.752554297,0.662796676,-0.052481785,0.712269008,0.618320584,-0.101042673,0.729158401,0.697838187,-0.124639101,0.753371179,0.766723275,-0.13315253,0.787934065,0.627390206,-0.059911944,0.753788054,0.56210053,-0.101970695,0.764447868,0.620240331,-0.112389632,0.782658517,0.675085902,-0.112442866,0.828617334,0.60474962,-0.069229312,0.813753784,0.55370158,-0.100293383,0.818851769,0.586330354,-0.105861895,0.827639878,0.62098664,-0.105429947 +Right,0.833667696,0.742378831,-3.79E-07,0.78243953,0.74990499,-0.027397668,0.735545874,0.733858466,-0.057322945,0.700348675,0.727403939,-0.086233214,0.672888875,0.738054216,-0.116336919,0.735046208,0.574107528,-0.066835746,0.696883261,0.599970222,-0.115081191,0.68878293,0.671322465,-0.147280604,0.688962817,0.736938179,-0.166660964,0.771314502,0.558093667,-0.07803002,0.738685787,0.583063662,-0.131455123,0.726289749,0.668503046,-0.159524798,0.723366916,0.738578677,-0.17474471,0.812277317,0.569329202,-0.091753572,0.785959661,0.578276098,-0.14202626,0.767671764,0.646600246,-0.165946007,0.755133271,0.710551083,-0.178672239,0.852815926,0.60323894,-0.106070131,0.8607862,0.62506038,-0.151122406,0.856953025,0.666274726,-0.172453344,0.848764479,0.699997842,-0.184782922 +Right,0.858022094,0.759002805,-3.76E-07,0.804037511,0.723848045,-0.02474805,0.765757263,0.687644958,-0.050496046,0.729361713,0.661863923,-0.073918909,0.692243695,0.651697695,-0.097749926,0.7906304,0.533011854,-0.056772981,0.747541666,0.563726842,-0.097777419,0.7240358,0.614255607,-0.12611261,0.707287371,0.661026835,-0.143155754,0.830249429,0.544749856,-0.065446213,0.797137141,0.583100557,-0.10668759,0.771684945,0.634019077,-0.126395717,0.756118953,0.676009655,-0.13809225,0.868109822,0.5892694,-0.076501869,0.854471803,0.613696516,-0.118018053,0.829026759,0.647298932,-0.130450189,0.809536815,0.677538812,-0.135702625,0.899546742,0.653478384,-0.088435315,0.896383643,0.681788683,-0.125274464,0.880765796,0.710348964,-0.13551639,0.866189718,0.726965666,-0.13925764 +Right,0.87709403,0.81629914,-5.55E-07,0.820249557,0.74043715,-0.029031891,0.782066226,0.671077847,-0.059908278,0.74601078,0.627920926,-0.087256633,0.708870232,0.602027416,-0.114673428,0.852044404,0.530483127,-0.076685511,0.791617215,0.527375102,-0.122640632,0.745237112,0.568156362,-0.148910865,0.707018971,0.61070317,-0.163953677,0.884266853,0.577825606,-0.087214999,0.832968235,0.573099971,-0.136642694,0.775839686,0.625779629,-0.154465556,0.735700727,0.672502756,-0.163575158,0.907851696,0.653846443,-0.099519067,0.872379124,0.645311952,-0.148336858,0.817831159,0.685409129,-0.156618431,0.779113472,0.721337676,-0.157486826,0.921747088,0.745448291,-0.11283268,0.898194849,0.745129824,-0.156010658,0.854182661,0.77402097,-0.163853034,0.819005013,0.794949055,-0.164683759 +Right,0.84248662,0.860552073,-4.57E-07,0.797134519,0.783093095,-0.025860289,0.761726856,0.706262052,-0.052369926,0.734344482,0.658432364,-0.078201212,0.725034237,0.635198534,-0.102894545,0.836451173,0.586445153,-0.047479425,0.804814935,0.520795107,-0.089332886,0.762592018,0.526508808,-0.114389338,0.727760077,0.548286855,-0.127101123,0.867817998,0.632579803,-0.055096325,0.835122406,0.583453178,-0.098657683,0.777595341,0.629932046,-0.110251434,0.74574548,0.671447575,-0.110965289,0.888802826,0.702002585,-0.066491716,0.861607313,0.66589582,-0.108184323,0.805019975,0.704455972,-0.106719211,0.771265924,0.742861032,-0.097166672,0.899327278,0.784187675,-0.079718173,0.876418054,0.75982219,-0.111885324,0.831152737,0.778266072,-0.110432491,0.800007641,0.799297154,-0.102553859 +Right,0.80817914,0.887243807,-5.13E-07,0.764877915,0.812511384,-0.014535135,0.735977769,0.718080938,-0.029981013,0.715449452,0.66006887,-0.047012348,0.705015063,0.610268295,-0.062626019,0.813770652,0.594052851,-0.015954532,0.794284225,0.525232553,-0.049217906,0.761095107,0.506927431,-0.071715504,0.729483068,0.510861039,-0.082843386,0.844954133,0.628287435,-0.02489,0.805230856,0.583702981,-0.058877256,0.755107284,0.635394216,-0.068397015,0.72899574,0.682056963,-0.06787394,0.864948034,0.686166286,-0.037897408,0.817941427,0.656345963,-0.071603157,0.768453896,0.715524793,-0.066348016,0.745729566,0.763878465,-0.054446567,0.873746276,0.759385526,-0.052395135,0.827605426,0.735096872,-0.076102674,0.78703016,0.77123487,-0.070230842,0.768925309,0.804477811,-0.059524044 +Right,0.794897914,0.897476912,-5.17E-07,0.751548111,0.822728395,-0.011573659,0.724969625,0.731131911,-0.026914455,0.707667232,0.673963308,-0.04511654,0.692398012,0.62261337,-0.061759204,0.802347064,0.603523493,-0.009407328,0.784801364,0.535702109,-0.042521711,0.748939097,0.514384508,-0.061267249,0.718738496,0.526103497,-0.068784922,0.831870079,0.63650012,-0.019807564,0.785293698,0.594090104,-0.049408101,0.737117529,0.662189722,-0.050189022,0.728271306,0.701406002,-0.043050446,0.850142598,0.691767395,-0.035169646,0.794700503,0.664443135,-0.06331259,0.752615273,0.727803826,-0.049490388,0.747921348,0.761756539,-0.033192754,0.856368601,0.760953367,-0.052652285,0.800292552,0.74855274,-0.06966953,0.767537117,0.787243724,-0.05862904,0.766786397,0.810192406,-0.04536783 +Right,0.791552842,0.9128564,-4.50E-07,0.748001933,0.833477736,-0.012904724,0.721284151,0.743923903,-0.02916931,0.704754233,0.68974328,-0.048216652,0.692702651,0.637138426,-0.065503024,0.798961878,0.622064352,-0.009652306,0.779072285,0.557756543,-0.046035793,0.744033873,0.538109303,-0.06767755,0.715653718,0.549210429,-0.076649264,0.82919836,0.653096437,-0.02092356,0.795989811,0.597925782,-0.054745555,0.74496603,0.656308651,-0.058185805,0.731712222,0.694324017,-0.051195368,0.847931385,0.706366003,-0.037481625,0.799480796,0.673269212,-0.067397997,0.759291708,0.732851505,-0.055379368,0.757466495,0.766370177,-0.039477356,0.853519261,0.773739457,-0.056407146,0.798227072,0.769604206,-0.073738098,0.772250891,0.806187093,-0.063998811,0.779511929,0.824603617,-0.051466409 +Right,0.785791576,0.909116983,-3.52E-07,0.746202767,0.850113869,-0.018134648,0.717548609,0.766485155,-0.035629198,0.701322138,0.713682175,-0.053715475,0.691791058,0.666018844,-0.070416279,0.782254338,0.649960876,-0.019817088,0.773859084,0.573876023,-0.055789139,0.739344776,0.560172081,-0.078717388,0.711125553,0.57502389,-0.089279294,0.814465165,0.676999271,-0.028998984,0.812096298,0.592696011,-0.064843521,0.761832535,0.632480741,-0.074337527,0.73787868,0.679445386,-0.071262777,0.838027656,0.728364825,-0.042684391,0.824887037,0.66547358,-0.076599792,0.776793242,0.710665762,-0.073414043,0.758346379,0.75505513,-0.06208517,0.853857696,0.796295822,-0.058013748,0.821916401,0.771639407,-0.081662074,0.788051605,0.802706063,-0.077516422,0.779648006,0.832225084,-0.067909628 +Right,0.784372389,0.921286941,-3.22E-07,0.743360162,0.874276638,-0.020263612,0.712754548,0.790620446,-0.038076125,0.692566931,0.735896945,-0.056066699,0.684493542,0.687753975,-0.073089629,0.763909161,0.681133986,-0.023947613,0.758088112,0.599689722,-0.059960965,0.727110445,0.592678308,-0.085061267,0.700241625,0.606839895,-0.098111331,0.795131862,0.705259681,-0.032086074,0.795288742,0.611164033,-0.071533091,0.749289334,0.644868374,-0.087959833,0.720899761,0.689507425,-0.090412639,0.820900261,0.751012862,-0.044278488,0.824427605,0.669606626,-0.082962453,0.777721047,0.704767525,-0.089104779,0.749453366,0.744478762,-0.083936214,0.842441678,0.812254727,-0.05751821,0.839843333,0.758919656,-0.088264212,0.805515885,0.787866712,-0.09079726,0.78258568,0.823291361,-0.085618608 +Right,0.779003739,0.920894027,-2.93E-07,0.736798346,0.8737939,-0.020803226,0.706389427,0.795343697,-0.041395631,0.68446207,0.744798601,-0.061789304,0.67519021,0.707440853,-0.080693305,0.748528123,0.695968449,-0.042368274,0.732858956,0.610374928,-0.080711231,0.703335762,0.638123155,-0.105052046,0.681904137,0.682048082,-0.11764966,0.781438589,0.717268646,-0.050650887,0.774459243,0.621633828,-0.092833839,0.734863997,0.657342076,-0.110650316,0.711768091,0.706354916,-0.11615134,0.81106782,0.758646667,-0.062034234,0.817849934,0.673481524,-0.097166933,0.781457305,0.691917956,-0.107467733,0.754853666,0.723774016,-0.108789869,0.838499904,0.815571547,-0.074774213,0.858062029,0.75767988,-0.101515777,0.837799907,0.755952001,-0.110213585,0.815022111,0.767108858,-0.112890124 +Right,0.779079378,0.930997252,-3.14E-07,0.735343277,0.880796313,-0.0146218,0.702082276,0.804911435,-0.033564933,0.678518236,0.756500065,-0.053165402,0.675969601,0.714294553,-0.071448267,0.745733857,0.707378089,-0.034658004,0.729463935,0.626942813,-0.070231028,0.7002877,0.653966784,-0.093361706,0.678294897,0.699343562,-0.105290487,0.776231408,0.730474174,-0.044761799,0.765846491,0.640442193,-0.085469976,0.727785408,0.671143711,-0.103142023,0.703001201,0.719782114,-0.108120576,0.804866493,0.772002399,-0.057468727,0.807070255,0.686845779,-0.089976691,0.775135696,0.683122039,-0.100589462,0.748700321,0.697226644,-0.102454118,0.831017017,0.828551888,-0.070726171,0.849295139,0.765489995,-0.094989985,0.837815046,0.741743565,-0.103619553,0.819749594,0.729898572,-0.106459692 +Right,0.779525042,0.924302816,-3.21E-07,0.73481214,0.882624447,-0.018890036,0.700354576,0.807024419,-0.039332114,0.675629616,0.756890178,-0.06064444,0.666211426,0.70855093,-0.08148855,0.739847064,0.714920938,-0.034460861,0.720840454,0.632920086,-0.074088715,0.694468021,0.658597529,-0.103503659,0.674938798,0.701445758,-0.119768813,0.769631088,0.727365136,-0.042998891,0.755933464,0.633596599,-0.087430447,0.720928848,0.67143929,-0.112082198,0.698371291,0.721655726,-0.122315936,0.798864901,0.755679071,-0.054596435,0.799244106,0.652106643,-0.087616794,0.770742178,0.66107291,-0.102291964,0.748423874,0.691450238,-0.107128851,0.826619267,0.799634874,-0.067457251,0.835387588,0.729793906,-0.090767905,0.818886817,0.703453064,-0.102330163,0.799964488,0.694712162,-0.107948452 +Right,0.77737987,0.920171499,-2.62E-07,0.733320475,0.875516295,-0.016477544,0.700393915,0.803436816,-0.035235383,0.677441537,0.75549823,-0.054814436,0.661509752,0.704629958,-0.073734201,0.739217639,0.711895645,-0.027870825,0.724732935,0.638631284,-0.066440791,0.7000705,0.657946408,-0.09642408,0.681024075,0.69885534,-0.112178259,0.767886877,0.720086932,-0.036042593,0.759999096,0.627540529,-0.075067982,0.729380727,0.646260381,-0.096892759,0.707607329,0.690968037,-0.105449222,0.796509683,0.745477557,-0.047518272,0.800704777,0.64553076,-0.075455755,0.774297774,0.643840551,-0.085586302,0.751906157,0.665983677,-0.087768234,0.823443651,0.788754344,-0.060494911,0.832667947,0.718461573,-0.079600595,0.817142367,0.691747844,-0.086370565,0.799462438,0.681766689,-0.088221237 +Right,0.779503345,0.89256072,-2.44E-07,0.733494818,0.853029728,-0.01826833,0.700108528,0.772970259,-0.037431333,0.679053247,0.719204426,-0.057133917,0.667567492,0.668034792,-0.076273769,0.739705205,0.678237677,-0.033208486,0.724917531,0.594871283,-0.071753211,0.696747661,0.60996604,-0.100168452,0.676228583,0.644985259,-0.115702175,0.767802119,0.69067198,-0.042582121,0.761358082,0.588057816,-0.084285028,0.723758698,0.608062387,-0.107523553,0.699462235,0.650176466,-0.117011957,0.794737458,0.721676111,-0.055156555,0.799757659,0.617008269,-0.086885825,0.765078187,0.614268005,-0.101846121,0.739280701,0.636288345,-0.107011095,0.820313096,0.769170702,-0.069018006,0.82397449,0.693517566,-0.09238144,0.800428867,0.666728199,-0.103648327,0.777396321,0.658879578,-0.108749136 +Right,0.775870502,0.880701303,-3.34E-07,0.733576417,0.824087024,-0.016829357,0.706617117,0.741193235,-0.033624236,0.69008106,0.689947188,-0.051302787,0.678839087,0.638183475,-0.06783314,0.754063606,0.637636781,-0.025862357,0.739918888,0.56796968,-0.063394703,0.709523141,0.579419136,-0.091061197,0.68640238,0.609391391,-0.105802163,0.781285882,0.659397244,-0.03581911,0.77411747,0.570516348,-0.075483903,0.732303083,0.594011784,-0.095887795,0.707925618,0.63562429,-0.103082016,0.804642439,0.699935198,-0.049474493,0.801885843,0.62143451,-0.083208129,0.758905232,0.635652602,-0.094881043,0.733038366,0.66346693,-0.096471883,0.824195087,0.755905867,-0.064452574,0.81953007,0.69551599,-0.090341955,0.784936428,0.694446981,-0.098394088,0.758997202,0.707582116,-0.099756159 +Right,0.775436878,0.932628512,-4.12E-07,0.737843573,0.872706831,-0.020860622,0.716064334,0.791600585,-0.039998349,0.698476017,0.739880562,-0.058605012,0.68705678,0.694636762,-0.076480426,0.780040085,0.693333268,-0.036941756,0.762022316,0.626625001,-0.074449047,0.722514212,0.636290193,-0.099781156,0.693557322,0.664356112,-0.113369852,0.804278433,0.726924419,-0.0455258,0.791356266,0.650744557,-0.084777132,0.737986743,0.673327088,-0.101275735,0.706510365,0.711365521,-0.106450737,0.82177496,0.782254577,-0.057386249,0.813962579,0.711756885,-0.094772145,0.759741783,0.7331568,-0.101398177,0.727762401,0.764691591,-0.099142849,0.831432104,0.850520194,-0.070372492,0.818386853,0.800835848,-0.102147684,0.774957597,0.81565392,-0.106803946,0.745485723,0.840296865,-0.104391217 +Right,0.787284017,0.889354587,-5.35E-07,0.764279366,0.796967089,-0.02384373,0.76090008,0.7030527,-0.044477526,0.75970459,0.636533082,-0.064001761,0.761961579,0.597716868,-0.081695408,0.861183882,0.665853858,-0.036974438,0.840929985,0.594101667,-0.076161444,0.797427535,0.586302519,-0.098204769,0.763273954,0.604222894,-0.108092234,0.875982583,0.719771922,-0.042692777,0.840404212,0.656336367,-0.081605941,0.781857431,0.668033242,-0.089274682,0.752513885,0.693128407,-0.087157667,0.874582291,0.783309639,-0.052793164,0.83024627,0.730672479,-0.088697717,0.778356254,0.742876232,-0.084328398,0.754820108,0.766814172,-0.073885299,0.860387504,0.848412514,-0.065075442,0.80826509,0.81300962,-0.092101492,0.772167444,0.817455351,-0.090769939,0.759247661,0.831032038,-0.08341983 +Right,0.794525385,0.885471642,-5.59E-07,0.774158597,0.791528285,-0.024698658,0.775591493,0.698396087,-0.044574801,0.778663576,0.632745385,-0.063491613,0.77964884,0.570854902,-0.080610022,0.872941077,0.677858353,-0.03454484,0.850181818,0.596658707,-0.072998531,0.8051368,0.585212946,-0.09346091,0.769548953,0.602471173,-0.101738207,0.882671952,0.732410014,-0.03984363,0.845853329,0.657288313,-0.076639935,0.783281565,0.665115118,-0.080302514,0.75497967,0.69006139,-0.074829921,0.876594782,0.795467913,-0.050237674,0.83053273,0.731695235,-0.084180921,0.775936604,0.737558007,-0.075797804,0.754934192,0.761003315,-0.062882222,0.857967854,0.858558416,-0.063147679,0.803591073,0.816753805,-0.08934816,0.769058824,0.817589462,-0.086460091,0.762175322,0.833690643,-0.077992216 +Right,0.792344332,0.879607201,-6.16E-07,0.780434251,0.783416629,-0.024098158,0.79060632,0.688198328,-0.043648042,0.797960997,0.622277737,-0.062074207,0.797611594,0.560227931,-0.079221778,0.887679636,0.691017747,-0.042043362,0.868901908,0.602557242,-0.083448462,0.82034862,0.58185631,-0.105574287,0.781591475,0.589601815,-0.114766903,0.892240524,0.747685015,-0.04866774,0.860087037,0.6612674,-0.088794276,0.7969594,0.654472709,-0.093712285,0.765201569,0.674476504,-0.08929766,0.879500449,0.809930801,-0.05991305,0.838733315,0.734682918,-0.097661331,0.7824862,0.727424979,-0.091256306,0.756596506,0.745880604,-0.079304688,0.855407476,0.871525586,-0.073255137,0.806887865,0.819348276,-0.10386008,0.766635954,0.806326628,-0.102961481,0.751019001,0.814540327,-0.095499739 +Right,0.797310531,0.866118252,-5.97E-07,0.791839182,0.767339706,-0.026172824,0.80660212,0.675595582,-0.048115849,0.816973507,0.613366187,-0.067912705,0.819808841,0.551712632,-0.086657926,0.902358294,0.701797128,-0.055696268,0.883211434,0.607508659,-0.099545911,0.831954598,0.581804514,-0.120642558,0.790074408,0.585268378,-0.128924489,0.901155472,0.761991382,-0.062511854,0.873605669,0.667771101,-0.105415128,0.808648288,0.651752353,-0.108543813,0.774096966,0.667594612,-0.102804832,0.881660581,0.822258294,-0.0734604,0.844091654,0.742402256,-0.113433532,0.789066792,0.72627157,-0.105531797,0.763789594,0.741465509,-0.092508771,0.851779103,0.877449572,-0.086419299,0.805107474,0.816950321,-0.119220279,0.76748383,0.793352127,-0.1182798,0.753596067,0.795400739,-0.110691436 +Right,0.815560997,0.877330542,-5.04E-07,0.818239927,0.767490506,-0.028873827,0.833232999,0.666562557,-0.054252706,0.840844631,0.593702316,-0.075582393,0.841169834,0.532075286,-0.096187823,0.915696323,0.706639946,-0.075610995,0.898343861,0.609147072,-0.124954171,0.848687053,0.573638558,-0.149423584,0.808655441,0.562170267,-0.161219656,0.906870902,0.767188251,-0.083179846,0.880992115,0.669979751,-0.133519143,0.821280003,0.636449099,-0.140067935,0.783824623,0.637909412,-0.138530299,0.879791081,0.824022055,-0.093947917,0.844189703,0.742382586,-0.140727535,0.790059447,0.705173552,-0.134746924,0.758309662,0.701065719,-0.123774007,0.844284594,0.871859729,-0.106493399,0.798434615,0.805825055,-0.146118626,0.761084199,0.769471765,-0.14803277,0.742984295,0.755487144,-0.142965913 +Right,0.817989886,0.870863557,-5.17E-07,0.828612626,0.761942565,-0.033385165,0.850124657,0.666781247,-0.060914386,0.863756239,0.595719874,-0.08289104,0.874548256,0.535160899,-0.10342706,0.92743212,0.727682054,-0.085664369,0.911596477,0.620082676,-0.135155261,0.861453116,0.578257442,-0.157391101,0.820423603,0.560907245,-0.167519256,0.910916746,0.789913654,-0.090860508,0.884784222,0.684685111,-0.140931189,0.827162445,0.639957428,-0.145671263,0.789856613,0.62985754,-0.143891558,0.877233684,0.84331423,-0.099016465,0.838525295,0.748369515,-0.145441309,0.788624585,0.700199664,-0.138638139,0.758552313,0.685589373,-0.128283292,0.83673352,0.884729862,-0.109124184,0.791175723,0.808333993,-0.148888782,0.757398486,0.763748288,-0.150371268,0.741222024,0.743299901,-0.145613477 +Right,0.818468451,0.890020013,-5.30E-07,0.829018474,0.76956439,-0.033502921,0.852419317,0.668801963,-0.060642693,0.867337465,0.594719589,-0.082458995,0.881305337,0.528803349,-0.103035241,0.930345476,0.730428159,-0.083180211,0.916573286,0.625956774,-0.133071363,0.865827262,0.57898128,-0.157872021,0.824602306,0.55662775,-0.170128658,0.914038718,0.79855895,-0.088972919,0.893398881,0.698812664,-0.139478415,0.835009098,0.64521575,-0.146444514,0.794126272,0.629039288,-0.146211207,0.880133212,0.855988622,-0.097918056,0.840976954,0.764773488,-0.144305795,0.788787186,0.70462501,-0.138798431,0.755071402,0.681132734,-0.129423797,0.838775516,0.898768842,-0.108917095,0.789817393,0.818954408,-0.147616327,0.754732132,0.768139601,-0.148463041,0.737163663,0.741558909,-0.143615097 +Right,0.806802213,0.850556552,-5.34E-07,0.812767148,0.756328225,-0.030369515,0.838808715,0.663481414,-0.055035815,0.853218436,0.596791685,-0.076073445,0.861369491,0.529399693,-0.09685307,0.914778888,0.71145767,-0.067901477,0.909032404,0.618553102,-0.117482118,0.860382795,0.579995275,-0.145053461,0.817502975,0.565524757,-0.15858689,0.90618825,0.7813887,-0.075910166,0.899717927,0.695732296,-0.12798962,0.833907783,0.656783819,-0.138003573,0.786157608,0.651723742,-0.136894718,0.879063785,0.844778299,-0.087755382,0.858628452,0.772359967,-0.137617573,0.796526074,0.724631548,-0.134639964,0.755452514,0.708359599,-0.123953998,0.842586458,0.894745052,-0.101177685,0.803123653,0.835601211,-0.141282082,0.759363115,0.791995347,-0.141595811,0.735072076,0.770085216,-0.134967968 +Right,0.791457653,0.866040468,-5.17E-07,0.795158863,0.753716528,-0.028673299,0.817312539,0.656654298,-0.052693982,0.828853011,0.581633687,-0.073671363,0.830569804,0.510716736,-0.094856128,0.901395798,0.689804673,-0.061744019,0.888902426,0.596878529,-0.10865172,0.844598651,0.551780641,-0.135978311,0.804510832,0.527900875,-0.149913967,0.898052096,0.757040977,-0.069588929,0.887969553,0.667675734,-0.120089062,0.825857639,0.618596077,-0.132295638,0.777969778,0.606045723,-0.13357091,0.877285779,0.822244287,-0.081309952,0.857488513,0.750448048,-0.131226704,0.795787752,0.688909531,-0.132938907,0.751344323,0.665009558,-0.125730246,0.844620466,0.877780437,-0.094438419,0.816657603,0.823597908,-0.136167318,0.767895579,0.772520065,-0.139823601,0.733359158,0.745699286,-0.13569881 +Right,0.769371986,0.840274394,-4.70E-07,0.756743848,0.745452583,-0.021190466,0.773866832,0.644247055,-0.038577303,0.788561881,0.576853096,-0.055842113,0.793314517,0.526554227,-0.072965123,0.854721844,0.641429245,-0.027523814,0.863322735,0.565034568,-0.067400135,0.82623297,0.529910326,-0.094691552,0.791638136,0.518792391,-0.108420491,0.867139816,0.700904667,-0.035915751,0.887683392,0.628552675,-0.076721601,0.833483219,0.593468428,-0.092285566,0.790447772,0.593374193,-0.094128124,0.864918947,0.769881129,-0.048659779,0.879023731,0.70892787,-0.08848875,0.825298727,0.67049855,-0.093242176,0.785651386,0.661047935,-0.087265998,0.852735341,0.842336893,-0.06253133,0.848408461,0.796062469,-0.093524419,0.807128966,0.769269764,-0.094700374,0.776111066,0.759678066,-0.088563755 +Right,0.755133152,0.860469818,-3.28E-07,0.732431889,0.783792257,-0.024200093,0.74213928,0.675374806,-0.041861825,0.75120908,0.597983658,-0.059749197,0.757854164,0.529360175,-0.076834351,0.808446527,0.650275409,-0.029157344,0.838838398,0.559209526,-0.069638848,0.810532272,0.524949074,-0.098035753,0.782798588,0.521402001,-0.112345554,0.831275821,0.690971196,-0.035773799,0.881072819,0.601597011,-0.08138743,0.837165356,0.573089361,-0.104558267,0.798441589,0.585593164,-0.110613473,0.84613353,0.74614197,-0.046651214,0.893073976,0.673829794,-0.085888982,0.851245165,0.645593405,-0.098931551,0.815949738,0.649804473,-0.098685384,0.857204139,0.813879251,-0.059173781,0.893813729,0.771080136,-0.087229848,0.865819752,0.751179397,-0.094345227,0.834958553,0.752119184,-0.093845509 +Right,0.749294579,0.893359065,-3.01E-07,0.721865594,0.812655866,-0.020164022,0.723664105,0.694958389,-0.035488769,0.727687955,0.612919807,-0.051616948,0.734872937,0.547432244,-0.066213004,0.788524687,0.656934083,-0.022376893,0.809964001,0.558810115,-0.057765115,0.781029761,0.531662822,-0.082880646,0.754266381,0.53567934,-0.095139749,0.815703392,0.694466233,-0.029732879,0.863185763,0.591902435,-0.068404511,0.823623419,0.576516986,-0.086980671,0.788645387,0.603861809,-0.090852119,0.834844708,0.750255764,-0.041190427,0.88419646,0.666680455,-0.072985545,0.848704278,0.642822623,-0.083321124,0.817650795,0.653542757,-0.082901701,0.849584162,0.820673168,-0.054309014,0.894918919,0.768890142,-0.07585524,0.873418212,0.74429971,-0.081120439,0.845445037,0.745277584,-0.080610693 +Right,0.751326382,0.952166378,-1.15E-07,0.70971179,0.870717943,-0.017096929,0.694480538,0.760856867,-0.030450609,0.689251542,0.67899394,-0.044591557,0.681018889,0.606118858,-0.058201369,0.753559113,0.687833428,-0.013545381,0.760434091,0.605624676,-0.044325523,0.742064059,0.572014034,-0.071291186,0.715000629,0.559865654,-0.086790405,0.790417135,0.711572289,-0.021632411,0.819180667,0.619984388,-0.051382057,0.804480672,0.584380329,-0.074619025,0.774910569,0.584389269,-0.086617917,0.819697261,0.761092782,-0.033558972,0.855831504,0.680261016,-0.059979673,0.848965943,0.639462113,-0.077363037,0.82592082,0.624716818,-0.085735045,0.841567457,0.830074787,-0.046666589,0.878672898,0.781183183,-0.068370327,0.885047317,0.74743849,-0.079444006,0.874736726,0.725482523,-0.084960371 +Right,0.763685226,0.972671151,8.90E-08,0.712792635,0.907191157,-0.017329043,0.686330914,0.799334943,-0.028489938,0.674163461,0.716512263,-0.039741658,0.657480955,0.645452023,-0.050364975,0.735657096,0.710659087,-0.012343987,0.733664155,0.627548814,-0.042282779,0.722176254,0.594891012,-0.067081645,0.702794611,0.592827916,-0.080629095,0.778538883,0.720606208,-0.020105122,0.79412365,0.629693806,-0.046812758,0.789961278,0.592283547,-0.068160251,0.774767041,0.588822424,-0.078966051,0.814402282,0.760260642,-0.032036908,0.834812939,0.677278757,-0.059637379,0.83518815,0.638958216,-0.075665206,0.826938868,0.619308889,-0.082365111,0.843602121,0.820276082,-0.044867206,0.871923864,0.768914521,-0.070235319,0.885326564,0.737084448,-0.081087932,0.89160049,0.713137805,-0.084929392 +Right,0.789587319,0.969226003,1.52E-07,0.732979357,0.928560674,-0.022172246,0.693461955,0.833636522,-0.035675317,0.670527697,0.755608022,-0.047967765,0.646276414,0.69032222,-0.059578829,0.728403807,0.724080145,-0.020754682,0.715705872,0.646494925,-0.053667605,0.704301298,0.61598289,-0.078765199,0.693943322,0.627271295,-0.091591977,0.774206936,0.712005854,-0.026543945,0.780603528,0.614420295,-0.056520812,0.777642608,0.577027023,-0.078405485,0.771328926,0.581530988,-0.089046903,0.816026032,0.73418802,-0.036887046,0.829437613,0.643973708,-0.068753764,0.833745539,0.60106498,-0.087139018,0.834524035,0.579824388,-0.094979227,0.851744771,0.78058809,-0.048151381,0.87655431,0.717850983,-0.079141043,0.893892229,0.683925331,-0.09316764,0.907432675,0.659430444,-0.098482177 +Right,0.799456239,0.95631063,1.78E-07,0.742321312,0.929188848,-0.021474596,0.698481083,0.845691085,-0.034529813,0.671680033,0.776342332,-0.04662361,0.645620763,0.719914317,-0.057918198,0.723712385,0.726915956,-0.020198742,0.707048357,0.655885696,-0.053380344,0.697416246,0.627448201,-0.078384608,0.692940474,0.639881074,-0.091098823,0.767325938,0.702472448,-0.025861006,0.766043961,0.606802166,-0.055848204,0.761894464,0.567691088,-0.077081665,0.758572459,0.56996429,-0.087494329,0.809985518,0.712688744,-0.036128417,0.814330339,0.621545553,-0.06718497,0.816117048,0.576614439,-0.08384648,0.817017198,0.553839803,-0.09072528,0.848622799,0.748643816,-0.047486607,0.866930604,0.677448988,-0.077175282,0.881331086,0.635471106,-0.090422221,0.893477261,0.604624808,-0.095421948 +Right,0.805525303,0.917217791,1.62E-07,0.747157633,0.900151372,-0.021762187,0.700088382,0.823083222,-0.034705695,0.671030939,0.756838262,-0.046666309,0.645216048,0.700129032,-0.057565719,0.720554888,0.696982443,-0.020763522,0.700611353,0.623384416,-0.053942975,0.690384746,0.598052084,-0.078262649,0.687782049,0.617105186,-0.090117365,0.763319612,0.668260396,-0.026109679,0.758023679,0.570078015,-0.056370709,0.751674652,0.531145692,-0.076898009,0.747139633,0.537981093,-0.086393662,0.806333184,0.673972487,-0.036216062,0.806400359,0.581765652,-0.06697949,0.804764271,0.532653391,-0.083393186,0.802979887,0.508522749,-0.089984722,0.845880985,0.705280066,-0.047425948,0.861060381,0.628928065,-0.076664306,0.871101141,0.580915034,-0.090125546,0.879242837,0.545309126,-0.09530025 +Right,0.810677528,0.905394375,1.44E-07,0.7499547,0.894931078,-0.021869788,0.699934959,0.822482467,-0.035381429,0.67013377,0.758499146,-0.0478018,0.642899513,0.702642441,-0.059375886,0.71614778,0.691422641,-0.02281696,0.694960117,0.623143256,-0.05793361,0.683463931,0.598507822,-0.084224664,0.680050731,0.617594957,-0.097692877,0.757780015,0.659419715,-0.029107107,0.749415457,0.562848508,-0.061912555,0.740928531,0.526545644,-0.085069485,0.734853148,0.534802914,-0.096460491,0.800917625,0.662952781,-0.040003318,0.797813833,0.569659352,-0.072436541,0.792829692,0.525623918,-0.090394482,0.787310123,0.505270779,-0.098253317,0.841922164,0.69367224,-0.051938012,0.853746891,0.61634177,-0.082390197,0.860061109,0.56908828,-0.096811943,0.863735795,0.533337891,-0.102959909 +Right,0.824596643,0.876616478,2.05E-07,0.769894063,0.884754419,-0.027795792,0.718489945,0.837270021,-0.045665331,0.687808156,0.780206203,-0.061501015,0.65950042,0.720913768,-0.075803556,0.713783443,0.684600711,-0.026088679,0.686323225,0.62105006,-0.061377611,0.676599741,0.596450686,-0.08844091,0.680037141,0.610066473,-0.102605186,0.751490831,0.638630092,-0.029385174,0.734660685,0.544617772,-0.060775455,0.726034701,0.506128311,-0.083279416,0.724485099,0.511154413,-0.094882324,0.7941553,0.628832102,-0.037867758,0.78338176,0.533886075,-0.068323143,0.776357949,0.483676136,-0.085652955,0.772500157,0.459949404,-0.093719125,0.837662458,0.646958053,-0.048120778,0.84110868,0.563640356,-0.076347992,0.842942297,0.510738611,-0.089956507,0.844468832,0.471596241,-0.095745988 +Right,0.83688134,0.847956598,1.86E-07,0.782371521,0.85680002,-0.02523296,0.730231225,0.82033807,-0.042978298,0.702374339,0.770816147,-0.058829974,0.678840458,0.707009971,-0.073331803,0.725028694,0.665297627,-0.02459554,0.697935104,0.606001318,-0.055405155,0.68717134,0.584095895,-0.079350978,0.687642038,0.589435518,-0.09287028,0.760730326,0.618543029,-0.029152768,0.742226303,0.532229781,-0.055328757,0.735701799,0.496661574,-0.074123003,0.734397054,0.488396347,-0.084907793,0.80248338,0.607100427,-0.038500722,0.790698826,0.515509009,-0.066023618,0.786804736,0.465820372,-0.081130177,0.783535838,0.43090421,-0.089174613,0.846620202,0.622560859,-0.049404733,0.849729657,0.539117932,-0.075591229,0.853381038,0.486266434,-0.086944818,0.85533607,0.440197766,-0.092184484 +Right,0.828593016,0.835653245,1.26E-07,0.771337688,0.828112781,-0.026386896,0.721468866,0.773420095,-0.045762122,0.694162428,0.716749012,-0.063131869,0.681133628,0.648962498,-0.079166174,0.735306501,0.624481857,-0.028873511,0.717955709,0.555412889,-0.06729497,0.701562047,0.534550965,-0.097623646,0.691062689,0.557151973,-0.113814436,0.774458528,0.592983425,-0.034047302,0.766278446,0.499719143,-0.069688715,0.751425147,0.468123436,-0.094626352,0.73882699,0.486976027,-0.106905103,0.81621182,0.596202493,-0.044073582,0.811626434,0.502513647,-0.076405168,0.800888181,0.454867721,-0.093843102,0.789810538,0.439715087,-0.101516038,0.856437862,0.628025293,-0.055733282,0.863538921,0.552314639,-0.08514142,0.860178232,0.503671944,-0.09849789,0.853934944,0.472886145,-0.103896499 +Right,0.816739857,0.841922998,-1.10E-07,0.762883604,0.808280349,-0.022154966,0.717135847,0.739557266,-0.040131629,0.69236064,0.676850021,-0.058379825,0.683974922,0.603735268,-0.074685231,0.744448543,0.589163244,-0.011888178,0.724366784,0.517901421,-0.047151145,0.704729319,0.511371732,-0.079041883,0.691293359,0.542264104,-0.096957631,0.779464483,0.56884551,-0.016483778,0.769082367,0.471316636,-0.046582438,0.747734725,0.455192864,-0.071497612,0.72908026,0.490233362,-0.085253753,0.817146659,0.579123378,-0.026261261,0.816860616,0.470407724,-0.051171906,0.796286404,0.441177219,-0.067041948,0.773793399,0.460761726,-0.074633397,0.855290234,0.618564367,-0.038214296,0.862031221,0.53493166,-0.059334841,0.845944822,0.494880736,-0.07059101,0.822307825,0.489527971,-0.075516045 +Right,0.814597845,0.825484931,-1.89E-07,0.760155439,0.783042073,-0.019326143,0.714820266,0.705932319,-0.035667695,0.689657748,0.64113909,-0.053372718,0.687558651,0.566823244,-0.069467068,0.750552237,0.576058507,-0.008522148,0.732827425,0.501853168,-0.043320019,0.708363533,0.49286294,-0.074255735,0.690940738,0.516322374,-0.091469899,0.783463538,0.557690501,-0.015110334,0.777143717,0.448194802,-0.045623451,0.748909831,0.439902544,-0.066954121,0.726176441,0.481525809,-0.0769106,0.818447232,0.566854894,-0.026855467,0.819710672,0.44890064,-0.050448839,0.790889263,0.430183113,-0.060843565,0.766053438,0.455924153,-0.063840128,0.854406297,0.602648914,-0.041075289,0.856716573,0.509903908,-0.058513764,0.83401382,0.47838679,-0.064521864,0.808945835,0.483159781,-0.065606326 +Right,0.809614539,0.81096977,-2.29E-07,0.756506324,0.76063925,-0.017685616,0.714767694,0.676845312,-0.033030037,0.691911221,0.608404875,-0.050181855,0.693772793,0.536338925,-0.06581603,0.754835606,0.552948177,-0.004940817,0.739878416,0.480500996,-0.038636927,0.715180874,0.472689033,-0.068792954,0.695332408,0.491749018,-0.085718222,0.787140846,0.540339708,-0.011959489,0.783210874,0.431020617,-0.043314192,0.753756642,0.42764923,-0.065131612,0.728683114,0.467042148,-0.074769646,0.820536137,0.554397643,-0.023944654,0.824684441,0.437965363,-0.04783918,0.794592679,0.423244715,-0.058416314,0.768199027,0.447694093,-0.060897041,0.853584051,0.594996989,-0.038270313,0.856293082,0.501514077,-0.054825176,0.832472563,0.470547378,-0.060660087,0.80624193,0.472693771,-0.061564192 +Right,0.805959404,0.800434649,-3.13E-07,0.759176075,0.72839421,-0.015683811,0.728023231,0.627221346,-0.030343389,0.714851499,0.552055836,-0.047295578,0.718276143,0.483544081,-0.062789708,0.782329142,0.53193289,-0.008434922,0.778971434,0.442737818,-0.043639995,0.747541189,0.43409279,-0.07277254,0.721957803,0.448132217,-0.089384846,0.81199789,0.535859227,-0.018366493,0.819505513,0.413018167,-0.055417374,0.780810773,0.410936296,-0.079213321,0.751458824,0.444256783,-0.089302883,0.839141667,0.563175738,-0.032825742,0.856269598,0.442692101,-0.06113689,0.819549203,0.429439008,-0.074525282,0.789318204,0.452057451,-0.078368105,0.864989638,0.612786174,-0.049296565,0.872306764,0.521495938,-0.069016457,0.844894588,0.493392795,-0.077640511,0.816954851,0.493801057,-0.080870911 +Right,0.801695704,0.794105411,-4.07E-07,0.761183798,0.71037215,-0.014685263,0.738309741,0.601686418,-0.029814174,0.729732156,0.524747074,-0.047949724,0.731901169,0.456397682,-0.064079754,0.800989926,0.519382596,-0.011448953,0.803943455,0.416154355,-0.049098883,0.764980793,0.41239509,-0.077484101,0.734960496,0.431424916,-0.092659101,0.826544225,0.536016762,-0.022793248,0.840115905,0.406571597,-0.060976133,0.791105986,0.407498479,-0.082341745,0.75989908,0.437629133,-0.090672836,0.849722922,0.572245181,-0.03880433,0.871026099,0.453265548,-0.069371291,0.821892023,0.449028194,-0.08007931,0.78985846,0.473187804,-0.08166188,0.870987892,0.626474798,-0.056699567,0.879454374,0.533221602,-0.077168837,0.841626465,0.514598727,-0.083626308,0.812444389,0.522602022,-0.085208282 +Right,0.801604152,0.78676033,-4.14E-07,0.765333772,0.69747144,-0.010063245,0.749738336,0.588029683,-0.022180039,0.744727135,0.510088444,-0.038314342,0.742363513,0.442313522,-0.052955959,0.810796857,0.519782662,-0.006736269,0.819450021,0.417957723,-0.043450616,0.781883001,0.40382567,-0.070051827,0.75065738,0.41477412,-0.083766252,0.834744036,0.540063858,-0.02021165,0.854972541,0.413986653,-0.058661349,0.805000842,0.409486532,-0.078138828,0.771386981,0.436448634,-0.084237978,0.854739666,0.577588379,-0.038148738,0.877864838,0.464186549,-0.070840903,0.825998485,0.463337123,-0.079943947,0.792790174,0.48890698,-0.079140209,0.871472538,0.630655766,-0.057443574,0.879551649,0.544199109,-0.080046862,0.838533521,0.532920063,-0.08540082,0.807730138,0.546622574,-0.085230701 +Right,0.793437302,0.808936298,-4.11E-07,0.761298776,0.710118055,-0.010171739,0.75203234,0.595920742,-0.021656912,0.748637557,0.516145885,-0.037341215,0.744744182,0.444479227,-0.051417332,0.816029906,0.534527898,-0.003104131,0.822984636,0.443092734,-0.04040407,0.784238458,0.422798097,-0.068130478,0.751567483,0.427892864,-0.082571425,0.838290155,0.558187723,-0.016965203,0.858419359,0.443199694,-0.056660306,0.804740012,0.43087703,-0.076480843,0.767733812,0.453337848,-0.082223065,0.854908943,0.601169705,-0.035858359,0.876092076,0.498172253,-0.070916407,0.820200503,0.489521921,-0.080519497,0.784059405,0.510068774,-0.079071343,0.86581707,0.659408629,-0.05614689,0.874353647,0.578954041,-0.081038684,0.832428753,0.562497139,-0.087061025,0.800125122,0.572107255,-0.086601987 +Right,0.786509514,0.841143012,-4.96E-07,0.752987146,0.723616302,-0.010992592,0.749442697,0.613436341,-0.024094988,0.749673665,0.541515589,-0.040675595,0.749044299,0.484480202,-0.056109879,0.82673049,0.547308445,-0.011561446,0.823875606,0.466461539,-0.051733628,0.779352427,0.447162926,-0.081059039,0.74320066,0.453935266,-0.096528307,0.846836209,0.586066723,-0.026367445,0.858624995,0.48699075,-0.069048703,0.797984481,0.475878179,-0.088974342,0.758597076,0.499815762,-0.094442561,0.85745579,0.642405748,-0.045822751,0.867733002,0.556126475,-0.085920379,0.804271877,0.542550981,-0.096968368,0.765254676,0.558800936,-0.095499843,0.858731508,0.710761607,-0.066199146,0.854941547,0.637045622,-0.096083492,0.807396173,0.620046139,-0.10249272,0.773250222,0.629916072,-0.101002678 +Right,0.791113496,0.854430854,-5.61E-07,0.757515371,0.718484104,-0.01916166,0.757806301,0.614398837,-0.038240701,0.761469781,0.549769998,-0.05772265,0.763448358,0.500542223,-0.076617822,0.858435154,0.570908368,-0.037596293,0.840381742,0.475704014,-0.082479268,0.787774801,0.455051064,-0.113453515,0.746288419,0.464360505,-0.130008832,0.872655094,0.623082936,-0.04844828,0.859853864,0.5172382,-0.093240999,0.794476509,0.499381304,-0.112459444,0.754162967,0.519955814,-0.119655058,0.87112546,0.684386969,-0.063362844,0.859269083,0.594873667,-0.105670884,0.795543075,0.572806835,-0.116258606,0.757174432,0.586105168,-0.116253681,0.856002867,0.750982642,-0.079592668,0.828971148,0.684264302,-0.114603251,0.781427264,0.659310102,-0.124033973,0.750779748,0.659271002,-0.124950364 +Right,0.790146112,0.857117832,-5.57E-07,0.759162247,0.716023207,-0.02063496,0.760672212,0.614860892,-0.041795611,0.762115657,0.550286114,-0.062574565,0.758823872,0.499235988,-0.083291091,0.869987845,0.588308334,-0.045212116,0.847845614,0.48316285,-0.089184031,0.793096542,0.455088437,-0.118846893,0.750788689,0.460305452,-0.13477464,0.877377808,0.644289434,-0.054959372,0.862000167,0.528176963,-0.097072229,0.795719564,0.502238035,-0.113694109,0.755971968,0.516315699,-0.120473586,0.866555512,0.70508337,-0.068163686,0.855777383,0.603900373,-0.109729558,0.791953623,0.576897562,-0.117951199,0.753768206,0.587273359,-0.117098317,0.841468692,0.767094553,-0.082499407,0.816247404,0.691420555,-0.118455745,0.768517733,0.660297275,-0.12708649,0.736950517,0.656402707,-0.127652019 +Right,0.79279834,0.854247212,-5.61E-07,0.764375567,0.696110249,-0.017524449,0.774275184,0.598550558,-0.039411962,0.783443332,0.535542607,-0.05997315,0.781704962,0.488811553,-0.080853745,0.885753989,0.611931503,-0.062120732,0.864022315,0.495065331,-0.104964443,0.808666885,0.454167962,-0.129040867,0.764295697,0.447658598,-0.140874401,0.881748378,0.669386983,-0.071687296,0.859132886,0.543433189,-0.112497129,0.792721927,0.496910959,-0.122931533,0.750370026,0.497048795,-0.126757294,0.858671546,0.724243701,-0.083058432,0.839740276,0.613389552,-0.121997841,0.780233622,0.56789875,-0.126877353,0.742549419,0.564481199,-0.125567064,0.823067248,0.772728443,-0.094954714,0.795256019,0.691422045,-0.128580302,0.752456725,0.644589841,-0.136702433,0.722596586,0.625209093,-0.13810569 +Right,0.804880679,0.858934879,-4.84E-07,0.805267215,0.713696718,-0.013768406,0.816249967,0.605891228,-0.03496024,0.8163715,0.529833317,-0.054494441,0.808013141,0.477447808,-0.074144386,0.900077224,0.622265577,-0.071421795,0.873530328,0.497030824,-0.112922132,0.817188859,0.453224301,-0.131551832,0.775083542,0.442363501,-0.139954224,0.882741451,0.683576286,-0.082787499,0.854212582,0.558585227,-0.124393463,0.790609419,0.499587208,-0.131508887,0.7493186,0.486073077,-0.133658066,0.848184347,0.739705026,-0.094403759,0.821335256,0.627188623,-0.134065881,0.766067863,0.569722533,-0.136257157,0.731490254,0.551655293,-0.133386478,0.806704402,0.78617537,-0.105853565,0.774543047,0.699632347,-0.141436175,0.735123932,0.650068641,-0.148414508,0.706339121,0.624444485,-0.148792773 +Right,0.802889228,0.87763679,-4.66E-07,0.809499323,0.73613286,-0.012540485,0.82346797,0.624834538,-0.032342412,0.824035525,0.547132909,-0.050059397,0.815500796,0.500015259,-0.068882078,0.899571598,0.659526885,-0.074047029,0.871864855,0.528077602,-0.112030298,0.820318699,0.476123959,-0.128262088,0.780934274,0.458148241,-0.135695919,0.878350675,0.718250692,-0.08518742,0.850511789,0.594465017,-0.122881673,0.792574167,0.525517941,-0.129364103,0.752837181,0.498886585,-0.132475808,0.840043187,0.76832974,-0.095717065,0.811405301,0.657262921,-0.134050831,0.761359811,0.591381252,-0.139793456,0.728290498,0.562462211,-0.140498534,0.795438349,0.806997478,-0.105239987,0.758951724,0.72328043,-0.140332654,0.721614718,0.67160064,-0.14858745,0.693621993,0.641245008,-0.150929958 +Right,0.785089731,0.884186864,-5.44E-07,0.764551401,0.731973708,-0.019551359,0.773477435,0.631907046,-0.041458588,0.779625416,0.565794349,-0.061450802,0.775547624,0.519988894,-0.081703469,0.879232645,0.635775447,-0.0647882,0.848688364,0.524554312,-0.10896638,0.789779603,0.487347484,-0.134193659,0.743966341,0.478934586,-0.146983221,0.872799158,0.698929667,-0.075107872,0.848475516,0.586276829,-0.117576972,0.782268882,0.533391356,-0.12927483,0.736115098,0.524595201,-0.134153783,0.846776009,0.762196243,-0.087289162,0.823075235,0.66602236,-0.129147127,0.76401633,0.612724543,-0.13621673,0.725297272,0.598770261,-0.136311695,0.809490979,0.819857955,-0.099964678,0.777623951,0.744708657,-0.136445403,0.733254552,0.697282791,-0.14494966,0.701308608,0.674823582,-0.146535203 +Right,0.777225614,0.882047951,-5.48E-07,0.7411533,0.750574291,-0.019923769,0.736666322,0.649171352,-0.039335012,0.73137933,0.58058095,-0.058620002,0.723763824,0.52615428,-0.077796392,0.844252288,0.594156086,-0.036931694,0.809584498,0.506561637,-0.077936225,0.762140572,0.479247183,-0.108229592,0.722606719,0.472679734,-0.125342876,0.853337169,0.646157742,-0.045584787,0.810955763,0.551787972,-0.082894012,0.748237252,0.52794075,-0.101472981,0.706971407,0.530029058,-0.112022862,0.846865237,0.710214317,-0.057876337,0.814321816,0.627968252,-0.096489541,0.751673102,0.603803635,-0.107236497,0.709847033,0.604334652,-0.109737292,0.827648759,0.781023324,-0.071416788,0.798118412,0.717805982,-0.106194451,0.751140356,0.698955595,-0.115534939,0.715882182,0.697573066,-0.117119886 +Right,0.77065891,0.851343036,-5.45E-07,0.735408247,0.743555129,-0.008323338,0.726217866,0.635768831,-0.01861085,0.720853925,0.564386487,-0.031565513,0.711566389,0.50736177,-0.043705679,0.806692898,0.558462143,-0.007390368,0.784568071,0.489316195,-0.040548511,0.747945547,0.472357154,-0.068612255,0.713772416,0.470285058,-0.084804974,0.828392327,0.591198623,-0.018878488,0.798782468,0.523567736,-0.050082266,0.750980854,0.514976442,-0.070298605,0.715195179,0.522063613,-0.080862321,0.841394186,0.643913448,-0.034051184,0.817296326,0.585729659,-0.063724488,0.771046996,0.574835181,-0.075757265,0.734891891,0.577542782,-0.079708792,0.845862031,0.713236809,-0.050218556,0.825912952,0.676993847,-0.07567814,0.79020381,0.66849035,-0.084159292,0.758989692,0.669069588,-0.086173289 +Right,0.774643064,0.845555723,-3.86E-07,0.732231498,0.760247588,-0.010403104,0.71749717,0.64459312,-0.023539806,0.709013164,0.56957835,-0.039013796,0.697623491,0.51015228,-0.053984359,0.772168934,0.58008635,-0.025669957,0.762940228,0.487142622,-0.064270221,0.725079536,0.47341603,-0.09227854,0.688964903,0.479496688,-0.107795276,0.796152115,0.610911727,-0.039469514,0.789979219,0.509422839,-0.080244817,0.741221428,0.501020074,-0.102290586,0.705148101,0.51352483,-0.112220436,0.817368329,0.659675002,-0.056320317,0.82108885,0.570946217,-0.091791227,0.778533995,0.554680347,-0.105845325,0.744453788,0.555750847,-0.110240698,0.836657882,0.724659324,-0.073903702,0.855503917,0.660729647,-0.101475887,0.832928598,0.638089776,-0.11231415,0.807049751,0.62995857,-0.116907798 +Right,0.785784006,0.857560515,-2.48E-07,0.733171463,0.799228907,-0.014492634,0.702670574,0.695474625,-0.029000299,0.686066628,0.62300992,-0.043854393,0.666497827,0.559103251,-0.058703326,0.745570302,0.623954058,-0.03276705,0.73221314,0.545443833,-0.068538994,0.704129517,0.533247232,-0.095334582,0.671876431,0.542936742,-0.1103414,0.77554667,0.638092995,-0.042909477,0.768347144,0.548606992,-0.07811854,0.735278964,0.53585279,-0.098918021,0.703319669,0.546357989,-0.11001499,0.805068791,0.672927916,-0.0557894,0.813511968,0.583721519,-0.08700487,0.786247969,0.560751319,-0.101314634,0.756212175,0.557189584,-0.107930236,0.834005952,0.726639628,-0.069385879,0.856823862,0.656664789,-0.09528657,0.843476057,0.632894039,-0.106192835,0.820363998,0.625674963,-0.111785933 +Right,0.798839688,0.846327901,-1.02E-08,0.741265297,0.804798007,-0.020114154,0.70092845,0.717978001,-0.036060654,0.674553931,0.650033772,-0.05139092,0.647364974,0.595766544,-0.06770996,0.738493025,0.647035062,-0.031408943,0.717852592,0.591827333,-0.066940613,0.696590185,0.584561884,-0.096189842,0.672386765,0.594271004,-0.114690296,0.773566484,0.645119309,-0.040446486,0.763125718,0.576543629,-0.07433787,0.743231237,0.555422544,-0.101046279,0.721219182,0.550736129,-0.118642539,0.809652448,0.669756293,-0.052788746,0.809850395,0.598936141,-0.08649864,0.797090054,0.566886485,-0.10751798,0.780820787,0.544717252,-0.120466068,0.841605246,0.71631366,-0.065893769,0.860722959,0.665718019,-0.095309079,0.867821395,0.637001872,-0.110013217,0.868720472,0.612628102,-0.119723327 +Right,0.806189299,0.834306121,-4.86E-08,0.746863663,0.803156555,-0.02190597,0.701470733,0.720490694,-0.039305337,0.672681689,0.657569349,-0.054936085,0.641435206,0.603634238,-0.072259903,0.73995769,0.666431427,-0.048636753,0.714093506,0.609944761,-0.086353771,0.688962519,0.604778528,-0.113608889,0.660246432,0.610955298,-0.131041646,0.777005017,0.659014702,-0.057609763,0.762405455,0.591742873,-0.093887769,0.740749955,0.573750496,-0.11958655,0.718081772,0.561219037,-0.137544274,0.815539718,0.67581439,-0.068798609,0.816948891,0.60412848,-0.107898146,0.807585657,0.570520282,-0.131203651,0.794660866,0.537976742,-0.146090671,0.851174951,0.714017093,-0.080064379,0.871641159,0.661759853,-0.115445748,0.883950949,0.635831654,-0.132805392,0.890741646,0.608988881,-0.144743741 +Right,0.810533285,0.835062861,-2.60E-08,0.749511003,0.813024879,-0.025402879,0.700800836,0.731405437,-0.043724626,0.670396566,0.668689072,-0.059569705,0.635951519,0.612063825,-0.077033766,0.736807406,0.67718339,-0.054115348,0.713105917,0.61169225,-0.092912868,0.68966943,0.602142036,-0.119856276,0.662836909,0.605589032,-0.136934489,0.776631832,0.665416479,-0.061996348,0.763165772,0.594893754,-0.098239593,0.745124221,0.574924469,-0.12349499,0.724940598,0.558903635,-0.14171578,0.81735611,0.678007424,-0.072225034,0.822817564,0.607287288,-0.11398761,0.818948627,0.574472904,-0.138235807,0.809603631,0.538408518,-0.153928697,0.85602051,0.71196872,-0.082582004,0.879036903,0.65992564,-0.122188888,0.894417703,0.640225947,-0.140878677,0.903748453,0.616355658,-0.153518319 +Right,0.808814049,0.830054879,4.48E-08,0.747388601,0.816149235,-0.026564201,0.694781125,0.738185465,-0.044829521,0.662203014,0.676214337,-0.060834926,0.626443446,0.618004382,-0.078044489,0.730811656,0.675082982,-0.050971664,0.70723778,0.599865258,-0.088281579,0.68419987,0.588228285,-0.114011429,0.659265041,0.593043029,-0.130136952,0.773497999,0.660655379,-0.058588266,0.763880193,0.583928943,-0.09211494,0.751014113,0.554299176,-0.11720822,0.735188901,0.526300311,-0.135746345,0.817180336,0.672586381,-0.068707228,0.823600471,0.595759928,-0.110293671,0.828487217,0.56176883,-0.134087712,0.827002943,0.522571743,-0.149212807,0.857858121,0.704440475,-0.079003774,0.883050203,0.651000977,-0.119568691,0.904625773,0.632058322,-0.137208447,0.919891238,0.607621968,-0.148423314 +Right,0.806384146,0.824370027,6.72E-08,0.744089067,0.804776549,-0.025595456,0.693712473,0.72075367,-0.042935651,0.662717462,0.654166698,-0.058156498,0.626596272,0.599316657,-0.075083092,0.729050398,0.655246317,-0.048832703,0.706234157,0.578192711,-0.086752132,0.68412441,0.56132406,-0.113883309,0.65938437,0.560023785,-0.131352514,0.771561325,0.642285287,-0.057460956,0.762528419,0.559328675,-0.092610754,0.750806212,0.528289616,-0.11948663,0.735832691,0.500188947,-0.138787568,0.814401329,0.658443272,-0.068707503,0.819656372,0.57774663,-0.110510774,0.822546601,0.54051733,-0.135323346,0.819177866,0.50095892,-0.150914818,0.853557587,0.695881903,-0.080092244,0.875419259,0.639292061,-0.120262668,0.894046903,0.61437279,-0.13837114,0.906152427,0.585174561,-0.149978787 +Right,0.790450811,0.846785903,1.05E-07,0.72979939,0.796736956,-0.021969095,0.692975104,0.693095922,-0.038605429,0.673956513,0.613765538,-0.053644527,0.647328973,0.546735644,-0.070745066,0.731389344,0.623255968,-0.046701916,0.714442611,0.54418391,-0.085927017,0.694247961,0.518980622,-0.115406834,0.667582512,0.504759312,-0.135139063,0.77189827,0.629816353,-0.058270019,0.769277334,0.54540354,-0.09745276,0.756092131,0.509212017,-0.127519593,0.737488985,0.476013839,-0.148085952,0.810231268,0.666239262,-0.07227394,0.818407714,0.585701406,-0.113489658,0.816993952,0.54366219,-0.139103949,0.808584034,0.499587715,-0.155158043,0.842844129,0.723187089,-0.086359769,0.863017023,0.669387758,-0.124525905,0.875050664,0.63581574,-0.143238366,0.881760955,0.598029912,-0.155480593 +Right,0.781649053,0.879574358,2.97E-08,0.727467775,0.810004234,-0.017696716,0.701293051,0.69528234,-0.030323323,0.691527247,0.609243572,-0.042136129,0.673459649,0.536235452,-0.055203173,0.742226183,0.625493288,-0.03361107,0.735733688,0.543253541,-0.065205716,0.719191849,0.508567095,-0.091243945,0.696122169,0.48132807,-0.110272452,0.77889353,0.64205128,-0.044605948,0.78417933,0.558695614,-0.077049531,0.77124089,0.522747397,-0.103752337,0.750609398,0.488344789,-0.123026319,0.81082195,0.686561406,-0.057976704,0.823972285,0.61272788,-0.090325929,0.816541135,0.570853412,-0.112143628,0.800919652,0.530127227,-0.127308488,0.836322069,0.751725554,-0.071901172,0.857913673,0.701442063,-0.101688787,0.859822333,0.664099872,-0.118272066,0.853579938,0.625233769,-0.130374879 +Right,0.779440045,0.89691329,-1.53E-08,0.726226926,0.826223254,-0.016190538,0.702620149,0.709893048,-0.028717672,0.695198417,0.623707354,-0.040873114,0.677645922,0.548567951,-0.054290753,0.745158017,0.643022299,-0.032178354,0.738892376,0.560305595,-0.06321609,0.721665561,0.527635813,-0.089064218,0.695979536,0.502127647,-0.107714452,0.779435575,0.666497827,-0.044029903,0.784629464,0.58087337,-0.075576723,0.770595908,0.545859396,-0.101196088,0.747993827,0.515457034,-0.119738914,0.808580875,0.71680516,-0.058273457,0.824200749,0.637193859,-0.090409018,0.814687788,0.598080754,-0.111505076,0.794758379,0.562991202,-0.126038969,0.831923485,0.786618352,-0.072874486,0.855295777,0.73197335,-0.103574716,0.854217827,0.699128628,-0.119859546,0.84162873,0.668200076,-0.131482556 +Right,0.784400463,0.90199095,3.41E-08,0.729889631,0.829901338,-0.019070067,0.702698827,0.716510534,-0.033836409,0.689584136,0.634065688,-0.047595028,0.669019341,0.559480011,-0.062902756,0.744218647,0.651525676,-0.0376423,0.731962919,0.576125026,-0.072814748,0.711479485,0.548713088,-0.101403318,0.682902217,0.529744923,-0.12122149,0.779691339,0.674320579,-0.049783532,0.778049231,0.595456302,-0.083776079,0.762896359,0.561048687,-0.111206666,0.740508258,0.532090664,-0.130587488,0.811534822,0.727426231,-0.064448103,0.823134482,0.657151878,-0.100315198,0.819472671,0.619744956,-0.12296284,0.80668813,0.583191514,-0.138088971,0.836688399,0.800840974,-0.07938417,0.858943403,0.763004422,-0.113458805,0.866632044,0.741035581,-0.129275084,0.866197944,0.718714297,-0.139905185 +Right,0.789293349,0.9052037,1.13E-08,0.731855571,0.840506077,-0.021172458,0.701054215,0.732409537,-0.038694199,0.682937026,0.652686536,-0.054570023,0.655216694,0.586476445,-0.072583616,0.742941141,0.673775733,-0.050296403,0.725507081,0.603975296,-0.089381173,0.702050924,0.579924285,-0.119308703,0.672593713,0.569078684,-0.139534801,0.778598487,0.696582198,-0.061891362,0.771903336,0.624240458,-0.100470044,0.753462017,0.594968319,-0.128670692,0.730528951,0.575209022,-0.148673266,0.81272763,0.745348871,-0.075628541,0.816362202,0.679367721,-0.114638895,0.808650851,0.640560985,-0.138719007,0.795031369,0.608714998,-0.155035675,0.84183538,0.813017905,-0.089600943,0.860545814,0.771783054,-0.12638855,0.866537571,0.74974829,-0.144483954,0.86593008,0.730106175,-0.157041818 +Right,0.796862006,0.936006129,-6.33E-08,0.740179181,0.874193549,-0.016590379,0.703561485,0.767787755,-0.030585429,0.678278029,0.694108009,-0.044260126,0.647811532,0.635848224,-0.058914669,0.75080198,0.71899581,-0.034441076,0.732295215,0.650403261,-0.068953864,0.707470655,0.6312325,-0.095735312,0.679735899,0.6253649,-0.112985812,0.785588324,0.738282382,-0.045035053,0.777837098,0.672461092,-0.077310331,0.76089251,0.650653958,-0.100247063,0.742666721,0.634969294,-0.11598172,0.820053756,0.779452026,-0.058228277,0.821924686,0.716929018,-0.091267005,0.812504411,0.685267448,-0.109266594,0.798430145,0.655644894,-0.120700799,0.851637006,0.836793065,-0.071862385,0.871449232,0.792494476,-0.102207206,0.876476586,0.771617353,-0.115701869,0.873333871,0.750829339,-0.124605961 +Right,0.814160168,0.920982063,-5.48E-08,0.751774967,0.879692078,-0.029181171,0.701084614,0.786028147,-0.051353183,0.668305039,0.723565757,-0.070032798,0.639521718,0.661114097,-0.08989317,0.751464784,0.750108659,-0.067967668,0.729822576,0.691506147,-0.111873426,0.702567279,0.67950058,-0.142588988,0.671358287,0.685999155,-0.16162917,0.792905807,0.761377215,-0.074733816,0.786329508,0.703326583,-0.118230216,0.768073618,0.690933347,-0.14485164,0.746972084,0.689217627,-0.163345471,0.832683146,0.786318183,-0.083132148,0.839636326,0.7284199,-0.128182188,0.829867601,0.705749631,-0.149236605,0.815042019,0.684685707,-0.162603766,0.868584037,0.829345644,-0.092268273,0.890634418,0.789808154,-0.133907259,0.909171581,0.781608045,-0.149947673,0.923848808,0.777663469,-0.160117105 +Right,0.82797128,0.88932693,-1.15E-07,0.76285845,0.853861868,-0.031815872,0.714139521,0.761940777,-0.055178858,0.683477402,0.698953629,-0.075002037,0.654736876,0.635826528,-0.095132835,0.767356873,0.727031589,-0.067444853,0.752792716,0.673532546,-0.10810405,0.731845558,0.666698635,-0.134161755,0.705555022,0.675443172,-0.149651781,0.81364423,0.738853335,-0.072630331,0.810167909,0.679411888,-0.113941841,0.796230495,0.670222342,-0.140180409,0.77927655,0.670132756,-0.15826267,0.855424821,0.762100458,-0.079250507,0.86799407,0.707384288,-0.12365789,0.86900121,0.69390434,-0.14475362,0.863123536,0.680480719,-0.157429516,0.890829921,0.80291611,-0.086712092,0.918441594,0.759747624,-0.126375839,0.941407502,0.755315244,-0.141400337,0.957477331,0.754544377,-0.150833443 +Right,0.831148446,0.873718202,-1.54E-07,0.766537309,0.838050723,-0.033795249,0.715670884,0.754914761,-0.059646752,0.682739079,0.700388372,-0.081341475,0.653744161,0.640033722,-0.103593059,0.768811941,0.712638676,-0.074518636,0.748938203,0.664927065,-0.117278188,0.72427702,0.662742138,-0.14478296,0.693611622,0.669946611,-0.161746934,0.813979506,0.722779393,-0.079091981,0.806717813,0.669914246,-0.122621492,0.789540946,0.664557636,-0.149430856,0.76973778,0.660493493,-0.168539405,0.855062842,0.74373889,-0.085033976,0.863265753,0.69929719,-0.130566403,0.861938,0.687131584,-0.152447045,0.856482148,0.670321584,-0.166484669,0.891408384,0.78244853,-0.091973044,0.915782511,0.745902658,-0.131830528,0.934405088,0.743533432,-0.147940397,0.947086692,0.740094781,-0.15907146 +Right,0.833787441,0.865604281,-8.64E-08,0.7675488,0.818821549,-0.029373342,0.717307568,0.729122341,-0.053637106,0.683866322,0.669054031,-0.075303249,0.651812673,0.611983061,-0.097321004,0.76574254,0.676484942,-0.064342484,0.74061358,0.621928751,-0.110464849,0.712181389,0.615511239,-0.142925605,0.679823697,0.628345072,-0.163125753,0.808836639,0.68809855,-0.072340839,0.800603509,0.634821653,-0.118572325,0.783956945,0.62200284,-0.147662044,0.763173223,0.617388785,-0.167978138,0.850349486,0.715498984,-0.082804337,0.857612193,0.663375258,-0.130621299,0.852323055,0.642450571,-0.154424161,0.838672221,0.62654227,-0.169276774,0.889241457,0.760453105,-0.094101369,0.914954782,0.713040352,-0.135921195,0.929627419,0.702048719,-0.153859347,0.934076726,0.696965635,-0.166012049 +Right,0.820560038,0.849482298,-6.57E-08,0.760671258,0.790727437,-0.021767035,0.718215764,0.688885748,-0.042632557,0.686980188,0.613417983,-0.062674098,0.651301086,0.548232615,-0.084015794,0.767642975,0.618015528,-0.049700134,0.742278576,0.547365069,-0.094847858,0.712374568,0.537942767,-0.130298823,0.678398192,0.543971419,-0.153320357,0.80179882,0.635797381,-0.062362686,0.791032195,0.55549252,-0.107147366,0.763225734,0.541490436,-0.137804836,0.732266188,0.538887739,-0.158358544,0.836918473,0.677650332,-0.07777705,0.843202293,0.604552448,-0.119182087,0.827966571,0.577424705,-0.140803009,0.805565119,0.559689879,-0.154394671,0.870108306,0.740261436,-0.093912639,0.891275942,0.688792288,-0.12901783,0.887829185,0.661677063,-0.144926772,0.873002231,0.640437782,-0.155967638 +Right,0.808396637,0.839857757,-8.69E-08,0.756831706,0.766968429,-0.019921409,0.732243538,0.64669919,-0.040805604,0.713777006,0.559614122,-0.061229836,0.684104502,0.497781157,-0.083399102,0.789197028,0.593502879,-0.051795553,0.773007393,0.513199151,-0.099706203,0.742247701,0.49107945,-0.136217996,0.705353141,0.490957201,-0.158831567,0.821292281,0.625040472,-0.066735633,0.827630162,0.526239693,-0.117582373,0.796892285,0.510428905,-0.147808164,0.761944056,0.52330327,-0.164732024,0.849077523,0.681845903,-0.084254429,0.862815797,0.598623693,-0.129545197,0.835958004,0.578820527,-0.150428966,0.80289501,0.578063071,-0.160791919,0.870243847,0.757585645,-0.102298699,0.891489387,0.707110882,-0.140352651,0.880264044,0.685094476,-0.156682029,0.85822922,0.671417177,-0.166222617 +Right,0.822768509,0.850863338,-2.78E-07,0.77116251,0.748785615,-0.01542104,0.754068971,0.62640506,-0.034536328,0.741548538,0.538299799,-0.054149169,0.717172682,0.471612155,-0.074267209,0.821749389,0.574855387,-0.052052673,0.798404336,0.484842688,-0.098879717,0.760136247,0.462300837,-0.130266219,0.719557166,0.459598064,-0.148610935,0.846779704,0.623532534,-0.068659358,0.841605306,0.528106213,-0.118730575,0.79459244,0.513389945,-0.142890409,0.753412366,0.523537934,-0.155204967,0.865311861,0.694410443,-0.087559029,0.87112695,0.615729153,-0.133235887,0.825914264,0.60018754,-0.149988383,0.784405649,0.602485895,-0.156679228,0.874692798,0.780777931,-0.106906183,0.888199687,0.743492067,-0.146595702,0.859455228,0.734572947,-0.161580294,0.827564299,0.733221829,-0.168705493 +Right,0.832715809,0.845423698,-4.79E-07,0.783928871,0.711282551,-0.024207134,0.774782896,0.573455751,-0.045740202,0.77288574,0.474897623,-0.06533289,0.763587594,0.400439203,-0.085058317,0.862042546,0.534915924,-0.066585645,0.828674793,0.456971645,-0.118474029,0.784091055,0.439715862,-0.152473629,0.740096211,0.43512553,-0.17311202,0.883223474,0.597496152,-0.080226742,0.85503912,0.522285163,-0.134908244,0.798115194,0.503605545,-0.161171049,0.753315508,0.502663612,-0.177323207,0.892892361,0.676780701,-0.096877255,0.871865451,0.623069108,-0.15014492,0.818803251,0.606521368,-0.169348732,0.775791168,0.60217464,-0.178336412,0.89004904,0.769954622,-0.114339091,0.877116859,0.743732452,-0.162501082,0.835343122,0.736935318,-0.180411562,0.798325777,0.731784165,-0.189492166 +Right,0.829612851,0.79027611,-5.09E-07,0.790022433,0.660081863,-0.030541716,0.791702867,0.52807039,-0.053091701,0.7968961,0.432194978,-0.071044654,0.795162022,0.360646516,-0.089453392,0.883778036,0.515635252,-0.073454417,0.842492282,0.438091904,-0.124437004,0.793112457,0.407220095,-0.156713605,0.74896574,0.388655663,-0.175859109,0.896293223,0.582789421,-0.08243452,0.860165417,0.50489682,-0.135356396,0.797151089,0.472454011,-0.15545401,0.749875486,0.464653969,-0.166623622,0.894519031,0.664947867,-0.09462285,0.860554218,0.610374391,-0.148125917,0.799872935,0.578046679,-0.160161868,0.755515575,0.563779175,-0.163282081,0.880248189,0.753433049,-0.107971959,0.849526465,0.720287502,-0.156980455,0.798126578,0.701543689,-0.169710025,0.758055925,0.689190745,-0.173882857 +Right,0.842414021,0.825749993,-4.66E-07,0.803753257,0.687868476,-0.022979369,0.796649992,0.556366622,-0.043773256,0.795029223,0.457477152,-0.061832614,0.78735286,0.37272349,-0.080308959,0.888175607,0.528182387,-0.063535735,0.863349617,0.43637839,-0.111474946,0.819762588,0.399221063,-0.141405806,0.780184388,0.376323462,-0.157788903,0.903823197,0.593361259,-0.072808459,0.861086488,0.512660146,-0.121671028,0.798069298,0.485005021,-0.137907892,0.748426437,0.48273021,-0.145002514,0.9002285,0.667360723,-0.084853455,0.840426743,0.613365352,-0.134439677,0.772360444,0.605234385,-0.143295839,0.722358048,0.612537503,-0.142840087,0.88191402,0.746136725,-0.097512089,0.809652269,0.726520121,-0.140978247,0.751804709,0.724923849,-0.151632249,0.711071372,0.723184228,-0.153503761 +Right,0.840847492,0.825230658,-4.92E-07,0.801248491,0.689071298,-0.021728141,0.79541254,0.562462628,-0.042242724,0.795917094,0.465768963,-0.06011454,0.789959311,0.377652347,-0.077799879,0.887038231,0.523977518,-0.059075493,0.86758399,0.430004776,-0.105751954,0.826260924,0.392325759,-0.134497315,0.786490321,0.370734751,-0.149635777,0.905931175,0.584883034,-0.068471968,0.868736863,0.502492309,-0.116842784,0.805139601,0.474502861,-0.133045703,0.754076898,0.472985983,-0.13902846,0.905703068,0.656630993,-0.080669075,0.847727418,0.606426895,-0.12893784,0.781344831,0.598910809,-0.137557223,0.733139873,0.606606126,-0.13643916,0.890353918,0.734359086,-0.093552597,0.819405854,0.718263268,-0.135076493,0.765741467,0.719800293,-0.144940823,0.729709387,0.721054733,-0.145890623 +Right,0.83834517,0.81201756,-4.43E-07,0.815598905,0.658844948,-0.028675837,0.815121174,0.529162586,-0.05439993,0.817938626,0.431770265,-0.07693167,0.819464684,0.352756888,-0.098883644,0.911195397,0.528219104,-0.071183659,0.886415005,0.43497631,-0.123235099,0.83687222,0.40027225,-0.155179515,0.794328451,0.379133046,-0.172830835,0.91784966,0.602152109,-0.079411648,0.879910529,0.520411313,-0.132757366,0.81627506,0.484650433,-0.151304826,0.768820107,0.475189149,-0.16061525,0.905405283,0.680283666,-0.090742558,0.843323648,0.621846676,-0.142566681,0.773599863,0.598882675,-0.151137501,0.724724114,0.600247145,-0.150615573,0.879832745,0.758642793,-0.103257425,0.818164408,0.719893217,-0.145839036,0.773152173,0.707066894,-0.155049458,0.744178653,0.704175591,-0.156521231 +Right,0.823120952,0.752079368,-5.63E-07,0.823188186,0.630565286,-0.032061324,0.841642916,0.516998947,-0.057733998,0.853568494,0.433028758,-0.078912318,0.865037858,0.345808506,-0.099412717,0.922296107,0.55607307,-0.081608437,0.891126215,0.449475437,-0.126393512,0.839837074,0.416407883,-0.149191707,0.793949187,0.40124616,-0.160931528,0.920213938,0.634117842,-0.08693181,0.873276234,0.532558322,-0.129372612,0.807575226,0.495779604,-0.138388827,0.758121133,0.485860318,-0.142868787,0.89691925,0.715989769,-0.094718903,0.833229721,0.643762589,-0.135709494,0.770246863,0.599409223,-0.135199666,0.724618912,0.580815315,-0.13180089,0.861090362,0.788001359,-0.104197621,0.813803256,0.747673452,-0.139873415,0.779118955,0.712931991,-0.143289864,0.75567776,0.691770256,-0.142340124 +Right,0.771758437,0.840226591,-5.80E-07,0.801959932,0.722776949,-0.025144849,0.833367884,0.614885211,-0.044566598,0.851106822,0.533438146,-0.06035826,0.879470348,0.462035656,-0.075955547,0.889409184,0.676044643,-0.066395193,0.864643097,0.556521356,-0.100625969,0.815615714,0.507069588,-0.116985917,0.776782632,0.483209968,-0.125617698,0.863389969,0.7420035,-0.070907101,0.822633445,0.616612554,-0.10056179,0.772608459,0.550967515,-0.106507033,0.734456122,0.520040989,-0.112389252,0.823162854,0.798459768,-0.077225886,0.771924496,0.696727931,-0.108003788,0.730680287,0.632243872,-0.108174935,0.699658573,0.59948349,-0.108475029,0.777835906,0.839436233,-0.084674969,0.741411209,0.776657462,-0.113751374,0.712801576,0.733197987,-0.116797194,0.691841483,0.707684577,-0.117295839 +Right,0.746056259,0.93254292,-5.30E-07,0.771703184,0.79962045,-0.026035888,0.789843619,0.685087621,-0.049311887,0.79776758,0.593898654,-0.068686008,0.811739445,0.522845566,-0.089089163,0.850235045,0.755680382,-0.073526904,0.817503989,0.620161831,-0.112534806,0.770096064,0.560372829,-0.130815998,0.732540786,0.533344984,-0.14022477,0.818368912,0.825890839,-0.078164697,0.758498549,0.686513782,-0.114253283,0.709193349,0.627476394,-0.120311357,0.678794801,0.599915147,-0.125144139,0.773680031,0.87996459,-0.084267274,0.707288027,0.757212996,-0.119023696,0.672148645,0.69121021,-0.116111606,0.652011633,0.65260005,-0.112867653,0.726799011,0.917211056,-0.091402039,0.673307538,0.820618153,-0.121316738,0.65300858,0.77138257,-0.122300327,0.644211948,0.736582875,-0.120236568 +Right,0.751367569,0.878103495,-3.74E-07,0.749625802,0.744636536,-0.027778959,0.741591215,0.629878759,-0.054096013,0.714547217,0.545756698,-0.076746128,0.696416795,0.517485321,-0.099614836,0.841928303,0.676614761,-0.071381494,0.818528712,0.565067053,-0.108055532,0.764020681,0.533521175,-0.12619935,0.727497041,0.532413304,-0.136855349,0.821486712,0.749570847,-0.076211177,0.776590884,0.632614493,-0.112557419,0.720707893,0.584892511,-0.122161508,0.690911114,0.565060258,-0.128572777,0.783642828,0.810607791,-0.082191102,0.72932893,0.704790831,-0.117296353,0.681584656,0.648379326,-0.12031211,0.653746188,0.616776824,-0.12001434,0.742258489,0.857530296,-0.089146212,0.689764321,0.774437726,-0.119650729,0.656285107,0.730087161,-0.122872889,0.635323346,0.70126003,-0.121948756 +Right,0.706047952,0.941767693,-5.71E-07,0.662836134,0.805448115,-0.018420069,0.650132477,0.701848626,-0.040945295,0.637913346,0.635439992,-0.065280989,0.631770372,0.603187919,-0.087500386,0.772645473,0.639862597,-0.038313136,0.750395417,0.515821517,-0.083199948,0.689817488,0.516633511,-0.109000131,0.657717705,0.555139065,-0.121454366,0.778457403,0.694588602,-0.05089717,0.755406857,0.552174747,-0.096557736,0.684395432,0.553690493,-0.10821145,0.65486455,0.591873586,-0.109051384,0.767949343,0.756618559,-0.067657657,0.745033443,0.631804764,-0.110694952,0.675305665,0.626129389,-0.110549197,0.642994285,0.65602529,-0.101745702,0.742559791,0.82134366,-0.085780837,0.714465678,0.723795533,-0.116759382,0.664249003,0.7065382,-0.11690902,0.63612175,0.722936988,-0.110534273 +Right,0.710759342,0.915387392,-5.66E-07,0.66440171,0.79904449,-0.009887548,0.64428246,0.69935894,-0.027495187,0.632316232,0.635946393,-0.049881287,0.638821304,0.614008427,-0.069427736,0.752232432,0.583280861,-0.013707891,0.742108464,0.468493134,-0.052623816,0.687900186,0.478382051,-0.076387867,0.662344754,0.523920774,-0.088359386,0.769265413,0.626647353,-0.029992977,0.755803883,0.493376762,-0.068701841,0.686866522,0.509495258,-0.080674119,0.661010265,0.555475593,-0.081796706,0.774312437,0.685422003,-0.050865863,0.757927418,0.566330552,-0.086554021,0.688749373,0.575580776,-0.08680062,0.659696341,0.61465764,-0.079166226,0.764149606,0.753044963,-0.073109493,0.737015843,0.661622167,-0.097278103,0.685413063,0.652245164,-0.096194804,0.660055041,0.674068034,-0.089859955 +Right,0.723464549,0.894947052,-5.63E-07,0.670832515,0.800304174,-0.007730693,0.643849969,0.705622554,-0.024130795,0.630445361,0.646359265,-0.045880206,0.639496148,0.627848864,-0.064523377,0.732208371,0.565776885,-0.011734153,0.722955048,0.459903538,-0.048333589,0.671570659,0.49259603,-0.069298223,0.653506339,0.552022815,-0.079229899,0.754586101,0.598797321,-0.027240997,0.74308002,0.480444908,-0.062910594,0.678533077,0.524445534,-0.070522979,0.661026001,0.583984971,-0.068928018,0.7680673,0.649652123,-0.047312383,0.757972062,0.53694886,-0.078246258,0.694352925,0.568128109,-0.074873216,0.672482729,0.622227013,-0.065844081,0.76851368,0.713377357,-0.068848766,0.746752024,0.624330878,-0.087439351,0.695365906,0.628154576,-0.084001586,0.671364665,0.661896229,-0.077187173 +Right,0.729105055,0.867234349,-5.73E-07,0.681915343,0.785532832,-0.009117835,0.652957797,0.68655926,-0.023097474,0.634119511,0.624374628,-0.042986419,0.644885838,0.60317266,-0.059508562,0.726758718,0.54079622,-0.001397322,0.718678951,0.436181784,-0.036644835,0.673600733,0.475372016,-0.058085877,0.658022642,0.533117652,-0.068349056,0.750061393,0.565259159,-0.015219328,0.739366531,0.452329874,-0.050522197,0.681263447,0.506640494,-0.059951641,0.66453135,0.567953765,-0.058739893,0.768856168,0.609874606,-0.034562066,0.759736121,0.502649724,-0.065936163,0.699525177,0.544948459,-0.065109193,0.676303625,0.602047741,-0.056978192,0.779240727,0.670240462,-0.055694066,0.766551018,0.586364865,-0.075079449,0.717653513,0.600212455,-0.073649958,0.69123733,0.639330387,-0.067970715 +Right,0.750572801,0.846311986,-5.74E-07,0.700814784,0.771115243,-0.004014597,0.670946777,0.657523334,-0.010556064,0.64968574,0.583815873,-0.02320837,0.625909209,0.520326376,-0.034369729,0.713214815,0.537623882,0.011874706,0.691092968,0.451685965,-0.020939486,0.650049269,0.471506566,-0.045636602,0.62660718,0.513162315,-0.057884656,0.740919232,0.545675814,-0.002448913,0.71642226,0.447597325,-0.034489978,0.666809261,0.498266935,-0.049341019,0.648203015,0.557213545,-0.052679121,0.768839538,0.575568855,-0.021958467,0.749922693,0.475888252,-0.051369343,0.700220287,0.533318818,-0.052990086,0.681949615,0.594521701,-0.046857372,0.795942664,0.621967077,-0.042737693,0.774294496,0.542801678,-0.062402174,0.731792688,0.574427664,-0.061132502,0.711891294,0.621574461,-0.05538886 +Right,0.759150982,0.860195816,-5.80E-07,0.708768666,0.776035309,4.68E-05,0.680548489,0.665169477,-0.004520921,0.676077664,0.591998458,-0.015648365,0.676799893,0.53497535,-0.025828773,0.718883455,0.560769439,0.011030292,0.704786122,0.463671088,-0.020713873,0.668860257,0.475882024,-0.044853441,0.642605126,0.515980661,-0.056325771,0.74575609,0.569944978,-0.003662389,0.720754206,0.476564527,-0.035179097,0.674427688,0.5296731,-0.049595006,0.652688205,0.594278157,-0.052130971,0.774845541,0.597660184,-0.022731297,0.753882408,0.501350284,-0.051848121,0.709232748,0.559546828,-0.053689234,0.688830197,0.623476803,-0.04741323,0.806716323,0.640667081,-0.04243188,0.787871957,0.563765407,-0.061849106,0.752783298,0.600114167,-0.059022751,0.734248161,0.653282344,-0.051681388 +Right,0.763493598,0.861800671,-5.57E-07,0.716571093,0.78187412,-0.003795588,0.695313096,0.664663434,-0.009606964,0.70618999,0.592323124,-0.02088768,0.72159636,0.539255261,-0.030889416,0.736529469,0.557474554,0.007680458,0.730958343,0.457813501,-0.023764258,0.693744242,0.460610032,-0.047717422,0.664951801,0.49350673,-0.05957076,0.764493406,0.568995535,-0.00521181,0.741627157,0.477395207,-0.035823755,0.69179076,0.523566544,-0.049575604,0.667790174,0.583442092,-0.052349422,0.793155074,0.601091802,-0.022799203,0.776507318,0.504036248,-0.051319022,0.729376793,0.555189848,-0.052598421,0.707475841,0.61523819,-0.046748128,0.823232651,0.649613142,-0.04143871,0.806060553,0.574299753,-0.061199013,0.770034015,0.607449353,-0.058562618,0.751952589,0.656555891,-0.051645398 +Right,0.772429287,0.859425426,-6.40E-07,0.723869085,0.781667471,-0.003648118,0.701065481,0.660601258,-0.009133382,0.710544884,0.579572141,-0.020163843,0.729016423,0.525979102,-0.029823853,0.760057449,0.538074911,0.009901979,0.749472201,0.444932044,-0.021113502,0.708436489,0.44673112,-0.042550866,0.677218258,0.478978008,-0.052109655,0.787923634,0.554379821,-0.003489652,0.763222396,0.462576866,-0.032712843,0.710953116,0.514451563,-0.041281976,0.690004945,0.571055174,-0.039315816,0.813414454,0.592707336,-0.02181433,0.783593655,0.512204289,-0.051046714,0.738168955,0.580932975,-0.045081068,0.726327419,0.642144322,-0.033016592,0.836255848,0.650833189,-0.041360389,0.803351045,0.58358705,-0.060588241,0.768514812,0.634239197,-0.052222237,0.763136446,0.687358737,-0.040386774 +Right,0.782242179,0.843389452,-5.44E-07,0.732102036,0.769022703,-0.006578126,0.708427668,0.656809032,-0.01493203,0.711421072,0.579070568,-0.027688161,0.724308252,0.519908071,-0.038435031,0.775022805,0.526411057,0.004456914,0.753409028,0.43814671,-0.03160629,0.712615728,0.442124367,-0.053521629,0.683818638,0.476074636,-0.061595228,0.808892369,0.539315343,-0.008701238,0.789199531,0.438418806,-0.044585291,0.735533714,0.488330483,-0.052775282,0.711634636,0.543250263,-0.046360455,0.832485378,0.576087058,-0.026931917,0.780148327,0.524792433,-0.057884056,0.739084601,0.599149823,-0.051082108,0.734436214,0.649299026,-0.036539305,0.844293892,0.632758021,-0.046866607,0.782837033,0.61734587,-0.063577019,0.760209441,0.666486144,-0.055565029,0.770347118,0.693419337,-0.043450467 +Right,0.784949124,0.847438991,-5.64E-07,0.734894991,0.771572828,-0.008203813,0.712736726,0.657274663,-0.017316107,0.720722914,0.574341834,-0.030232636,0.741062224,0.517359495,-0.041387439,0.774541318,0.530666232,0.000626369,0.755567253,0.434625119,-0.035403658,0.714198709,0.446322381,-0.058671393,0.686800957,0.489603579,-0.068280406,0.809133172,0.541254461,-0.011643527,0.793585718,0.428765893,-0.046835236,0.740858018,0.470804811,-0.057520866,0.714679003,0.5331797,-0.054121409,0.834383965,0.577082813,-0.028657718,0.788184345,0.510956228,-0.060235102,0.744720459,0.577956915,-0.057326496,0.734585464,0.63572228,-0.045976773,0.848769724,0.63333118,-0.047163393,0.787159443,0.609853804,-0.066598378,0.760307848,0.6585747,-0.061670788,0.764156044,0.695042074,-0.051832296 +Right,0.786131859,0.84895891,-5.57E-07,0.736376762,0.777324617,-0.009536589,0.712679744,0.666051686,-0.019611347,0.721804678,0.585914254,-0.033166427,0.743728101,0.532706141,-0.044884052,0.771661222,0.534954131,-0.001580647,0.754274368,0.43538025,-0.036542051,0.713479519,0.449818999,-0.058903642,0.687988639,0.496497303,-0.068308651,0.807854474,0.543652236,-0.01298013,0.792999208,0.428963184,-0.047054607,0.741171241,0.473105609,-0.057428308,0.716459215,0.535693169,-0.054443799,0.834911704,0.578567564,-0.029075354,0.793691158,0.507583141,-0.060224675,0.749329209,0.571863592,-0.058643296,0.737261117,0.629383743,-0.048703358,0.851287901,0.633855462,-0.046625525,0.792226613,0.609093487,-0.066682555,0.762545943,0.655469179,-0.063517474,0.762774408,0.6923365,-0.055182643 +Right,0.787256718,0.853441417,-5.93E-07,0.734449625,0.776951432,-0.009602335,0.712505221,0.65841639,-0.018985363,0.726240277,0.574676514,-0.031911206,0.75098002,0.51850605,-0.043155119,0.773173213,0.532735586,0.000824765,0.750877321,0.441538155,-0.034909301,0.709414005,0.458479702,-0.058763627,0.683057666,0.503872275,-0.069258206,0.808297813,0.542142987,-0.010868669,0.788804293,0.432818085,-0.045175448,0.737123191,0.480042905,-0.056103714,0.71308434,0.544378519,-0.053709686,0.834509432,0.578105986,-0.027550373,0.790497959,0.510185778,-0.059182223,0.74795121,0.57956624,-0.056967836,0.738249004,0.639056206,-0.04666641,0.850436628,0.634944975,-0.045826975,0.789667666,0.610942423,-0.066451296,0.762324512,0.661740243,-0.062704533,0.765145898,0.699615598,-0.053997654 +Right,0.786495686,0.852715492,-5.99E-07,0.736619949,0.779732406,-0.009480669,0.714592695,0.668682575,-0.019608395,0.727427423,0.590994954,-0.033790864,0.75537473,0.54651463,-0.046411958,0.779092669,0.531562209,0.001032506,0.750239372,0.450571626,-0.037481699,0.709332108,0.475131691,-0.06375283,0.681363285,0.522029698,-0.075278066,0.814097524,0.541904211,-0.010758495,0.783268213,0.443460464,-0.046114933,0.731527865,0.481338918,-0.060189296,0.702998281,0.535830081,-0.060123187,0.840436339,0.578456759,-0.027442124,0.775765598,0.546257615,-0.060423385,0.73552829,0.622100115,-0.059888225,0.727386534,0.675441265,-0.049834579,0.855016708,0.635152757,-0.0457987,0.788064659,0.625350058,-0.064307444,0.764736354,0.679777145,-0.058989037,0.769239724,0.715137184,-0.048988186 +Right,0.79055059,0.858297765,-5.49E-07,0.739664793,0.779307961,-0.007495929,0.721809685,0.661435306,-0.015130274,0.732062399,0.581038833,-0.026568646,0.748028457,0.523738325,-0.037318796,0.781571865,0.537200153,0.001220579,0.75303185,0.459173739,-0.03600812,0.712065876,0.47453177,-0.062338706,0.680123091,0.512168527,-0.073744044,0.815450191,0.547819376,-0.010741671,0.783810437,0.4532727,-0.04452502,0.7298581,0.474767894,-0.059452076,0.695465922,0.518240213,-0.060510039,0.841398478,0.58447361,-0.027014719,0.774874091,0.548172951,-0.060032483,0.732638299,0.623294175,-0.060419813,0.720317781,0.685316265,-0.050773706,0.855697393,0.642057538,-0.044649459,0.785691381,0.642495811,-0.065972134,0.759302795,0.702204227,-0.061609004,0.759987056,0.747708261,-0.051341336 +Right,0.797763765,0.873252511,-4.83E-07,0.751660407,0.805890799,-0.010483728,0.725965858,0.689628959,-0.019298697,0.727084577,0.607832968,-0.030629622,0.735730886,0.546638012,-0.041087572,0.785284817,0.561609387,-0.003662818,0.761377692,0.476057172,-0.039143197,0.724552572,0.472562015,-0.063570842,0.691496015,0.496550918,-0.073723756,0.822053969,0.575138211,-0.01353809,0.796032608,0.47957775,-0.048669241,0.746403992,0.494565427,-0.064243346,0.710897028,0.535367191,-0.064845107,0.851986289,0.611708105,-0.027476572,0.792516172,0.573130906,-0.063248523,0.745911598,0.640045643,-0.066126905,0.724103332,0.702240646,-0.056828707,0.87214154,0.668771327,-0.042416163,0.806441903,0.667877197,-0.067200601,0.776189983,0.72882396,-0.064874701,0.770401061,0.780203104,-0.054943126 +Right,0.804733396,0.876897335,-4.56E-07,0.758317232,0.808360815,-0.012127437,0.726897836,0.702702343,-0.023623377,0.718212605,0.629781425,-0.03714256,0.724433303,0.570699215,-0.049457543,0.791917741,0.569236934,-0.007913855,0.774407268,0.477743566,-0.043625444,0.738321185,0.474042773,-0.067706414,0.704956591,0.496918201,-0.077915333,0.83011961,0.584436953,-0.017488034,0.80932337,0.483993918,-0.054604962,0.760437071,0.508190036,-0.07069815,0.726855516,0.556768656,-0.071173511,0.86013025,0.621057153,-0.030956432,0.805844903,0.579264045,-0.067669243,0.759606898,0.639514685,-0.072206721,0.736909032,0.698487222,-0.064285375,0.881178617,0.676969945,-0.045402206,0.816612601,0.678789973,-0.071722656,0.786682189,0.738316596,-0.071575224,0.780090094,0.788807631,-0.063285038 +Right,0.8016783,0.853852391,-4.53E-07,0.75945127,0.78317225,-0.014684388,0.728105903,0.681237161,-0.029917728,0.710917056,0.614819646,-0.047229055,0.711978912,0.548145831,-0.063052021,0.800630629,0.545758545,-0.010956586,0.783716083,0.45382899,-0.048781581,0.746238172,0.454493284,-0.073627777,0.715990007,0.484090984,-0.084012903,0.838629663,0.567569315,-0.020724677,0.82309866,0.463891745,-0.058529124,0.770725667,0.490603566,-0.073071398,0.738474071,0.540114284,-0.072473638,0.866210282,0.612107873,-0.035065237,0.821641505,0.547767103,-0.072639249,0.769932151,0.6009655,-0.074989036,0.745986879,0.657234967,-0.065431476,0.883900464,0.675404489,-0.050468039,0.824957311,0.649372816,-0.0776814,0.78783071,0.696546376,-0.076576777,0.775624096,0.742085814,-0.067394033 +Right,0.802225649,0.841998935,-4.97E-07,0.758252442,0.756089687,-0.013392464,0.732408404,0.652504027,-0.028410388,0.717039347,0.585981607,-0.045389362,0.710993886,0.520021856,-0.060821097,0.815000832,0.531656921,-0.013156909,0.796397865,0.440248132,-0.051984642,0.752461433,0.442441076,-0.077836022,0.718346953,0.475483924,-0.088974535,0.849514127,0.560876071,-0.023785213,0.833191335,0.457934648,-0.061464336,0.776692808,0.479302764,-0.076286763,0.74218154,0.526859462,-0.07660304,0.87053293,0.611982226,-0.038730618,0.823002219,0.548735499,-0.074502386,0.766718864,0.589987338,-0.076694243,0.739015996,0.637306213,-0.068153568,0.879712641,0.680153608,-0.054810427,0.818405986,0.650845587,-0.079342969,0.777876079,0.685991526,-0.077436306,0.76144135,0.72050333,-0.068584338 +Right,0.804407179,0.826417446,-5.42E-07,0.759095669,0.726782322,-0.012533023,0.738593698,0.625114024,-0.027490057,0.723631382,0.556959867,-0.044569317,0.71463573,0.492989004,-0.060338885,0.830222905,0.517868161,-0.015896413,0.804538608,0.431502163,-0.053399008,0.756624401,0.432776809,-0.078599647,0.72222513,0.463007152,-0.09035752,0.859398961,0.554841638,-0.027329797,0.835085928,0.454233557,-0.064070739,0.774373591,0.47077477,-0.078776494,0.738774061,0.515116155,-0.080632433,0.872958124,0.610602081,-0.042676989,0.824523926,0.541404903,-0.078328736,0.762308896,0.569181085,-0.081536919,0.730502069,0.6096223,-0.074656434,0.872705996,0.679675221,-0.058983844,0.81404072,0.637407899,-0.083932154,0.76803571,0.656229317,-0.083485924,0.744373322,0.683258057,-0.076406956 +Right,0.809682727,0.837055445,-5.59E-07,0.763057351,0.714108765,-0.01835124,0.756267428,0.613546848,-0.036307525,0.753764212,0.544698596,-0.054086849,0.747763872,0.493226916,-0.071711838,0.861203969,0.54476434,-0.038336471,0.823491812,0.449485958,-0.077180147,0.766759455,0.442872852,-0.102470316,0.726337552,0.465281546,-0.115160197,0.877088308,0.594111264,-0.046590101,0.842040241,0.48999998,-0.083439603,0.776610017,0.486934781,-0.096853673,0.738213539,0.514760792,-0.101452805,0.875420094,0.65525651,-0.057921123,0.830821574,0.57001102,-0.092956692,0.764256537,0.569562495,-0.096809417,0.726258218,0.592737257,-0.094052181,0.859138191,0.723362923,-0.070626386,0.810868382,0.66587621,-0.097983114,0.760895669,0.66191256,-0.100788407,0.729722977,0.673201382,-0.098135151 +Right,0.813592553,0.867833972,-6.48E-07,0.772582412,0.719461739,-0.021981822,0.777012348,0.593777835,-0.040426113,0.78537482,0.502483845,-0.055430859,0.787122309,0.428912818,-0.070378184,0.872703135,0.581525803,-0.066073805,0.828862071,0.474799275,-0.109244741,0.766574502,0.46162948,-0.130436495,0.722563624,0.470857024,-0.140321016,0.878733635,0.643302977,-0.072815083,0.834158719,0.532539666,-0.114903189,0.76677531,0.514982224,-0.124194071,0.724490047,0.53072089,-0.126873583,0.864834368,0.709801376,-0.081593595,0.813998818,0.619440794,-0.12424285,0.751221061,0.598335266,-0.130043358,0.711384654,0.601386666,-0.129173115,0.838782847,0.775854945,-0.090813071,0.775818765,0.733523786,-0.129851326,0.726774991,0.714637041,-0.141369611,0.694689274,0.701298892,-0.144850865 +Right,0.825936437,0.861094296,-5.24E-07,0.789120615,0.715316117,-0.012393122,0.790347517,0.583931684,-0.027954428,0.795660198,0.485087693,-0.042511988,0.791393638,0.41614145,-0.057654198,0.870822072,0.575749934,-0.054282483,0.836730838,0.464596361,-0.094152547,0.779236197,0.441337645,-0.116024777,0.73762387,0.440399826,-0.12698707,0.874454558,0.642654061,-0.064914905,0.834504485,0.538787842,-0.103416555,0.771202385,0.507137895,-0.114002757,0.73066318,0.507144094,-0.118959203,0.857999682,0.712250471,-0.076744244,0.799648643,0.628831446,-0.114800692,0.736472368,0.599472284,-0.122471549,0.696346581,0.59374547,-0.123927966,0.831476152,0.780258536,-0.088141061,0.766485929,0.730723798,-0.119742818,0.718520582,0.711496711,-0.127939865,0.685167372,0.703470767,-0.130728751 +Right,0.825112939,0.821549892,-4.24E-07,0.792963386,0.672943413,-0.012762392,0.79266578,0.535237968,-0.028406935,0.791849732,0.435911804,-0.042956699,0.770784318,0.380285501,-0.058108769,0.866983175,0.535922647,-0.052403439,0.835218132,0.429589868,-0.092200905,0.781152785,0.406896561,-0.11554303,0.741704822,0.405217588,-0.127543688,0.869709134,0.603408337,-0.063323706,0.83245784,0.515280128,-0.100261919,0.772132993,0.48793456,-0.110625416,0.73359549,0.488393366,-0.115550809,0.851367235,0.676224232,-0.075437784,0.787607014,0.603052497,-0.111742951,0.726014197,0.577242076,-0.117192253,0.687647104,0.572254002,-0.117106318,0.824147284,0.748760045,-0.087346993,0.757467449,0.699825883,-0.116246477,0.712317467,0.68501997,-0.120337196,0.681328356,0.68198508,-0.12025132 +Right,0.836229801,0.793848515,-2.23E-07,0.822893798,0.670698881,-0.01659199,0.812084973,0.542075455,-0.037256662,0.805417538,0.444975019,-0.054408424,0.80268538,0.383607388,-0.072678126,0.865147829,0.558003843,-0.07778129,0.840678692,0.446923733,-0.120811477,0.789168298,0.408827692,-0.143360704,0.748057127,0.391986728,-0.154942974,0.858867466,0.62480402,-0.086529635,0.826171577,0.53712976,-0.129277781,0.768461585,0.495589972,-0.140446663,0.729511976,0.477117717,-0.14637503,0.834338963,0.695769608,-0.09460295,0.776477635,0.623812556,-0.133502781,0.717903078,0.582193136,-0.138314173,0.680391788,0.557386696,-0.138490126,0.802373528,0.762458503,-0.10198883,0.743396997,0.711441755,-0.133405358,0.70480299,0.687678158,-0.138497144,0.678034902,0.672251642,-0.139163911 +Right,0.841975272,0.783042014,-2.11E-07,0.835443079,0.672302127,-0.022698177,0.824492931,0.548139811,-0.0454023,0.815862834,0.452681452,-0.063277006,0.819686711,0.37993741,-0.083195232,0.874797583,0.567128122,-0.083992824,0.841126263,0.455399454,-0.126204491,0.791427314,0.412986159,-0.148818687,0.750086308,0.392118186,-0.161127493,0.864497781,0.63547802,-0.089179322,0.818332613,0.543305695,-0.130416751,0.758972287,0.495476156,-0.143289223,0.715422869,0.466273218,-0.15213643,0.837079883,0.702166438,-0.094073236,0.773035347,0.628113627,-0.131632745,0.717111111,0.584196687,-0.137148201,0.680200994,0.553295553,-0.138930842,0.802697718,0.760511816,-0.098794684,0.745157003,0.701200247,-0.130255014,0.708916068,0.675300479,-0.136196166,0.683317184,0.655966222,-0.13797912 +Right,0.840791821,0.806412876,-2.28E-07,0.837292552,0.690526664,-0.018230818,0.825724542,0.565651357,-0.040941119,0.809329391,0.470990598,-0.059806738,0.806800485,0.397240937,-0.080714107,0.879480481,0.570540071,-0.083852999,0.839753985,0.459229439,-0.124731757,0.787575483,0.412085354,-0.143463328,0.744218051,0.387332022,-0.15328303,0.869567096,0.638147116,-0.092224009,0.807577312,0.521925032,-0.134245887,0.747953892,0.467108458,-0.147620782,0.70527643,0.437143564,-0.156876177,0.842351735,0.704774737,-0.099313721,0.759019494,0.611738741,-0.140091568,0.70469135,0.580650389,-0.14501141,0.671518564,0.566515565,-0.145004109,0.806817532,0.761713386,-0.10551744,0.739513814,0.692168593,-0.14037849,0.706913531,0.674846172,-0.146402985,0.686982393,0.669475377,-0.147365004 +Right,0.829207122,0.835353255,-1.49E-07,0.803735912,0.712003231,-0.011081111,0.790459394,0.616591752,-0.033438265,0.767291367,0.562283099,-0.054898351,0.742706835,0.532194436,-0.079191439,0.861919224,0.568422318,-0.062457733,0.815971136,0.466539025,-0.099624701,0.771916568,0.423185974,-0.122326456,0.732402325,0.400088459,-0.135421455,0.861842394,0.628786862,-0.074906163,0.802328646,0.514771938,-0.110474087,0.749233842,0.460708112,-0.128107905,0.706009805,0.427881956,-0.140568703,0.844629824,0.696989596,-0.086000092,0.758972645,0.620057106,-0.122382559,0.701171458,0.608566344,-0.131199211,0.663122177,0.608586788,-0.133814856,0.816533685,0.760912538,-0.096204139,0.742970407,0.709370434,-0.124772944,0.70811218,0.70223403,-0.128397331,0.686360896,0.704324603,-0.12851724 +Right,0.826526821,0.850736618,-1.07E-07,0.790917575,0.720731914,-0.009701345,0.779792964,0.622793436,-0.0278835,0.766485214,0.561487257,-0.045548256,0.751174927,0.527014256,-0.065689966,0.857782543,0.56606549,-0.051396564,0.812738061,0.474341333,-0.086112134,0.773438215,0.430307299,-0.109658688,0.73848635,0.401298702,-0.124040231,0.86204654,0.626610696,-0.063791215,0.804680169,0.524740994,-0.097986668,0.754834533,0.467735112,-0.116022564,0.71337992,0.432982266,-0.128385618,0.847916067,0.697769225,-0.075467445,0.765705466,0.622075796,-0.114014916,0.705909491,0.605848312,-0.125426367,0.665953219,0.602582693,-0.128582641,0.822557688,0.768998504,-0.086051203,0.748893499,0.723490059,-0.118221849,0.710443556,0.718037248,-0.123917982,0.687172472,0.721595466,-0.124163739 +Right,0.817770898,0.852238238,-3.57E-07,0.773581445,0.71415621,-0.012227622,0.770100713,0.607288361,-0.028211465,0.76780194,0.533343434,-0.043453123,0.759337306,0.476944417,-0.060316782,0.863911748,0.589669764,-0.048346922,0.822910607,0.504605651,-0.083239064,0.781362891,0.460839152,-0.107229739,0.74445343,0.434480488,-0.121958435,0.865146279,0.648135781,-0.058104642,0.806572914,0.547735095,-0.091131255,0.754261017,0.497712672,-0.107472785,0.713222265,0.4654257,-0.119673967,0.849102914,0.709802747,-0.068650238,0.779238939,0.62179625,-0.10285306,0.725624323,0.574187458,-0.113962412,0.686783075,0.540173769,-0.119371139,0.821906865,0.768241525,-0.078991994,0.771231592,0.696749806,-0.107450336,0.734399915,0.653467536,-0.116377965,0.706442714,0.618132472,-0.120823152 +Right,0.816670239,0.851126432,-3.26E-07,0.769099891,0.716435909,-0.011793208,0.762476087,0.619798005,-0.028403254,0.756990671,0.554993033,-0.044603955,0.74478662,0.508184314,-0.062438909,0.862222016,0.588903546,-0.043512441,0.819460273,0.500088453,-0.077725671,0.777408838,0.459881544,-0.102541521,0.74032867,0.436850131,-0.11758627,0.865928769,0.645876169,-0.053198319,0.81074512,0.543345571,-0.084257863,0.760107338,0.493436038,-0.101189807,0.720117092,0.460636199,-0.113716185,0.851575911,0.706608415,-0.063838042,0.783169925,0.620547473,-0.096289299,0.731555045,0.575538874,-0.108080626,0.693849206,0.542845488,-0.113953404,0.824888289,0.763961256,-0.074329391,0.778368175,0.696936429,-0.100274086,0.743919075,0.657218158,-0.108115979,0.717294335,0.622620523,-0.112006083 +Right,0.81038028,0.860785604,-2.38E-07,0.767769694,0.728178322,-0.016131582,0.758246243,0.634126127,-0.037885264,0.747377634,0.576549053,-0.058370315,0.736968875,0.541894197,-0.08027523,0.858713508,0.598732412,-0.055803522,0.822784364,0.515562654,-0.095276475,0.782643199,0.471946985,-0.123066105,0.745030165,0.443767488,-0.139302313,0.862601995,0.658833623,-0.065053821,0.817210674,0.56598556,-0.101889066,0.770727277,0.511211336,-0.121645793,0.732044697,0.472410738,-0.135461479,0.850011528,0.723309577,-0.074756801,0.780191362,0.647793174,-0.110292226,0.729188204,0.60862267,-0.120455742,0.692556083,0.581544459,-0.12440642,0.825070918,0.782972574,-0.084734231,0.77625221,0.716775298,-0.109553851,0.742747903,0.68548435,-0.113898493,0.717696905,0.660866439,-0.115322158 +Right,0.819133341,0.901299655,-2.31E-07,0.78318882,0.778522015,-0.014692138,0.770514488,0.677236438,-0.036430631,0.762699068,0.613860428,-0.056406066,0.761601329,0.559671521,-0.076670602,0.859413862,0.656227827,-0.061162814,0.829442024,0.563937426,-0.101751752,0.785796642,0.524903357,-0.127696931,0.750229418,0.506949663,-0.142037362,0.863465309,0.718206346,-0.071297169,0.829457879,0.616027594,-0.1087019,0.78374666,0.56449759,-0.123719059,0.747354448,0.538526654,-0.133248076,0.849740028,0.781686068,-0.081937499,0.782436311,0.704060078,-0.117186733,0.734783888,0.669072866,-0.122818656,0.704176724,0.650579274,-0.123365097,0.82497412,0.840190053,-0.092503138,0.771652877,0.762582064,-0.118675984,0.737839997,0.724531233,-0.12202619,0.71540451,0.696520329,-0.122272782 +Right,0.79755646,0.891148031,-4.32E-07,0.776456952,0.788404346,-0.017084928,0.772357523,0.686189651,-0.038829051,0.765568495,0.614000559,-0.058271807,0.756224096,0.555057943,-0.078963794,0.853672266,0.666993737,-0.062785804,0.835618794,0.585871935,-0.105662651,0.793666899,0.555199265,-0.133309543,0.756544411,0.543974459,-0.149270877,0.865792215,0.727834225,-0.075701952,0.850047767,0.653525174,-0.119268805,0.799359918,0.614091694,-0.134590998,0.75590241,0.601559043,-0.14180702,0.859219909,0.796771049,-0.090348415,0.83964926,0.747226477,-0.132437751,0.791631579,0.707080781,-0.143190101,0.75121659,0.686763585,-0.147243813,0.838393211,0.863926709,-0.105003506,0.795807779,0.840379417,-0.143696323,0.745907307,0.809676051,-0.154578626,0.707859874,0.782862306,-0.158894062 +Right,0.800192237,0.873992383,-3.32E-07,0.760871172,0.754193604,-0.014267382,0.744330287,0.654006004,-0.034381349,0.726721883,0.587628603,-0.054536752,0.714081645,0.536331594,-0.075281009,0.832871675,0.600886881,-0.044847433,0.819236696,0.526831388,-0.085647918,0.775396347,0.506760955,-0.113076322,0.739680588,0.505896568,-0.128506824,0.847421229,0.655967653,-0.058092322,0.842054307,0.580372155,-0.098342232,0.789440095,0.553729594,-0.115301892,0.749570847,0.556717515,-0.123206243,0.84622246,0.723716199,-0.073535368,0.825714946,0.669451058,-0.11380548,0.771277845,0.64869386,-0.125843242,0.731910765,0.648676574,-0.129272446,0.831117451,0.795447886,-0.089021645,0.782865882,0.768677354,-0.124444015,0.734561384,0.757020891,-0.134606928,0.700404584,0.751540065,-0.137458771 +Right,0.78293097,0.871773839,-3.29E-07,0.740562677,0.80850625,-0.020081876,0.711276829,0.719081521,-0.040342793,0.693327367,0.661899447,-0.061169762,0.69721818,0.620841801,-0.080704667,0.7821033,0.61056447,-0.029593188,0.779270411,0.510924935,-0.070467114,0.74053818,0.510438859,-0.097709626,0.708408356,0.539987385,-0.110530995,0.811775088,0.639956295,-0.038340244,0.823250651,0.528235734,-0.076922923,0.77207613,0.534378886,-0.092598803,0.737449467,0.567533553,-0.095059402,0.833328784,0.690530121,-0.051147968,0.83341074,0.604901254,-0.08743979,0.778457344,0.623021066,-0.09309268,0.745008886,0.654341996,-0.088475436,0.847966492,0.756957948,-0.065222211,0.832963705,0.701517701,-0.092347525,0.788953483,0.717832088,-0.093229711,0.759828806,0.744354844,-0.087536834 +Right,0.784097373,0.914639235,-3.15E-07,0.746994019,0.866386414,-0.02492973,0.715719342,0.791320026,-0.049174879,0.693938792,0.743175983,-0.074410811,0.693376362,0.689588368,-0.098111235,0.773386419,0.654020607,-0.035631023,0.773182929,0.544268727,-0.079140186,0.738057971,0.535004497,-0.105876453,0.713078737,0.558367193,-0.118202552,0.802908599,0.681280315,-0.044669669,0.81480974,0.553292155,-0.089316592,0.762187719,0.590886176,-0.103166811,0.735075831,0.644389987,-0.101754077,0.829110146,0.730967104,-0.058310457,0.838227451,0.622071624,-0.099509917,0.783188224,0.66623348,-0.099551991,0.755489647,0.718064606,-0.088939935,0.851810277,0.797704816,-0.073864348,0.850082397,0.723973155,-0.104253836,0.80644691,0.751410663,-0.102255136,0.78172195,0.791530907,-0.093031317 +Right,0.780009091,0.950337231,-3.37E-07,0.740287781,0.903611302,-0.022754012,0.707101345,0.836961269,-0.045186013,0.688229203,0.79383111,-0.068849556,0.687234342,0.751055956,-0.090784736,0.762441039,0.680310845,-0.025806855,0.762037814,0.580413699,-0.065325849,0.73135674,0.553652823,-0.090357639,0.702716649,0.558920145,-0.102127664,0.79548651,0.70438832,-0.03350237,0.784602821,0.611132026,-0.073817223,0.736934662,0.66681999,-0.084448636,0.71398139,0.722039819,-0.082059987,0.824227273,0.751262963,-0.046334065,0.81640923,0.671083212,-0.084996194,0.765790343,0.727441192,-0.082271039,0.739798903,0.780615807,-0.070478834,0.848665714,0.81794852,-0.06112266,0.833673894,0.770500183,-0.089471303,0.791166365,0.805230856,-0.086180352,0.76701659,0.844719589,-0.076187357 +Right,0.764013171,0.943339229,-3.54E-07,0.719599128,0.898336589,-0.017543584,0.683783948,0.831159532,-0.035895884,0.662007093,0.792174995,-0.056426942,0.652458489,0.751796424,-0.076274261,0.732557297,0.662450671,-0.017162563,0.72097832,0.564959943,-0.052301541,0.690626085,0.534278512,-0.077345349,0.66194278,0.527561307,-0.090733729,0.765207231,0.681717515,-0.026893936,0.743361771,0.604982197,-0.065418489,0.698054492,0.665053368,-0.078643844,0.673594356,0.723740101,-0.079073548,0.793156862,0.725931048,-0.041154105,0.772185385,0.662677824,-0.078411058,0.724328578,0.724727273,-0.07825359,0.698557258,0.780050218,-0.069029815,0.815991402,0.790262341,-0.056934472,0.788461566,0.760440826,-0.083592884,0.749542415,0.803964794,-0.080935016,0.729169846,0.845693529,-0.07230112 +Right,0.78074944,0.978628933,-3.70E-07,0.733858168,0.94266957,-0.016225429,0.700422168,0.884104729,-0.032191075,0.680564106,0.849375427,-0.050140966,0.663197577,0.820396781,-0.068350263,0.745642245,0.711420238,-0.022084678,0.72916311,0.632157624,-0.051042821,0.705961883,0.593895197,-0.071558148,0.682349741,0.572232842,-0.083771951,0.782004952,0.729355097,-0.032635644,0.746751606,0.707587242,-0.067012191,0.706165791,0.781275451,-0.077652365,0.686028719,0.840690553,-0.077424876,0.810480356,0.784118354,-0.04625595,0.776590645,0.781036496,-0.080158718,0.73382622,0.847606301,-0.077362306,0.713381708,0.898540616,-0.06734325,0.82914263,0.862197578,-0.061414544,0.795596182,0.872940421,-0.085528478,0.758904338,0.915519476,-0.080451995,0.740955651,0.951799691,-0.070508659 +Right,0.775739133,0.953459501,-3.84E-07,0.741635144,0.894806504,-0.020480402,0.712592781,0.81907922,-0.04128769,0.691014051,0.773119271,-0.062569417,0.7000103,0.758342445,-0.083547004,0.786264837,0.700753331,-0.031553227,0.782758296,0.626717567,-0.066665985,0.759150982,0.594344735,-0.091241486,0.733672023,0.580631614,-0.106395073,0.822741747,0.741862833,-0.040825538,0.798110962,0.70935601,-0.081310362,0.751158118,0.764368773,-0.093202628,0.722420812,0.809904993,-0.093964785,0.848077357,0.812708855,-0.053793129,0.828410566,0.792495012,-0.095005848,0.781140208,0.838163316,-0.09365239,0.752100348,0.875134885,-0.083794191,0.862957358,0.898807645,-0.068097271,0.845116079,0.890379548,-0.100445978,0.805786133,0.922212958,-0.098262832,0.780993044,0.949943721,-0.089625895 +Right,0.797438562,0.942483544,-2.82E-07,0.760448992,0.880588949,-0.024957627,0.732185423,0.803788841,-0.050552752,0.710772574,0.759232342,-0.076333486,0.713289499,0.748588026,-0.102463439,0.81011647,0.699891269,-0.038229115,0.810448408,0.621955454,-0.079039976,0.793048918,0.586463571,-0.107474506,0.771200955,0.564318657,-0.124255829,0.844070017,0.747633636,-0.047385417,0.826066971,0.702431679,-0.095313758,0.772968888,0.749563158,-0.110545114,0.734731197,0.789204836,-0.111615658,0.864466429,0.819667459,-0.060612064,0.849058628,0.788299561,-0.108796388,0.793505371,0.830844402,-0.108368263,0.754486859,0.864647567,-0.096930824,0.872256696,0.902807832,-0.075316757,0.855888188,0.888742328,-0.112647653,0.810805619,0.920090675,-0.110598773,0.778844476,0.945781231,-0.100724183 +Right,0.808211327,0.93698585,-4.23E-07,0.775313079,0.858303726,-0.022125008,0.751641512,0.770115316,-0.045647632,0.732411146,0.721721113,-0.069586158,0.734475672,0.721421897,-0.093816429,0.843152046,0.683314919,-0.035526726,0.838712513,0.614331961,-0.074663356,0.816304624,0.581051648,-0.102045365,0.788022995,0.565933347,-0.117692001,0.872979343,0.739495218,-0.04473833,0.844128847,0.711770117,-0.08746139,0.788067043,0.744120359,-0.101693496,0.748531759,0.769223332,-0.104019232,0.88615346,0.819134474,-0.05772556,0.860401034,0.803437233,-0.101797894,0.800849617,0.828381896,-0.102545157,0.757704675,0.845880747,-0.093823038,0.885946453,0.906211495,-0.072064035,0.859933019,0.906562209,-0.107359573,0.811520934,0.925230324,-0.106558815,0.775927782,0.936590135,-0.098547511 +Right,0.832136989,0.92683804,-4.75E-07,0.813302279,0.816026449,-0.018923353,0.80126971,0.715831339,-0.039511058,0.783197761,0.663577497,-0.0603952,0.762928843,0.640972674,-0.082001634,0.897714853,0.693455219,-0.037866987,0.891564667,0.625014782,-0.075850055,0.86084944,0.591248155,-0.101010516,0.824984789,0.574603438,-0.114660822,0.916325867,0.761824608,-0.047888946,0.878743887,0.724476159,-0.086895034,0.8157897,0.726953804,-0.09876927,0.770499289,0.730873823,-0.101195253,0.914764166,0.84361732,-0.061301015,0.868993104,0.824057281,-0.101101331,0.807638764,0.814605772,-0.10399922,0.764138818,0.808297992,-0.098777406,0.899567485,0.922805548,-0.075605474,0.848964155,0.911725521,-0.105730645,0.802388012,0.906013012,-0.105476893,0.771879375,0.898949623,-0.099747136 +Right,0.851525128,0.903157115,-3.91E-07,0.843979359,0.780111134,-0.031692069,0.849559605,0.676389456,-0.060085107,0.842283368,0.612026036,-0.086507969,0.828025639,0.570794344,-0.114076123,0.933981299,0.732951343,-0.068144321,0.930004179,0.654852092,-0.117093071,0.898181319,0.613809168,-0.148557201,0.866526723,0.585230887,-0.166445851,0.929959953,0.81545341,-0.077651016,0.901034951,0.757699609,-0.131467581,0.837441146,0.715494156,-0.14716278,0.79115063,0.689480424,-0.151671156,0.906940043,0.893957019,-0.09077546,0.86660099,0.853265047,-0.145824492,0.802163422,0.80467689,-0.14773272,0.755489349,0.773495972,-0.139566675,0.873683095,0.955238938,-0.105447263,0.835193276,0.920936704,-0.14780806,0.787109852,0.891773105,-0.146553561,0.753438354,0.870029271,-0.138721824 +Right,0.797579169,0.91997683,-6.15E-07,0.805469275,0.804999173,-0.047063518,0.832689464,0.699984431,-0.080321334,0.850788116,0.625344217,-0.109382294,0.88450855,0.586333215,-0.137539834,0.921951532,0.80044663,-0.075574584,0.935217202,0.723842502,-0.134596735,0.903466523,0.673556745,-0.172737986,0.86630404,0.639068663,-0.193148449,0.917918503,0.898029089,-0.079092048,0.906784892,0.841443539,-0.143250331,0.844537079,0.775920272,-0.165358022,0.792975903,0.734216273,-0.170434713,0.890075862,0.975451469,-0.088094212,0.860250771,0.930221617,-0.153578952,0.794229627,0.860733449,-0.156382397,0.746427178,0.814379573,-0.145525932,0.847770035,1.031279325,-0.100078426,0.797243655,0.992255032,-0.154966995,0.742256284,0.939070523,-0.15873605,0.707081199,0.901406407,-0.15099442 +Right,0.825422943,0.868991077,-5.60E-07,0.839810371,0.759218752,-0.050142329,0.874358118,0.678756297,-0.087471597,0.898829937,0.619550824,-0.118887611,0.931091964,0.566131592,-0.149513811,0.936699569,0.793752849,-0.097960494,0.9411273,0.708808661,-0.161003873,0.906946123,0.654028535,-0.197254121,0.867197216,0.608308852,-0.215259209,0.919694126,0.884709895,-0.102621831,0.906946063,0.8247419,-0.174773514,0.849493384,0.752287567,-0.198338732,0.799667239,0.701605201,-0.204264089,0.885870159,0.950705349,-0.11115969,0.853593528,0.892968059,-0.183570981,0.789472759,0.812993467,-0.186167762,0.744077444,0.757302225,-0.174900532,0.842974901,0.992317915,-0.122421339,0.794677794,0.945223689,-0.184049726,0.738398969,0.884820223,-0.188657343,0.703549266,0.841962397,-0.181505933 +Right,0.818616807,0.898222327,-2.75E-07,0.827713013,0.790175974,-0.019489991,0.851835191,0.710978746,-0.045757819,0.865318537,0.656778038,-0.070385225,0.880779088,0.595731556,-0.097688287,0.917801142,0.763216436,-0.078300886,0.935309052,0.669997454,-0.126955613,0.908621192,0.610360265,-0.154785097,0.879336596,0.57267189,-0.170441121,0.906468511,0.829365909,-0.095574848,0.93278259,0.741783261,-0.144270986,0.903829932,0.660287499,-0.159786284,0.869091511,0.61133045,-0.167615816,0.875554204,0.892432213,-0.114499226,0.871024251,0.83447969,-0.167523235,0.822533906,0.753451407,-0.178654596,0.782666624,0.699550152,-0.181549087,0.833739519,0.94097662,-0.133093521,0.794908702,0.892821729,-0.180600122,0.749580979,0.829379618,-0.191544712,0.718677402,0.78162396,-0.196021691 +Right,0.817626178,0.872801542,-4.75E-07,0.823492289,0.740818858,-0.028810143,0.854160011,0.63948524,-0.050833158,0.878908455,0.574949384,-0.069244847,0.904283464,0.510624647,-0.08792641,0.920314789,0.708927214,-0.066563994,0.919562459,0.618088663,-0.116507091,0.883838594,0.569313943,-0.148441151,0.851716161,0.535638571,-0.166398764,0.911144733,0.78930527,-0.076563835,0.909681499,0.722041845,-0.127994105,0.853557706,0.661359072,-0.143747419,0.807292819,0.624015331,-0.149848744,0.884576321,0.860514879,-0.090520471,0.862500072,0.808552265,-0.143387377,0.801332831,0.740992844,-0.148717761,0.756289482,0.69495976,-0.14573878,0.846617103,0.914817274,-0.105713084,0.799290955,0.865282178,-0.150092095,0.748612404,0.811308086,-0.155516282,0.717252851,0.767359793,-0.154477447 +Right,0.810293436,0.836507797,-3.68E-07,0.809920609,0.725184381,-0.024015693,0.834880114,0.626985848,-0.04539736,0.853311658,0.563209057,-0.06439767,0.87161988,0.502522886,-0.084698781,0.898972631,0.659621656,-0.062261365,0.900302112,0.582659125,-0.111237064,0.868081152,0.539792717,-0.143634856,0.837174416,0.509958267,-0.16220136,0.902299464,0.735415578,-0.075208135,0.908635139,0.656898439,-0.123961829,0.859183252,0.59583652,-0.14225024,0.814948142,0.559114337,-0.150797307,0.887741864,0.814410686,-0.091268711,0.876272976,0.752176702,-0.141024575,0.813422084,0.692418814,-0.14839527,0.764489055,0.65275526,-0.147956014,0.858148873,0.884323001,-0.108302295,0.815924942,0.841341615,-0.153026119,0.761701226,0.794665098,-0.160460338,0.724147558,0.757831454,-0.160893545 +Right,0.816230953,0.833794475,-4.71E-07,0.816383243,0.71946156,-0.026196299,0.83812499,0.615829945,-0.047415759,0.854159415,0.549156547,-0.066053182,0.869111955,0.490935802,-0.085085362,0.90809387,0.651916206,-0.06156854,0.89936918,0.569203138,-0.110535637,0.860796273,0.529967487,-0.142190263,0.826566696,0.503999531,-0.160143524,0.908718646,0.726619422,-0.072145469,0.895835102,0.64980644,-0.12158706,0.836693883,0.599950671,-0.137337297,0.789396584,0.573526323,-0.143923804,0.891755641,0.802528083,-0.086549982,0.86626637,0.73828274,-0.135274738,0.801854193,0.684860587,-0.139670983,0.75296104,0.652628958,-0.137212843,0.861339331,0.869145811,-0.102468245,0.815609097,0.823336959,-0.144986093,0.763051689,0.778844476,-0.151080996,0.72725904,0.745045245,-0.150594801 +Right,0.811122358,0.841511965,-4.72E-07,0.814649999,0.73335731,-0.022463923,0.838543653,0.635555685,-0.042539369,0.854265392,0.568015158,-0.061133929,0.860989094,0.502040088,-0.080924056,0.903760493,0.66802001,-0.057299778,0.896381378,0.582662106,-0.103489734,0.856757283,0.542021811,-0.133034006,0.822074711,0.51687479,-0.149641767,0.902945101,0.743378997,-0.069007196,0.892176449,0.660828352,-0.114891529,0.834997714,0.612683773,-0.128524393,0.78938967,0.591217399,-0.133759364,0.884871364,0.819582343,-0.084086612,0.863990068,0.754733562,-0.130344644,0.799499512,0.699931324,-0.132336184,0.750071585,0.669367552,-0.127910614,0.854270995,0.884772658,-0.100324675,0.813127995,0.841805458,-0.140334159,0.762357473,0.796387553,-0.14382194,0.727644086,0.765120089,-0.141308799 +Right,0.817649722,0.868036747,-5.70E-07,0.816014707,0.750415087,-0.024603924,0.83744216,0.648343563,-0.045489147,0.850654304,0.576859593,-0.063816197,0.854587078,0.503443658,-0.083319105,0.912068725,0.676873624,-0.059826408,0.89771539,0.58587718,-0.103988647,0.854279876,0.544211209,-0.131113708,0.81469059,0.517083526,-0.146160379,0.908919036,0.74675858,-0.069209151,0.884848058,0.663379192,-0.112222552,0.822798491,0.619293928,-0.122654922,0.774227083,0.599522531,-0.125994548,0.886148334,0.815237284,-0.08209423,0.854523778,0.754306257,-0.1278584,0.792035937,0.705116928,-0.129008755,0.745882928,0.67777735,-0.124161609,0.851839483,0.874221563,-0.096087389,0.802115202,0.830386937,-0.136965603,0.751175046,0.785862684,-0.140995353,0.718241036,0.752244234,-0.138781056 +Right,0.816105068,0.834037304,-5.83E-07,0.806434989,0.721029818,-0.026956953,0.822344959,0.617998004,-0.049660262,0.831406176,0.541832805,-0.069422789,0.832487226,0.464220405,-0.089989796,0.898918152,0.638485551,-0.064066447,0.880694449,0.550928056,-0.109241262,0.835832536,0.514584005,-0.136371091,0.79657191,0.490812033,-0.151349038,0.902121782,0.711406052,-0.072878376,0.881148934,0.634404778,-0.119895577,0.816445291,0.594822168,-0.132508859,0.767775297,0.575833499,-0.13642475,0.887745202,0.787921488,-0.08493831,0.861564994,0.734082162,-0.132079571,0.798504412,0.684992254,-0.134789348,0.752712548,0.657001555,-0.130412444,0.861974657,0.857190013,-0.098145664,0.823714137,0.821217358,-0.139024228,0.773663461,0.780061662,-0.143631279,0.739118695,0.749188423,-0.141447335 +Right,0.80061239,0.835056067,-6.12E-07,0.779512405,0.715922415,-0.028261835,0.787666678,0.60334754,-0.052856117,0.791461527,0.523102283,-0.073640443,0.793676496,0.449882627,-0.094803348,0.871785283,0.5979563,-0.074438095,0.836227596,0.515243828,-0.12061958,0.786292613,0.490674675,-0.145194158,0.744148552,0.481152952,-0.158535138,0.878273845,0.667356253,-0.083716609,0.847221851,0.586493254,-0.13497369,0.780035913,0.560967326,-0.14951922,0.732891977,0.558724225,-0.154960856,0.869906604,0.748766482,-0.095590085,0.849892318,0.683200955,-0.147701949,0.788203597,0.64609617,-0.154825062,0.746314883,0.633670866,-0.153296694,0.849089205,0.82772702,-0.107946277,0.826495707,0.784057081,-0.155071154,0.774894357,0.749265552,-0.164638102,0.737891734,0.730444133,-0.165498123 +Right,0.797857702,0.839891672,-5.36E-07,0.760604322,0.719376445,-0.030229805,0.763609469,0.599731982,-0.056313254,0.768519521,0.519705594,-0.077362731,0.773407936,0.448540866,-0.099265352,0.853359461,0.573806643,-0.089235917,0.812460601,0.506730795,-0.139525414,0.761540473,0.488963634,-0.167795181,0.717777431,0.484728694,-0.18424508,0.86489886,0.641550303,-0.099549033,0.833305717,0.568603992,-0.154640362,0.769704759,0.544966936,-0.175887346,0.724308848,0.544965804,-0.188023239,0.861928225,0.722891092,-0.111429073,0.840575755,0.666541994,-0.167353675,0.781737626,0.633716345,-0.183390945,0.739720106,0.624023855,-0.189714685,0.84578985,0.809326351,-0.123364225,0.827896118,0.768550396,-0.174447209,0.77633065,0.744788051,-0.189309612,0.735156178,0.735307574,-0.195486382 +Right,0.791012406,0.843129575,-5.26E-07,0.747228324,0.737299442,-0.019191463,0.73758924,0.613204539,-0.038201049,0.733088613,0.526890516,-0.055819158,0.726316154,0.455193162,-0.07373853,0.814607382,0.566896021,-0.059590399,0.77920413,0.492361069,-0.102247998,0.732842088,0.485600859,-0.128246278,0.691640854,0.491944909,-0.143402293,0.835813642,0.618569791,-0.0722645,0.811809957,0.538719058,-0.117994331,0.754398704,0.527241349,-0.138779625,0.710872829,0.537020504,-0.150345847,0.847014546,0.691488385,-0.086824127,0.837964833,0.619625747,-0.129965886,0.787469566,0.601540685,-0.145746589,0.747374415,0.603716791,-0.15315403,0.846126378,0.777218938,-0.101600491,0.84270376,0.740715563,-0.14187856,0.807079971,0.721938074,-0.15778558,0.774022043,0.71212697,-0.16578114 +Right,0.782412708,0.832840681,-2.56E-07,0.738013387,0.762636602,-0.021561973,0.717574656,0.653448343,-0.045856982,0.697375119,0.574160039,-0.069367856,0.669230163,0.509121001,-0.093545899,0.77565366,0.594622016,-0.058696877,0.767885149,0.496992469,-0.105362333,0.730598271,0.48305279,-0.136236951,0.693564236,0.49016273,-0.153479174,0.803417921,0.629515588,-0.071440756,0.813640773,0.514907122,-0.121608548,0.765268028,0.508795619,-0.143568888,0.727347732,0.53205502,-0.15250887,0.82615602,0.686621964,-0.086698808,0.849889219,0.579972625,-0.127282381,0.809187055,0.56251055,-0.139658019,0.775486588,0.569365621,-0.143473849,0.844050646,0.760620117,-0.103028968,0.869092822,0.699332416,-0.13588129,0.847179532,0.673223734,-0.14741233,0.821686387,0.66187793,-0.152618766 +Right,0.786953032,0.850274265,-1.63E-07,0.740347981,0.778857291,-0.022474449,0.712447703,0.674321771,-0.046132859,0.687674403,0.603764951,-0.069304831,0.658874512,0.541023433,-0.09219566,0.769955039,0.592268527,-0.044414073,0.767008126,0.495878428,-0.089616016,0.733635664,0.48323983,-0.122636653,0.69825232,0.493351221,-0.140946954,0.804353178,0.622713089,-0.055171113,0.821296692,0.5123685,-0.101505429,0.781221211,0.504561901,-0.124424197,0.743316114,0.52709794,-0.133660734,0.831513166,0.677335978,-0.069635034,0.861872137,0.577690721,-0.107699707,0.831443429,0.554860771,-0.121344075,0.799167514,0.55349642,-0.1255541,0.853234768,0.751856863,-0.085506715,0.888156474,0.694357634,-0.114795014,0.878100932,0.664860308,-0.125637531,0.857072651,0.646279156,-0.130321831 +Right,0.797860742,0.856517971,9.59E-10,0.74783504,0.803082407,-0.024288323,0.712859452,0.715553284,-0.048412893,0.682404459,0.653561115,-0.071676545,0.644395828,0.603988409,-0.095240869,0.759823918,0.598772109,-0.035973325,0.756471276,0.51048702,-0.076747738,0.731310308,0.489043653,-0.110175498,0.700647056,0.493861049,-0.129574224,0.801024318,0.614036262,-0.045301884,0.821492076,0.503961444,-0.085196547,0.798141837,0.485065252,-0.110600859,0.766833246,0.506170273,-0.122510694,0.836398244,0.659817219,-0.058421038,0.864735544,0.554690957,-0.089905091,0.85037142,0.516086698,-0.105402268,0.826728106,0.504252493,-0.112513185,0.865759432,0.728849769,-0.073249005,0.896303415,0.667386651,-0.097227395,0.898434699,0.630109131,-0.106889546,0.888805807,0.604045391,-0.111622527 +Right,0.811903417,0.838271379,5.30E-08,0.763326108,0.79819423,-0.024057034,0.734045863,0.720156074,-0.047921181,0.707870841,0.663757324,-0.071848713,0.66735059,0.632824898,-0.09683428,0.758254766,0.571901202,-0.028388944,0.743385315,0.487180322,-0.068044104,0.716964662,0.469676495,-0.10316544,0.684641361,0.476810336,-0.124488398,0.800021589,0.572164118,-0.038434595,0.804169536,0.462296873,-0.078813031,0.77765435,0.43927294,-0.110417537,0.741651893,0.455350101,-0.127208576,0.839404106,0.606604397,-0.052397307,0.855424643,0.491378427,-0.085698716,0.835110903,0.450425118,-0.107929632,0.803673744,0.4387362,-0.119759865,0.874202132,0.667898655,-0.067785159,0.898227155,0.59273988,-0.093615159,0.897734702,0.548502922,-0.107169792,0.883849144,0.519115329,-0.114890732 +Right,0.808254242,0.855205894,7.19E-08,0.763923645,0.817394614,-0.023842914,0.733741283,0.744056225,-0.046027429,0.709423721,0.69192946,-0.06785439,0.67384243,0.672790289,-0.090476982,0.739888489,0.588410735,-0.026568459,0.719387412,0.509482205,-0.063440621,0.694209814,0.492902219,-0.097053148,0.666243672,0.503046334,-0.11803174,0.780984461,0.581065476,-0.035640299,0.776418507,0.479761928,-0.069847241,0.753523171,0.452325821,-0.099134885,0.723478556,0.458722085,-0.116856806,0.820960104,0.608365059,-0.04868922,0.829170525,0.499496311,-0.077635914,0.811513007,0.456993937,-0.098357268,0.78482765,0.443829477,-0.11093162,0.857981682,0.664332926,-0.063431092,0.871942222,0.587579727,-0.086750485,0.866536796,0.543261349,-0.098829493,0.849806547,0.516183674,-0.106410414 +Right,0.799631774,0.865836978,-1.24E-07,0.755221665,0.821533084,-0.01835775,0.728589654,0.747183263,-0.033930402,0.711795986,0.690380514,-0.050438672,0.690291643,0.650180697,-0.066228285,0.732731998,0.581364512,-0.007737877,0.71037668,0.512173057,-0.037635587,0.682133079,0.506986022,-0.06744469,0.653857827,0.523949087,-0.086320736,0.771166742,0.572199821,-0.016465446,0.757774293,0.477810621,-0.037477598,0.732053578,0.454605371,-0.059954911,0.702272236,0.45383513,-0.075463571,0.810115993,0.59986645,-0.029976064,0.814703107,0.498719692,-0.049682409,0.791031837,0.463019699,-0.065914311,0.761913121,0.449317634,-0.07697653,0.846802473,0.663075447,-0.045501128,0.848850608,0.586048007,-0.063867621,0.826872647,0.566263139,-0.072007723,0.797623575,0.565505326,-0.076936863 +Right,0.794826269,0.864529908,-1.77E-07,0.745510042,0.817636847,-0.016785847,0.717997253,0.7410267,-0.029870298,0.713337839,0.680260479,-0.044411253,0.705227673,0.622654021,-0.057691295,0.729876816,0.574706197,-0.003098825,0.703554451,0.505805135,-0.03387085,0.674861848,0.497561276,-0.063575357,0.644572258,0.512336075,-0.081699602,0.767235398,0.564902604,-0.012515948,0.748976171,0.475717664,-0.033329152,0.72281456,0.444846809,-0.054179017,0.693252802,0.436741441,-0.06839104,0.804123163,0.594617248,-0.027428299,0.801605344,0.501919687,-0.050581403,0.774209142,0.470890671,-0.066756435,0.742607772,0.455595493,-0.07656537,0.836509526,0.657108486,-0.044169731,0.825012863,0.593943715,-0.068090104,0.795525432,0.577500582,-0.078418516,0.761919796,0.572990775,-0.083425425 +Right,0.790785909,0.867782652,-2.45E-07,0.745420754,0.820336938,-0.019125478,0.710212052,0.741520524,-0.035811864,0.705001593,0.686114907,-0.053257339,0.726287365,0.635433197,-0.070586301,0.747125387,0.584592998,-0.014364626,0.725180924,0.505118251,-0.048726976,0.691614747,0.497221082,-0.0776655,0.661901534,0.515458465,-0.093556464,0.785662234,0.585555494,-0.024686646,0.78849268,0.468765378,-0.053403419,0.751613557,0.450473547,-0.072635226,0.718034744,0.470889419,-0.081470303,0.8204813,0.620262086,-0.03978977,0.824181557,0.518194616,-0.072302878,0.785738289,0.519745409,-0.085552707,0.755844474,0.543509722,-0.089330435,0.848906517,0.681145787,-0.056051586,0.82724005,0.621420145,-0.084837437,0.79127264,0.662491381,-0.088467889,0.765301168,0.71505934,-0.086455137 +Right,0.819396615,0.860919654,-3.70E-07,0.771814227,0.80883652,-0.029116899,0.732399642,0.720359623,-0.056260992,0.742181063,0.665930629,-0.08331389,0.793571055,0.655935824,-0.109302543,0.789155841,0.553917229,-0.033080701,0.771039426,0.46823442,-0.080357917,0.730153024,0.489280224,-0.11527276,0.707742572,0.5412184,-0.134002402,0.830959439,0.558745027,-0.04168655,0.837890863,0.428995311,-0.085317567,0.789120018,0.462438881,-0.105477437,0.764667392,0.5297786,-0.110633247,0.867486238,0.598448694,-0.055422507,0.882470131,0.479705811,-0.095667407,0.832556188,0.528563082,-0.102883801,0.808647096,0.592376828,-0.099178262,0.899804592,0.666387618,-0.071557164,0.893594205,0.597810268,-0.100567438,0.855927765,0.642971396,-0.100709639,0.83951509,0.698549092,-0.094714664 +Right,0.829528213,0.797809362,-4.57E-07,0.769200921,0.75068295,-0.022957411,0.723284483,0.679319382,-0.047876615,0.73793596,0.629769027,-0.074823432,0.790774584,0.62230289,-0.098889649,0.745497346,0.508055151,-0.033885259,0.720479548,0.409839511,-0.080873221,0.708353281,0.502433896,-0.106876291,0.720027149,0.569277644,-0.119149163,0.792753339,0.499236226,-0.045198742,0.786375344,0.355698347,-0.091459833,0.761784434,0.466365814,-0.099153444,0.764844418,0.527826607,-0.094070837,0.838598788,0.516488433,-0.061709337,0.843105733,0.382816166,-0.101108022,0.812734008,0.490639865,-0.089818619,0.809683621,0.551824033,-0.072163448,0.883071661,0.553475678,-0.080788434,0.882223427,0.45782882,-0.100630485,0.856012046,0.520183563,-0.08806096,0.85288012,0.567770839,-0.073838711 +Right,0.821372569,0.788063526,-4.23E-07,0.757232606,0.748457909,-0.027676607,0.706444144,0.683327854,-0.052262485,0.720100462,0.633004904,-0.07658647,0.775244355,0.623296738,-0.095981643,0.720927835,0.493702769,-0.033763949,0.694135189,0.432713449,-0.076446012,0.692915082,0.534896314,-0.101085201,0.708817661,0.586751103,-0.115151629,0.771207631,0.476816952,-0.041414041,0.752883255,0.383130729,-0.082779452,0.740262032,0.505083442,-0.087713659,0.752092004,0.545161724,-0.083244756,0.820348263,0.492989153,-0.054845903,0.815202236,0.401192218,-0.088388339,0.79393822,0.513721704,-0.072713047,0.800018251,0.549419761,-0.055082176,0.8666628,0.529992402,-0.072006308,0.860879481,0.466826707,-0.089239918,0.838345885,0.53275758,-0.076127566,0.840308428,0.558805406,-0.062758617 +Right,0.794988811,0.768186212,-3.34E-07,0.745036364,0.757405996,-0.041398745,0.691496909,0.713444829,-0.072882943,0.694978237,0.669196069,-0.101229236,0.75043875,0.63965261,-0.121609598,0.689364552,0.525843322,-0.048422821,0.666011453,0.469026685,-0.094988041,0.680342913,0.57239908,-0.11295335,0.695995986,0.602551699,-0.120472468,0.741322398,0.500773847,-0.049759898,0.722454309,0.413924932,-0.096761897,0.728390157,0.540364742,-0.094954729,0.737080812,0.560552657,-0.083724521,0.790716767,0.506043434,-0.05858884,0.785771132,0.419348001,-0.102663316,0.782895327,0.535146236,-0.083520025,0.78523922,0.559590638,-0.060289621,0.840345025,0.529441357,-0.07151714,0.844902456,0.454748005,-0.09644492,0.834653378,0.525775552,-0.083159536,0.830385447,0.55798322,-0.067485452 +Right,0.745373666,0.711876988,-2.82E-07,0.713269949,0.741010547,-0.041678354,0.675113142,0.732612133,-0.07194221,0.679131567,0.730077982,-0.097987443,0.698501408,0.688741207,-0.120503113,0.642467022,0.56190598,-0.065268598,0.613022804,0.515185416,-0.111962676,0.637987018,0.58730036,-0.13442421,0.6594221,0.653063536,-0.142769441,0.682753861,0.511105061,-0.064512171,0.663269877,0.39871335,-0.116807967,0.69106704,0.495112538,-0.129902527,0.701780081,0.568860054,-0.127512589,0.72545284,0.489039779,-0.068403333,0.72186023,0.381606668,-0.11772418,0.74301213,0.465497524,-0.121650733,0.744674802,0.528823137,-0.113081492,0.767881751,0.487175494,-0.074383572,0.781383872,0.402399242,-0.11394769,0.799417615,0.434596539,-0.121050477,0.803365469,0.468330145,-0.118584268 +Right,0.744631588,0.717887044,-2.43E-07,0.707873344,0.742677927,-0.040212058,0.669396937,0.728420198,-0.072360352,0.677398145,0.722334683,-0.101194464,0.699725032,0.690011501,-0.127087906,0.643477976,0.563939333,-0.068860047,0.615282476,0.508728445,-0.115831442,0.63760066,0.580538869,-0.138940468,0.658449352,0.647160649,-0.147835761,0.685072362,0.515449286,-0.069876075,0.661812663,0.410382509,-0.119808026,0.686119854,0.49634254,-0.133561715,0.699206412,0.565849364,-0.133442059,0.728113651,0.494876772,-0.075075492,0.718405485,0.387760073,-0.121108197,0.740198672,0.46183303,-0.125307679,0.747553289,0.523516655,-0.11855036,0.77119565,0.494669974,-0.082439691,0.781636775,0.404430002,-0.118404515,0.79956162,0.431560576,-0.123922661,0.806030512,0.467079669,-0.121218383 +Right,0.737584054,0.704936028,-2.26E-07,0.705657542,0.733650446,-0.042083718,0.669057012,0.724116325,-0.075325772,0.672402501,0.721248388,-0.10508585,0.689506352,0.683409691,-0.132261589,0.641038895,0.556619942,-0.071825981,0.6081056,0.507877946,-0.121777333,0.630735993,0.579885542,-0.147832438,0.652588725,0.646893919,-0.158188552,0.680186033,0.5111112,-0.072615668,0.655851305,0.390274882,-0.126707584,0.678950071,0.472830385,-0.143916294,0.690808952,0.547592819,-0.145062819,0.721347928,0.4899773,-0.077775732,0.712584198,0.37116611,-0.128649563,0.734899819,0.441799015,-0.138552263,0.742481351,0.50608176,-0.134256318,0.763503373,0.486442685,-0.084811956,0.774881423,0.388516486,-0.124872729,0.795809925,0.413389415,-0.134684101,0.8050704,0.454366267,-0.134574041 +Right,0.739557624,0.711010933,-2.13E-07,0.702728271,0.738298297,-0.044249356,0.663661659,0.723041415,-0.080326296,0.668378532,0.718153358,-0.112748891,0.688369989,0.681799412,-0.143062338,0.640053928,0.559026957,-0.079357445,0.609004378,0.502297103,-0.128666028,0.631257832,0.576293707,-0.154663756,0.653640628,0.645831823,-0.165655419,0.681221724,0.513495624,-0.079597749,0.656927884,0.397757053,-0.13185218,0.677442014,0.477753609,-0.151173308,0.689859569,0.550447822,-0.156117722,0.723537922,0.493792444,-0.083518714,0.713577211,0.374214441,-0.131546915,0.732424319,0.439954877,-0.143382102,0.740890086,0.507152498,-0.142622054,0.765951514,0.492533326,-0.089450344,0.774740577,0.39152801,-0.126480982,0.79422015,0.409564346,-0.136381865,0.804545224,0.44775328,-0.137880608 +Right,0.732190728,0.704244196,-2.08E-07,0.696194351,0.730330825,-0.03895757,0.65684545,0.722328603,-0.070086546,0.655656219,0.720098913,-0.098272659,0.675298989,0.685166895,-0.124162078,0.632451177,0.562498391,-0.065267593,0.598971963,0.503804982,-0.114233755,0.622999966,0.567404628,-0.14136906,0.646762252,0.633182406,-0.152376577,0.672520578,0.515253961,-0.066303261,0.652195632,0.387954354,-0.119114265,0.673198342,0.459349573,-0.137972161,0.68351835,0.536585927,-0.140063182,0.714599192,0.492726892,-0.071598515,0.708572209,0.376624227,-0.119426914,0.728683591,0.433315814,-0.130805507,0.73500663,0.495021909,-0.127626225,0.755788088,0.487723291,-0.07880152,0.763522208,0.394111544,-0.116720259,0.785009265,0.400313884,-0.1275675,0.797371149,0.429760635,-0.128164187 +Right,0.727612257,0.702016413,-2.10E-07,0.690725744,0.726851344,-0.041571606,0.64790988,0.722863555,-0.075127877,0.636127174,0.72395581,-0.105110206,0.6552369,0.688707232,-0.131940469,0.628285587,0.556329846,-0.072175197,0.593567252,0.499953389,-0.121432193,0.616321087,0.569242299,-0.146318704,0.640337706,0.635286629,-0.156002343,0.668530345,0.510238051,-0.072128348,0.643962502,0.394688964,-0.126438782,0.661873937,0.467828393,-0.14458929,0.674517155,0.541834831,-0.146624744,0.710885108,0.490701258,-0.076295838,0.698918521,0.375354648,-0.126486853,0.716599941,0.425629675,-0.139851674,0.726338029,0.484141678,-0.138297826,0.752286375,0.488903284,-0.082247913,0.760640144,0.394235522,-0.123266369,0.780945718,0.392624319,-0.137837261,0.79525739,0.416490823,-0.141113952 +Right,0.728458285,0.707220554,-2.45E-07,0.690837502,0.730733991,-0.043128405,0.643883824,0.719268382,-0.076157004,0.633948505,0.719724298,-0.105728999,0.660830379,0.681923807,-0.131871477,0.627821743,0.557072759,-0.06929186,0.59239316,0.497814983,-0.118326157,0.615222871,0.570152462,-0.144107252,0.641862631,0.638614118,-0.155257255,0.667087376,0.509513974,-0.068430156,0.640699744,0.399602532,-0.122174226,0.661795437,0.472175002,-0.141374335,0.678818583,0.544016063,-0.144842431,0.708677292,0.487906069,-0.072321482,0.694330573,0.375336885,-0.12216524,0.715300798,0.426555693,-0.136571363,0.729314268,0.485782981,-0.136363894,0.749652863,0.484211832,-0.078353785,0.759873509,0.389632225,-0.121178798,0.780665874,0.393137276,-0.138036937,0.795898199,0.419704199,-0.143199787 +Right,0.717661023,0.726203561,-3.08E-07,0.680062532,0.751559973,-0.036422729,0.635498822,0.746326149,-0.06406112,0.623212397,0.744782925,-0.089074366,0.642582417,0.707396388,-0.110241823,0.613886118,0.574232161,-0.054074578,0.583311021,0.524734557,-0.09869273,0.606617987,0.597992182,-0.121370852,0.630926132,0.659319162,-0.130360797,0.653011739,0.523428917,-0.054696515,0.630123973,0.417394936,-0.103585847,0.650923967,0.501720667,-0.116001748,0.664002061,0.573137522,-0.113479197,0.694261968,0.503661752,-0.060325827,0.683065057,0.3958942,-0.107863024,0.701435208,0.462074339,-0.114445925,0.709089398,0.521854401,-0.107448496,0.73552829,0.505632639,-0.067806639,0.749511182,0.420545429,-0.109016374,0.768445969,0.429080158,-0.121104419,0.778371871,0.449520469,-0.12141823 +Right,0.718243003,0.773499489,-3.36E-07,0.682406783,0.80166322,-0.040998615,0.633991122,0.794905782,-0.071622849,0.617265761,0.805586338,-0.09970542,0.632640064,0.770127714,-0.124159954,0.609522939,0.634739757,-0.060305446,0.577766538,0.587600768,-0.10772159,0.605607092,0.662827313,-0.132766858,0.63495034,0.724696577,-0.143460318,0.647942603,0.584008157,-0.060926732,0.622540951,0.479846895,-0.113422699,0.647293329,0.568597436,-0.130670086,0.664907634,0.642690659,-0.132168978,0.688498199,0.55907619,-0.066658571,0.670039952,0.452215165,-0.116332792,0.690653801,0.524980485,-0.126073331,0.70320791,0.594415128,-0.122101173,0.728999913,0.552307904,-0.07469245,0.741084754,0.465096533,-0.116144329,0.757050872,0.490681589,-0.129103884,0.764916599,0.53236115,-0.131212056 +Right,0.728071868,0.773787856,-2.30E-07,0.697331369,0.807757497,-0.040751845,0.652428269,0.805775225,-0.074061431,0.646877706,0.819450259,-0.105093025,0.667099655,0.792875051,-0.134071499,0.622927904,0.665598154,-0.067183755,0.589941323,0.620084584,-0.113716342,0.616650164,0.688865721,-0.13836585,0.644151926,0.74552989,-0.149497434,0.657488525,0.615640581,-0.069312423,0.627935648,0.525616467,-0.12264964,0.654425502,0.606682837,-0.143151745,0.674347818,0.673867047,-0.147911265,0.695317209,0.587207973,-0.07554727,0.673176408,0.487704396,-0.125808194,0.696801901,0.55498749,-0.13929075,0.712963402,0.621086359,-0.13866213,0.733659863,0.57427758,-0.083631575,0.740578711,0.4921754,-0.12449605,0.758883119,0.520598233,-0.137451291,0.769695759,0.562655151,-0.140309483 +Right,0.731515527,0.757282555,-2.17E-07,0.701984346,0.792611539,-0.042202018,0.658556879,0.79280442,-0.075746618,0.650537848,0.803045392,-0.106363475,0.666083038,0.767012835,-0.134733558,0.624125659,0.650253117,-0.067007788,0.59365499,0.611426175,-0.113899879,0.619451582,0.674702406,-0.139715895,0.646261811,0.729453921,-0.151768953,0.656580269,0.598870635,-0.067928165,0.627255797,0.519603968,-0.121982194,0.656335592,0.592623353,-0.144178867,0.677828014,0.65527308,-0.150191024,0.692599416,0.568533063,-0.073052242,0.670433521,0.47680366,-0.124122418,0.697297096,0.533254027,-0.139060661,0.716301858,0.592397571,-0.139412954,0.729272723,0.554893076,-0.08001177,0.733902454,0.476959407,-0.122147225,0.754384279,0.497924715,-0.136320412,0.767239213,0.53250587,-0.139776975 +Right,0.734634757,0.739557266,-2.77E-07,0.706985295,0.766900301,-0.036701482,0.664856255,0.76659447,-0.062877245,0.641290188,0.777708113,-0.086306043,0.641279936,0.745759845,-0.105969638,0.628266633,0.62046361,-0.05216654,0.595892072,0.586237788,-0.095713466,0.624818146,0.644559979,-0.118620761,0.656036615,0.699048877,-0.128002286,0.659871817,0.568004847,-0.05171271,0.631043851,0.485755682,-0.100849181,0.658146083,0.549795151,-0.117905803,0.680316031,0.612483621,-0.119807184,0.6951859,0.539867997,-0.056235589,0.673133194,0.446016133,-0.103687525,0.697212338,0.49368766,-0.11657761,0.715569079,0.548683822,-0.115206338,0.732175112,0.53008008,-0.062499709,0.74132812,0.454903096,-0.105477728,0.760142148,0.45433557,-0.123819314,0.77361238,0.474107265,-0.129471242 +Right,0.735916734,0.745609403,-3.17E-07,0.708523393,0.778572679,-0.041007988,0.66231674,0.77169323,-0.067621842,0.637177885,0.785605311,-0.090729855,0.639859021,0.753605902,-0.110338621,0.629053712,0.626619518,-0.05810219,0.600480199,0.605954051,-0.103088349,0.63286078,0.671013296,-0.128712744,0.66980958,0.731839657,-0.141112641,0.662321448,0.567198813,-0.056468029,0.634028852,0.482429326,-0.108451732,0.659847498,0.547136307,-0.130842701,0.684495568,0.613408685,-0.137435019,0.698074162,0.536474407,-0.059631146,0.678544521,0.440401644,-0.107739247,0.701171041,0.484785616,-0.124268636,0.719501853,0.538879693,-0.126740649,0.734215081,0.526756108,-0.064893715,0.743784726,0.456274807,-0.10945195,0.767110109,0.450638711,-0.131640211,0.78597641,0.464243889,-0.141238078 +Right,0.741596222,0.758834779,-3.45E-07,0.710544109,0.784224451,-0.035816193,0.666512191,0.782653689,-0.06061586,0.636106789,0.790540397,-0.082806736,0.623431981,0.756971002,-0.101405405,0.6327824,0.634896219,-0.048316013,0.601125538,0.610749602,-0.091831394,0.633326411,0.679584861,-0.116829492,0.668868005,0.738978446,-0.127548397,0.66487062,0.577204466,-0.046900731,0.636097133,0.500444233,-0.094766125,0.660423219,0.566334605,-0.112488501,0.684562266,0.63264823,-0.114966199,0.701153994,0.546683192,-0.050639246,0.681363046,0.455845594,-0.095066093,0.698505461,0.487960637,-0.110045463,0.714783192,0.532928646,-0.110999309,0.73760426,0.538224876,-0.056027498,0.745824933,0.476422697,-0.094840035,0.763808548,0.456417501,-0.113991536,0.780368328,0.451838613,-0.121140972 +Right,0.751633525,0.764011383,-3.52E-07,0.716650069,0.794459105,-0.037346549,0.671769142,0.80349803,-0.064594559,0.642445505,0.818220973,-0.089067429,0.635175049,0.779178381,-0.109907486,0.634858012,0.654054821,-0.051903471,0.604649425,0.63759023,-0.09617608,0.63979882,0.709639966,-0.122019529,0.679354787,0.770915508,-0.133896202,0.666229606,0.592177629,-0.050353419,0.634890735,0.524726629,-0.100500807,0.660457611,0.588094771,-0.120229162,0.689058483,0.653879821,-0.124396086,0.702406943,0.556967258,-0.054000232,0.679354012,0.476820529,-0.100094557,0.694853663,0.501860619,-0.118066117,0.712918878,0.544108987,-0.12157359,0.739051521,0.543592393,-0.059232451,0.747936547,0.481632471,-0.099707931,0.75952518,0.45640108,-0.121783055,0.770304024,0.45011279,-0.131619304 +Right,0.76287806,0.747357368,-3.58E-07,0.72802943,0.784572601,-0.038424559,0.684601843,0.804570794,-0.068269365,0.658941448,0.825873137,-0.09489996,0.65377593,0.78946209,-0.118550114,0.645292222,0.655399799,-0.058028895,0.620760381,0.640835881,-0.103277944,0.657077074,0.705120683,-0.131119967,0.696092844,0.760179281,-0.14485617,0.676830947,0.590677798,-0.056952674,0.651318908,0.539841473,-0.108302042,0.681133628,0.598908842,-0.129906595,0.713534296,0.655864894,-0.136252284,0.713786542,0.551435828,-0.060504626,0.693372548,0.491719782,-0.107200786,0.708845556,0.509064913,-0.125684544,0.728903592,0.539499402,-0.130341113,0.750241876,0.534064949,-0.065565147,0.754471302,0.478104353,-0.104676768,0.763583958,0.452705026,-0.12451373,0.773474574,0.441102684,-0.133496225 +Right,0.783410251,0.715430856,-3.43E-07,0.749468923,0.760126293,-0.039497823,0.704624057,0.776708841,-0.068481341,0.681594014,0.794150352,-0.093793809,0.67398119,0.763639569,-0.11663793,0.667015314,0.632132113,-0.060602263,0.640524745,0.618655801,-0.108110622,0.677979231,0.684221148,-0.137826309,0.717286229,0.738774657,-0.152947381,0.696240306,0.563272119,-0.06092393,0.66791296,0.50842315,-0.116111502,0.704938948,0.566559017,-0.14032042,0.738302767,0.612550974,-0.14722687,0.731641114,0.519617677,-0.065782234,0.712914646,0.458463073,-0.1172591,0.738627017,0.469020963,-0.137173593,0.760024905,0.482803851,-0.141615003,0.766964555,0.498856395,-0.071941018,0.774559677,0.447265774,-0.113741912,0.791115403,0.419239223,-0.132751718,0.802423954,0.396367729,-0.140665904 +Right,0.797253489,0.733578563,-2.31E-07,0.765080214,0.771880627,-0.044696718,0.726226389,0.780007958,-0.077464044,0.707242727,0.788053572,-0.105209753,0.693758667,0.759210885,-0.130151778,0.682339609,0.63777715,-0.070864372,0.657209098,0.609320402,-0.119933978,0.696982324,0.669501066,-0.148622736,0.737989008,0.726157546,-0.162510887,0.713436604,0.571576059,-0.069089271,0.689857125,0.508836269,-0.125816613,0.726755917,0.559500575,-0.153051421,0.758823931,0.598899066,-0.163004369,0.749768376,0.531419158,-0.071955577,0.734945476,0.462493658,-0.122440971,0.755366445,0.460426152,-0.146886736,0.771291733,0.462050796,-0.156229809,0.787129521,0.513861954,-0.076368637,0.794097424,0.451252699,-0.115042992,0.805833876,0.409413248,-0.1360991,0.811391652,0.37049371,-0.147521824 +Right,0.803415418,0.771233916,-1.82E-07,0.766877174,0.802342713,-0.03251021,0.726397038,0.800483525,-0.060398787,0.707297623,0.792677104,-0.085520811,0.699610472,0.748072743,-0.108964913,0.693080187,0.634037614,-0.042329978,0.671889484,0.6223225,-0.086336315,0.703629613,0.684853673,-0.118203238,0.74003005,0.736750603,-0.134907857,0.723100245,0.576228201,-0.044589855,0.706370473,0.517213225,-0.089973003,0.734588623,0.555243909,-0.114916518,0.762538135,0.585048556,-0.124439724,0.758763671,0.546856284,-0.05197164,0.747961223,0.462832034,-0.090090618,0.756905675,0.437258899,-0.109647818,0.764690578,0.413713098,-0.118094377,0.796535134,0.54603982,-0.060782466,0.80633384,0.478378773,-0.089274876,0.817412615,0.430007488,-0.102865599,0.822177112,0.376818478,-0.109793156 +Right,0.808191895,0.794555008,-1.40E-07,0.767330885,0.815341711,-0.029446959,0.722368062,0.803518295,-0.05512156,0.691428185,0.782493412,-0.079583518,0.690953195,0.725427389,-0.101481773,0.705618024,0.629770935,-0.02761462,0.679575264,0.596677482,-0.070314892,0.702573836,0.656473815,-0.101996802,0.732755959,0.711775362,-0.118183486,0.735605717,0.579830945,-0.03066783,0.712448537,0.50609684,-0.071130894,0.725511551,0.523223639,-0.094816454,0.740383804,0.543661833,-0.104104072,0.772044778,0.556459486,-0.039887164,0.761076927,0.46108377,-0.073678836,0.761940539,0.419663727,-0.092315108,0.761443913,0.381572843,-0.099964701,0.81135869,0.559834123,-0.050886013,0.812601209,0.475517988,-0.074400753,0.81961447,0.42081356,-0.085652284,0.823031783,0.363903821,-0.090874381 +Right,0.814166665,0.770808637,-1.15E-07,0.773068011,0.790487766,-0.034813717,0.728858173,0.778213501,-0.064791895,0.700386882,0.753540277,-0.092453338,0.696145654,0.692212045,-0.117379099,0.710178435,0.600782514,-0.037049234,0.684746981,0.561759114,-0.081874557,0.707538366,0.624315321,-0.115110688,0.736899674,0.681083977,-0.132498443,0.741450548,0.55285269,-0.037989687,0.71867615,0.474642932,-0.082360327,0.733470798,0.494815797,-0.108709216,0.749284923,0.519717515,-0.119529106,0.778069258,0.532192588,-0.044936508,0.768425345,0.431514442,-0.079746157,0.767396092,0.382085145,-0.100159794,0.765605092,0.340989739,-0.109293193,0.816269457,0.536887586,-0.053872369,0.814795017,0.446240485,-0.076015882,0.81681627,0.386610687,-0.087463483,0.815386117,0.327207059,-0.093641296 +Right,0.816113174,0.760558784,-1.19E-07,0.773768365,0.77976203,-0.037918456,0.727782845,0.762131572,-0.068662807,0.698563874,0.732117772,-0.096655436,0.694365263,0.66410464,-0.121740505,0.715040803,0.587684572,-0.039820537,0.689413965,0.538222492,-0.083413713,0.708984494,0.598642886,-0.115839265,0.736665666,0.659020662,-0.133261397,0.745328188,0.540468037,-0.039080299,0.720955133,0.457432687,-0.084632009,0.733933926,0.479561597,-0.112453371,0.750258029,0.510802805,-0.124230914,0.78090483,0.518939435,-0.044367384,0.769062221,0.415469348,-0.079366803,0.76559025,0.363330871,-0.101858675,0.763821602,0.322412163,-0.112894803,0.818107009,0.521565497,-0.051912304,0.818928719,0.428376794,-0.074352473,0.821065187,0.364872694,-0.088130228,0.819948673,0.301613212,-0.096803032 +Right,0.810062766,0.760748923,-1.50E-07,0.76444,0.767423272,-0.030490931,0.717771947,0.736790836,-0.055815436,0.687293053,0.695039809,-0.079886563,0.685070813,0.62416178,-0.100435406,0.712115884,0.567269981,-0.02311584,0.685453534,0.505536795,-0.06288588,0.700576484,0.561921895,-0.093286805,0.725697219,0.619657099,-0.109437764,0.743339002,0.523359597,-0.024257148,0.71991545,0.429611295,-0.064168528,0.72938323,0.449916989,-0.0879746,0.740949094,0.480677575,-0.097076826,0.779162526,0.504482627,-0.031767372,0.769049108,0.391655028,-0.062691204,0.763419807,0.335495353,-0.080458172,0.757536232,0.288317233,-0.088310912,0.817487419,0.510422111,-0.041376039,0.82096231,0.414907277,-0.061107859,0.824778795,0.350420594,-0.071641333,0.823830783,0.285034299,-0.077691443 +Right,0.803255439,0.764237285,-2.14E-07,0.752655625,0.747965455,-0.023589211,0.708687901,0.702290356,-0.046123564,0.680645585,0.652684152,-0.068875305,0.680691004,0.581811547,-0.088843539,0.72339654,0.542882383,-0.018171776,0.697361708,0.466642201,-0.054801654,0.701805949,0.528954923,-0.084006041,0.717851937,0.595240593,-0.099299073,0.759150982,0.512829602,-0.022209061,0.748153925,0.414223671,-0.059691895,0.745332956,0.435426533,-0.083746813,0.745069742,0.469704539,-0.093038216,0.797231317,0.50542748,-0.031630915,0.797567427,0.388013244,-0.059003033,0.792445481,0.330708116,-0.075638309,0.787311733,0.281077057,-0.083251849,0.834684134,0.521011591,-0.042560399,0.845991552,0.424353302,-0.059906434,0.854353189,0.3598831,-0.067937933,0.859429359,0.293209225,-0.071924396 +Right,0.80075258,0.763559461,-1.65E-07,0.748835325,0.742215633,-0.024163019,0.704216659,0.687342584,-0.04614922,0.677707314,0.630624294,-0.067877278,0.678509355,0.557446361,-0.086864665,0.7325266,0.540546,-0.023095356,0.712558329,0.449367464,-0.060616042,0.70872432,0.502080917,-0.088172697,0.717887104,0.569595695,-0.101767413,0.770516932,0.514844596,-0.026913691,0.762286484,0.409145415,-0.0637784,0.754621685,0.418880075,-0.085949063,0.752004862,0.449461818,-0.094217606,0.808986068,0.513083279,-0.03599938,0.813565075,0.394470394,-0.064517729,0.808680832,0.329948634,-0.08112748,0.804784417,0.278137743,-0.088564411,0.845887065,0.533302903,-0.046414804,0.86209017,0.437416762,-0.06611301,0.872437477,0.370916069,-0.075635388,0.880078197,0.304447502,-0.080358922 +Right,0.794219255,0.754284382,-2.18E-07,0.741841555,0.712090075,-0.016942643,0.701968968,0.637744546,-0.032872781,0.679535806,0.576022506,-0.050244223,0.681149542,0.507699013,-0.066235028,0.743388772,0.523284853,-0.009348328,0.728417158,0.440677434,-0.044618096,0.712035596,0.471473515,-0.073213652,0.706212342,0.522168696,-0.088376738,0.780278087,0.507719338,-0.017861508,0.778237522,0.399563402,-0.054490592,0.757919908,0.400804579,-0.079684243,0.743677914,0.429960907,-0.089731976,0.817749023,0.51659435,-0.031386681,0.826940715,0.398342907,-0.059475314,0.817895412,0.334371001,-0.079074025,0.810817242,0.286916375,-0.088522576,0.851874292,0.548980653,-0.045880072,0.871597648,0.459290951,-0.06477274,0.881217539,0.395970345,-0.075320706,0.888252199,0.335792094,-0.081239879 +Right,0.787213564,0.728714824,-2.76E-07,0.734273374,0.680725098,-0.01370494,0.697062731,0.603501916,-0.027768672,0.678091228,0.542698443,-0.043860484,0.681007445,0.478426158,-0.058559474,0.74568069,0.491302758,-0.005664201,0.731970906,0.414079905,-0.038657267,0.710698903,0.454936862,-0.065762684,0.699839711,0.510182738,-0.080401674,0.779997587,0.480026096,-0.015510787,0.779084444,0.37441653,-0.050646171,0.753542364,0.377350986,-0.074574508,0.734190464,0.403255492,-0.084013,0.814464927,0.492599994,-0.030158881,0.825403273,0.379322767,-0.057471942,0.814259112,0.317422569,-0.076599494,0.805258751,0.270172268,-0.085721172,0.845065832,0.527403116,-0.045592058,0.865616739,0.440606236,-0.063915767,0.875161231,0.378735334,-0.074320115,0.882108271,0.319218606,-0.080241852 +Right,0.78514576,0.70011729,-3.19E-07,0.731815279,0.649959683,-0.011078694,0.697144866,0.568753779,-0.023082001,0.681383014,0.507687986,-0.037795275,0.68291086,0.446032047,-0.051378157,0.748329103,0.460195184,-0.001162947,0.735134602,0.389806181,-0.032280963,0.71092993,0.432122648,-0.058422551,0.696280837,0.485698372,-0.072769299,0.780843437,0.451357067,-0.012322354,0.778316498,0.349116445,-0.046729628,0.749711096,0.351018846,-0.070729166,0.727536142,0.373242199,-0.080330513,0.813484013,0.465492219,-0.02816616,0.82482183,0.353499204,-0.055273939,0.811671078,0.291419804,-0.074974373,0.800960064,0.243975699,-0.084490933,0.842364132,0.50147289,-0.044622406,0.864650965,0.416258425,-0.062483996,0.874962389,0.355195135,-0.073168673,0.882104933,0.296323806,-0.079552509 +Right,0.771351993,0.661823034,-3.34E-07,0.72531867,0.603762627,-0.008015493,0.694433451,0.507650435,-0.018680019,0.676805139,0.442791909,-0.032172777,0.684109449,0.385898501,-0.044205662,0.755550563,0.406506419,3.20E-05,0.750608385,0.315243572,-0.028484426,0.721899986,0.325716048,-0.050498325,0.697569132,0.359028846,-0.062642597,0.782962561,0.409729958,-0.01165751,0.772345066,0.312736452,-0.046968818,0.735902429,0.31959936,-0.068075992,0.708593845,0.346475601,-0.075046785,0.8105582,0.432475448,-0.027723067,0.819618464,0.322944164,-0.055429056,0.801497877,0.262330502,-0.07241261,0.786099315,0.217383757,-0.079791829,0.8338902,0.473112017,-0.044004131,0.857750297,0.395513892,-0.063323267,0.868644893,0.337331861,-0.074409083,0.877262354,0.280261755,-0.080564983 +Right,0.763449788,0.632729113,-2.94E-07,0.716802478,0.581312656,-0.010072931,0.684396207,0.495063066,-0.021759041,0.669127941,0.436168164,-0.03617112,0.67095685,0.376434177,-0.049621958,0.739875436,0.386630833,-0.00020739,0.732338607,0.308277726,-0.029023904,0.707810223,0.32892698,-0.052929062,0.686545134,0.364860356,-0.066193983,0.770672619,0.38330394,-0.011386328,0.764743388,0.289840817,-0.045898207,0.73348242,0.295013905,-0.06853091,0.707781553,0.318363965,-0.076753408,0.800833821,0.401076138,-0.027109539,0.811848342,0.292192966,-0.054414455,0.796795547,0.232840493,-0.072098047,0.782411933,0.188160494,-0.079826199,0.827275217,0.439158022,-0.04330337,0.852965415,0.358824909,-0.061647579,0.865689039,0.300671995,-0.071852103,0.874044359,0.243004426,-0.077377014 +Right,0.76230377,0.618309855,-2.64E-07,0.707896888,0.579548597,-0.014087849,0.669970512,0.506283045,-0.026940834,0.650626719,0.447268039,-0.042331561,0.643880129,0.383505791,-0.056739464,0.711748838,0.382869959,4.93E-05,0.692233562,0.325219005,-0.032604452,0.673333764,0.369070172,-0.061507858,0.663287461,0.419870317,-0.07744851,0.744955003,0.361761689,-0.009007296,0.739367723,0.268326819,-0.042417601,0.713344157,0.266809404,-0.067177258,0.689955175,0.286074638,-0.077767961,0.778991461,0.367214918,-0.023348365,0.785449743,0.256636083,-0.050927173,0.770601749,0.198224872,-0.069725916,0.755736947,0.155810833,-0.077965625,0.809872627,0.398517072,-0.038758293,0.831433177,0.309387028,-0.05770595,0.842326105,0.24747923,-0.068042159,0.848452866,0.189492911,-0.073279306 +Right,0.761010051,0.630136251,-1.14E-07,0.705527842,0.596639872,-0.017886486,0.661661744,0.536159039,-0.032880619,0.638624072,0.477471471,-0.049175214,0.637941003,0.408216566,-0.064021155,0.697226584,0.404531896,-0.0082143,0.677933276,0.324807465,-0.042269535,0.661331594,0.355362117,-0.070787258,0.654443681,0.407656997,-0.085720494,0.730458736,0.378352821,-0.014906747,0.724713624,0.270818472,-0.042166304,0.703900516,0.243531302,-0.063211173,0.68327117,0.240965068,-0.074068464,0.765334785,0.38184917,-0.026984889,0.768192232,0.27467832,-0.049905926,0.75885725,0.214865133,-0.064036749,0.747948229,0.167310089,-0.071082771,0.79839319,0.410690814,-0.040824011,0.814882815,0.323529094,-0.058245312,0.823271751,0.263864517,-0.065256603,0.828631043,0.206616178,-0.068303064 +Right,0.76116246,0.644929528,1.37E-07,0.709716856,0.637843609,-0.023904646,0.662425756,0.585396469,-0.040577706,0.639286578,0.52512747,-0.056317639,0.64414674,0.460547984,-0.070417456,0.680715382,0.432357728,-0.018231265,0.659792364,0.350196213,-0.046328489,0.649021089,0.336822122,-0.070423737,0.644531488,0.348224431,-0.084964946,0.717391431,0.406883687,-0.021824097,0.704081893,0.305070043,-0.039002448,0.69560498,0.248919785,-0.056668561,0.686881542,0.210945994,-0.070925698,0.754981995,0.414348751,-0.030428011,0.750714779,0.319115579,-0.052369393,0.747840524,0.267574757,-0.068172358,0.737644255,0.23351796,-0.079060733,0.79227829,0.442920238,-0.040805351,0.797431231,0.359676123,-0.062833078,0.796895921,0.338478684,-0.0710705,0.78631717,0.337195694,-0.075898103 +Right,0.758392155,0.670722008,2.67E-07,0.707307458,0.65348655,-0.025246739,0.664468408,0.597257674,-0.041896168,0.64292413,0.537282765,-0.057592358,0.656453729,0.485666007,-0.072328724,0.688763082,0.438253969,-0.022141565,0.671393275,0.362239122,-0.043383799,0.655804098,0.317152858,-0.061675355,0.642985046,0.277321219,-0.075491086,0.726479292,0.423878372,-0.025136353,0.721006215,0.325562894,-0.045494501,0.712596655,0.274911225,-0.061951756,0.70544529,0.24647966,-0.073560826,0.764588892,0.436935008,-0.031767212,0.761942983,0.345590293,-0.059592646,0.750614703,0.354247034,-0.07206095,0.742263794,0.384329259,-0.07624092,0.800535023,0.471605122,-0.040149022,0.800736725,0.395811856,-0.066942975,0.796568155,0.399776191,-0.075579755,0.794561923,0.425107807,-0.077871397 +Right,0.758520842,0.686859965,1.91E-07,0.708890319,0.646037459,-0.024688218,0.6708529,0.576222599,-0.041085407,0.652355433,0.515266716,-0.056686968,0.662029743,0.457000107,-0.0714956,0.715130806,0.440971285,-0.021986639,0.704690158,0.360027552,-0.045062855,0.691245794,0.313052595,-0.064966947,0.679756641,0.269400656,-0.079746738,0.75207299,0.438650131,-0.025531663,0.755860031,0.336283118,-0.046037354,0.747409225,0.28408432,-0.063435599,0.739027202,0.242640749,-0.076652735,0.786968827,0.462039411,-0.032546692,0.797825754,0.3688218,-0.062938228,0.772494674,0.391040891,-0.075240083,0.750497103,0.423352033,-0.079438448,0.818167746,0.507157564,-0.040896382,0.822160661,0.442813396,-0.070043504,0.804581523,0.474804252,-0.076648101,0.790088832,0.517336726,-0.077466927 +Right,0.75403893,0.677797079,3.67E-08,0.707698226,0.610174298,-0.012600776,0.682010829,0.514672041,-0.019730726,0.668329298,0.451385707,-0.028115286,0.658364117,0.394875109,-0.036560707,0.739548683,0.4218027,-0.009325203,0.728167057,0.337922096,-0.028691202,0.71347928,0.291741014,-0.045243025,0.696298599,0.253386915,-0.056818273,0.772848547,0.437375396,-0.018665198,0.778744221,0.34004128,-0.038251385,0.764213204,0.286439598,-0.054796211,0.745181799,0.248581484,-0.065361366,0.799389541,0.476286501,-0.030436991,0.801910818,0.406655729,-0.059429098,0.764135122,0.416349351,-0.072814353,0.729388177,0.431332737,-0.077407651,0.816810369,0.532294512,-0.042447817,0.800997913,0.511999071,-0.071031712,0.764969945,0.539803326,-0.078738183,0.733991444,0.567807019,-0.080221154 +Right,0.764944553,0.640034318,-1.11E-07,0.719717979,0.539131045,-0.016962558,0.704944372,0.431569695,-0.030394511,0.697130203,0.352361619,-0.042606521,0.687445045,0.282278687,-0.055708144,0.775056124,0.373029202,-0.03568336,0.747096598,0.299373835,-0.068273664,0.720038056,0.253196597,-0.092785649,0.693152785,0.218937486,-0.108473882,0.796112716,0.414911002,-0.046312299,0.773336947,0.324251562,-0.080073841,0.734595776,0.279928982,-0.099030443,0.698164284,0.257561684,-0.109696515,0.804238856,0.475543976,-0.05898549,0.772698283,0.419342995,-0.098098524,0.722531855,0.412597388,-0.110238589,0.681277931,0.414056957,-0.112715513,0.796520233,0.547298491,-0.07189773,0.749935448,0.531299949,-0.107461043,0.708507538,0.538226902,-0.115603827,0.675463378,0.544591844,-0.116331153 +Right,0.808113813,0.531501234,-1.67E-07,0.75361073,0.421835005,-0.018282408,0.72140938,0.310892522,-0.035267539,0.707610428,0.218039021,-0.05024112,0.70309788,0.14204371,-0.066367,0.780930579,0.282004863,-0.060613055,0.73726362,0.228284717,-0.101426199,0.696999431,0.203558251,-0.128433332,0.66009289,0.189717054,-0.145112917,0.794075966,0.345116705,-0.071055412,0.757125616,0.307049125,-0.112293608,0.709922612,0.285699636,-0.13139829,0.668335319,0.279218078,-0.1447438,0.796566248,0.422241986,-0.082557231,0.745872915,0.415205985,-0.12586686,0.694164455,0.414847404,-0.139676675,0.652183175,0.418930858,-0.14589189,0.789365292,0.503610969,-0.094051816,0.733189762,0.518426597,-0.131739512,0.687243998,0.532344043,-0.143092021,0.649143755,0.544924915,-0.148450762 +Right,0.812720299,0.526949346,-1.76E-07,0.768071353,0.409822077,-0.020359371,0.733881295,0.296633273,-0.036939412,0.717133641,0.206696272,-0.051155854,0.708803296,0.130938128,-0.066947006,0.780101359,0.288923323,-0.061630797,0.734373569,0.236523539,-0.101253286,0.697827816,0.213672996,-0.127756342,0.665681839,0.199957088,-0.144134387,0.792440712,0.354761779,-0.069594108,0.749635339,0.322948098,-0.108531184,0.704012513,0.308147222,-0.127972722,0.664503694,0.309338182,-0.14233084,0.793274999,0.429840952,-0.078579471,0.734924138,0.432360709,-0.120120697,0.682239532,0.43285054,-0.135042503,0.640974522,0.436620057,-0.142465457,0.783815444,0.506959915,-0.087605327,0.722417593,0.5242607,-0.122228101,0.677493691,0.536132336,-0.133164421,0.641385794,0.547465026,-0.138903931 +Right,0.823768616,0.56075722,-2.66E-07,0.786554813,0.446264863,-0.017829882,0.752906442,0.329826266,-0.032481566,0.735574961,0.237214193,-0.044304345,0.73924017,0.159781277,-0.058368932,0.791217983,0.336466163,-0.058097851,0.743463099,0.284416884,-0.089903697,0.7022053,0.268107146,-0.10886734,0.664344251,0.259596854,-0.120447084,0.798672795,0.408173949,-0.063209198,0.739123046,0.384578228,-0.094554879,0.688379526,0.373846203,-0.107766978,0.646407187,0.37396282,-0.118485004,0.793264925,0.487013459,-0.068551436,0.723189235,0.48829931,-0.101093993,0.668834865,0.484153926,-0.109799854,0.625848889,0.479791939,-0.114147097,0.777895689,0.561625123,-0.073802561,0.711570561,0.566991329,-0.100621134,0.669801533,0.567366123,-0.107433476,0.634843588,0.568487883,-0.110626005 +Right,0.823054254,0.631123126,-1.90E-07,0.813655674,0.51474297,-0.014622332,0.783301175,0.39307636,-0.032531124,0.762998283,0.292863697,-0.04741032,0.772625208,0.212530479,-0.065516055,0.800569952,0.391405582,-0.067158714,0.743286967,0.328071892,-0.099911459,0.696266413,0.308748364,-0.118923932,0.65449065,0.299017072,-0.131036431,0.792654455,0.468794316,-0.073658392,0.719801128,0.430157959,-0.107394226,0.666246712,0.41473636,-0.121974282,0.623627543,0.406250775,-0.133270696,0.775775194,0.549026489,-0.078694463,0.699095011,0.526062191,-0.109202944,0.648223758,0.512632489,-0.117612444,0.607565761,0.498017997,-0.122577146,0.752869904,0.6224823,-0.082939111,0.688991129,0.608688414,-0.107935607,0.650048614,0.599008203,-0.114699036,0.617325008,0.586120129,-0.118010007 +Right,0.821165323,0.692444205,-6.67E-08,0.823848546,0.5776546,-0.01170254,0.801490784,0.446805477,-0.028761474,0.785821557,0.345555246,-0.042515151,0.799848199,0.271825641,-0.059764035,0.808161795,0.457058489,-0.067620046,0.745958984,0.386009455,-0.094356045,0.699059188,0.354219973,-0.107985646,0.660366714,0.33128947,-0.117895707,0.788513243,0.532721698,-0.075142644,0.714167476,0.4676359,-0.103205167,0.660246789,0.439887047,-0.114756785,0.618375003,0.419192672,-0.124691688,0.765029252,0.609636664,-0.080182113,0.687687635,0.56706202,-0.105024658,0.636814415,0.545436382,-0.112465799,0.59739697,0.522280753,-0.118312821,0.741364002,0.677905142,-0.084133931,0.681141257,0.650358677,-0.105069712,0.642969072,0.635770679,-0.111023083,0.610481501,0.614755452,-0.114966266 +Right,0.811410546,0.737121463,9.04E-08,0.824270129,0.619656622,-0.007579973,0.814731956,0.489060313,-0.025261192,0.80629319,0.384073734,-0.040079813,0.825276971,0.311203122,-0.05836102,0.805183649,0.502927005,-0.068487145,0.744669974,0.405213147,-0.094768427,0.700034618,0.359684944,-0.10702458,0.662817955,0.332444787,-0.114938997,0.781201243,0.571351886,-0.076955378,0.710367918,0.473068386,-0.102096342,0.658832073,0.424319267,-0.11116536,0.618658781,0.393200487,-0.119298801,0.753199399,0.64032352,-0.082372122,0.677285075,0.567583263,-0.102209315,0.629509747,0.527911067,-0.107237481,0.593458354,0.495947868,-0.112146772,0.726455212,0.701104999,-0.0865141,0.663382292,0.656342089,-0.102966934,0.626687288,0.632323265,-0.10692209,0.595858812,0.604321063,-0.109841064 +Right,0.785330534,0.780621409,1.69E-07,0.812144339,0.669420004,-0.006078001,0.814763129,0.545138001,-0.020778013,0.817516565,0.441283882,-0.033290133,0.842588007,0.38001743,-0.049395259,0.787722886,0.540243506,-0.06156107,0.739894331,0.427482873,-0.082538694,0.704219222,0.370180339,-0.090669468,0.672864735,0.329125822,-0.096294634,0.75480938,0.593895376,-0.069366589,0.692871749,0.47949779,-0.089960098,0.648840666,0.419273734,-0.097123519,0.614737153,0.377121449,-0.103756435,0.721554041,0.652987182,-0.074156195,0.657569945,0.558503568,-0.091400683,0.616060972,0.506329358,-0.099093117,0.585097671,0.468545049,-0.105594747,0.692448139,0.709566236,-0.077572063,0.633251905,0.646362722,-0.093895853,0.597759724,0.613196969,-0.101079032,0.568796575,0.581472039,-0.105998799 +Right,0.754865527,0.787721157,1.50E-07,0.78872025,0.690928221,-0.005517504,0.802702188,0.573154211,-0.021117996,0.8155213,0.475809067,-0.033965904,0.844423234,0.422396511,-0.05071922,0.787876785,0.573705077,-0.068922594,0.755780816,0.445207953,-0.091824383,0.72682339,0.376876503,-0.100468919,0.701063097,0.325464338,-0.106383465,0.752987862,0.615918875,-0.077565804,0.709177077,0.479177743,-0.100791179,0.672148168,0.403227091,-0.108299501,0.642714262,0.348747551,-0.115470655,0.713747621,0.660915375,-0.082860604,0.665798008,0.541287243,-0.10293588,0.632224977,0.469389588,-0.112289846,0.606626391,0.416234314,-0.120143458,0.676127434,0.70363754,-0.086267248,0.626809716,0.616483033,-0.105787173,0.594986796,0.568948209,-0.114718437,0.568602204,0.525810897,-0.121169753 +Right,0.728549302,0.792181134,-4.69E-08,0.76084137,0.705020964,-0.005487824,0.776815951,0.591762543,-0.021508833,0.789739966,0.497342169,-0.035184965,0.819206178,0.442476213,-0.05231937,0.785705447,0.599810123,-0.065173782,0.762303889,0.468827337,-0.092298552,0.735427976,0.394170284,-0.105932899,0.710025907,0.339083582,-0.115195259,0.752831757,0.636863053,-0.076603062,0.720007002,0.490230411,-0.102111846,0.686221421,0.405777842,-0.112504341,0.656640649,0.345227718,-0.122191675,0.711950839,0.676909029,-0.085246049,0.676644266,0.545065522,-0.109164484,0.646782696,0.463498801,-0.118791319,0.622192979,0.39836067,-0.127162129,0.669553161,0.713257611,-0.091890097,0.631647468,0.620317996,-0.1158638,0.60373491,0.568431139,-0.124454714,0.579012811,0.519991636,-0.130424455 +Right,0.710932076,0.780038536,-1.79E-08,0.735099375,0.688886285,6.84E-05,0.74700284,0.582386494,-0.011696848,0.752259851,0.494856685,-0.023256199,0.769726634,0.440083921,-0.037864912,0.767922699,0.579191566,-0.051103424,0.752418518,0.452130318,-0.077848852,0.732435524,0.37826252,-0.092106849,0.712270916,0.320416242,-0.101859435,0.745291293,0.614596784,-0.066190235,0.72598505,0.478078604,-0.092745945,0.70109719,0.392917395,-0.104414761,0.675509632,0.328569293,-0.114349864,0.710662007,0.658340335,-0.07917463,0.693548679,0.542389572,-0.105766334,0.674304843,0.465800077,-0.117920667,0.65578866,0.403311253,-0.127021417,0.669351578,0.700154066,-0.090015963,0.64851594,0.624986768,-0.11727237,0.630766213,0.574817717,-0.129248932,0.612479627,0.526446104,-0.137361318 +Right,0.696123242,0.764985502,3.77E-08,0.685764015,0.648718357,-0.001104815,0.682217956,0.521005273,-0.007165265,0.66786027,0.426809609,-0.013617312,0.65747422,0.347565979,-0.02177513,0.736473799,0.540416837,-0.02712165,0.71939975,0.432991982,-0.047428053,0.703618884,0.362759858,-0.060599737,0.688786983,0.301643401,-0.071128689,0.729286849,0.572531223,-0.041202173,0.717011929,0.452770323,-0.06110213,0.703693151,0.376245558,-0.07533066,0.690510035,0.309147626,-0.087341435,0.70957607,0.615747809,-0.054760974,0.699093044,0.51881665,-0.078442864,0.68948102,0.450843364,-0.095049858,0.681093991,0.384320349,-0.107152142,0.679939091,0.663340509,-0.066738866,0.667110801,0.611420989,-0.092551187,0.654812932,0.574078918,-0.106422216,0.642882586,0.53363061,-0.116293266 +Right,0.673805416,0.784484863,-9.66E-08,0.634686053,0.684043288,0.000246133,0.636393845,0.589380026,-0.004082905,0.644943655,0.531946421,-0.010660741,0.645586252,0.479785085,-0.018824106,0.686498165,0.528542995,-0.006199501,0.659374058,0.450049609,-0.026166001,0.631377816,0.412540823,-0.043927517,0.605931461,0.381558001,-0.056079242,0.704813004,0.548647165,-0.02097814,0.692378163,0.443995506,-0.036515631,0.680299759,0.369113624,-0.053367916,0.670272171,0.306688219,-0.067110516,0.711062551,0.591171801,-0.037395492,0.708026409,0.497262418,-0.059586287,0.698251426,0.426570892,-0.079152212,0.689497471,0.365885228,-0.092620969,0.70423609,0.647657275,-0.052589495,0.684885323,0.587252259,-0.075825572,0.668300152,0.543228507,-0.087268077,0.65291816,0.504769742,-0.094793417 +Right,0.674405932,0.792365372,-3.37E-08,0.636465073,0.69348228,-0.001152805,0.629950285,0.593040705,-0.003937725,0.627728045,0.525138438,-0.009978882,0.616261005,0.464793742,-0.016696706,0.676384091,0.537082493,0.003844206,0.650624156,0.463024735,-0.01800801,0.620992899,0.425673962,-0.037673105,0.594815195,0.399556339,-0.050265126,0.697646677,0.549187005,-0.010010341,0.692351162,0.445730329,-0.025482722,0.682160974,0.372841299,-0.041240685,0.674227595,0.313197643,-0.053411819,0.709541261,0.588088095,-0.027169198,0.715091109,0.49782747,-0.04756514,0.706859112,0.430311918,-0.064376801,0.698051572,0.372146606,-0.075646952,0.709045053,0.645102024,-0.044207633,0.70419848,0.588841796,-0.064078361,0.690163136,0.54617852,-0.074215114,0.674570203,0.505769372,-0.081193544 +Right,0.682062924,0.788922071,-1.18E-08,0.644086599,0.70681411,-0.006801586,0.627476931,0.606248736,-0.013702305,0.614487708,0.535797954,-0.02320678,0.597855389,0.473487765,-0.03338179,0.677450955,0.542606473,-0.001583756,0.657671988,0.469473451,-0.027733037,0.632003903,0.436249912,-0.050719578,0.60644412,0.411818087,-0.065073967,0.698969245,0.546441317,-0.013370448,0.699643493,0.441494763,-0.032016166,0.69174391,0.373062909,-0.049556896,0.682458937,0.313087255,-0.062437709,0.717304945,0.579201758,-0.028876018,0.730435312,0.486347377,-0.049755834,0.72761178,0.42156288,-0.065206461,0.719987988,0.359637111,-0.075537533,0.730098009,0.63241291,-0.045059595,0.746801615,0.573617995,-0.063504852,0.746909738,0.524405777,-0.072715893,0.739482284,0.47486791,-0.079309747 +Right,0.695308387,0.776689589,3.73E-08,0.653277695,0.715805054,-0.009354582,0.62788403,0.620860219,-0.017852595,0.60791111,0.555162787,-0.028154753,0.583367705,0.504765451,-0.039531637,0.674779892,0.537008643,-0.007288283,0.654469252,0.464705795,-0.032510471,0.630625248,0.43250525,-0.0542804,0.605924487,0.408562899,-0.06791234,0.702933073,0.534240067,-0.017897649,0.70426178,0.431772113,-0.035759058,0.69557929,0.365405411,-0.052519411,0.683658361,0.306554258,-0.064856544,0.727609456,0.562486827,-0.031906225,0.741191566,0.468989968,-0.051560186,0.739115715,0.407596171,-0.065996476,0.731222153,0.346842885,-0.075913072,0.746743381,0.612486184,-0.046617679,0.76789993,0.549068272,-0.063321829,0.774118721,0.500011444,-0.071174845,0.772328615,0.448820889,-0.077013984 +Right,0.705965281,0.781815886,7.89E-08,0.664092481,0.731483698,-0.012434609,0.635495543,0.650760472,-0.022718372,0.617196918,0.591442585,-0.033962425,0.596068859,0.540075302,-0.046108585,0.673300982,0.54637152,-0.012023846,0.652666986,0.475245982,-0.036288049,0.630844295,0.442665547,-0.056723654,0.608319521,0.415329397,-0.069896162,0.705539644,0.538820326,-0.021684587,0.70404464,0.43741554,-0.039851196,0.696006238,0.373075187,-0.056776274,0.685236871,0.314521849,-0.069177918,0.734568834,0.562600195,-0.034603938,0.745170355,0.469839662,-0.055231333,0.744849741,0.408459961,-0.070144087,0.73964411,0.347449422,-0.080318928,0.758722305,0.608819246,-0.048303287,0.778349042,0.543148875,-0.066266403,0.787565053,0.494346321,-0.074269943,0.789999068,0.443666101,-0.079908833 +Right,0.719908416,0.785778224,1.21E-07,0.675538898,0.744292259,-0.013698629,0.646957755,0.676927269,-0.024374465,0.635578573,0.625143647,-0.035653595,0.623786271,0.574896157,-0.047527008,0.677368343,0.558074415,-0.012833653,0.655302107,0.494023234,-0.037115976,0.6328879,0.467141777,-0.057958439,0.609529138,0.442817926,-0.071318351,0.712071359,0.542989075,-0.02204996,0.707782447,0.441828966,-0.03987541,0.698586166,0.379799306,-0.056974929,0.687270641,0.321838528,-0.069228709,0.744073272,0.560820222,-0.034565195,0.754209697,0.466866434,-0.055060606,0.754389107,0.407947481,-0.06988658,0.749377668,0.348163456,-0.079750054,0.771199286,0.604025543,-0.048009638,0.790051639,0.539695859,-0.0658205,0.800608516,0.493234932,-0.07291317,0.805325925,0.445144832,-0.077494599 +Right,0.732188225,0.78772676,1.21E-07,0.686204553,0.765345514,-0.022567337,0.647451878,0.70770216,-0.037526745,0.628879011,0.648983896,-0.052596748,0.636166513,0.594093859,-0.064942777,0.669078469,0.561550558,-0.010735928,0.650175989,0.498816818,-0.042272642,0.636836946,0.474947572,-0.067118868,0.628147721,0.495768249,-0.079167172,0.705006778,0.537561178,-0.013789194,0.706636131,0.442891449,-0.041392136,0.699104548,0.403195977,-0.058605842,0.691315889,0.424369931,-0.064103663,0.739960849,0.546081305,-0.022358226,0.744050384,0.458683014,-0.044650368,0.738048136,0.412109375,-0.051342368,0.72713244,0.40755561,-0.050114892,0.773017347,0.577787817,-0.033740155,0.787770033,0.512654543,-0.053254962,0.787149906,0.471919656,-0.059586197,0.778404236,0.458111703,-0.058544721 +Right,0.740613282,0.726526558,-2.40E-07,0.697817147,0.714271545,-0.030468743,0.654341877,0.662059784,-0.054091044,0.634810627,0.603743076,-0.077006586,0.656756163,0.550017238,-0.096562579,0.677902699,0.511681616,-0.030448427,0.672305286,0.429591537,-0.071580224,0.672247291,0.467967957,-0.097148985,0.681120872,0.53124547,-0.108320192,0.720129728,0.497973144,-0.033238865,0.726227343,0.389179468,-0.073177323,0.718037128,0.462535799,-0.085079625,0.715969622,0.524637759,-0.083847106,0.759867907,0.505553603,-0.04165088,0.770094752,0.401145101,-0.075292885,0.759055674,0.464976341,-0.07133241,0.754054546,0.519729674,-0.060353529,0.797447324,0.530933499,-0.052996181,0.806770027,0.448030353,-0.074422978,0.79413873,0.489795238,-0.069158189,0.785237908,0.536394954,-0.059874877 +Right,0.745691955,0.707318068,-3.30E-07,0.705689132,0.699205816,-0.028822664,0.661504745,0.648514271,-0.051020294,0.64129734,0.598071694,-0.072588295,0.661252618,0.549864054,-0.090323225,0.680718005,0.496812552,-0.026918143,0.678736567,0.420142859,-0.066802822,0.684253454,0.483809501,-0.091007732,0.691844106,0.545404673,-0.101987608,0.724461138,0.483787656,-0.030873219,0.731214583,0.381184459,-0.072124586,0.726689041,0.476019114,-0.084119737,0.72287792,0.533768415,-0.082290113,0.764803708,0.494445711,-0.040275414,0.775069833,0.400600284,-0.0768556,0.766093969,0.483542025,-0.072291858,0.758662045,0.530777812,-0.059647627,0.803081095,0.522906542,-0.052088406,0.814669788,0.451441288,-0.073349871,0.802664161,0.501558721,-0.066292755,0.791605175,0.534876585,-0.055645946 +Right,0.750521839,0.710015655,-3.53E-07,0.710349083,0.704005003,-0.031669416,0.664415598,0.654085875,-0.054307815,0.641126752,0.604224503,-0.075636238,0.66365844,0.557379603,-0.092469238,0.680615425,0.505936921,-0.02936006,0.675759196,0.435980797,-0.069670796,0.682362199,0.501204669,-0.092481755,0.692192316,0.563109398,-0.102568015,0.725563288,0.489055634,-0.032249864,0.729097664,0.3929317,-0.074816942,0.72624743,0.493122458,-0.08553303,0.725218356,0.550050855,-0.082678899,0.766937256,0.497435629,-0.040966731,0.774436474,0.409962714,-0.079909585,0.766526639,0.498687059,-0.073964357,0.760627151,0.545183778,-0.06010874,0.805609882,0.524126291,-0.052331708,0.816259921,0.458681166,-0.076004662,0.804875374,0.512515783,-0.06933438,0.794515014,0.545148671,-0.058781665 +Right,0.75428015,0.707300186,-3.76E-07,0.712237716,0.692827344,-0.035294224,0.667843819,0.638020456,-0.06093587,0.641779184,0.59768343,-0.085267201,0.659669638,0.566711962,-0.104877464,0.690473735,0.499500662,-0.036957659,0.681199968,0.442231983,-0.079447262,0.680964887,0.522116244,-0.101951502,0.686582863,0.584091127,-0.111997932,0.734921336,0.491134048,-0.039889675,0.733553946,0.415414959,-0.088220038,0.722034991,0.519532204,-0.100247629,0.718944311,0.574492395,-0.097512327,0.775700867,0.506711185,-0.048848275,0.779730141,0.431681126,-0.094013117,0.765425622,0.523631811,-0.089573942,0.758601606,0.568446636,-0.075675532,0.812546313,0.53725183,-0.060536657,0.822678328,0.489920318,-0.089612298,0.806498528,0.542063117,-0.085480012,0.794618487,0.568696558,-0.075864382 +Right,0.757099926,0.708330691,-4.09E-07,0.714532495,0.690662265,-0.035334989,0.670199156,0.636507034,-0.060899671,0.643130362,0.601893008,-0.085116684,0.659772515,0.56815654,-0.104950145,0.697994351,0.492161185,-0.037429236,0.685404181,0.456040353,-0.080403805,0.680659413,0.540653944,-0.103472374,0.685403526,0.598806381,-0.114118822,0.741913795,0.488650441,-0.039952308,0.737390339,0.429249495,-0.088751405,0.720701814,0.533929884,-0.101343118,0.717409074,0.583704531,-0.099358164,0.781523466,0.508354127,-0.048399355,0.784440637,0.447732776,-0.094407246,0.76472789,0.541185558,-0.089982405,0.757044673,0.583012819,-0.076133095,0.816515505,0.542495489,-0.059506558,0.823990464,0.509527802,-0.089005671,0.804361403,0.562680304,-0.08509317,0.793043554,0.584055424,-0.075560115 +Right,0.755308986,0.708052814,-4.13E-07,0.714788318,0.682601631,-0.038095921,0.673582613,0.623622537,-0.066103086,0.646843433,0.594762921,-0.091718756,0.659807086,0.575476706,-0.113578819,0.710129738,0.48017475,-0.046853248,0.693031847,0.473082304,-0.092223532,0.676869631,0.557461143,-0.115793161,0.674446166,0.612049818,-0.126566976,0.75390476,0.487809867,-0.049325306,0.746053994,0.459112108,-0.10023351,0.718487978,0.558112085,-0.111646347,0.711208522,0.60325104,-0.108652815,0.791245222,0.520074844,-0.05765928,0.789031148,0.4947474,-0.104606971,0.761114001,0.581899881,-0.098712392,0.752211869,0.612592459,-0.084253229,0.822025955,0.565007389,-0.06892506,0.821566522,0.558757365,-0.097901203,0.797630012,0.613534868,-0.091844186,0.787092209,0.628627419,-0.080916457 +Right,0.7546646,0.69739306,-3.56E-07,0.71476388,0.661295414,-0.034370787,0.68497771,0.608979225,-0.063701034,0.661650658,0.582606673,-0.090791732,0.645164132,0.567674935,-0.116746649,0.729772687,0.471597314,-0.056525663,0.700505912,0.478102922,-0.103847809,0.673016012,0.543335855,-0.132217199,0.657882214,0.593229115,-0.146105975,0.767101526,0.496320605,-0.061367426,0.749547601,0.491582751,-0.109999187,0.714224875,0.56878686,-0.123310208,0.699264824,0.613268435,-0.123893484,0.796673715,0.544020891,-0.070702158,0.788361073,0.53994453,-0.116138265,0.752849102,0.612584054,-0.112938851,0.736171365,0.648960769,-0.101765834,0.818644404,0.6021837,-0.082486823,0.811923862,0.616444707,-0.112908334,0.78522259,0.65975517,-0.108727083,0.773324966,0.673949122,-0.099281147 +Right,0.76662904,0.705358922,-3.21E-07,0.725761056,0.660757065,-0.032743882,0.697394669,0.609201491,-0.063371509,0.672138929,0.581932724,-0.091796532,0.650698781,0.567923546,-0.11982844,0.748814464,0.478426039,-0.065406077,0.712607265,0.475573212,-0.113305159,0.682029724,0.532284021,-0.14215295,0.663841367,0.581334293,-0.157133877,0.784481764,0.512185574,-0.072362743,0.76289773,0.500663221,-0.12261539,0.721538544,0.563963234,-0.138650835,0.700236738,0.611331642,-0.142387688,0.81046176,0.56955117,-0.082943246,0.799399674,0.557688236,-0.130091965,0.759452164,0.612351954,-0.133005396,0.738433361,0.650922894,-0.126956925,0.826476336,0.637151003,-0.095427051,0.821897984,0.647929847,-0.130806535,0.798978388,0.672816336,-0.133762985,0.789724171,0.682853818,-0.129766077 +Right,0.746180832,0.748320103,-3.61E-07,0.699934781,0.720465183,-0.019708548,0.657483637,0.666579247,-0.034163304,0.631036162,0.621825457,-0.048838064,0.637628555,0.58474791,-0.059557963,0.685230434,0.538433373,-0.022288267,0.666485548,0.495146364,-0.047891807,0.654879272,0.55435288,-0.057923224,0.651690662,0.60391587,-0.061131682,0.718290985,0.536331475,-0.024149805,0.70055449,0.494337082,-0.059888691,0.68193084,0.574837863,-0.068595231,0.675447762,0.635150731,-0.066921979,0.750745237,0.549508274,-0.029621877,0.735468209,0.508615792,-0.065169573,0.715476692,0.581863165,-0.067144096,0.70588392,0.640549779,-0.059026904,0.780277431,0.573087752,-0.036119789,0.790305316,0.505008757,-0.060745832,0.793208361,0.465128779,-0.069013193,0.795124412,0.424221545,-0.070241913 +Right,0.74354738,0.72701633,-4.35E-07,0.694002151,0.703806043,-0.020282121,0.649484396,0.652861774,-0.034652036,0.622363031,0.610978782,-0.049119439,0.627844095,0.56341666,-0.05927211,0.675801098,0.525934517,-0.023583254,0.654552817,0.502545118,-0.048545599,0.651490331,0.575147808,-0.057268213,0.653050363,0.626576364,-0.059086822,0.708360553,0.520330906,-0.023725079,0.685524046,0.500735283,-0.057345398,0.677001297,0.587640226,-0.064971156,0.674897134,0.645469785,-0.06322103,0.741944432,0.529407263,-0.027179316,0.720608592,0.503310263,-0.062347021,0.709285259,0.584703207,-0.063450225,0.70470345,0.642880738,-0.054638948,0.772937953,0.549164951,-0.031428821,0.778316021,0.480023265,-0.055517972,0.77908057,0.439726949,-0.062771805,0.776918054,0.398311168,-0.063063063 +Right,0.739098549,0.7104792,-3.99E-07,0.690597355,0.686460376,-0.018686939,0.646180212,0.636938751,-0.032352228,0.618522823,0.593266606,-0.046635192,0.621084869,0.543421626,-0.056654543,0.669353247,0.504151523,-0.017640296,0.646768689,0.472469032,-0.043144304,0.642816126,0.541441083,-0.054653849,0.64490068,0.59657073,-0.058827158,0.700174451,0.494370162,-0.018611453,0.677437484,0.466831684,-0.05166892,0.669039607,0.549986064,-0.061692253,0.668416977,0.608903646,-0.062129706,0.733142018,0.50048548,-0.0232671,0.714978874,0.462198079,-0.056342665,0.700569093,0.535281539,-0.059343506,0.693144619,0.592356145,-0.052991807,0.764080286,0.52012217,-0.028852286,0.774092257,0.453557372,-0.052817594,0.779317379,0.414572418,-0.062010165,0.781888843,0.374299109,-0.063910276 +Right,0.735547364,0.702173591,-3.23E-07,0.688609838,0.679824412,-0.017938476,0.643848538,0.628815293,-0.032110624,0.615435362,0.582151055,-0.047140334,0.624321699,0.536844611,-0.058443472,0.665970981,0.503017008,-0.013579514,0.646524489,0.452162385,-0.041093025,0.637999535,0.507885516,-0.056416027,0.637580872,0.561426282,-0.063188054,0.696298301,0.490558684,-0.015544044,0.677087963,0.438324392,-0.049851947,0.664941132,0.513663173,-0.061990406,0.663230181,0.57598716,-0.062920548,0.729028702,0.493821442,-0.021632405,0.714010298,0.43555367,-0.053266373,0.69604677,0.498962253,-0.057823572,0.685950398,0.554196656,-0.052676193,0.76068604,0.511290789,-0.028876401,0.772056222,0.443823308,-0.051104899,0.776631832,0.404427826,-0.060638335,0.77899754,0.363583684,-0.063148595 +Right,0.735784829,0.698209524,-2.98E-07,0.690566599,0.6804775,-0.018203294,0.646131873,0.627311349,-0.032463133,0.619139969,0.5799281,-0.047455031,0.62655884,0.534360707,-0.058856808,0.66713202,0.505086541,-0.014529468,0.645123601,0.439991027,-0.043594863,0.633144855,0.486687839,-0.060974289,0.631086528,0.540131807,-0.068986259,0.69624126,0.489935637,-0.017257098,0.677092493,0.418306351,-0.053335886,0.661028206,0.484694898,-0.067789719,0.657492876,0.547928154,-0.069592647,0.728288293,0.491540104,-0.024053536,0.715650022,0.418779552,-0.054833274,0.694456756,0.472331017,-0.061307698,0.682184577,0.524015009,-0.057768449,0.760231555,0.50883466,-0.032278731,0.772105873,0.441766024,-0.054066781,0.773978591,0.401918918,-0.064526342,0.774976194,0.363163918,-0.06776692 +Right,0.737337351,0.696116984,-2.87E-07,0.690554798,0.677503228,-0.016207796,0.646145821,0.623238027,-0.030031307,0.619134367,0.573671043,-0.044766482,0.630491972,0.532146096,-0.056186493,0.670129776,0.50279671,-0.012563226,0.647459745,0.437644422,-0.040665954,0.634229064,0.482492924,-0.058786258,0.633560181,0.533865333,-0.067688502,0.699044287,0.488271892,-0.016235815,0.678202629,0.414339602,-0.049490009,0.659563303,0.472276449,-0.06287536,0.655953825,0.534772217,-0.064304419,0.730942249,0.489542395,-0.023967193,0.718779624,0.408109188,-0.05026339,0.695870399,0.439728022,-0.057009287,0.682333529,0.479331702,-0.055087462,0.762820244,0.507089376,-0.033239149,0.774288118,0.439712644,-0.052009098,0.774989009,0.398798525,-0.062317785,0.775380075,0.362323642,-0.066176891 +Right,0.738806725,0.692685068,-2.82E-07,0.691697717,0.675907195,-0.016953046,0.646241188,0.620646834,-0.030737903,0.619113326,0.567944765,-0.045241427,0.632710934,0.528100073,-0.056383468,0.670172095,0.503326058,-0.012449046,0.647557318,0.436707318,-0.040186811,0.63553822,0.480150253,-0.058272544,0.63528192,0.529033005,-0.067394853,0.699315369,0.487613142,-0.015770264,0.679319978,0.413491815,-0.04888517,0.661554992,0.468489051,-0.062596537,0.657620907,0.528301954,-0.064335287,0.731603503,0.487432033,-0.023189664,0.720843256,0.405108213,-0.049433168,0.698785186,0.433336616,-0.056506604,0.685177445,0.470002741,-0.054824177,0.763999403,0.503741264,-0.032205146,0.773910284,0.436252207,-0.050706096,0.773430228,0.394753277,-0.060829964,0.772721946,0.357840925,-0.064669594 +Right,0.74155426,0.698593497,-2.78E-07,0.694061935,0.682982743,-0.015961709,0.647690475,0.62812072,-0.029303754,0.619849443,0.576133192,-0.043519851,0.633337677,0.534973562,-0.054416977,0.670507669,0.511202335,-0.011472827,0.647865593,0.445237339,-0.039315175,0.637708127,0.487888396,-0.057817999,0.638805687,0.537063479,-0.067192473,0.699546695,0.494847059,-0.01525801,0.679343581,0.422234148,-0.048329916,0.663727224,0.475632489,-0.062188424,0.661047816,0.535677016,-0.06393262,0.731770694,0.493614346,-0.023119126,0.721160829,0.409890354,-0.048805896,0.700632811,0.434097707,-0.055813715,0.687833071,0.468063235,-0.054240953,0.763720751,0.509756207,-0.032542713,0.773756981,0.442147851,-0.05079532,0.773764014,0.400244296,-0.060813252,0.773637176,0.362889677,-0.064540267 +Right,0.743019521,0.709274292,-3.13E-07,0.6934762,0.693433404,-0.011527657,0.64929378,0.63922435,-0.023961401,0.622047305,0.588274479,-0.038344067,0.638097763,0.548055708,-0.050409704,0.675037622,0.522317231,-0.005150656,0.649918318,0.458648205,-0.033843055,0.641498804,0.498969316,-0.054442715,0.643790543,0.549037397,-0.064598598,0.702943683,0.506545007,-0.011363963,0.686384916,0.446495444,-0.044112004,0.670369983,0.489005595,-0.059970465,0.661124885,0.540404916,-0.062519915,0.734621823,0.504485369,-0.021794777,0.728114009,0.426547945,-0.046195149,0.709459662,0.412704885,-0.056037005,0.693085909,0.407746494,-0.057019569,0.765151858,0.52064544,-0.033114102,0.776908934,0.455150038,-0.048547126,0.78019321,0.41285938,-0.0559792,0.780334651,0.370453119,-0.058191754 +Right,0.742937803,0.725957751,-3.18E-07,0.693456888,0.708096981,-0.012832814,0.64903605,0.654187858,-0.026794754,0.620711684,0.605398178,-0.042240418,0.638425052,0.5723176,-0.055687129,0.671120346,0.534166098,-0.008880293,0.64888525,0.475659132,-0.037848666,0.642865598,0.521348476,-0.058033101,0.646263599,0.571402073,-0.06857124,0.702094197,0.520048916,-0.015987247,0.688384473,0.455308408,-0.051960148,0.674217463,0.505417824,-0.068374656,0.666214645,0.55870837,-0.070656471,0.735256553,0.522340417,-0.027336406,0.732409656,0.440857172,-0.054760061,0.716041386,0.421690583,-0.067200102,0.701187313,0.408624202,-0.069911912,0.766723096,0.542271733,-0.039262626,0.778627992,0.476633459,-0.056242723,0.782708645,0.43547684,-0.064633451,0.782391965,0.393761963,-0.068063043 +Right,0.744382501,0.730185151,-3.12E-07,0.695097268,0.715197206,-0.012844221,0.650600672,0.655934811,-0.025967911,0.622908354,0.60373652,-0.040418409,0.640826762,0.575373232,-0.053047437,0.674441814,0.533835769,-0.008677649,0.651716173,0.476906657,-0.036953036,0.644014478,0.524235845,-0.056342006,0.647507846,0.571594894,-0.066592261,0.704817593,0.521435082,-0.016380861,0.69224906,0.454548299,-0.052323289,0.675410867,0.505075693,-0.068520077,0.666928291,0.556324542,-0.070536412,0.737207294,0.527226567,-0.028380992,0.736997783,0.443988144,-0.057115369,0.72123903,0.422105372,-0.070915908,0.707968831,0.403847158,-0.074356869,0.767984748,0.550398886,-0.040808659,0.779616714,0.482114494,-0.059171811,0.786087513,0.439868093,-0.068504848,0.789130032,0.395400882,-0.07267458 +Right,0.744211316,0.741053581,-2.74E-07,0.696234584,0.720318675,-0.0131956,0.65400368,0.659558415,-0.027061867,0.625806034,0.608834505,-0.042721644,0.64573884,0.57732147,-0.056813449,0.683056176,0.537979484,-0.005500385,0.661229014,0.483569235,-0.03536658,0.65016979,0.524693191,-0.058143631,0.651115298,0.571392715,-0.070382699,0.713173866,0.526311517,-0.012973669,0.702720642,0.461033314,-0.046972249,0.682154953,0.492401212,-0.064770631,0.668697894,0.534444034,-0.068639666,0.745422781,0.533571661,-0.024947286,0.747130096,0.454755872,-0.051118206,0.732812285,0.427072287,-0.062897533,0.720253646,0.405815423,-0.065178029,0.775494456,0.559678912,-0.037904635,0.788260758,0.493900657,-0.054436032,0.792994678,0.451179475,-0.061622579,0.794500768,0.406567961,-0.063902788 +Right,0.747947991,0.750659585,-1.78E-07,0.699831724,0.72126925,-0.018191626,0.660466075,0.661564589,-0.035614137,0.63381511,0.610482037,-0.053564213,0.654557168,0.584316969,-0.070148565,0.694786787,0.54686594,-0.015062605,0.677352607,0.488500476,-0.045738742,0.661337554,0.525770605,-0.069509953,0.656005859,0.570747018,-0.083255462,0.727325022,0.537776649,-0.02128977,0.726541877,0.4599666,-0.054562982,0.705566406,0.474226177,-0.073470227,0.689209878,0.50478375,-0.080049366,0.759644687,0.551805913,-0.03178516,0.76803124,0.473371685,-0.058071636,0.757302523,0.439894378,-0.071198896,0.74677515,0.414030045,-0.075814188,0.788341284,0.585761726,-0.043628883,0.804297686,0.522672117,-0.061218493,0.80960685,0.481747895,-0.069224954,0.810555458,0.440100491,-0.07305637 +Right,0.759161055,0.758481622,-1.89E-07,0.711875975,0.718195438,-0.016607756,0.675061822,0.657610655,-0.03403414,0.65155077,0.606156886,-0.052292567,0.67231679,0.581089735,-0.069238104,0.717187583,0.549488604,-0.015576418,0.703304112,0.486543775,-0.045822013,0.682993948,0.525551856,-0.069222189,0.674098372,0.57046628,-0.082901642,0.751114428,0.54746592,-0.023014972,0.756780505,0.464309633,-0.055283509,0.734732985,0.473606408,-0.073355839,0.717312038,0.496904731,-0.079945676,0.782788694,0.568377376,-0.034468539,0.797990501,0.489750952,-0.059691966,0.7912485,0.454272866,-0.071781471,0.784684479,0.42545256,-0.076232687,0.809451699,0.608579516,-0.047206528,0.829275846,0.547980428,-0.063501872,0.837418973,0.510198593,-0.06996756,0.841203272,0.470508277,-0.073148154 +Right,0.771061659,0.768714428,-1.18E-07,0.725823343,0.72673291,-0.017832873,0.689518154,0.667616069,-0.036497373,0.669201195,0.620150983,-0.055478081,0.688091934,0.583186984,-0.073135771,0.735452771,0.552315295,-0.02002595,0.725293875,0.480848491,-0.052340105,0.704166651,0.517529607,-0.077787861,0.6910671,0.567492485,-0.092320889,0.770128667,0.554440618,-0.027389577,0.779291332,0.462984264,-0.057064053,0.762171805,0.451652855,-0.075970329,0.745549321,0.45659101,-0.084954016,0.800447226,0.583662689,-0.038811397,0.817738652,0.502341926,-0.062483784,0.817125857,0.461302906,-0.074713759,0.814743519,0.424533427,-0.080812037,0.824371219,0.633853495,-0.051592588,0.843922496,0.579036117,-0.068873823,0.85351944,0.543108106,-0.074939072,0.860114455,0.502271652,-0.078067839 +Right,0.767814398,0.764978826,-1.12E-07,0.724518061,0.730843008,-0.017259147,0.690237701,0.674219131,-0.034999445,0.669907391,0.628806472,-0.052694768,0.68477875,0.591895878,-0.069228649,0.734955847,0.555931509,-0.018713592,0.727843761,0.48165527,-0.048221808,0.707437813,0.511383772,-0.07306172,0.692993402,0.558499217,-0.08762005,0.768526852,0.557647943,-0.025287874,0.778063476,0.46837306,-0.049528208,0.764010668,0.450543731,-0.067124099,0.748616695,0.451334536,-0.076663315,0.797417879,0.587199867,-0.03568878,0.814375281,0.505036354,-0.055365514,0.814996958,0.461312294,-0.06777104,0.810778439,0.425469846,-0.07553146,0.821206868,0.639344215,-0.047342878,0.839629054,0.59083879,-0.063564792,0.841087461,0.566834211,-0.06883397,0.834896326,0.54274112,-0.071809128 +Right,0.768916726,0.778818667,-8.35E-08,0.726458192,0.744197488,-0.017852355,0.691586256,0.685116947,-0.035215765,0.6726951,0.639205635,-0.052504994,0.689894617,0.606514871,-0.068620019,0.736967862,0.571841717,-0.020814553,0.729355276,0.492613852,-0.050427079,0.709497213,0.518137753,-0.075008646,0.695059359,0.566582322,-0.089128643,0.771334171,0.575899959,-0.027416401,0.783290505,0.481803626,-0.051711086,0.769241869,0.460014552,-0.068824753,0.75271976,0.46306479,-0.077944748,0.800189078,0.609127045,-0.037774615,0.817795455,0.528817177,-0.05742272,0.817178309,0.487820476,-0.069026738,0.810868621,0.459686041,-0.075839497,0.823927224,0.663004756,-0.049550813,0.840890884,0.611421287,-0.065928712,0.840236902,0.588206708,-0.070424847,0.831360638,0.569508374,-0.072432309 +Right,0.770678878,0.784688473,1.82E-08,0.729073465,0.750831366,-0.017374229,0.695205927,0.692975163,-0.033864398,0.677378595,0.650766492,-0.0505969,0.693315685,0.619264364,-0.066186935,0.743336439,0.573442161,-0.019067602,0.734344304,0.496207774,-0.049221609,0.714884996,0.514795244,-0.074287482,0.698409081,0.561471045,-0.087866522,0.77683574,0.579678833,-0.025358578,0.791864932,0.494242966,-0.047428552,0.783741355,0.462550938,-0.063397467,0.770207942,0.458837509,-0.072028697,0.804304659,0.616251886,-0.035712741,0.823055923,0.546033919,-0.055613052,0.826707125,0.509161532,-0.065739065,0.822639287,0.486369401,-0.070568062,0.825460136,0.672184706,-0.047513671,0.843960345,0.626575887,-0.065372974,0.847024381,0.602997899,-0.069360025,0.842510164,0.583688855,-0.069638483 +Right,0.772691905,0.776213884,6.31E-08,0.73084408,0.734026253,-0.014116195,0.700676858,0.665858448,-0.025887104,0.684619427,0.618122816,-0.038381144,0.699070215,0.594814062,-0.050070159,0.756409764,0.562285423,-0.013381573,0.751498461,0.485330403,-0.037914846,0.729752421,0.491470963,-0.058726288,0.707488239,0.520262778,-0.070122086,0.788874388,0.577008843,-0.019582363,0.805631936,0.493330598,-0.03331482,0.803606272,0.448484033,-0.045721214,0.795078874,0.417405605,-0.054821312,0.81263876,0.618356705,-0.02958223,0.831218898,0.56336683,-0.046826638,0.830023527,0.530148983,-0.057496253,0.820263386,0.501517236,-0.063665681,0.828685343,0.675704837,-0.040495414,0.845283985,0.633442104,-0.05546822,0.837581277,0.62797761,-0.056923959,0.820516527,0.626838207,-0.05664267 +Right,0.77366972,0.775191665,2.71E-08,0.73409611,0.715551496,-0.011428273,0.709378302,0.637455046,-0.021527026,0.694818139,0.58861196,-0.032990836,0.70538342,0.57595706,-0.044178203,0.772576928,0.552167058,-0.009263793,0.766080499,0.481020153,-0.034256853,0.743633211,0.46993506,-0.056430761,0.717775643,0.480774283,-0.069340169,0.801904202,0.574374259,-0.018038288,0.826154351,0.492555737,-0.035645016,0.817739606,0.453177452,-0.050460517,0.802340686,0.430460632,-0.059522331,0.820783854,0.623717368,-0.030413991,0.839755535,0.566624284,-0.051258244,0.824982762,0.533254623,-0.064675525,0.806067824,0.510475159,-0.071274333,0.829562783,0.689231157,-0.043431889,0.842791736,0.65152204,-0.062253818,0.826796472,0.639810205,-0.067483425,0.804643989,0.634232819,-0.069126181 +Right,0.777766943,0.774674952,-8.99E-08,0.749248505,0.669095397,-0.022361996,0.737972915,0.581775606,-0.043288328,0.72960937,0.529068053,-0.062498342,0.733777285,0.515996456,-0.081099972,0.832205892,0.545917332,-0.036207501,0.827890694,0.476335377,-0.068391092,0.804800034,0.443810135,-0.094638787,0.776509404,0.430169582,-0.110253014,0.846972942,0.60240835,-0.041930564,0.850101233,0.539892256,-0.070850179,0.8295362,0.499105126,-0.089516774,0.804457664,0.475765795,-0.10107623,0.844255567,0.66273129,-0.050340358,0.821278214,0.606436729,-0.077593982,0.79334259,0.565812349,-0.088344276,0.768256724,0.539207339,-0.09330795,0.824821949,0.718049586,-0.060270611,0.792490482,0.666214466,-0.081450485,0.76458478,0.640941501,-0.085165724,0.739936769,0.625164747,-0.085684784 +Right,0.75313592,0.772118747,3.83E-07,0.709308267,0.717601717,-0.01771076,0.68620497,0.627127647,-0.02830144,0.670853019,0.562201381,-0.037274607,0.655588508,0.511382818,-0.047992464,0.743576109,0.558321357,-0.023289308,0.749335289,0.48578763,-0.041458901,0.749707282,0.441939294,-0.05662534,0.749659121,0.400843322,-0.067788042,0.776076138,0.571877301,-0.028981395,0.805129886,0.485908121,-0.042980876,0.82381922,0.428571045,-0.056248188,0.843164206,0.378045946,-0.065431938,0.797256112,0.608644783,-0.03677566,0.824482799,0.523756385,-0.056961112,0.842928886,0.465761781,-0.073579334,0.863242388,0.41159749,-0.084932834,0.808996677,0.663655996,-0.044960305,0.831419289,0.645692289,-0.067673907,0.845811188,0.634347379,-0.077171326,0.860045612,0.619384229,-0.082597837 +Right,0.761340737,0.780178428,4.66E-07,0.717350185,0.726290941,-0.036014199,0.696053922,0.638989687,-0.056169592,0.689391136,0.573758185,-0.070410095,0.67936039,0.50832969,-0.085271411,0.765843451,0.561443686,-0.052156676,0.782237232,0.489073455,-0.075418442,0.790279567,0.446359575,-0.089492053,0.800153732,0.399700522,-0.099888243,0.80431807,0.592657506,-0.053172342,0.843657196,0.507101178,-0.074804991,0.871243179,0.460108757,-0.090102717,0.898421943,0.414627731,-0.100285292,0.825246215,0.647176802,-0.056758836,0.861686289,0.633597851,-0.093370788,0.883895457,0.634630203,-0.114219345,0.906654954,0.627837896,-0.124497883,0.836113751,0.710710824,-0.061149556,0.83899653,0.725045443,-0.099277362,0.821198106,0.763723195,-0.111125432,0.807831109,0.79107058,-0.115938932 +Right,0.780449271,0.769954264,5.22E-07,0.735885918,0.719539165,-0.035382766,0.713792264,0.634441197,-0.054357268,0.709394932,0.565654516,-0.068080187,0.701118231,0.497303814,-0.082206853,0.787114739,0.542662382,-0.048192471,0.802415133,0.461966783,-0.070225589,0.814066112,0.417414606,-0.083270073,0.827076375,0.370794654,-0.092744321,0.827618062,0.571813762,-0.049500197,0.86640352,0.479404658,-0.06949088,0.89726764,0.428136468,-0.083832264,0.926150739,0.382979661,-0.093284763,0.8489905,0.627479017,-0.053590674,0.880700111,0.614317477,-0.088929601,0.898866057,0.618441641,-0.108995773,0.915863931,0.620461762,-0.118278332,0.85900861,0.693889856,-0.058718659,0.864534259,0.711181164,-0.096327759,0.849857271,0.751443982,-0.108237006,0.835828245,0.783300042,-0.112585723 +Right,0.787877262,0.768102705,5.25E-07,0.743034363,0.715827346,-0.034680959,0.718596101,0.634167552,-0.053702902,0.714504719,0.566547036,-0.068022989,0.708022118,0.499462008,-0.08217071,0.791768312,0.529785275,-0.045984887,0.804842472,0.443171591,-0.068392418,0.814650059,0.396733314,-0.081277728,0.826296687,0.349780083,-0.089987077,0.833169043,0.554565787,-0.047352787,0.871036887,0.457684278,-0.066592567,0.901166022,0.403819025,-0.079884782,0.928536236,0.358121753,-0.088286392,0.855136752,0.608401537,-0.051748931,0.884860992,0.596651852,-0.086833373,0.899921656,0.609103441,-0.105973043,0.911992431,0.620975196,-0.113769673,0.865332007,0.675606132,-0.057288848,0.87163204,0.693910837,-0.094662368,0.856569409,0.737994432,-0.106373236,0.840524316,0.774829149,-0.109900907 +Right,0.786207974,0.753647268,5.60E-07,0.739717484,0.705652356,-0.03377885,0.715646982,0.621857524,-0.05278964,0.712204635,0.553608775,-0.067136958,0.702485383,0.489175767,-0.082131378,0.782602251,0.517334163,-0.04785686,0.795800507,0.428993195,-0.070128717,0.806445777,0.382285506,-0.083732009,0.818551242,0.333404928,-0.09345448,0.825138152,0.543382883,-0.050019767,0.865446329,0.447519422,-0.069927923,0.896583974,0.392956018,-0.084813863,0.924343526,0.345178604,-0.094952457,0.848965347,0.597024202,-0.054742612,0.882407904,0.570834458,-0.088760927,0.902470291,0.570380986,-0.10841547,0.920345426,0.568568468,-0.118228115,0.861873448,0.662463963,-0.060497805,0.878838599,0.671677172,-0.09643244,0.869447529,0.714526176,-0.106997736,0.858182251,0.750311732,-0.110909685 +Right,0.780171156,0.740010262,6.29E-07,0.73160249,0.688175082,-0.033503767,0.7087605,0.601685643,-0.051593065,0.705177665,0.532824159,-0.065103889,0.696625113,0.469298244,-0.07929498,0.778149664,0.497161895,-0.04443017,0.799278438,0.415586501,-0.066891685,0.817749083,0.370860606,-0.081722908,0.836600661,0.324841797,-0.092306025,0.820460081,0.527162731,-0.046188157,0.865176737,0.439915031,-0.066578478,0.902494371,0.394007623,-0.08228565,0.934918344,0.354730368,-0.092823498,0.843524873,0.581346989,-0.050650172,0.875322759,0.55935961,-0.084388778,0.893448293,0.560076296,-0.103423171,0.908604503,0.559449434,-0.112495102,0.855877399,0.644948125,-0.056275681,0.871224344,0.652050376,-0.091125272,0.860527337,0.69467324,-0.100818396,0.847660184,0.730165362,-0.103944391 +Right,0.75832504,0.806208313,2.22E-07,0.719269753,0.737339854,-0.022896845,0.706880033,0.653383493,-0.038209174,0.702880085,0.589898169,-0.051193886,0.699103236,0.530248225,-0.064421944,0.771445394,0.605582654,-0.0349617,0.794865251,0.563474417,-0.059193123,0.807984352,0.546058357,-0.076754421,0.812018275,0.538740575,-0.088234946,0.802635312,0.654766858,-0.040815193,0.836472809,0.623325348,-0.06794624,0.842416942,0.620537817,-0.083783239,0.834801555,0.625686824,-0.091808923,0.815685689,0.717773736,-0.048722204,0.821516514,0.715522349,-0.082479112,0.79962635,0.719946504,-0.09589763,0.775959194,0.720097423,-0.100543536,0.813966632,0.78189218,-0.05700811,0.787281692,0.80285573,-0.089051105,0.753058016,0.812608361,-0.09822125,0.723124504,0.814090133,-0.100941695 +Right,0.759343028,0.810459852,-1.41E-07,0.725482166,0.718531013,-0.019871112,0.72030437,0.633617043,-0.04041956,0.716781735,0.570213377,-0.058738567,0.711095333,0.501312733,-0.077653013,0.790391326,0.614127278,-0.05402337,0.801175058,0.569096148,-0.092662163,0.78330195,0.545842052,-0.11807327,0.759646118,0.53566128,-0.132546082,0.806681395,0.669820487,-0.06343893,0.816488147,0.632864594,-0.104749002,0.786255002,0.617306888,-0.121788308,0.754305243,0.617221475,-0.129414052,0.807690382,0.732368708,-0.074930139,0.787640095,0.713280201,-0.118022546,0.742584825,0.705863237,-0.128632054,0.705168605,0.703976274,-0.130152911,0.793713212,0.791627645,-0.086515039,0.747074306,0.786892176,-0.123053528,0.701249957,0.782256603,-0.131858855,0.667904198,0.774640381,-0.13401328 +Right,0.751999497,0.791792989,-1.53E-07,0.726706564,0.703833044,-0.025973134,0.720877051,0.613334954,-0.050970808,0.712463737,0.547111273,-0.072537914,0.714565337,0.479606569,-0.094831489,0.793180406,0.62116015,-0.072724447,0.789986551,0.565601528,-0.117751554,0.763793051,0.543057442,-0.146649331,0.73697257,0.534383297,-0.164279833,0.802104771,0.681738794,-0.082941681,0.80226779,0.63081795,-0.132208914,0.761481225,0.607982278,-0.153066337,0.726004243,0.602393866,-0.164650366,0.795939624,0.747057974,-0.095023073,0.771581948,0.715177715,-0.145863652,0.718770325,0.695553303,-0.159255758,0.677059054,0.686205685,-0.163358524,0.77536267,0.803532243,-0.107225642,0.731041968,0.784063935,-0.152074203,0.682789087,0.768356562,-0.163541436,0.6472646,0.752562284,-0.167889655 +Right,0.752254903,0.822640121,-1.64E-07,0.719629467,0.700641155,-0.028081192,0.711677849,0.605775654,-0.050959062,0.707732797,0.54122138,-0.070822023,0.714529276,0.490853071,-0.091013953,0.792454481,0.633847654,-0.063029006,0.785022914,0.581130505,-0.102411196,0.753156424,0.561135888,-0.129048556,0.725465477,0.549634635,-0.145743415,0.790805161,0.708724916,-0.069573484,0.781320274,0.666730344,-0.113027863,0.737927973,0.644534945,-0.13264437,0.705343843,0.63523984,-0.144810528,0.775413752,0.77472645,-0.078503698,0.740427256,0.736953378,-0.124065027,0.690050304,0.712357759,-0.137764648,0.652593851,0.699129879,-0.143037349,0.748275518,0.82517916,-0.088002041,0.701351523,0.791895092,-0.125692829,0.656795561,0.769928157,-0.135166436,0.625590205,0.750208318,-0.139344603 +Right,0.750485122,0.831896305,-6.89E-08,0.733698368,0.706960201,-0.031739779,0.728870809,0.611798525,-0.053825431,0.723421097,0.544203222,-0.072569899,0.725823939,0.498020768,-0.091984197,0.798051953,0.655675173,-0.05919721,0.778678179,0.607308388,-0.098042421,0.751170397,0.577497065,-0.125949204,0.727509737,0.553990781,-0.143668294,0.791175485,0.730263472,-0.063195027,0.769261062,0.691783786,-0.105262488,0.731171429,0.656539619,-0.127188459,0.701649427,0.633941054,-0.141892537,0.771810293,0.794680834,-0.06992685,0.72491014,0.754709184,-0.115511201,0.674267471,0.722510517,-0.130196542,0.637454033,0.704511166,-0.135769963,0.742768645,0.840865135,-0.077684864,0.692571998,0.801833749,-0.114711605,0.649641514,0.771071315,-0.124103032,0.620660305,0.747398674,-0.127977028 +Right,0.761982858,0.874786198,-1.70E-07,0.752847493,0.752267838,-0.027246691,0.744318128,0.648852229,-0.04730184,0.74228549,0.570719898,-0.062629379,0.746848583,0.508251131,-0.079181418,0.79606539,0.707078576,-0.067966215,0.774920583,0.640929401,-0.103228107,0.747108281,0.598507404,-0.12571986,0.720722139,0.572104156,-0.139197767,0.778078198,0.775460541,-0.069139384,0.746054471,0.727618575,-0.10708417,0.708947003,0.685851991,-0.124841735,0.677960694,0.658710122,-0.137745172,0.751034856,0.828308284,-0.071028255,0.699221969,0.783456862,-0.109629862,0.656683266,0.738266826,-0.121914521,0.625849187,0.703547776,-0.127517566,0.718429327,0.864750504,-0.073282741,0.667425632,0.814116836,-0.104358278,0.634026051,0.776821971,-0.11360056,0.609730303,0.746550381,-0.118051618 +Right,0.712181985,0.779266119,2.60E-07,0.668800831,0.749567807,-0.029126909,0.640949607,0.674305737,-0.048982829,0.623068571,0.610957861,-0.065364361,0.601775765,0.551596045,-0.08057525,0.678432405,0.63189894,-0.059036918,0.680668116,0.573449492,-0.096837334,0.673440456,0.543649435,-0.119204909,0.663734913,0.519134521,-0.131912291,0.716893137,0.633967102,-0.062771961,0.725536883,0.594086349,-0.105003811,0.724754333,0.565535784,-0.125032708,0.722052276,0.545474529,-0.134401351,0.749171257,0.660453498,-0.067631915,0.743191898,0.724132538,-0.111235157,0.718637526,0.793412566,-0.112533256,0.69674629,0.838293552,-0.104594573,0.772914946,0.703638971,-0.07444533,0.762594581,0.769360662,-0.107024454,0.738360167,0.825158358,-0.105413452,0.715750575,0.860340238,-0.098250061 +Right,0.722953081,0.786681354,1.91E-07,0.670387566,0.762121439,-0.017540049,0.632833123,0.684890389,-0.029756583,0.610526621,0.624688625,-0.042139627,0.585149765,0.577782452,-0.05252929,0.670845747,0.619720519,-0.025982799,0.664543629,0.562297702,-0.05704404,0.653958917,0.544736922,-0.076907754,0.641774654,0.547552705,-0.08692164,0.707505584,0.612022161,-0.032964241,0.712618053,0.555701733,-0.06603308,0.711295664,0.52470082,-0.084187068,0.709709346,0.507988513,-0.091930114,0.741861045,0.635157347,-0.042380445,0.741165936,0.670857608,-0.075325862,0.726400316,0.729991853,-0.07754577,0.712875485,0.767658293,-0.071318589,0.770421028,0.677698076,-0.053291846,0.76542294,0.711148202,-0.075798973,0.753268123,0.733022094,-0.075372115,0.742128193,0.739822328,-0.070486985 +Right,0.729806781,0.78434819,8.43E-08,0.674932063,0.766760767,-0.021682642,0.637801111,0.693105757,-0.036438886,0.616434634,0.637372851,-0.050276723,0.588452578,0.594302595,-0.062711053,0.679463267,0.63380456,-0.036744386,0.676320314,0.57849133,-0.068022862,0.667184234,0.576114118,-0.087034285,0.655610502,0.585362732,-0.097142518,0.718144,0.632983148,-0.042658981,0.726194799,0.592771292,-0.075113371,0.72795707,0.577929199,-0.091371126,0.728755832,0.566993475,-0.099804103,0.752995849,0.660925329,-0.051178779,0.758710027,0.689462423,-0.086168833,0.747535467,0.733600438,-0.092444301,0.736276805,0.753150463,-0.091417588,0.78121525,0.703722358,-0.060964618,0.780645967,0.733002901,-0.087355755,0.769743383,0.749182045,-0.0913193,0.76055932,0.746577442,-0.091214851 +Right,0.755943775,0.830304623,-1.07E-07,0.71291256,0.840079963,-0.032793783,0.673959076,0.820424199,-0.058632452,0.648482621,0.804628015,-0.082097501,0.627313375,0.799927175,-0.103886768,0.682860613,0.701887012,-0.05754447,0.665646315,0.634267569,-0.101054229,0.668362737,0.660641015,-0.127676487,0.676519871,0.705324352,-0.140251964,0.724108815,0.677892864,-0.059755798,0.72834444,0.655581713,-0.108168505,0.734027088,0.702758968,-0.127286151,0.739436567,0.752547741,-0.132165506,0.763614893,0.680065691,-0.065451756,0.779120207,0.71745491,-0.112137511,0.782837868,0.766135812,-0.122107968,0.781689227,0.798607767,-0.120024323,0.799067259,0.698527336,-0.073066078,0.822365284,0.729540348,-0.107687913,0.834087312,0.772402525,-0.113099709,0.840543687,0.80113095,-0.11079707 +Right,0.759592712,0.815200746,-5.31E-07,0.718660653,0.824708343,-0.037113052,0.678473055,0.797312737,-0.063926496,0.651446342,0.773246408,-0.085363887,0.627798855,0.740333676,-0.104891151,0.686148703,0.663396597,-0.067843184,0.685367048,0.731487632,-0.112928487,0.696354091,0.82845968,-0.14274314,0.704413831,0.902053237,-0.158096626,0.735534847,0.650512338,-0.068104416,0.738489747,0.713696182,-0.10997384,0.742351294,0.787703753,-0.128990978,0.742561698,0.85219568,-0.138006032,0.78009212,0.663336813,-0.070832349,0.786442518,0.728359699,-0.112174496,0.785671353,0.792331696,-0.118409865,0.779491603,0.844096303,-0.11738532,0.814990461,0.695595384,-0.075807564,0.826266468,0.755702674,-0.111238673,0.831645072,0.819526434,-0.11452473,0.833693564,0.868121266,-0.111468568 +Right,0.781453848,0.805158257,-2.51E-07,0.74984324,0.826512218,-0.041286096,0.705739915,0.836927891,-0.074671119,0.683909476,0.8882792,-0.104036845,0.69335264,0.91024518,-0.132474989,0.700986862,0.699557185,-0.073971622,0.680003345,0.69651103,-0.117929839,0.690137506,0.778884113,-0.143551841,0.707019448,0.854275227,-0.156451508,0.746783733,0.668376088,-0.074069008,0.734426558,0.648418307,-0.121748082,0.743731618,0.726811111,-0.138780728,0.75711745,0.800680101,-0.143100232,0.791318417,0.664598107,-0.077168144,0.79020375,0.653262258,-0.119848989,0.797872126,0.722848296,-0.124290183,0.803033054,0.781483293,-0.119911306,0.830014527,0.682343364,-0.082803138,0.840670168,0.681423306,-0.116625033,0.853605449,0.726142585,-0.119980477,0.863521576,0.759774923,-0.116982587 +Right,0.801363289,0.770091236,-2.25E-07,0.777843237,0.816573858,-0.046280138,0.74170804,0.837364614,-0.085480288,0.727033913,0.894179761,-0.120059676,0.714859366,0.942667007,-0.155500591,0.718245327,0.719435155,-0.095032789,0.681885183,0.701839328,-0.144434944,0.693945229,0.776609778,-0.173959315,0.715950072,0.848546922,-0.189922929,0.756394088,0.675454319,-0.096979089,0.730909944,0.625892997,-0.15476492,0.74938786,0.702844858,-0.181005582,0.771842003,0.775032938,-0.191541821,0.794496179,0.654573321,-0.101017617,0.783856511,0.598740876,-0.154229596,0.801316082,0.640171289,-0.174008012,0.816881418,0.687033951,-0.180673629,0.831006706,0.653971553,-0.106461197,0.841031015,0.61967653,-0.151924282,0.868378997,0.638333142,-0.1672398,0.889276505,0.661862314,-0.173715949 +Right,0.815339386,0.744844437,-1.91E-07,0.795523643,0.799391329,-0.046381198,0.758516014,0.827679038,-0.08518289,0.744768143,0.890564799,-0.118949108,0.73081398,0.948113561,-0.153521314,0.730369329,0.714404166,-0.099092036,0.690939844,0.706116378,-0.148678958,0.704861879,0.775704086,-0.178637251,0.729659081,0.845226288,-0.195554689,0.764253259,0.663101137,-0.101335607,0.733692586,0.624113798,-0.160441533,0.753336072,0.692352295,-0.18856813,0.780046642,0.761956334,-0.201636717,0.80048275,0.634937882,-0.105242826,0.78602767,0.584988356,-0.157427773,0.80586946,0.624894083,-0.176148996,0.824157894,0.67139256,-0.183731452,0.835349143,0.627452135,-0.110915676,0.846293867,0.593725383,-0.155746326,0.873435378,0.612183392,-0.171198875,0.894382358,0.63572818,-0.178980261 +Right,0.820509791,0.738061726,-1.34E-07,0.803048551,0.780640066,-0.044990186,0.771681309,0.799324512,-0.082716621,0.762431085,0.862962663,-0.115691088,0.754973114,0.93111527,-0.149124831,0.735582352,0.70237273,-0.098041251,0.692948282,0.695904255,-0.148888782,0.710585713,0.757220447,-0.177096575,0.738991976,0.823285282,-0.191379488,0.76871407,0.650879979,-0.100954518,0.732670903,0.597235739,-0.162313387,0.757837117,0.661437333,-0.186895877,0.787591398,0.728127837,-0.195062235,0.804350436,0.621991634,-0.10596218,0.786708236,0.559287548,-0.160881162,0.807691038,0.595970452,-0.178925261,0.825430632,0.642360806,-0.183719322,0.838880956,0.613497257,-0.11254397,0.847910762,0.565189302,-0.159192622,0.873475432,0.570918798,-0.175640941,0.893184185,0.588243902,-0.182812452 +Right,0.823643565,0.719643533,-1.56E-08,0.810025811,0.760514975,-0.040746428,0.786594391,0.79445672,-0.077938236,0.786982417,0.84765625,-0.111032449,0.788569391,0.900073528,-0.144273981,0.730915129,0.697189748,-0.086769179,0.694260001,0.703202009,-0.13512753,0.719296336,0.753996968,-0.163393572,0.75304234,0.804965854,-0.177240625,0.759462953,0.637327552,-0.090324998,0.729347944,0.590927184,-0.149098784,0.760672748,0.639865518,-0.170933217,0.795278013,0.692117214,-0.17549862,0.794094443,0.603052497,-0.0961513,0.783125758,0.539246559,-0.149420083,0.812917709,0.562077403,-0.164520308,0.834383547,0.593674898,-0.165533289,0.830904543,0.592685223,-0.10338629,0.849487185,0.545881748,-0.149398431,0.878454804,0.541048467,-0.16326873,0.898190498,0.545312583,-0.166280463 +Right,0.857080281,0.748170733,-6.11E-08,0.840240657,0.784149349,-0.043849263,0.816256046,0.816517472,-0.081838362,0.818981588,0.835275412,-0.114615075,0.827525675,0.820046842,-0.145868987,0.75074476,0.707219601,-0.081807055,0.715675175,0.704994142,-0.129271522,0.741608083,0.748886824,-0.155650839,0.773422897,0.790703773,-0.168076575,0.771457911,0.64130044,-0.083514594,0.741760731,0.593886554,-0.141380906,0.784419775,0.640025377,-0.161278978,0.826128483,0.683005929,-0.162799284,0.8021608,0.601779044,-0.08822833,0.798875988,0.534870386,-0.1445629,0.839909852,0.557269871,-0.158053488,0.866668582,0.585234344,-0.155215368,0.838761151,0.586017668,-0.094516173,0.860885859,0.534100175,-0.142487422,0.895554483,0.530828476,-0.154418439,0.917907834,0.536977708,-0.153631657 +Right,0.869956255,0.719606102,1.48E-07,0.848622143,0.766857624,-0.045068733,0.821406126,0.802409232,-0.082058184,0.813842893,0.810902417,-0.113244198,0.813699782,0.790973425,-0.144063964,0.765036345,0.693367541,-0.079810686,0.734327793,0.681031823,-0.12645267,0.753578842,0.714825392,-0.157768354,0.777610004,0.744067311,-0.174682319,0.787005424,0.632629514,-0.078752659,0.760803878,0.584726274,-0.128905356,0.776978791,0.617512047,-0.154640898,0.799513042,0.654426694,-0.164699852,0.820574284,0.59501791,-0.080597989,0.813532472,0.563960552,-0.127121761,0.825086057,0.586158156,-0.147182092,0.835273981,0.611353934,-0.153931871,0.859045684,0.579062223,-0.084342986,0.879693627,0.54788357,-0.121689819,0.898256898,0.550941527,-0.134589702,0.910082877,0.556460202,-0.138702497 +Right,0.852746069,0.79414022,2.32E-07,0.829616189,0.816915631,-0.051571053,0.801879525,0.818354964,-0.092321992,0.80587697,0.807573199,-0.126841053,0.811329067,0.769851446,-0.161535561,0.769459367,0.675210893,-0.088708356,0.737578154,0.639115095,-0.139177278,0.748365283,0.665907323,-0.17561765,0.772136152,0.710467637,-0.195581123,0.802707732,0.633391142,-0.085403822,0.78879118,0.563572109,-0.137446359,0.801382661,0.569103301,-0.172630951,0.822642446,0.599756241,-0.192115471,0.841006577,0.618303835,-0.085189365,0.849531054,0.543077886,-0.130888626,0.866640329,0.530658305,-0.161425307,0.883881211,0.538567841,-0.17851378,0.880001366,0.628624022,-0.087365806,0.903491318,0.572914064,-0.125326455,0.927189589,0.556142867,-0.145365566,0.949200988,0.55386126,-0.156639025 +Right,0.854955971,0.828682899,2.38E-07,0.825180531,0.836930633,-0.05132867,0.792847216,0.815380871,-0.091220841,0.786765456,0.782408535,-0.124786794,0.797832549,0.732159138,-0.15848799,0.781969666,0.672227502,-0.088180304,0.758828163,0.629907966,-0.138196871,0.760810912,0.65296638,-0.173488915,0.77563566,0.695356309,-0.193992645,0.81884551,0.64064604,-0.084543444,0.813515782,0.578032792,-0.134292006,0.819018781,0.578471363,-0.170920342,0.832492054,0.60092324,-0.194192305,0.858246744,0.636194766,-0.083911777,0.87312144,0.571186125,-0.130856559,0.884741843,0.562627494,-0.164797559,0.896549165,0.571851373,-0.185912386,0.896187723,0.660759032,-0.085416019,0.930755973,0.612756431,-0.127774656,0.957761228,0.601478815,-0.153079152,0.980882645,0.605544508,-0.16887778 +Right,0.837701738,0.881960511,1.26E-07,0.804436743,0.850471795,-0.031714268,0.77563864,0.8034513,-0.058846533,0.766794145,0.767567456,-0.083370514,0.775090814,0.7195068,-0.107070364,0.799913108,0.683648884,-0.052095223,0.77998805,0.620579422,-0.09272138,0.775085568,0.62015754,-0.122279316,0.776395917,0.655367672,-0.138432667,0.838658929,0.677884996,-0.055860844,0.846726894,0.604891837,-0.093805797,0.845977962,0.596163273,-0.117915407,0.842851043,0.622688711,-0.131491184,0.874459028,0.702500165,-0.0632663,0.901945472,0.641198099,-0.099665053,0.909217477,0.627585232,-0.119109064,0.907112479,0.638429046,-0.12954849,0.904618621,0.752965391,-0.07243526,0.938588202,0.719321907,-0.10546504,0.958525896,0.710308671,-0.119572245,0.969733179,0.717983305,-0.126360163 +Right,0.820171356,0.944893122,-8.09E-08,0.779847562,0.877436936,-0.024244133,0.761467278,0.780227661,-0.048978999,0.758009553,0.714063048,-0.073145382,0.768703461,0.646400213,-0.098623343,0.798604727,0.738485515,-0.054175992,0.791529894,0.668679595,-0.100911379,0.780729055,0.654391527,-0.136110887,0.769015968,0.671702802,-0.156589806,0.834519684,0.764384806,-0.064299934,0.838714361,0.67478615,-0.111400925,0.827011049,0.653506577,-0.14067404,0.809278905,0.667889118,-0.156748086,0.865618587,0.816774905,-0.077302963,0.876541853,0.74259764,-0.11917302,0.872057378,0.71519655,-0.140788779,0.859647214,0.703563452,-0.15234746,0.88934797,0.890579879,-0.09098167,0.912306726,0.851836801,-0.126286596,0.917464316,0.822761476,-0.142633811,0.911430299,0.798393428,-0.152318254 +Right,0.808024526,0.942517638,9.23E-08,0.765851915,0.890717506,-0.023274511,0.748104572,0.785661459,-0.03770813,0.754961073,0.703371108,-0.050678361,0.776948988,0.650342762,-0.063236386,0.788297355,0.742804646,-0.027784631,0.788470268,0.690331876,-0.061042301,0.783323765,0.655453026,-0.087438621,0.773523986,0.649495065,-0.104193792,0.824956238,0.762319505,-0.034186952,0.831190705,0.697508276,-0.073061414,0.815578938,0.67723155,-0.096980214,0.793227017,0.696346104,-0.108115949,0.855164886,0.808526993,-0.043913987,0.867692053,0.768998146,-0.083541393,0.856020272,0.771882057,-0.09642452,0.836325049,0.789210379,-0.098681785,0.87907058,0.873063505,-0.054680377,0.891996861,0.858285606,-0.089893349,0.88436383,0.866592884,-0.099080727,0.868394434,0.884836495,-0.100189552 +Right,0.799168706,0.920512855,-4.20E-08,0.758056164,0.85707283,-0.019376105,0.745314896,0.759979546,-0.032817617,0.758233964,0.687446356,-0.045438003,0.784564972,0.646508515,-0.056948822,0.787003636,0.721125603,-0.029841742,0.793359995,0.677223265,-0.06709332,0.78505832,0.676851273,-0.093367778,0.772398591,0.694199085,-0.107944824,0.821091473,0.742399871,-0.036510602,0.826929808,0.697434187,-0.0756023,0.806401908,0.695883214,-0.095255755,0.783570826,0.717537045,-0.10277234,0.849312961,0.783529222,-0.046340253,0.852817357,0.781156301,-0.08395277,0.831268728,0.812215805,-0.091700755,0.810019433,0.837605953,-0.090344004,0.87176162,0.841955483,-0.057346456,0.869479775,0.87731868,-0.086832635,0.853749037,0.903560519,-0.092206962,0.84073633,0.919572532,-0.090905681 +Right,0.795614064,0.903325915,-4.24E-08,0.760966837,0.839862227,-0.02614418,0.749699235,0.754400849,-0.04874165,0.756557345,0.692948818,-0.068461433,0.77282232,0.648935318,-0.088638961,0.795108318,0.713792324,-0.061824691,0.795301497,0.671976388,-0.109173656,0.782930315,0.668177128,-0.141541913,0.764716148,0.677612484,-0.160403222,0.828187406,0.741997838,-0.070388198,0.830716908,0.693466246,-0.121535033,0.805380225,0.686110258,-0.145612359,0.777039349,0.702779174,-0.156441972,0.852785408,0.792093992,-0.081290588,0.860130608,0.776066005,-0.131327763,0.83330816,0.79870218,-0.14299126,0.805688918,0.820154786,-0.143984631,0.866368294,0.854849041,-0.09311869,0.86353457,0.881323338,-0.137165979,0.844309986,0.906314015,-0.147816449,0.828094423,0.921794116,-0.149374396 +Right,0.78565526,0.85693264,-1.88E-07,0.759622633,0.798042357,-0.027312689,0.756085455,0.712621152,-0.050852221,0.760410786,0.6555112,-0.071590073,0.77212584,0.611187756,-0.093114898,0.806788743,0.693335652,-0.059554242,0.81336236,0.636537254,-0.101170033,0.792639077,0.636453688,-0.129191667,0.770527363,0.651533902,-0.145293266,0.836023569,0.732745767,-0.065637529,0.843369484,0.664941192,-0.109524392,0.812244654,0.65746367,-0.13044697,0.781088769,0.674269617,-0.140260428,0.854789317,0.788604259,-0.074057631,0.871389687,0.747566223,-0.121038049,0.837912738,0.760475755,-0.134856701,0.804356933,0.778967679,-0.138003692,0.863499105,0.853914857,-0.082723603,0.868609965,0.85382849,-0.126193658,0.84336555,0.875013411,-0.137680575,0.818379104,0.893476963,-0.140324339 +Right,0.792276263,0.854669571,-1.43E-07,0.768696606,0.79295367,-0.027454086,0.75935322,0.719780564,-0.052993916,0.756971657,0.669020295,-0.075887375,0.778089046,0.657270014,-0.098997705,0.827800095,0.683933556,-0.060443442,0.819316566,0.628999114,-0.101223588,0.796083093,0.631356716,-0.125969037,0.76937443,0.646646976,-0.140519172,0.853995502,0.72693193,-0.068216689,0.847094595,0.665111423,-0.116605304,0.813416183,0.658583105,-0.138017818,0.77794975,0.678110778,-0.146959201,0.865390599,0.789211869,-0.078173928,0.863892734,0.7634058,-0.128994986,0.830553293,0.776063144,-0.142683819,0.798311591,0.7906093,-0.145213559,0.863523066,0.857161701,-0.088459767,0.846181929,0.892093778,-0.137388438,0.82052511,0.92118901,-0.152853981,0.79949832,0.936263502,-0.157355651 +Right,0.791413188,0.836616993,-1.71E-07,0.788756609,0.819481313,-0.042488184,0.786855817,0.779482901,-0.070606135,0.781939626,0.73697412,-0.091893837,0.794726551,0.699933887,-0.111308724,0.868344009,0.70571816,-0.064538829,0.844302237,0.672323346,-0.104674809,0.812319815,0.667458296,-0.127977878,0.785460174,0.666372478,-0.141677901,0.875495434,0.699674547,-0.060942493,0.847491801,0.651885331,-0.107379869,0.805238366,0.6475631,-0.125222817,0.775405586,0.656599343,-0.129887283,0.867055118,0.711969018,-0.061018653,0.82129091,0.701554298,-0.105864421,0.785661757,0.71949774,-0.111866303,0.772103906,0.733331501,-0.107846819,0.848016322,0.738876045,-0.063817628,0.796895683,0.753800929,-0.103324667,0.771717668,0.777465761,-0.11145369,0.766523302,0.793574154,-0.109722637 +Right,0.807833552,0.859946012,-3.79E-07,0.782433808,0.766963184,-0.032813091,0.779438317,0.683924079,-0.0576795,0.780601501,0.622277319,-0.078025192,0.790537536,0.55803591,-0.097845696,0.854882896,0.677217126,-0.067278937,0.83121562,0.627797008,-0.111268252,0.798017025,0.620061815,-0.139821991,0.764935374,0.623633146,-0.156129867,0.872787595,0.743655086,-0.072889552,0.834394217,0.722920358,-0.117656663,0.79688549,0.732580006,-0.13334316,0.770332694,0.7486099,-0.139811829,0.873649836,0.824370503,-0.081772752,0.827765107,0.836848795,-0.127457172,0.795246243,0.848747134,-0.131293744,0.775478005,0.857705593,-0.128293127,0.862706661,0.904776573,-0.092631213,0.81889689,0.934362471,-0.134197891,0.788302779,0.958654404,-0.138244897,0.772488177,0.973449826,-0.1353506 +Right,0.77110523,0.823998392,-5.57E-07,0.750062644,0.738456964,-0.046082113,0.761593997,0.628980875,-0.080865011,0.762319386,0.552219868,-0.111377053,0.768409133,0.478779614,-0.141882509,0.82297653,0.662023544,-0.083558284,0.833753943,0.612264454,-0.14080064,0.783699095,0.617303431,-0.179332584,0.739200354,0.631143868,-0.200207531,0.837862253,0.752453148,-0.086110443,0.857139051,0.720373154,-0.148266226,0.796047628,0.742051244,-0.175346166,0.745075405,0.762827277,-0.185565591,0.8422575,0.835482597,-0.092243984,0.858987272,0.823858619,-0.150624707,0.809259474,0.850378633,-0.160402492,0.767009139,0.86759907,-0.15798077,0.837044656,0.90925771,-0.10048876,0.837489784,0.921411693,-0.145171836,0.801736832,0.95097667,-0.150066584,0.773589134,0.970698595,-0.147783384 +Right,0.762033343,0.851975381,-4.97E-07,0.729044378,0.778557777,-0.04705406,0.731839538,0.660217702,-0.081596397,0.728503585,0.577988148,-0.111210294,0.725055933,0.493927956,-0.140477195,0.795755088,0.665668607,-0.08897642,0.805229545,0.608475804,-0.149588272,0.759848654,0.629078507,-0.188966691,0.71629405,0.660673559,-0.210402787,0.822090566,0.750258386,-0.092258237,0.838900506,0.709155023,-0.160355896,0.785693526,0.750424206,-0.189024568,0.737387121,0.793853402,-0.199649587,0.835726321,0.8304106,-0.099440441,0.850054979,0.809869707,-0.162651032,0.807547987,0.848288059,-0.175553069,0.767658353,0.877509117,-0.175244078,0.83788687,0.903290153,-0.108624853,0.835867882,0.92424053,-0.160876796,0.805891037,0.96900028,-0.171429262,0.780112684,0.998190045,-0.172397181 +Right,0.763654709,0.878835261,-4.04E-07,0.725016773,0.810422122,-0.046255626,0.718569279,0.685118556,-0.080163494,0.711861134,0.597667992,-0.108947411,0.698025942,0.516166449,-0.137402222,0.780009806,0.675155282,-0.093738176,0.785599113,0.602964818,-0.154868856,0.751755714,0.631080687,-0.192655057,0.714138031,0.680029094,-0.213035449,0.815580308,0.7400527,-0.097046584,0.820509791,0.697504103,-0.168712884,0.779672027,0.74303484,-0.20101805,0.740634322,0.800771773,-0.214986548,0.839394927,0.809055626,-0.103973463,0.845961273,0.782449603,-0.171209663,0.808447182,0.820757508,-0.190029919,0.769747615,0.860676169,-0.194477364,0.85152477,0.87949723,-0.112615079,0.851868391,0.905222476,-0.173503861,0.827271402,0.961264014,-0.192132279,0.804561317,1.002978802,-0.198199168 +Right,0.765511572,0.870787144,-3.91E-07,0.722119629,0.809529185,-0.043200847,0.706669509,0.694799244,-0.074106939,0.695663154,0.612323523,-0.100508735,0.678480327,0.532380521,-0.126765713,0.768727839,0.666867673,-0.085338384,0.769574106,0.607067883,-0.143835276,0.740182221,0.645905316,-0.18045418,0.70668292,0.702818811,-0.199306652,0.812467575,0.72733748,-0.089335635,0.819410086,0.697820306,-0.157896712,0.787941217,0.750759304,-0.189490512,0.751582623,0.815694928,-0.201836467,0.842377305,0.792690098,-0.096501231,0.848261535,0.791269302,-0.16320549,0.822615743,0.843987167,-0.179934859,0.792199373,0.890830696,-0.180888131,0.857134342,0.856671453,-0.104942866,0.862295449,0.89289844,-0.163032278,0.846429944,0.959437788,-0.176420465,0.82821697,1.009535074,-0.177417755 +Right,0.765961528,0.890148282,-4.02E-07,0.722470403,0.829497695,-0.040940881,0.704479873,0.708839417,-0.069573589,0.691194177,0.6233266,-0.094256431,0.673283935,0.544421136,-0.118107654,0.762578368,0.671884954,-0.080565892,0.764068544,0.606019855,-0.137802929,0.737077951,0.654570103,-0.171757236,0.706722379,0.721898675,-0.188565567,0.809673905,0.728039384,-0.085386395,0.819105685,0.687541962,-0.154953107,0.789664328,0.750883341,-0.185064927,0.755230367,0.827928245,-0.195015892,0.843848944,0.791585684,-0.093483992,0.850290716,0.783883691,-0.16129677,0.826200008,0.845239937,-0.177348211,0.797176242,0.899471402,-0.176776394,0.862744927,0.855644226,-0.102671131,0.870368779,0.892426252,-0.161292329,0.859124601,0.960794747,-0.175124943,0.84447062,1.013036251,-0.175845504 +Right,0.770880759,0.863807142,-4.35E-07,0.727050245,0.800156236,-0.039283872,0.709959567,0.687989175,-0.067217864,0.697345197,0.608428717,-0.091704197,0.679406166,0.532144964,-0.115632221,0.770108402,0.655825794,-0.078655645,0.768856466,0.614721656,-0.135290548,0.743133843,0.664064705,-0.169863448,0.713449776,0.727394164,-0.187324643,0.817138374,0.718713582,-0.084670462,0.826226294,0.694598019,-0.15185985,0.798490167,0.760059714,-0.180618122,0.762781978,0.835482359,-0.190369517,0.850186706,0.788240552,-0.093630552,0.857302368,0.790159225,-0.158473685,0.838347137,0.854085386,-0.171930164,0.811865747,0.907040596,-0.170338839,0.865663648,0.857165396,-0.103889428,0.872681916,0.904949963,-0.160412967,0.864770412,0.96816057,-0.172972694,0.851509392,1.014321089,-0.173227757 +Right,0.77701509,0.863909841,-5.20E-07,0.734236181,0.793494225,-0.044227671,0.722558379,0.683657289,-0.07328216,0.71865958,0.605134428,-0.097865835,0.711613178,0.526249707,-0.122019447,0.798192739,0.649097443,-0.07463263,0.789688647,0.640114725,-0.131671727,0.755094051,0.687838376,-0.17116943,0.724933267,0.734209061,-0.191992611,0.840322971,0.723374546,-0.076694086,0.839403629,0.748960376,-0.136135474,0.80807066,0.806077421,-0.164187774,0.776614249,0.856914461,-0.175538078,0.864107609,0.804454744,-0.082598321,0.860086024,0.841923833,-0.141468957,0.836517155,0.897681117,-0.153193459,0.812010527,0.938456178,-0.150869533,0.871103108,0.879592419,-0.090605885,0.866195381,0.925492823,-0.13807711,0.849789381,0.97554636,-0.144830704,0.833596647,1.011298656,-0.141365051 +Right,0.782371998,0.858931661,-5.59E-07,0.7457726,0.781836092,-0.046230759,0.73773247,0.681216121,-0.076766819,0.736450791,0.607582629,-0.10270863,0.734454393,0.533344626,-0.127451301,0.822729349,0.66820997,-0.068733983,0.810895324,0.657754183,-0.122102179,0.773007035,0.693491876,-0.159163356,0.740236282,0.733302891,-0.177631736,0.856160402,0.742712498,-0.066852063,0.844763517,0.773528099,-0.120032407,0.807839453,0.823691607,-0.144302726,0.772952914,0.869034708,-0.153098881,0.872195721,0.819737852,-0.069473967,0.859572053,0.858497977,-0.122315675,0.833564401,0.908250451,-0.131711572,0.807407975,0.949507535,-0.127472416,0.874416769,0.88948983,-0.074801058,0.867829859,0.922538161,-0.115761817,0.849359334,0.962913156,-0.120565422,0.830488026,0.995649993,-0.11574626 +Right,0.793487191,0.859536767,-5.45E-07,0.761242509,0.781112611,-0.04287098,0.759637475,0.679383159,-0.071113996,0.763183475,0.602065325,-0.095875651,0.769081056,0.52249831,-0.119080104,0.844653785,0.673886597,-0.056943204,0.83843857,0.653183281,-0.105467163,0.797298253,0.689541519,-0.138894528,0.765476286,0.726260602,-0.155625463,0.871718884,0.750134468,-0.056149017,0.867765784,0.759063244,-0.105690829,0.82019794,0.811317086,-0.128706619,0.78223896,0.84915483,-0.136793077,0.88362658,0.825483441,-0.059904609,0.881326675,0.840086341,-0.113113396,0.840726495,0.89264071,-0.121178091,0.805277348,0.930846155,-0.115576759,0.883037746,0.894932449,-0.065692008,0.885106742,0.909642756,-0.107994631,0.858323812,0.952261269,-0.110885143,0.832275093,0.984576941,-0.104294524 +Right,0.804730713,0.837730587,-5.63E-07,0.779276311,0.758272231,-0.042260937,0.779603422,0.667857766,-0.072493024,0.783712208,0.600036383,-0.099240474,0.789506257,0.525759697,-0.124706857,0.858300507,0.684595823,-0.063261233,0.84739989,0.678400636,-0.114638247,0.80388844,0.709606111,-0.149229154,0.766598821,0.736490548,-0.166465849,0.879418194,0.765707612,-0.063430607,0.870866477,0.78702879,-0.115517184,0.821533084,0.834620059,-0.136546627,0.781086445,0.864787757,-0.143545404,0.886644244,0.840214849,-0.068052836,0.875840902,0.867500067,-0.120239943,0.830395818,0.909780324,-0.124158084,0.792284071,0.931982279,-0.116763547,0.882873893,0.907336056,-0.07507503,0.878279626,0.934568524,-0.113763966,0.846920133,0.967460632,-0.113434233,0.8189767,0.983524561,-0.105869502 +Right,0.810812116,0.838267088,-5.27E-07,0.795813441,0.753880024,-0.045761209,0.801211059,0.666679323,-0.078841887,0.8084445,0.60354495,-0.107534125,0.818806767,0.536936641,-0.135039076,0.879752815,0.693397343,-0.06911397,0.854679048,0.697705925,-0.122036017,0.812005341,0.719573796,-0.158358887,0.775361598,0.73621273,-0.176316246,0.892369032,0.780822814,-0.067343205,0.871432364,0.814670086,-0.119635046,0.818834305,0.840190828,-0.141311616,0.773701012,0.850877404,-0.149116069,0.891931117,0.857942641,-0.06983424,0.873261571,0.884727776,-0.122999124,0.819703639,0.907133281,-0.126432613,0.775354922,0.914705634,-0.117966346,0.88206017,0.923692346,-0.075047255,0.875706017,0.949970543,-0.114343993,0.83948493,0.972239137,-0.112778112,0.806617379,0.98187691,-0.103573292 +Right,0.801804006,0.873206675,-5.82E-07,0.793477297,0.783797741,-0.051991038,0.815978706,0.686042726,-0.087055713,0.829886317,0.616673946,-0.116480485,0.852057397,0.548349857,-0.14467521,0.889987171,0.745139539,-0.081047282,0.88769418,0.727259398,-0.139242172,0.836695552,0.739389122,-0.178808868,0.788646758,0.752127767,-0.198711872,0.894353688,0.853713214,-0.079990856,0.8978737,0.866590917,-0.138660386,0.828612983,0.879308105,-0.161624998,0.775142372,0.877903223,-0.168815792,0.883031547,0.943863988,-0.083510756,0.882237554,0.97064054,-0.140843987,0.8242172,0.975680828,-0.14278248,0.779452324,0.962272406,-0.133202896,0.860732615,1.012302279,-0.089710712,0.860795975,1.037356973,-0.12860468,0.820317984,1.04168427,-0.1231087,0.788019061,1.028871059,-0.112183757 +Right,0.810894668,0.855239332,-5.61E-07,0.803134978,0.756714702,-0.056135699,0.832925081,0.653106153,-0.093976915,0.843607783,0.586854935,-0.124757409,0.865986407,0.548635125,-0.154349148,0.896375656,0.722531497,-0.096965536,0.895049036,0.700054228,-0.158373326,0.842106223,0.716153681,-0.199416935,0.788618565,0.729605734,-0.220830113,0.90109545,0.835895896,-0.095165849,0.898279309,0.843897879,-0.15879567,0.829557776,0.856024563,-0.18598555,0.772270918,0.850533485,-0.196920112,0.888225317,0.925325215,-0.097295158,0.880619586,0.947487593,-0.15759708,0.82159102,0.953081489,-0.162979215,0.773002684,0.937249959,-0.157071277,0.86411947,0.98874867,-0.102398083,0.852385461,1.01085937,-0.146774873,0.80903095,1.015747309,-0.146245033,0.773566842,1.002578378,-0.139377698 +Right,0.80569762,0.800331831,-5.74E-07,0.796797752,0.701407194,-0.057786051,0.830049515,0.603876472,-0.096843176,0.847831666,0.539040923,-0.128366441,0.873295784,0.47492975,-0.159544528,0.902269244,0.667756438,-0.101322934,0.899616063,0.643113375,-0.163644746,0.843560874,0.635354936,-0.204359695,0.794490695,0.627771854,-0.226099849,0.8989712,0.780365169,-0.100216076,0.898843944,0.780082047,-0.165296093,0.829989851,0.76879406,-0.193521068,0.774634659,0.750232637,-0.205846444,0.881410599,0.87428683,-0.103014857,0.874640703,0.879852533,-0.16473791,0.817832768,0.868590772,-0.172760308,0.771657944,0.848487437,-0.16992195,0.854803205,0.942055047,-0.108805113,0.843348145,0.952194035,-0.15727672,0.798805714,0.950882733,-0.160572588,0.763914347,0.942926288,-0.156897694 +Right,0.818944216,0.762854695,-4.88E-07,0.804552257,0.663793743,-0.066848926,0.827042401,0.565900385,-0.115557082,0.842147291,0.494457036,-0.154306054,0.863277495,0.416294247,-0.193255335,0.909457743,0.623692989,-0.134921297,0.891505063,0.583376646,-0.207461879,0.841142356,0.569578528,-0.253494561,0.794295788,0.559894919,-0.279409558,0.908966839,0.726109803,-0.132786945,0.882463992,0.715834081,-0.209275365,0.824887335,0.699830294,-0.245303273,0.77498275,0.684796929,-0.265376449,0.890672147,0.814790487,-0.133967698,0.862551928,0.817227483,-0.206234396,0.815677583,0.797114909,-0.226565763,0.77319032,0.776181698,-0.234096944,0.861128151,0.879076362,-0.138277248,0.832243085,0.89515996,-0.200831831,0.791092753,0.899863362,-0.218421251,0.758040369,0.898017883,-0.22547923 +Right,0.81153214,0.746437371,-5.69E-07,0.802709222,0.648237944,-0.059696499,0.824120462,0.553780437,-0.102453262,0.842660248,0.478823483,-0.135834232,0.865537047,0.399821192,-0.168317512,0.911052465,0.604660809,-0.117233083,0.88717711,0.560178518,-0.183516338,0.837292492,0.544808447,-0.224133775,0.78935039,0.533753753,-0.245266721,0.912460804,0.70208472,-0.114164665,0.873538554,0.6877895,-0.182871461,0.816916287,0.669920325,-0.211432576,0.764445961,0.653426945,-0.224921793,0.895692587,0.789227724,-0.114470676,0.850129068,0.794738233,-0.180788293,0.801269233,0.771391749,-0.194733813,0.756231308,0.745365858,-0.196245462,0.867995441,0.853838563,-0.117923595,0.823814392,0.87247771,-0.177226752,0.776481688,0.871907532,-0.191177174,0.738459051,0.864775181,-0.193315163 +Right,0.811116934,0.719412446,-5.31E-07,0.806003511,0.618127227,-0.069499679,0.834442496,0.53167206,-0.117791392,0.857452691,0.462170273,-0.154323861,0.884195149,0.391228378,-0.189847037,0.91366756,0.609698415,-0.139692634,0.888955474,0.557527184,-0.209136635,0.838632107,0.53130734,-0.248777196,0.788836598,0.507790804,-0.270116329,0.908095062,0.709452808,-0.13472487,0.866161704,0.690180719,-0.212619543,0.809020281,0.654361784,-0.24632588,0.755000174,0.618429661,-0.263626367,0.884572148,0.791632354,-0.13237536,0.839688659,0.788271129,-0.2083029,0.785803914,0.742855966,-0.22702688,0.738288522,0.696968257,-0.231693834,0.851006746,0.844527245,-0.133192942,0.799703956,0.855000138,-0.203043431,0.747217894,0.842374802,-0.222668082,0.708735526,0.826647878,-0.228759587 +Right,0.770145476,0.73282361,-7.05E-07,0.775230348,0.634432971,-0.059815843,0.810771406,0.551022589,-0.1014385,0.841347516,0.485744238,-0.133984685,0.877889574,0.420633018,-0.164905056,0.894104481,0.632173002,-0.112142965,0.866091728,0.580611467,-0.180263758,0.813140869,0.549217343,-0.222735941,0.762641013,0.524324417,-0.244839311,0.885416389,0.732898116,-0.109708861,0.833641291,0.702289522,-0.1807473,0.770828366,0.658156395,-0.20922339,0.716320515,0.619795561,-0.221519366,0.857220113,0.816341162,-0.111208133,0.801684976,0.801450789,-0.181394652,0.745340049,0.745748997,-0.192969024,0.699430645,0.694918871,-0.19102557,0.819375813,0.872921705,-0.116013505,0.761361957,0.86907649,-0.179301292,0.707715273,0.836033463,-0.192035943,0.67063576,0.805238366,-0.191559598 +Right,0.759847164,0.742905676,-7.67E-07,0.769913256,0.644348323,-0.057313476,0.806411684,0.56438303,-0.098982871,0.836227715,0.503134012,-0.132660821,0.875022769,0.444600701,-0.16495429,0.87954241,0.665390968,-0.112493411,0.844716072,0.606580794,-0.179957807,0.792502701,0.561843038,-0.221772224,0.744532704,0.524286211,-0.243363813,0.860332608,0.764894128,-0.112079293,0.803409278,0.714502513,-0.178756908,0.741993308,0.651113212,-0.204732627,0.693201005,0.599433601,-0.216894984,0.82304281,0.842647135,-0.115230463,0.768215239,0.812773347,-0.181353286,0.712390304,0.743624628,-0.188613221,0.670243025,0.683682263,-0.184873983,0.778114498,0.892861843,-0.1217006,0.72641921,0.876823783,-0.179598212,0.677482247,0.831721902,-0.187259421,0.64398694,0.793231666,-0.184268489 +Right,0.742858112,0.767316997,-9.06E-07,0.768435121,0.667934358,-0.05091954,0.816599131,0.596779466,-0.083159059,0.854149818,0.546199322,-0.108595446,0.901063442,0.496861517,-0.133405894,0.883256912,0.723423004,-0.09012457,0.846406639,0.631126404,-0.147607833,0.797501683,0.557121813,-0.182635859,0.758001506,0.499322265,-0.19973211,0.851693273,0.813384831,-0.090814605,0.804468751,0.725537717,-0.146292567,0.744145453,0.633448184,-0.164801091,0.699398458,0.569119453,-0.171514958,0.80588311,0.876951933,-0.095805772,0.755978167,0.811581016,-0.156647295,0.700835228,0.708020151,-0.159711644,0.661173701,0.632299304,-0.152094722,0.75418216,0.91256237,-0.103739925,0.705256701,0.864131093,-0.157289222,0.657716274,0.787149787,-0.160236433,0.626619458,0.729496002,-0.153270006 +Right,0.767746985,0.833556831,-8.03E-07,0.794156075,0.726380348,-0.048424643,0.840672493,0.65605849,-0.079893894,0.872700036,0.606325686,-0.104394436,0.914217949,0.553135395,-0.127179101,0.89862144,0.762647092,-0.095066749,0.88086766,0.668391347,-0.149539575,0.821840048,0.595876098,-0.174803764,0.775982857,0.55203557,-0.185939431,0.867764473,0.846689165,-0.097904854,0.847312331,0.763859391,-0.154124066,0.775359929,0.667547226,-0.161983594,0.727018952,0.614732087,-0.16105321,0.820759416,0.902324796,-0.105444632,0.79982698,0.836554229,-0.16742368,0.739134669,0.72703737,-0.163734823,0.697944462,0.660318136,-0.15228954,0.76890862,0.930484116,-0.115409866,0.727085054,0.872146964,-0.17103225,0.684545219,0.789387882,-0.174700111,0.659481287,0.733732164,-0.169213459 +Right,0.752124548,0.791527092,-8.56E-07,0.776499152,0.688363731,-0.050961576,0.826501012,0.61047554,-0.082450464,0.863006949,0.554622889,-0.106408082,0.909272254,0.499987274,-0.129069701,0.893814445,0.717499793,-0.09090431,0.863598645,0.618644595,-0.145340398,0.80642736,0.549677432,-0.174597591,0.761901677,0.505777061,-0.188392445,0.868997157,0.803017735,-0.091206811,0.833093941,0.711696625,-0.146568447,0.761161089,0.622021973,-0.158782318,0.709928393,0.570533395,-0.160526991,0.826421499,0.864340365,-0.096064009,0.796136081,0.793540657,-0.157049268,0.731762886,0.694567144,-0.153231695,0.685690224,0.634380281,-0.140419036,0.777742088,0.898700058,-0.10373684,0.737070799,0.843422472,-0.15868108,0.689445376,0.767564297,-0.159359768,0.658098578,0.717431724,-0.149914801 +Right,0.765202522,0.733549774,-9.16E-07,0.773141205,0.624195516,-0.059723675,0.817201257,0.530708969,-0.097484335,0.852069914,0.469906986,-0.125972614,0.899632335,0.410786122,-0.15334186,0.900564432,0.635102689,-0.112897687,0.855256617,0.551396251,-0.177145317,0.785777807,0.506763697,-0.213509768,0.732417226,0.473579258,-0.231513023,0.88481015,0.738242269,-0.111694604,0.829579294,0.668111384,-0.176668569,0.751838624,0.603012919,-0.197530791,0.697493136,0.554756403,-0.205853701,0.847970188,0.817947924,-0.114532888,0.796456039,0.768016338,-0.185085207,0.723888874,0.683910191,-0.189702287,0.673648417,0.619218826,-0.182591975,0.802142859,0.868013382,-0.120228298,0.745425105,0.83487463,-0.184441879,0.687229455,0.775784552,-0.191514626,0.649728894,0.72545886,-0.186563447 +Right,0.75354445,0.736927629,-1.03E-06,0.767446756,0.620103121,-0.056287214,0.810893416,0.520147324,-0.094940037,0.848553061,0.452487141,-0.125666618,0.89896071,0.389271915,-0.153894618,0.908014178,0.623893678,-0.10247419,0.846845746,0.555938482,-0.167482555,0.772403836,0.522391319,-0.207230628,0.718347251,0.503133178,-0.227586403,0.895894408,0.744020462,-0.102258116,0.821839929,0.69265759,-0.165155292,0.741129279,0.635592222,-0.186710268,0.685010493,0.590756595,-0.195690781,0.860370517,0.838748276,-0.106163748,0.792049527,0.808637738,-0.171876803,0.719465077,0.730794966,-0.175442487,0.669903576,0.66221869,-0.168976307,0.812120497,0.905384362,-0.113543563,0.741231978,0.892436147,-0.17344667,0.6830194,0.836623549,-0.180685297,0.647971749,0.781868339,-0.176364526 +Right,0.754014194,0.718139708,-9.22E-07,0.764538646,0.609808624,-0.055987511,0.806592405,0.506349504,-0.09322761,0.841412127,0.43085438,-0.123362429,0.884440243,0.361667722,-0.150057465,0.903348386,0.582175314,-0.092996597,0.839445829,0.543697238,-0.158106759,0.764060855,0.527163088,-0.198228955,0.712127984,0.520561457,-0.218597308,0.897896528,0.699324131,-0.091540597,0.830922365,0.67507571,-0.153506458,0.756373763,0.639144421,-0.175915629,0.702683389,0.610936522,-0.185585245,0.872503281,0.800054789,-0.094840996,0.807976782,0.792341292,-0.159114257,0.736529827,0.734209061,-0.160316914,0.687148333,0.678491592,-0.151807398,0.834851146,0.879382551,-0.10200993,0.787433743,0.89440304,-0.155404538,0.730888128,0.854129195,-0.157073334,0.692216218,0.807412028,-0.149782419 +Right,0.735289097,0.740422666,-9.53E-07,0.737028718,0.612448454,-0.046932168,0.766925752,0.496357739,-0.079657398,0.79834348,0.405955076,-0.106562555,0.8315503,0.311466426,-0.130380943,0.872587442,0.525034964,-0.076852947,0.808998644,0.499057591,-0.134640127,0.734568179,0.505223155,-0.171424598,0.681143761,0.512891352,-0.18999286,0.879841506,0.64333117,-0.077606075,0.806872964,0.617185831,-0.129763439,0.730827749,0.608899236,-0.149358958,0.675623298,0.602109492,-0.15824984,0.86428678,0.754593313,-0.082813926,0.789792299,0.739611506,-0.136385709,0.720198035,0.70873785,-0.137034714,0.671379805,0.673163652,-0.130240694,0.835987389,0.851648211,-0.091345489,0.784715533,0.854720592,-0.134549722,0.729198873,0.833004057,-0.133645117,0.690935969,0.801399529,-0.126082048 +Right,0.727376819,0.74362123,-1.05E-06,0.715865552,0.626903892,-0.048221175,0.732597291,0.5004462,-0.081336573,0.750142515,0.403114617,-0.109638736,0.77099216,0.294297397,-0.136469781,0.839918315,0.491208822,-0.076520614,0.772284627,0.483930588,-0.142797872,0.696794212,0.507868886,-0.189190894,0.642513275,0.530047655,-0.21412991,0.858174801,0.604492903,-0.079884402,0.787424266,0.599534035,-0.138718054,0.703301072,0.610184133,-0.160999671,0.645478368,0.61908108,-0.170879498,0.850824356,0.720537722,-0.089191251,0.797458053,0.726956546,-0.148960367,0.716063619,0.714645505,-0.14955169,0.659190655,0.700214744,-0.141284794,0.829316914,0.828032196,-0.101842575,0.783475518,0.840588212,-0.152123317,0.721201718,0.821814418,-0.153003067,0.67821449,0.798110485,-0.144945353 +Right,0.739591002,0.76918757,-9.96E-07,0.713273764,0.67248559,-0.054939386,0.713512897,0.54213804,-0.091909617,0.714408159,0.441197157,-0.122760296,0.723544538,0.330176115,-0.151527286,0.811393738,0.493520439,-0.084481701,0.754558802,0.507674098,-0.154582217,0.683686137,0.553245723,-0.200726435,0.634101272,0.58597523,-0.224654078,0.84440738,0.595437288,-0.085788995,0.788627028,0.621225476,-0.152569965,0.704205632,0.662169814,-0.17708163,0.649105608,0.680632234,-0.185989812,0.854418218,0.708559275,-0.093264759,0.814355314,0.740248919,-0.163911343,0.727887809,0.765237927,-0.164314196,0.671723366,0.761946678,-0.152375013,0.849691212,0.81662786,-0.103845634,0.820503473,0.855230212,-0.160017341,0.754518569,0.872902155,-0.158321276,0.70981878,0.863797426,-0.146857277 +Right,0.75175643,0.785259843,-9.55E-07,0.701218128,0.724137902,-0.06124831,0.6774984,0.597497582,-0.105275266,0.660467625,0.509986877,-0.142253384,0.648080468,0.398877442,-0.178249508,0.762346268,0.521712124,-0.115209714,0.714705348,0.528214872,-0.188917145,0.654337049,0.603658855,-0.234299764,0.609340787,0.664790511,-0.258628428,0.810579062,0.602649689,-0.117322616,0.767715812,0.619468689,-0.192503542,0.695603609,0.700769186,-0.222769558,0.646371245,0.759192884,-0.237154573,0.843505859,0.703552365,-0.124234945,0.816309869,0.715205193,-0.203084961,0.745698094,0.787242353,-0.213443801,0.695596755,0.834901154,-0.209649876,0.862534583,0.806511819,-0.133712009,0.853298426,0.826831579,-0.1994652,0.80214715,0.888901055,-0.207176656,0.763973653,0.930248916,-0.2039482 +Right,0.72782141,0.785600662,-7.92E-07,0.677259266,0.738600731,-0.057355892,0.643313169,0.630630314,-0.100746982,0.615638077,0.554854929,-0.137574404,0.582031429,0.472501516,-0.173414275,0.70388633,0.544659972,-0.117413096,0.671059489,0.552755475,-0.189952001,0.626174927,0.633710265,-0.234865993,0.588480473,0.706043482,-0.259322226,0.759160399,0.60523051,-0.120770648,0.734531403,0.627539217,-0.197869882,0.683665991,0.721931875,-0.231200427,0.644755781,0.79787159,-0.247734845,0.804233074,0.685410142,-0.127720028,0.794168949,0.706337154,-0.204295352,0.746582329,0.785458028,-0.220053285,0.704622865,0.843298912,-0.221261188,0.836334527,0.772184134,-0.137034088,0.846945167,0.80847609,-0.199254751,0.818931162,0.878296971,-0.211207971,0.790888846,0.924864054,-0.212944567 +Right,0.745121121,0.853859186,-5.95E-07,0.687061131,0.823003471,-0.050038531,0.633675158,0.713450849,-0.090450905,0.595377326,0.63446486,-0.125910521,0.549826562,0.559880495,-0.162371293,0.681109965,0.606188774,-0.111620441,0.639368653,0.588230073,-0.186943948,0.611410797,0.677712202,-0.236855149,0.589296103,0.766285479,-0.264713973,0.740338206,0.633065164,-0.120109573,0.71156317,0.607594967,-0.203894347,0.68002826,0.716748536,-0.245475158,0.657172322,0.815439045,-0.265871495,0.795730352,0.682242036,-0.131836638,0.791532159,0.639512539,-0.212706596,0.761188388,0.729736447,-0.240290835,0.731934607,0.80861783,-0.249673739,0.838238418,0.75240016,-0.144579902,0.860119104,0.764039159,-0.215710267,0.863635421,0.831008911,-0.239985719,0.864573479,0.880231559,-0.249698833 +Left,0.187349826,0.909907103,7.36E-07,0.204601958,0.763519108,-0.02260497,0.223074675,0.60620749,-0.044885945,0.227052614,0.487751812,-0.064573556,0.210393965,0.384685487,-0.085131422,0.177436858,0.634144545,-0.082265027,0.251879066,0.544301987,-0.127441555,0.311876953,0.524454951,-0.151521564,0.361990392,0.521593094,-0.165187061,0.18572253,0.734134018,-0.092284635,0.276937783,0.6527946,-0.137253001,0.344587147,0.6236431,-0.15074423,0.395856678,0.611358404,-0.159611002,0.207120061,0.831729412,-0.102611892,0.300699234,0.763309777,-0.146027148,0.36496222,0.721673965,-0.152138352,0.412548631,0.692135036,-0.152998164,0.236612305,0.915786386,-0.113546938,0.316233933,0.870357394,-0.147421494,0.368100464,0.833353817,-0.152613387,0.408964425,0.803450227,-0.153409198 +Left,0.181915805,0.937103391,7.19E-07,0.193099692,0.791410327,-0.02400036,0.211444259,0.62748003,-0.047227561,0.217151478,0.500278115,-0.066877618,0.196640506,0.395804763,-0.087646663,0.168051004,0.6612463,-0.086920902,0.24081485,0.567098737,-0.131266981,0.299773932,0.539015651,-0.154672801,0.349449605,0.528289318,-0.168354839,0.180987641,0.75840348,-0.096150205,0.271686137,0.670915842,-0.139422968,0.337278724,0.634016335,-0.152079597,0.386697114,0.616715789,-0.161359027,0.206169188,0.854319394,-0.10539382,0.298025846,0.779816866,-0.147376433,0.359727949,0.731769085,-0.153223231,0.404446185,0.697219789,-0.154903084,0.237642214,0.936854601,-0.115202107,0.315468192,0.886165142,-0.1479619,0.364813447,0.844902813,-0.153045818,0.403216422,0.81095475,-0.154667184 +Left,0.18466945,0.933819234,7.17E-07,0.192989171,0.783399105,-0.023032648,0.207142636,0.619863212,-0.046111528,0.208340824,0.493287832,-0.065882854,0.184501469,0.393686473,-0.086718351,0.165362924,0.658316255,-0.084494047,0.236346036,0.55942136,-0.128523797,0.294691801,0.527330458,-0.151778176,0.34454754,0.513039947,-0.165407032,0.180901065,0.755112708,-0.094063096,0.270028621,0.657814384,-0.13683641,0.334766388,0.61625725,-0.149132758,0.383679718,0.595117688,-0.158177376,0.208150029,0.849004745,-0.103599735,0.299872935,0.764630556,-0.144546226,0.360245317,0.712310672,-0.149276093,0.403371841,0.675438046,-0.150326476,0.241229698,0.928375959,-0.11377421,0.318095565,0.871177793,-0.144817472,0.365985215,0.825021744,-0.148736909,0.402851969,0.787651718,-0.149723977 +Left,0.181300208,0.924434543,7.64E-07,0.190036803,0.774359643,-0.023047656,0.205915719,0.607890546,-0.046217483,0.209660053,0.477022409,-0.065860815,0.185331345,0.376751423,-0.08610516,0.162720844,0.643772721,-0.086083107,0.240454704,0.541117132,-0.130707979,0.300438166,0.512214601,-0.153618515,0.350977212,0.501274645,-0.166749001,0.177850857,0.740798056,-0.095532566,0.272425026,0.63983953,-0.138263345,0.339718491,0.601086974,-0.149801016,0.390334249,0.58429724,-0.158425957,0.204835296,0.833615661,-0.105022937,0.30058369,0.740490735,-0.145721093,0.362290263,0.692155898,-0.150103375,0.406751752,0.659910262,-0.151099786,0.238197878,0.911925435,-0.115139052,0.319747448,0.852981389,-0.146285728,0.369703829,0.811386943,-0.150769085,0.408324152,0.778313518,-0.152143776 +Left,0.188359618,0.916256905,7.98E-07,0.186670691,0.770291746,-0.02702513,0.194769904,0.598367035,-0.04994943,0.19445686,0.464175761,-0.067560799,0.168077409,0.370306879,-0.084982447,0.159788042,0.649169981,-0.0874127,0.2368173,0.543479025,-0.128728002,0.293756843,0.504080057,-0.14849849,0.342454731,0.483457208,-0.15988791,0.186456621,0.74491477,-0.092728756,0.278228968,0.638374925,-0.131407604,0.338034004,0.588288367,-0.141064957,0.381338954,0.559260845,-0.149337083,0.221914351,0.832636774,-0.097963221,0.315485358,0.733838201,-0.134398237,0.37116003,0.673194885,-0.137293667,0.409067869,0.629977107,-0.138419047,0.259992331,0.903588533,-0.104084738,0.340383798,0.839940727,-0.131592169,0.387241364,0.791068316,-0.135188594,0.422623754,0.749928117,-0.136901513 +Left,0.190746456,0.933793783,8.51E-07,0.186349541,0.788829386,-0.030193234,0.190051824,0.613961935,-0.055391878,0.18642351,0.476855576,-0.074765779,0.156823024,0.380310506,-0.094091989,0.154331446,0.669726014,-0.098919131,0.230077967,0.549956024,-0.144938216,0.288014382,0.501529813,-0.166615859,0.340244979,0.472926617,-0.179019615,0.182886824,0.764560282,-0.104515702,0.268763006,0.642337203,-0.149717033,0.333560705,0.580312312,-0.161654547,0.385403395,0.543665767,-0.170636922,0.220997065,0.849329352,-0.109985881,0.311107934,0.73695749,-0.153598547,0.372901887,0.669771791,-0.159779251,0.418434024,0.621796846,-0.161796421,0.262131244,0.915459514,-0.116275683,0.341838211,0.841711521,-0.150329947,0.391135871,0.789553761,-0.157179862,0.429909229,0.745215416,-0.160326168 +Left,0.201832488,0.956155896,9.27E-07,0.196321696,0.803025544,-0.028576771,0.194501296,0.628594995,-0.053100914,0.187624425,0.496315837,-0.072895043,0.15585196,0.398288012,-0.092469126,0.149021327,0.679445148,-0.097114727,0.213961735,0.551201582,-0.1461512,0.272449493,0.490884244,-0.170893833,0.326872408,0.453504026,-0.184911326,0.179654896,0.774728537,-0.105021931,0.253511369,0.647994876,-0.153670385,0.323289752,0.569580436,-0.168840095,0.382098258,0.518261671,-0.179420933,0.220914841,0.861336172,-0.113117903,0.300660074,0.747939646,-0.162022218,0.36465317,0.671982646,-0.172904506,0.413213342,0.6171031,-0.176750883,0.266176522,0.930939198,-0.121820964,0.34314996,0.850788534,-0.162335306,0.395603597,0.793854237,-0.173719585,0.438719988,0.746798635,-0.178581372 +Left,0.235810906,0.925711036,8.31E-07,0.242456466,0.758208752,-0.027485769,0.240149766,0.609522998,-0.058001176,0.229534775,0.499302626,-0.086043812,0.200155392,0.396563083,-0.115222245,0.170676753,0.655563056,-0.104421236,0.219304934,0.52057606,-0.164150536,0.279733896,0.466666281,-0.196567014,0.334576488,0.437652409,-0.215571418,0.18640846,0.748373568,-0.11912895,0.245489776,0.626413643,-0.182852149,0.320545495,0.553950489,-0.205316499,0.381549001,0.510684073,-0.218885139,0.218967661,0.83886373,-0.134090915,0.277422339,0.741074324,-0.195410118,0.346302718,0.672557354,-0.209324822,0.40000701,0.621023118,-0.214321792,0.262001395,0.916842461,-0.149657533,0.321405739,0.884534895,-0.2020787,0.371554196,0.835123301,-0.216971263,0.413865596,0.79335922,-0.223189428 +Left,0.24660027,0.915576279,8.02E-07,0.267438591,0.756200492,-0.01950513,0.278392911,0.617852807,-0.054554917,0.285813719,0.518171489,-0.088615462,0.283039957,0.410867721,-0.126619831,0.200830877,0.62255764,-0.123318627,0.254848033,0.490682662,-0.190752253,0.320098311,0.453796148,-0.227478415,0.374582529,0.437180996,-0.250318944,0.200605184,0.7121889,-0.147165596,0.266573042,0.607368171,-0.21965453,0.34828493,0.559033096,-0.246843472,0.410895348,0.529966891,-0.265288353,0.221150503,0.809390485,-0.169610083,0.27602309,0.730405092,-0.237968892,0.348491281,0.683426619,-0.256931484,0.404191375,0.648513079,-0.267628819,0.253127009,0.901646137,-0.191074148,0.31069532,0.886764646,-0.248271361,0.364974618,0.855927944,-0.266373068,0.408712924,0.831212997,-0.277321517 +Left,0.251265436,0.911787868,8.54E-07,0.291173816,0.762765229,-0.02195322,0.313639283,0.629954219,-0.056368824,0.325143754,0.529011965,-0.089296468,0.328546077,0.419535577,-0.12537767,0.227250934,0.604577303,-0.118131183,0.290834188,0.49108386,-0.184592724,0.357647717,0.469941974,-0.221050024,0.413316518,0.468964756,-0.24300614,0.215312809,0.690841317,-0.139282584,0.28996405,0.605808377,-0.211052373,0.375266105,0.58096379,-0.23721467,0.441132545,0.574675024,-0.253415942,0.225133374,0.792160392,-0.159588262,0.292585343,0.730425119,-0.226935729,0.367225945,0.706297219,-0.244245812,0.424497038,0.688849092,-0.252593279,0.24760659,0.89277178,-0.179373324,0.314271152,0.89956969,-0.235042915,0.370674789,0.883081913,-0.252002031,0.414842188,0.868323267,-0.261008352 +Left,0.257268339,0.924296856,7.47E-07,0.305441588,0.780183911,-0.019360485,0.332296699,0.643632174,-0.052009523,0.348266691,0.54250586,-0.08398708,0.362129509,0.432090223,-0.119994469,0.251528561,0.598167121,-0.111027136,0.31638515,0.499674022,-0.176135957,0.387226671,0.485333145,-0.212289572,0.448487699,0.495257765,-0.234155521,0.228596896,0.677846134,-0.134229854,0.307526886,0.603373885,-0.204390198,0.397147059,0.597474515,-0.231855273,0.464586169,0.608643591,-0.248637378,0.227438092,0.778934598,-0.156645074,0.297338784,0.725910485,-0.224787936,0.374531478,0.723545313,-0.24406682,0.431185007,0.725433469,-0.253247678,0.239013344,0.885792911,-0.178239793,0.305382311,0.905721426,-0.23401694,0.363736898,0.909901619,-0.251024693,0.407201588,0.91188246,-0.260066718 +Left,0.255479187,0.919757009,6.16E-07,0.305055797,0.781629205,-0.021342326,0.336608827,0.649271727,-0.052666605,0.356739879,0.548676252,-0.083167993,0.375765204,0.439499199,-0.116224192,0.260951102,0.584360719,-0.100918256,0.335734576,0.505726099,-0.164980412,0.405552685,0.523570836,-0.197674781,0.460619986,0.559024274,-0.214927778,0.232274771,0.664708376,-0.121413641,0.319781125,0.619162619,-0.190959185,0.409765124,0.640680194,-0.21572648,0.475933254,0.669199407,-0.228025168,0.223984927,0.770186186,-0.14206332,0.301754296,0.744555116,-0.210604951,0.381344885,0.763804853,-0.226440549,0.439718664,0.779041588,-0.230294794,0.229430214,0.881359458,-0.162161544,0.29740563,0.922106624,-0.217716098,0.358606577,0.939003825,-0.232275397,0.403865039,0.948275149,-0.236989021 +Left,0.240300238,0.886724472,6.07E-07,0.301032186,0.762047112,-0.022939987,0.340967089,0.634759724,-0.056748152,0.365831137,0.535617173,-0.08870554,0.388639092,0.428272665,-0.124290369,0.265801758,0.560444355,-0.112996235,0.348837197,0.497020513,-0.181273744,0.41645813,0.531033218,-0.216847152,0.467807025,0.579808235,-0.235950649,0.232007131,0.637418568,-0.133672878,0.321966767,0.607110143,-0.205969661,0.409144133,0.646662414,-0.231589496,0.472796023,0.687097669,-0.245670527,0.217729852,0.744371891,-0.154250041,0.297901243,0.728571415,-0.226381347,0.37631619,0.762827516,-0.24487482,0.433106005,0.789816499,-0.251192629,0.217183024,0.858579934,-0.173644975,0.277040482,0.903106153,-0.232468277,0.335023135,0.930317402,-0.249283671,0.377905667,0.947960794,-0.256449729 +Left,0.240012676,0.861745238,7.08E-07,0.293946683,0.732066035,-0.022124328,0.331155092,0.604219556,-0.054946564,0.356767267,0.505392492,-0.086135149,0.376520753,0.396263272,-0.120145641,0.24455227,0.530527413,-0.106324822,0.334693372,0.474062741,-0.172658235,0.405563414,0.503573656,-0.206314191,0.458058566,0.545828402,-0.223417088,0.21475783,0.617618382,-0.126067191,0.313648283,0.585647285,-0.19545424,0.404993892,0.614954174,-0.217452258,0.471168131,0.652682781,-0.227926403,0.207143828,0.730535209,-0.146041438,0.297540218,0.713209689,-0.215423316,0.375179917,0.737954795,-0.228666052,0.427876115,0.757847548,-0.230327517,0.213056311,0.845038176,-0.16514957,0.289666981,0.879925489,-0.219376981,0.35078758,0.901183009,-0.230006367,0.3927055,0.917681575,-0.231740281 +Left,0.267080188,0.864223599,3.90E-07,0.315136701,0.747188091,-0.016856642,0.339655876,0.602192938,-0.042141758,0.359709233,0.491877735,-0.067300417,0.379520357,0.396480083,-0.09436769,0.238271683,0.51087755,-0.075524814,0.311558425,0.459626079,-0.138236821,0.378503978,0.495785773,-0.173020512,0.428344846,0.535493016,-0.190448612,0.202799857,0.579338729,-0.095472828,0.28796339,0.535848618,-0.166264474,0.375542879,0.578380823,-0.190544233,0.435870707,0.622370601,-0.197800756,0.190276131,0.675992548,-0.11678756,0.266918719,0.638677835,-0.187745452,0.343675315,0.681508005,-0.200455561,0.390271991,0.715272605,-0.196945548,0.192763567,0.782579362,-0.137057677,0.262238532,0.784803748,-0.192422107,0.317849904,0.813006878,-0.203303501,0.351781666,0.83480531,-0.201996997 +Left,0.259754628,0.902290463,-1.19E-08,0.32840547,0.786655545,-0.009610234,0.365194798,0.648676395,-0.027932217,0.388861805,0.546209872,-0.049877871,0.412294149,0.459968209,-0.071606509,0.277248442,0.506704688,-0.036276087,0.339995474,0.461798131,-0.088391595,0.398604572,0.529412985,-0.120876819,0.435716659,0.59289372,-0.137238011,0.23402819,0.548749804,-0.055588737,0.306661755,0.510577798,-0.109745175,0.376945257,0.58241111,-0.131967634,0.415823668,0.645280361,-0.140224621,0.205381066,0.625515997,-0.07745669,0.264365435,0.585094571,-0.132724509,0.333910286,0.654010236,-0.14088726,0.372434616,0.710393727,-0.136540294,0.190681547,0.72038275,-0.09913066,0.244332194,0.705303073,-0.141843647,0.29568392,0.753552616,-0.146287054,0.325536191,0.796595812,-0.141497672 +Left,0.286863983,0.859138429,-1.76E-08,0.351655424,0.781578064,-0.011479693,0.392842233,0.680949807,-0.025892586,0.419517517,0.605601072,-0.043217123,0.444097251,0.543811262,-0.060576953,0.343658596,0.528922081,-0.025748879,0.379830748,0.507625461,-0.066790313,0.413918316,0.569450915,-0.095141776,0.439859957,0.623340547,-0.110239536,0.301704913,0.546708345,-0.038921721,0.346981674,0.532904088,-0.083338924,0.389574468,0.605832696,-0.104396544,0.416286796,0.668387532,-0.112647168,0.264070123,0.595144987,-0.054715425,0.297881752,0.571338296,-0.098720483,0.342642665,0.643977702,-0.107820049,0.372323632,0.702159405,-0.105894491,0.232032776,0.663565218,-0.070896477,0.256273121,0.656646013,-0.105714753,0.289076239,0.704556108,-0.111386031,0.313564897,0.744898558,-0.108758897 +Left,0.289023638,0.867165446,-5.07E-09,0.349464506,0.796984434,-0.010045877,0.388281167,0.696295559,-0.02121814,0.414174914,0.621905208,-0.03544797,0.438889205,0.566131294,-0.049843989,0.346203476,0.569737136,-0.020743942,0.378522336,0.538778365,-0.057548646,0.408694834,0.594664037,-0.082313187,0.431709677,0.644504309,-0.095137537,0.3079108,0.583827972,-0.032574993,0.350036055,0.564317524,-0.073397748,0.388064027,0.633511007,-0.092077307,0.411845386,0.69178462,-0.098925315,0.272176325,0.624123573,-0.047148474,0.303715467,0.595097721,-0.08770515,0.342434704,0.663018405,-0.095812902,0.36896348,0.717913747,-0.093589433,0.239739865,0.682769239,-0.0621165,0.257178903,0.663589716,-0.0945758,0.287461936,0.7020908,-0.100523651,0.313430995,0.738491118,-0.098474756 +Left,0.288468063,0.874346912,-2.49E-08,0.346762002,0.812788486,-0.005377613,0.385621428,0.720805228,-0.014221706,0.411989778,0.651918113,-0.02641318,0.435139179,0.593455493,-0.039380983,0.345772624,0.587097406,-0.017356051,0.382539123,0.578504443,-0.050372247,0.409366935,0.633573115,-0.073057197,0.426748514,0.681905925,-0.084854349,0.31024003,0.596318364,-0.029739974,0.35458523,0.606054604,-0.064032629,0.389159709,0.673425436,-0.080788314,0.409960628,0.729112983,-0.088033773,0.276895225,0.635322034,-0.044205394,0.312840581,0.632092416,-0.078833275,0.345895588,0.696227193,-0.087083809,0.368896484,0.745931745,-0.086856745,0.247522622,0.694703281,-0.05874354,0.265239209,0.693094075,-0.087034695,0.292067498,0.726220906,-0.093415417,0.316874653,0.756923616,-0.092818528 +Left,0.277644247,0.89182806,6.57E-09,0.336178511,0.839345515,-0.007677936,0.374605417,0.757051826,-0.018221611,0.403130829,0.694754004,-0.031342465,0.43000716,0.645962238,-0.045737192,0.344960272,0.635243177,-0.025919136,0.378734589,0.634404123,-0.061822817,0.403700292,0.689432502,-0.086076446,0.422596216,0.740428507,-0.098639376,0.308217674,0.641951084,-0.037769072,0.348380744,0.65546608,-0.076550789,0.379639775,0.720424175,-0.094709933,0.401101291,0.778478265,-0.102052838,0.272776961,0.675169766,-0.051613148,0.304132193,0.683940649,-0.089304991,0.33251363,0.741802156,-0.099586561,0.35460785,0.788646281,-0.100029975,0.239970803,0.726757109,-0.065510117,0.252703786,0.727817893,-0.094411597,0.276096106,0.760540605,-0.101529106,0.299952269,0.792433441,-0.101507969 +Left,0.277331173,0.90894413,2.25E-08,0.331931174,0.863741875,-0.009707915,0.367008597,0.78366065,-0.0204699,0.392468303,0.719272316,-0.032315485,0.420670867,0.664469898,-0.045308456,0.335504234,0.659647584,-0.02618904,0.373402655,0.680401564,-0.058871474,0.399332523,0.731164038,-0.081719041,0.419327021,0.778294742,-0.094518587,0.301490575,0.664954722,-0.035643544,0.345305592,0.699691236,-0.069865227,0.377182841,0.757123291,-0.087513015,0.400117099,0.807887018,-0.096278913,0.269405395,0.700328588,-0.047001213,0.303921491,0.726260245,-0.082310073,0.333764195,0.776583433,-0.094062008,0.357752174,0.814739823,-0.096774325,0.241787851,0.754035652,-0.058404084,0.251657099,0.763643026,-0.087232575,0.269709021,0.787268758,-0.096492514,0.289757043,0.808370292,-0.098702341 +Left,0.286638618,0.911573172,1.23E-07,0.341882557,0.860569298,-0.012450282,0.372678995,0.779017746,-0.025537767,0.392829537,0.7101475,-0.039021425,0.415403187,0.649733067,-0.054415319,0.334585369,0.666102529,-0.0370727,0.377708972,0.693666995,-0.074073315,0.406988561,0.737042189,-0.099784404,0.429977626,0.777321875,-0.114960365,0.301548213,0.678226054,-0.047228448,0.351500034,0.713101029,-0.086204149,0.38794753,0.760323048,-0.106692798,0.414572537,0.805327833,-0.118021868,0.272671819,0.720686197,-0.059014291,0.312387645,0.751029074,-0.098864652,0.346368849,0.79483211,-0.113208413,0.37360844,0.82902658,-0.117982224,0.249695063,0.780433893,-0.070768729,0.264398038,0.799295008,-0.103978619,0.283561379,0.819227815,-0.115991972,0.304483265,0.835628152,-0.120524123 +Left,0.301644176,0.910619199,1.64E-07,0.356226355,0.849180102,-0.011680121,0.381783813,0.760026395,-0.023746001,0.397180378,0.688669801,-0.036520876,0.414667636,0.625699937,-0.051327068,0.334982574,0.664920032,-0.037120361,0.386890501,0.671981692,-0.073286779,0.420892835,0.705095172,-0.097300597,0.4478755,0.740353048,-0.110710934,0.305103004,0.688162148,-0.047213845,0.3640441,0.708294451,-0.085406035,0.406667173,0.748852432,-0.105376549,0.437753677,0.7840662,-0.116406217,0.281452239,0.738654137,-0.058744542,0.328778267,0.752050102,-0.097648203,0.369575351,0.789955199,-0.111968718,0.401336253,0.819578648,-0.116773412,0.264886379,0.802044034,-0.070114687,0.286808819,0.810837984,-0.101965711,0.312333405,0.827332914,-0.113412455,0.337769687,0.841456056,-0.11772608 +Left,0.313592255,0.917595863,2.79E-07,0.35959518,0.863987327,-0.009221597,0.385061502,0.77371341,-0.019207813,0.401898563,0.699950933,-0.029374687,0.419378757,0.64602679,-0.041924246,0.338636398,0.675670028,-0.034419101,0.386747211,0.679381549,-0.066016674,0.418896675,0.703309357,-0.088186406,0.446834564,0.727812767,-0.102175109,0.308312565,0.692450345,-0.044452395,0.362712502,0.697302163,-0.074428961,0.402660757,0.716205001,-0.089716613,0.434782088,0.733818412,-0.099998556,0.285714656,0.739821017,-0.055749428,0.327915192,0.739578009,-0.088471092,0.359980702,0.758847535,-0.100104332,0.386674821,0.770700693,-0.105840996,0.269870132,0.803979218,-0.066985846,0.291833311,0.806441903,-0.09598279,0.3145895,0.816776335,-0.106034309,0.338221252,0.82221204,-0.110855728 +Left,0.301924765,0.923995495,3.41E-07,0.352033824,0.872229457,-0.009144719,0.38280803,0.78273052,-0.018367535,0.403597921,0.716062248,-0.028553275,0.42468679,0.668027639,-0.041361295,0.335879803,0.684155643,-0.026930852,0.370307475,0.659121573,-0.054976609,0.400502115,0.650063097,-0.076621458,0.431799889,0.649815381,-0.091483794,0.30909586,0.693759203,-0.037213203,0.34992522,0.666363597,-0.065277271,0.387530118,0.666299462,-0.083815619,0.421355724,0.675964713,-0.096557811,0.286764801,0.732788682,-0.048685018,0.319588333,0.705478728,-0.081495523,0.356783599,0.721913815,-0.095535666,0.389931798,0.737440765,-0.102516897,0.269608259,0.79109478,-0.060168426,0.288836718,0.780803025,-0.091455959,0.31468755,0.789729476,-0.103354707,0.341691554,0.799196422,-0.108997405 +Left,0.302764028,0.940650225,2.83E-07,0.354561806,0.874002695,-0.009664495,0.387150884,0.779040754,-0.020371333,0.404128194,0.707619786,-0.033112902,0.422177613,0.648891926,-0.04722394,0.341086566,0.671133578,-0.024647372,0.36098218,0.604631722,-0.050647948,0.383658558,0.572477221,-0.069039539,0.409390479,0.549855471,-0.081292234,0.309897065,0.679990053,-0.035022538,0.35239321,0.653293073,-0.068051472,0.393956125,0.682118118,-0.084679976,0.425991863,0.715094745,-0.092581727,0.283505499,0.717321157,-0.046374373,0.321573943,0.698000073,-0.078686334,0.361170381,0.733108342,-0.085752457,0.392223209,0.766124725,-0.086077154,0.260801464,0.773502886,-0.058416739,0.286911547,0.765864789,-0.084924228,0.3163082,0.791302562,-0.090290084,0.34119314,0.815909386,-0.089956842 +Left,0.294929564,0.922245681,2.84E-07,0.348234296,0.851748347,-0.009086106,0.38087377,0.754729807,-0.019519567,0.400178581,0.684181213,-0.032744326,0.422003984,0.629666209,-0.047341816,0.336511403,0.645113289,-0.02171186,0.355154812,0.570576727,-0.047452547,0.377816975,0.53566426,-0.065357164,0.402639329,0.509876311,-0.077185579,0.303918749,0.655150712,-0.032700952,0.341162026,0.619507313,-0.066639014,0.382694602,0.654878974,-0.082457669,0.413866282,0.693368077,-0.089225113,0.275574356,0.692715406,-0.044889282,0.309162349,0.669174731,-0.077954628,0.34956038,0.710666776,-0.08385928,0.380114496,0.749608994,-0.082741484,0.250239253,0.748947442,-0.05777536,0.272709578,0.734126508,-0.083396219,0.30343765,0.761060894,-0.087498628,0.329230309,0.789066494,-0.086314626 +Left,0.284706324,0.90879333,2.85E-07,0.339285672,0.836800933,-0.009547003,0.372377545,0.740401864,-0.021098765,0.392820686,0.668721557,-0.035871539,0.41544497,0.61380887,-0.052276753,0.331296414,0.63476038,-0.023096489,0.352282107,0.55526346,-0.050708681,0.375915259,0.519892514,-0.070006706,0.400763988,0.492400348,-0.082975671,0.299111873,0.647026002,-0.035308041,0.333025128,0.596402764,-0.073167361,0.376113713,0.633375049,-0.091598473,0.407465041,0.674735188,-0.099398278,0.270777345,0.684408844,-0.048736766,0.297850341,0.640208542,-0.085515179,0.340426773,0.684788287,-0.092785738,0.371800095,0.728382826,-0.091688812,0.244756982,0.739770651,-0.06273523,0.261546791,0.712847173,-0.091782555,0.29384765,0.738229275,-0.097488053,0.321544111,0.767466724,-0.096987277 +Left,0.271670163,0.890110552,3.41E-07,0.329851627,0.815451801,-0.009185231,0.363308251,0.718080997,-0.021723071,0.383666873,0.646692812,-0.037373479,0.403003335,0.586020947,-0.054598432,0.313666523,0.605005085,-0.025741123,0.334014714,0.529342115,-0.056130476,0.359830946,0.493930697,-0.078213349,0.386987031,0.467579842,-0.093021341,0.2817958,0.616619229,-0.038551785,0.324910969,0.575516284,-0.077172175,0.371640414,0.608085394,-0.096846655,0.404931545,0.644557834,-0.10648337,0.255209953,0.656299651,-0.052559976,0.292165905,0.619848788,-0.09025833,0.337835163,0.661138773,-0.09839876,0.371384561,0.701842308,-0.09856008,0.232555464,0.715370774,-0.067159429,0.260234743,0.698117435,-0.097600289,0.294646174,0.721260846,-0.104436219,0.323076427,0.745770037,-0.1049027 +Left,0.262082666,0.866714716,3.04E-07,0.324098408,0.791726828,-0.007821284,0.358986676,0.696629345,-0.020645106,0.379677325,0.625824451,-0.036869667,0.397766054,0.563194871,-0.055005539,0.307549179,0.574731052,-0.027271152,0.329181373,0.503692031,-0.057134997,0.354100585,0.466901094,-0.078869149,0.380578399,0.43836993,-0.093896039,0.275212735,0.584969163,-0.041046239,0.321879625,0.552508473,-0.079680897,0.369026393,0.585224271,-0.100090988,0.402083099,0.623288512,-0.110507265,0.249071375,0.626895905,-0.055583622,0.291590512,0.601764739,-0.093163058,0.338853061,0.63826853,-0.103176974,0.373058856,0.676955521,-0.104950599,0.227875486,0.689348638,-0.070554689,0.260734022,0.673152208,-0.101312466,0.296923518,0.693960071,-0.109758474,0.326495379,0.719108284,-0.111621544 +Left,0.26764071,0.853787422,3.06E-07,0.3276411,0.781292319,-0.009329252,0.364421695,0.688162208,-0.022173792,0.388487518,0.616512775,-0.038517877,0.41052559,0.558093548,-0.056306817,0.320425004,0.567390382,-0.023156373,0.342418402,0.491092891,-0.052564666,0.368701488,0.454162568,-0.073693417,0.396241486,0.426062673,-0.087836914,0.288885385,0.574568987,-0.03580261,0.334625065,0.536048949,-0.075132959,0.379605114,0.572885633,-0.095076852,0.411771804,0.615392327,-0.103787079,0.261648566,0.609829664,-0.049755245,0.305966467,0.580619454,-0.087682627,0.351728976,0.622328281,-0.096441835,0.385406792,0.666404068,-0.0959692,0.237434417,0.665517271,-0.064425856,0.271039456,0.646193683,-0.094387777,0.306099981,0.672374725,-0.10141629,0.33477506,0.701988935,-0.101410203 +Left,0.269949913,0.85596478,3.30E-07,0.330887079,0.788966298,-0.005881974,0.373243004,0.701503277,-0.016888779,0.399944991,0.636578441,-0.031569563,0.424622923,0.582509279,-0.047161173,0.331859648,0.5656811,-0.017712861,0.358569503,0.492034853,-0.043988772,0.387366682,0.456931591,-0.062679745,0.417306185,0.432439566,-0.075156331,0.302098691,0.567479253,-0.03118602,0.357092649,0.540354013,-0.066035375,0.401584744,0.581061661,-0.083021142,0.433232665,0.624667704,-0.090404756,0.275541216,0.599769115,-0.045874935,0.33100912,0.590617001,-0.080096766,0.375602394,0.636244476,-0.087531671,0.408337653,0.680117905,-0.086965241,0.251733989,0.653130829,-0.061122455,0.290995061,0.642112911,-0.087044887,0.325507194,0.672343254,-0.091734223,0.353343874,0.703481495,-0.090783171 +Left,0.259057283,0.887735248,4.61E-07,0.327635169,0.810289145,-0.001802522,0.368557841,0.727448642,-0.014071668,0.39901045,0.668455064,-0.03135014,0.430194795,0.611043274,-0.047973908,0.326827288,0.589226007,-0.016234955,0.359219879,0.507974267,-0.044790667,0.390283704,0.470311999,-0.063762046,0.418818474,0.446605682,-0.07489863,0.295624673,0.597558498,-0.033253931,0.345898747,0.545512974,-0.067702711,0.391606718,0.541877568,-0.084080122,0.425753117,0.548052609,-0.090827115,0.271885723,0.63358438,-0.051445626,0.341668487,0.636385202,-0.089669541,0.390750885,0.690756798,-0.09664204,0.422564715,0.740092337,-0.092927992,0.25657621,0.692508221,-0.069647655,0.317670196,0.702897966,-0.095659867,0.354948968,0.746513486,-0.096512228,0.378555626,0.786424994,-0.091183379 +Left,0.273345411,0.90251255,4.26E-07,0.332686394,0.82313025,-0.002122412,0.368966997,0.729917347,-0.011617146,0.395392656,0.666681707,-0.025909562,0.424703836,0.616825283,-0.04050114,0.321462095,0.597067773,-0.010696787,0.348877043,0.515649259,-0.034391921,0.376027614,0.47287643,-0.052144956,0.401912183,0.442551374,-0.063910387,0.292376757,0.606245935,-0.025605278,0.337436676,0.553107858,-0.052196167,0.3836357,0.541884422,-0.067000769,0.420344561,0.542676806,-0.075514242,0.2690669,0.643222928,-0.042026222,0.322878033,0.618203223,-0.071819127,0.371547878,0.642622054,-0.080396883,0.407563776,0.672511935,-0.081758097,0.253593892,0.701237559,-0.058885992,0.30222863,0.680775046,-0.082177237,0.341386527,0.703428268,-0.086363949,0.371573299,0.732197881,-0.085596114 +Left,0.283473909,0.948922694,3.47E-07,0.339477062,0.880224586,-0.007464794,0.373434335,0.774181485,-0.016452186,0.398528367,0.699279904,-0.028178329,0.427994519,0.642638981,-0.041804038,0.335286409,0.674592793,-0.019506099,0.353475481,0.571830809,-0.045469385,0.381012052,0.532794595,-0.063971177,0.407853693,0.507633567,-0.076108173,0.30913645,0.684986174,-0.032536939,0.326827615,0.574114203,-0.057855185,0.364786565,0.538696885,-0.073899567,0.39919281,0.519602478,-0.084314287,0.281974971,0.716976702,-0.047577132,0.294123769,0.61185807,-0.07643728,0.334770262,0.583129168,-0.088639505,0.372005165,0.566658735,-0.094936498,0.256735712,0.765777946,-0.062932462,0.26398617,0.689433753,-0.090520658,0.293693125,0.674094856,-0.099395074,0.323865294,0.673921943,-0.103363417 +Left,0.28021583,0.981889129,3.86E-07,0.340264171,0.928675532,-0.011854163,0.384611368,0.831137061,-0.018863503,0.413377941,0.758081615,-0.027418695,0.444284439,0.705531657,-0.036776762,0.346788079,0.716768503,-0.009452457,0.373043716,0.63400656,-0.032428674,0.398671687,0.601887941,-0.051341381,0.427310854,0.581690133,-0.064374283,0.313777179,0.706796408,-0.018747125,0.328764081,0.607517064,-0.037617885,0.352012694,0.555431664,-0.052641984,0.378319621,0.512468338,-0.063783422,0.280511379,0.726238251,-0.0316847,0.284416407,0.623421311,-0.05269593,0.29843092,0.563127398,-0.066388711,0.318898201,0.507617414,-0.076166891,0.247637898,0.77042973,-0.045788307,0.236196399,0.702736139,-0.067103736,0.2402464,0.655027807,-0.077743255,0.251268178,0.606314123,-0.085008271 +Left,0.285052001,0.994863212,3.21E-07,0.343756825,0.947922766,-0.012999843,0.389784515,0.852872968,-0.018968944,0.417087197,0.778268039,-0.026492709,0.442404211,0.723567188,-0.034314185,0.349722683,0.723020256,-0.005771873,0.370521158,0.650807261,-0.027910503,0.39220944,0.626870573,-0.048097085,0.415287018,0.610703647,-0.062207829,0.313759297,0.708920479,-0.015102631,0.321426034,0.598654807,-0.032918409,0.33378002,0.531569302,-0.049805179,0.348200291,0.467245251,-0.062885292,0.279232264,0.726310372,-0.028253842,0.277711719,0.62539041,-0.048344254,0.284157395,0.562890708,-0.062124647,0.295590818,0.500086427,-0.071635731,0.244457856,0.77058816,-0.042908099,0.230741799,0.696313322,-0.061003122,0.229077369,0.643667758,-0.068850949,0.232849702,0.589216828,-0.074339807 +Left,0.276604474,0.993246913,3.16E-07,0.335872412,0.951807678,-0.01557712,0.385679066,0.861373723,-0.022950064,0.415169597,0.788479447,-0.031823259,0.440166056,0.733371913,-0.04033697,0.346128315,0.723659635,-0.007463383,0.36675027,0.654701531,-0.032413624,0.387126118,0.657935977,-0.054318808,0.405596614,0.678055882,-0.067030042,0.311083257,0.705722332,-0.015124667,0.324224532,0.595145106,-0.030988734,0.338335752,0.52489239,-0.048058867,0.354192644,0.466861218,-0.06150822,0.276029974,0.719330251,-0.026974626,0.272675663,0.620328546,-0.045975991,0.284079999,0.570297837,-0.060202267,0.302880287,0.532127798,-0.069675513,0.239570528,0.757918537,-0.040669288,0.225555003,0.680704951,-0.05672802,0.233794391,0.655197263,-0.061297294,0.250741065,0.645293176,-0.063875377 +Left,0.266931832,0.995209515,3.27E-07,0.326864004,0.955671549,-0.015803497,0.37835443,0.870337129,-0.023797903,0.411475837,0.800810277,-0.03365818,0.437584758,0.745213687,-0.043070022,0.341428459,0.724622965,-0.007916659,0.362926722,0.655674756,-0.03349055,0.383570641,0.659321725,-0.055807032,0.402162671,0.680586636,-0.068802394,0.306655884,0.704422355,-0.016486552,0.321446836,0.59332782,-0.033231217,0.337087005,0.521657825,-0.050786011,0.353910863,0.463921696,-0.064741038,0.270781279,0.716030478,-0.02938094,0.268620551,0.614436448,-0.049552612,0.283123642,0.572740078,-0.0638844,0.30464083,0.545628905,-0.073116452,0.232797951,0.75262624,-0.04425763,0.217261493,0.668062091,-0.061417636,0.227201656,0.648267388,-0.06607452,0.246366948,0.649671018,-0.068455964 +Left,0.258449107,0.999025106,3.31E-07,0.317317396,0.96469897,-0.017404726,0.372807622,0.882901371,-0.026325447,0.408825636,0.814652383,-0.03683744,0.438132763,0.760890245,-0.046919163,0.341532826,0.725939631,-0.008866956,0.365944415,0.65736258,-0.032888666,0.387080014,0.661396742,-0.05439885,0.405827194,0.687522709,-0.066941962,0.307610065,0.705183148,-0.016707657,0.3226161,0.590654969,-0.03260047,0.340877295,0.520929694,-0.050694212,0.358400941,0.474241912,-0.065393656,0.270889133,0.716843367,-0.028678393,0.270671457,0.605628431,-0.051603734,0.289926469,0.586098135,-0.067512259,0.311075598,0.591182292,-0.07689774,0.230366379,0.75282228,-0.042313777,0.22246407,0.661845684,-0.06409049,0.235017866,0.663463593,-0.069967531,0.249911696,0.692477226,-0.072095014 +Left,0.259937286,0.989420891,3.37E-07,0.319412649,0.95016104,-0.013718396,0.373302847,0.863803506,-0.019973958,0.407547981,0.794008374,-0.02818248,0.436173379,0.736860991,-0.036167014,0.337567717,0.707839966,-0.006498701,0.361540586,0.64050442,-0.026574206,0.386513382,0.642207742,-0.044228785,0.412925333,0.66151166,-0.055344637,0.303110152,0.69310689,-0.015980991,0.311197549,0.57543534,-0.031636924,0.33068344,0.510266244,-0.047571208,0.353093237,0.46224001,-0.060324732,0.266909659,0.711308539,-0.02896153,0.26282078,0.599570453,-0.053085446,0.287826866,0.584372938,-0.06675566,0.315432429,0.588961959,-0.07368812,0.228813305,0.754379213,-0.043244351,0.22189635,0.658308506,-0.066117324,0.237796783,0.662832737,-0.070615716,0.255436867,0.69645226,-0.071179226 +Left,0.268916011,0.97460115,3.56E-07,0.324967563,0.914048195,-0.012292856,0.372229457,0.81302917,-0.019494176,0.405268878,0.73886621,-0.028552942,0.429918587,0.679470778,-0.03765082,0.326990813,0.678494036,-0.00967412,0.350470781,0.602793455,-0.031878222,0.379943281,0.602037191,-0.050969377,0.408476949,0.62110424,-0.062212959,0.292718738,0.672182202,-0.019259071,0.296481222,0.549826384,-0.03463544,0.319212258,0.487756193,-0.049756777,0.342648268,0.44363606,-0.061838746,0.258655161,0.699142456,-0.031938076,0.250190377,0.583134115,-0.054964714,0.279589653,0.563461542,-0.066999003,0.309148669,0.56280601,-0.073372364,0.225353003,0.75030154,-0.045729361,0.220766962,0.653672338,-0.067854792,0.243819952,0.660518646,-0.070229642,0.266441882,0.694106877,-0.069355138 +Left,0.279711902,0.934991419,3.96E-07,0.330622196,0.856009901,-0.00829039,0.36400944,0.747056305,-0.016623752,0.392114103,0.669637084,-0.027647326,0.418375582,0.614903867,-0.039708834,0.314990878,0.647901833,-0.017486194,0.339445621,0.56498313,-0.044763833,0.372847915,0.555156052,-0.065404393,0.40406388,0.56352365,-0.07740856,0.283955753,0.651690125,-0.030135985,0.283712953,0.519415438,-0.052745949,0.312971592,0.458420813,-0.06843669,0.340919226,0.417125493,-0.079252928,0.25430274,0.68655622,-0.04495481,0.243810177,0.564633071,-0.075080127,0.285351872,0.544358432,-0.086953342,0.323141247,0.542292356,-0.091440856,0.227788538,0.742199302,-0.059991505,0.224720329,0.64994204,-0.087970957,0.254829407,0.650934458,-0.092024386,0.284026772,0.674303651,-0.091428421 +Left,0.28169769,0.901041508,4.68E-07,0.3291834,0.811333477,-0.003854047,0.352224827,0.701416612,-0.013343337,0.37091136,0.622596741,-0.026387602,0.395617276,0.562467039,-0.041058935,0.306399614,0.619262576,-0.021375474,0.33050102,0.526795685,-0.051236033,0.366450995,0.501888514,-0.072619267,0.400357425,0.498146534,-0.085409395,0.276553482,0.632498622,-0.037405107,0.274662554,0.500120521,-0.066483974,0.311187804,0.447736263,-0.084436871,0.344779074,0.420109719,-0.094783865,0.252386391,0.673712552,-0.054521188,0.243324131,0.559346795,-0.089716353,0.292595297,0.539138556,-0.102739275,0.335465819,0.536922455,-0.106825821,0.237955332,0.732458591,-0.07107503,0.245353058,0.656287789,-0.103097163,0.28386119,0.662160456,-0.109397642,0.318728328,0.685115457,-0.109499954 +Left,0.267421693,0.889408469,5.89E-07,0.317948699,0.78897655,-0.00521057,0.33894217,0.68267864,-0.016560143,0.353753954,0.609220743,-0.030896366,0.370320141,0.542351305,-0.045818415,0.282566667,0.592239797,-0.023313398,0.311096042,0.514527798,-0.05827827,0.348635972,0.487070143,-0.08473102,0.384660095,0.477798373,-0.10160289,0.254636168,0.614458859,-0.041634522,0.264749318,0.503241956,-0.075346522,0.306924701,0.455651462,-0.097970001,0.347816944,0.42884022,-0.112189375,0.237772211,0.665051818,-0.061578821,0.261642307,0.575634718,-0.102367856,0.313321114,0.552595377,-0.12181364,0.355889082,0.54122889,-0.131122842,0.234446689,0.732949078,-0.081086993,0.279913098,0.700603783,-0.118033469,0.32652244,0.701363146,-0.130587146,0.363800049,0.707070053,-0.135828525 +Left,0.259258568,0.887232959,6.58E-07,0.313285261,0.767357945,-0.006939989,0.329641014,0.65388,-0.020823514,0.341431081,0.574770689,-0.037346479,0.359135538,0.493939936,-0.05358221,0.252561569,0.572577119,-0.025869891,0.288601518,0.505948305,-0.059758715,0.321127594,0.46268186,-0.082910068,0.354053408,0.434179425,-0.097854979,0.22907044,0.608500779,-0.042746875,0.256064951,0.50911808,-0.080381453,0.295030296,0.45716095,-0.100419514,0.333887219,0.424138397,-0.111287341,0.222396269,0.66766274,-0.061076272,0.284752816,0.594116151,-0.106156498,0.34450683,0.587775946,-0.118396342,0.390625775,0.587866068,-0.119204618,0.233866304,0.737694442,-0.07906989,0.295137793,0.689899802,-0.11531464,0.342600226,0.692441642,-0.122523643,0.378143847,0.697670698,-0.121932328 +Left,0.252317667,0.880758524,7.04E-07,0.301350623,0.749512136,-0.004580259,0.311261326,0.636992633,-0.018264156,0.317859858,0.556199074,-0.034272671,0.330112934,0.478171736,-0.049440019,0.22992523,0.576689839,-0.030709244,0.269538343,0.488592744,-0.063754246,0.305244088,0.442859173,-0.083603598,0.337362796,0.413702339,-0.095281184,0.215147346,0.61857152,-0.047072046,0.252935022,0.500341296,-0.084216647,0.293971539,0.449479938,-0.099634506,0.332141161,0.417513728,-0.10631457,0.218341574,0.676283121,-0.064223267,0.296274573,0.595611215,-0.105639502,0.355298519,0.575245738,-0.113887183,0.399760246,0.561589122,-0.111944236,0.238131642,0.738246322,-0.080901004,0.305360287,0.675720453,-0.110322371,0.350933403,0.666908622,-0.112945348,0.385049641,0.66101712,-0.109638974 +Left,0.243523434,0.867881656,6.95E-07,0.251263112,0.743132591,-0.005728033,0.256087244,0.629719913,-0.028205376,0.277229607,0.546307683,-0.052186415,0.30363059,0.488748312,-0.076639898,0.19811967,0.599549234,-0.068436719,0.233149648,0.47130695,-0.113716535,0.28102985,0.428718507,-0.139359042,0.320802659,0.412032068,-0.153252661,0.20461452,0.655921638,-0.08725398,0.248971313,0.521110356,-0.134447366,0.305822819,0.462977558,-0.15084146,0.353850305,0.437550187,-0.158484221,0.227954373,0.714039087,-0.105044805,0.295159698,0.607190132,-0.145675823,0.353957176,0.552596092,-0.153520182,0.396038562,0.519981444,-0.154149845,0.261176288,0.766540945,-0.122586325,0.320116073,0.680839658,-0.149980664,0.361979872,0.644183338,-0.152331397,0.394612163,0.620527267,-0.150736198 +Left,0.253437847,0.913731337,5.28E-07,0.233041614,0.799782932,0.001593103,0.232985422,0.682121336,-0.019134684,0.255563647,0.587248623,-0.041785974,0.287477493,0.533041716,-0.064532697,0.187114865,0.667262733,-0.063565247,0.235149175,0.523587108,-0.098751903,0.283671468,0.494410336,-0.113343246,0.318988472,0.497597635,-0.119334757,0.205059171,0.721057177,-0.082367897,0.272202879,0.568107367,-0.115493029,0.321410775,0.535925925,-0.119567178,0.354297996,0.528577447,-0.120369427,0.237657845,0.771034658,-0.099312142,0.303664029,0.627185524,-0.125241369,0.352076292,0.568306923,-0.126443252,0.385680676,0.535635293,-0.126263857,0.277237743,0.811557889,-0.11541082,0.338412642,0.708601296,-0.132181957,0.376211733,0.662334859,-0.131574348,0.403168082,0.631275356,-0.130247176 +Left,0.251127362,0.937823713,5.25E-07,0.227607489,0.823613644,-0.002618372,0.229054928,0.701239228,-0.025712173,0.25317362,0.602910638,-0.04930678,0.283829093,0.541196108,-0.072462231,0.183777124,0.701509535,-0.071806572,0.230411232,0.557563901,-0.109139226,0.278099746,0.51867038,-0.125568807,0.314794928,0.512282789,-0.133288965,0.207703218,0.758003831,-0.0892189,0.268825442,0.606867433,-0.126954153,0.314641446,0.576050758,-0.132689998,0.34585917,0.572999418,-0.134384826,0.245235547,0.807545364,-0.104865752,0.305028677,0.661685288,-0.134971082,0.352756768,0.599132359,-0.137252688,0.387797534,0.565775037,-0.137056962,0.289112568,0.843085766,-0.119722642,0.342331529,0.735951483,-0.139310211,0.377897739,0.68583411,-0.140327364,0.404973924,0.650984168,-0.140093133 +Left,0.248653978,0.92612499,5.55E-07,0.217729762,0.816617846,-0.008596109,0.21213004,0.690290153,-0.034598731,0.22706157,0.585392058,-0.058492638,0.245377094,0.519715965,-0.081427321,0.182212889,0.715911388,-0.084316857,0.229625285,0.566520572,-0.120027997,0.275060862,0.52057308,-0.132472932,0.309956461,0.510221362,-0.137627751,0.2149252,0.771996439,-0.098302267,0.279730618,0.610271215,-0.135838091,0.320885688,0.573655367,-0.138306692,0.346057534,0.570069671,-0.137906119,0.257322818,0.818148255,-0.110176839,0.32045418,0.659282029,-0.138270661,0.364346594,0.58346051,-0.137591675,0.395042926,0.543027043,-0.136284545,0.303844452,0.848214626,-0.121555217,0.349672735,0.734791636,-0.140494317,0.379830807,0.676697373,-0.140912533,0.40312326,0.636865795,-0.14067781 +Left,0.251601994,0.93277353,6.08E-07,0.216392398,0.828304112,-0.0108675,0.20380713,0.697531462,-0.035637069,0.21330522,0.583938122,-0.057116427,0.234300703,0.513773978,-0.077153772,0.183847994,0.733992636,-0.087141439,0.230957374,0.582440794,-0.119258963,0.273563445,0.53202498,-0.126048058,0.304546028,0.522512555,-0.127375692,0.220774382,0.787154675,-0.099591434,0.285093993,0.61664623,-0.137208045,0.324812025,0.56805706,-0.138405964,0.346976221,0.561876595,-0.136093378,0.265905499,0.832451701,-0.109382249,0.327798784,0.666163981,-0.137984604,0.369692981,0.5813483,-0.136925712,0.396204352,0.538421929,-0.134617284,0.313274384,0.864823222,-0.118526287,0.358248979,0.745381355,-0.140817016,0.387781173,0.67866832,-0.143136486,0.410539091,0.634952068,-0.14302291 +Left,0.258282244,0.906362951,4.35E-07,0.217574179,0.805240452,-0.009598683,0.201588541,0.671765268,-0.031921167,0.211423755,0.554356039,-0.050631031,0.238188148,0.481491804,-0.066955529,0.193517178,0.705812037,-0.076606296,0.244045392,0.545094907,-0.106760494,0.285505235,0.504148006,-0.113625959,0.313298881,0.505738497,-0.115084291,0.234376371,0.754064798,-0.086951643,0.298171818,0.587221742,-0.123651408,0.327861637,0.564735889,-0.12401738,0.338940859,0.584084988,-0.120293811,0.280362308,0.796070397,-0.095145211,0.341834903,0.630045891,-0.121746525,0.37761873,0.548056901,-0.120693579,0.398127139,0.509415329,-0.118386626,0.328008801,0.827052355,-0.102416702,0.371197164,0.704458833,-0.12173368,0.398080617,0.641038895,-0.123136796,0.416806042,0.598612607,-0.122923695 +Left,0.263952613,0.853751302,3.78E-07,0.219531327,0.761066318,-0.008013345,0.199143142,0.629495025,-0.028688977,0.204840243,0.511847973,-0.045536745,0.230226964,0.437550932,-0.059790906,0.198115274,0.654156506,-0.075122476,0.246149242,0.49309811,-0.104084447,0.287181318,0.465875924,-0.109031849,0.313088,0.477907538,-0.109210953,0.240774751,0.69361192,-0.085436478,0.29657191,0.520707965,-0.121752612,0.327657968,0.506844461,-0.121352538,0.339773297,0.535538614,-0.116151206,0.288006008,0.731465876,-0.093348764,0.339951992,0.566875696,-0.118990473,0.376167089,0.487426639,-0.118200645,0.397295564,0.447232544,-0.116101094,0.336830676,0.759472907,-0.099924095,0.375828773,0.638913989,-0.118281588,0.40204671,0.575058281,-0.120199859,0.421310157,0.528862,-0.120918423 +Left,0.263089418,0.839253545,2.52E-07,0.211908594,0.748273969,-0.007894503,0.184108555,0.619905829,-0.028802289,0.184917897,0.50035423,-0.046982542,0.20674555,0.415709525,-0.061920263,0.187258586,0.636119962,-0.068344742,0.226585269,0.457046211,-0.10204383,0.267546505,0.440889925,-0.112663247,0.291574419,0.461315095,-0.1157635,0.230718702,0.668288827,-0.079227619,0.278724819,0.487265199,-0.116472311,0.30836603,0.477842093,-0.11972414,0.318388611,0.502362847,-0.117520645,0.279921114,0.701330662,-0.088685259,0.323225021,0.530709326,-0.113771208,0.357019097,0.460426182,-0.112266384,0.376067519,0.421194792,-0.109913163,0.330422789,0.727238297,-0.097294748,0.357548863,0.601992905,-0.115164421,0.380578727,0.536781609,-0.116551198,0.398277849,0.484749526,-0.11687015 +Left,0.249583095,0.836109042,4.38E-08,0.193365216,0.756705463,-0.003926593,0.157868266,0.625889957,-0.023169892,0.150751591,0.504293799,-0.04075693,0.165438116,0.420950294,-0.054665767,0.153547645,0.637699068,-0.057432484,0.178888649,0.453989685,-0.089178115,0.218401566,0.453949809,-0.099106401,0.241891965,0.4910779,-0.101541281,0.200559601,0.655688226,-0.070573829,0.232117057,0.463181555,-0.10705696,0.262364954,0.467903793,-0.111063085,0.275900483,0.509902596,-0.10780257,0.253228366,0.673547328,-0.082659617,0.280573577,0.489701957,-0.108043343,0.309854239,0.410396844,-0.110136189,0.32654798,0.36887148,-0.109463356,0.30762738,0.684097528,-0.093050122,0.325938046,0.55334425,-0.108875416,0.345744252,0.48782143,-0.110184856,0.358835936,0.437021375,-0.110873029 +Left,0.245161444,0.855693519,-3.63E-08,0.190185457,0.776079297,0.000669011,0.152200803,0.642967284,-0.016808098,0.142237514,0.522840202,-0.033237111,0.151483983,0.435931027,-0.04617152,0.139454961,0.659239709,-0.057991084,0.167352915,0.476030707,-0.0866642,0.20451194,0.486947805,-0.092062503,0.224472508,0.528341532,-0.092450179,0.185008943,0.681954741,-0.073736593,0.214661941,0.480877757,-0.109752126,0.247152522,0.488320351,-0.11200539,0.264174819,0.530720353,-0.107697479,0.23759532,0.698493838,-0.087712862,0.263301611,0.502299845,-0.115676709,0.293590784,0.419082701,-0.119235992,0.311733693,0.372567266,-0.119305193,0.292019516,0.703091502,-0.098963946,0.314902961,0.568246067,-0.118040293,0.337379426,0.501243293,-0.121430174,0.351031482,0.448885024,-0.123480819 +Left,0.255618095,0.817321897,2.01E-07,0.2400648,0.691450298,0.016049141,0.218688309,0.577695668,-0.000728956,0.23195672,0.48708117,-0.022727873,0.261739284,0.436537087,-0.04648919,0.159402311,0.56146127,-0.056971598,0.216247424,0.412348509,-0.086476333,0.270580351,0.405917645,-0.09457697,0.301911116,0.414433688,-0.098569982,0.179466709,0.601586163,-0.084085234,0.24284783,0.430296361,-0.113685474,0.296128154,0.414565623,-0.112046301,0.329653144,0.42104733,-0.109424099,0.216466576,0.642994046,-0.108042419,0.267649889,0.473196596,-0.130388245,0.317281395,0.430651695,-0.124712288,0.349294543,0.415707409,-0.120094992,0.26366213,0.676790476,-0.129919559,0.289863348,0.547430754,-0.145722762,0.31198287,0.477582186,-0.145067379,0.330224931,0.423897088,-0.144529715 +Left,0.256945521,0.798193157,-4.86E-08,0.24370794,0.671694636,0.020802638,0.221687555,0.567126095,0.012055641,0.228658929,0.480633855,-0.002074172,0.250452369,0.432306588,-0.016414171,0.161236882,0.546475947,-0.037225496,0.223377228,0.407445073,-0.052400872,0.271362036,0.423895597,-0.051427677,0.289626181,0.444882274,-0.052113399,0.17844896,0.575829089,-0.0621778,0.248064086,0.42656523,-0.077043124,0.294037223,0.443878442,-0.067069829,0.316900194,0.469256401,-0.062232606,0.210088894,0.612327158,-0.08416532,0.26934886,0.456466556,-0.093726173,0.311985195,0.455072671,-0.080768265,0.335383683,0.471871197,-0.075121246,0.252384484,0.64626056,-0.104572132,0.280608088,0.52493614,-0.116687812,0.300217688,0.458742768,-0.117075481,0.315863669,0.405194581,-0.119065039 +Left,0.274335533,0.804643571,-3.89E-07,0.273110986,0.660977125,0.025891768,0.247723684,0.563819945,0.028262835,0.233252183,0.48598513,0.025376596,0.23216103,0.429793477,0.023684744,0.17198962,0.530603468,-0.021346716,0.248079881,0.415698946,-0.028220132,0.296236575,0.447750837,-0.017182829,0.310171723,0.486299604,-0.010296253,0.178275466,0.560779572,-0.04386973,0.27251479,0.431612253,-0.054186538,0.315447688,0.47525984,-0.035503075,0.332853198,0.523331523,-0.022559257,0.203385815,0.600390673,-0.063804343,0.291857749,0.468213856,-0.076567702,0.329954088,0.509534717,-0.056661062,0.344272286,0.553276658,-0.042662211,0.242482945,0.641956687,-0.081671514,0.2666713,0.527505159,-0.103141837,0.28052634,0.457752526,-0.105941013,0.293913931,0.393740088,-0.105744556 +Left,0.285943478,0.799718857,-3.78E-07,0.310339451,0.651853561,0.014192474,0.290123105,0.553435683,0.017123915,0.273229659,0.477136403,0.016087668,0.266643852,0.40988487,0.016851429,0.191173851,0.518018425,-0.008886721,0.271578014,0.430665672,-0.016932847,0.314417541,0.469684124,-0.014248045,0.32777369,0.515377283,-0.013145749,0.186561182,0.545787394,-0.023899533,0.287612647,0.442909658,-0.037207544,0.328234673,0.495279789,-0.028722912,0.348245144,0.547400653,-0.020931993,0.203584597,0.585866332,-0.038072139,0.298580378,0.478546858,-0.054607056,0.335781395,0.525889516,-0.041816331,0.353681982,0.573366821,-0.030062295,0.236603215,0.635512233,-0.051226549,0.265505433,0.525239527,-0.074176878,0.282192409,0.456749082,-0.078056134,0.299488485,0.394047707,-0.076995991 +Left,0.297253937,0.796662331,-4.66E-07,0.333082378,0.683351696,0.012651671,0.332906723,0.591392219,0.012854837,0.331384122,0.510109782,0.00848253,0.328336924,0.433495164,0.00615159,0.230306253,0.513713002,-0.004580671,0.309655011,0.442483783,-0.018710168,0.351197064,0.487000465,-0.023817234,0.364373624,0.537717402,-0.026407378,0.216500282,0.533058822,-0.021075124,0.314798266,0.450709045,-0.035745565,0.351629138,0.50785023,-0.033626456,0.36701721,0.563215077,-0.031085076,0.223553464,0.569064558,-0.037568308,0.31654337,0.484990597,-0.055000991,0.348786324,0.541199148,-0.046534866,0.360416234,0.592685282,-0.038293514,0.246630847,0.619544625,-0.053402152,0.272249728,0.512299955,-0.07595744,0.291445851,0.441129029,-0.080067679,0.311416835,0.377756655,-0.079698704 +Left,0.305595011,0.797219217,-3.11E-07,0.347516239,0.702874839,0.015064403,0.36097011,0.603598475,0.015967738,0.374240696,0.529805899,0.008344242,0.381296843,0.46487233,0.001318212,0.294192284,0.518752396,0.014349711,0.334393054,0.461284161,-0.008520169,0.372756094,0.508319497,-0.021096198,0.393649459,0.553079009,-0.024311949,0.275972545,0.530714035,-0.006747505,0.331188023,0.460771382,-0.036577702,0.372287035,0.525830567,-0.046555508,0.389538527,0.583559632,-0.045031589,0.266065955,0.558488131,-0.029702481,0.323158652,0.483657002,-0.058522794,0.369549364,0.533991992,-0.060080808,0.391859651,0.579621673,-0.051604949,0.2634179,0.600249588,-0.051420163,0.277073473,0.494835794,-0.068977922,0.300200373,0.433678269,-0.070719436,0.322444141,0.387329459,-0.06731835 +Left,0.314058632,0.815154433,-2.55E-07,0.353026152,0.73440814,0.00224773,0.370302647,0.631209075,-0.001074158,0.383368999,0.557557821,-0.011476076,0.388024092,0.486595243,-0.01964788,0.322614074,0.538903594,0.012892318,0.345074117,0.466323793,-0.013362515,0.377871186,0.519980431,-0.028523233,0.395201176,0.570589364,-0.031688534,0.301742345,0.547949553,-0.002347023,0.333613366,0.469162643,-0.03553554,0.369284272,0.540174246,-0.050285544,0.384557039,0.601256669,-0.050693329,0.282229781,0.567172945,-0.021204952,0.318260223,0.484561861,-0.052802056,0.361136615,0.538966417,-0.05886421,0.384400219,0.589959025,-0.051958669,0.264305472,0.597161114,-0.039922364,0.267762303,0.493647039,-0.057044681,0.289408565,0.435656399,-0.060281433,0.311962992,0.391215026,-0.057702608 +Left,0.309955627,0.830388606,-2.75E-07,0.355920345,0.759578824,-0.00043659,0.381670266,0.64756161,-0.003722909,0.400151521,0.567653835,-0.013621088,0.41103223,0.501816452,-0.021351228,0.336463571,0.538848937,0.011623206,0.35951221,0.465600431,-0.015590316,0.390325755,0.524763525,-0.031074682,0.406469345,0.586304486,-0.0335331,0.311647117,0.546489835,-0.002353358,0.341785103,0.4656986,-0.040615566,0.375056177,0.546086609,-0.058163192,0.389426023,0.622831285,-0.058072817,0.286644489,0.562041402,-0.02006628,0.319012314,0.477043331,-0.056000371,0.364377618,0.539334655,-0.065372936,0.390868723,0.60193193,-0.058807101,0.260843992,0.588794529,-0.037494585,0.260945886,0.484004438,-0.056460049,0.283019245,0.425392091,-0.061746418,0.307193488,0.378929317,-0.060086228 +Left,0.309185177,0.831002951,-3.02E-07,0.358945996,0.772128463,-0.007052943,0.398897618,0.67146945,-0.01407458,0.423989415,0.596874714,-0.02537379,0.431147695,0.525396645,-0.034103636,0.356195688,0.539745212,-0.000144437,0.38149035,0.474147648,-0.028088335,0.404996514,0.543889046,-0.045079831,0.413231969,0.609001279,-0.048574381,0.324160844,0.537648678,-0.009811401,0.355221093,0.47666043,-0.044284478,0.37923497,0.568837106,-0.060469855,0.383202761,0.646693051,-0.061665159,0.291954935,0.547898889,-0.022750994,0.319575012,0.464790165,-0.052045628,0.355784863,0.541036367,-0.056826565,0.373731792,0.611083746,-0.050247315,0.259537905,0.572955847,-0.036252305,0.256116122,0.469678611,-0.050888762,0.274710923,0.41234988,-0.053119812,0.295722663,0.363230318,-0.050472125 +Left,0.310639203,0.843739152,-3.48E-07,0.363510728,0.788265646,-0.008934286,0.409668684,0.69385618,-0.016177127,0.437481433,0.618748009,-0.027482444,0.441786736,0.546776712,-0.035853904,0.371248662,0.554135919,-0.000534042,0.394832134,0.4942967,-0.028469639,0.40656969,0.569862843,-0.044651557,0.408057719,0.638607383,-0.047567446,0.334669828,0.546218872,-0.009360943,0.36073941,0.485436797,-0.044315498,0.375294387,0.580701709,-0.059750371,0.375935197,0.662719846,-0.060167849,0.295910507,0.550565183,-0.021920606,0.320024461,0.469880462,-0.052782524,0.34930855,0.556788504,-0.057891555,0.364812672,0.633803427,-0.051287044,0.257528424,0.570899963,-0.035104956,0.248136118,0.468260348,-0.050106343,0.257637888,0.411183566,-0.053420246,0.272800922,0.358909726,-0.051887967 +Left,0.302085072,0.851296663,-3.88E-07,0.36105445,0.805775762,-0.011218335,0.411210895,0.717427492,-0.018703386,0.439548343,0.641558826,-0.028957264,0.447199672,0.565651298,-0.035774566,0.380363792,0.573157728,-0.007535749,0.397786468,0.503447652,-0.034139182,0.403888136,0.585517466,-0.048066646,0.400474012,0.659184456,-0.050265674,0.339125216,0.559221029,-0.014398274,0.361324221,0.489107817,-0.047971811,0.370699644,0.593168318,-0.060714711,0.364933074,0.677609682,-0.060333204,0.294658542,0.559678912,-0.024784775,0.311142564,0.471713454,-0.052873787,0.33750698,0.559951067,-0.055974472,0.349897087,0.636365533,-0.050059799,0.250550091,0.577358067,-0.035975166,0.240790159,0.473135024,-0.050715901,0.245310575,0.411003083,-0.054881323,0.251315534,0.349934399,-0.055168085 +Left,0.288787782,0.875323296,-3.70E-07,0.354531586,0.836021483,-0.018003715,0.413043976,0.743911505,-0.026433147,0.448162675,0.662396312,-0.03697861,0.457710266,0.583167017,-0.043265659,0.379863173,0.587359786,-0.005520199,0.394683093,0.509948134,-0.033312183,0.393549263,0.580147505,-0.0490302,0.387432247,0.651202977,-0.05306121,0.334308624,0.567102849,-0.008885631,0.353255242,0.487389743,-0.045254212,0.352686018,0.588965058,-0.059193596,0.344233334,0.676520407,-0.05890796,0.287178487,0.561141133,-0.017142881,0.293789685,0.453042984,-0.045577172,0.306283504,0.536072552,-0.048980951,0.31316784,0.616898239,-0.042951453,0.242497668,0.5736624,-0.027440174,0.230484337,0.470861286,-0.043379959,0.225070447,0.405261695,-0.050590042,0.22183013,0.340773821,-0.052711532 +Left,0.289488792,0.885696054,-4.06E-07,0.358694077,0.852884173,-0.019761071,0.42165488,0.772722185,-0.030442482,0.459804833,0.695796847,-0.042951446,0.471446693,0.616330683,-0.050955623,0.395313323,0.611400425,-0.011338556,0.413749933,0.536369443,-0.040502932,0.405811936,0.611394405,-0.056858018,0.394420505,0.684729576,-0.061374541,0.349635869,0.584415197,-0.014372203,0.36720863,0.50500071,-0.051515192,0.360373288,0.605284691,-0.065271191,0.349113613,0.692937493,-0.065314241,0.30180499,0.570444763,-0.022193873,0.308632642,0.459111392,-0.050460957,0.314983785,0.542204618,-0.053043261,0.318561941,0.62492913,-0.046915449,0.255715549,0.574107111,-0.032307874,0.246091336,0.46829164,-0.047601257,0.24121964,0.401149511,-0.054164682,0.2395055,0.335184842,-0.056164313 +Left,0.295470297,0.892873287,-4.61E-07,0.363593519,0.872603178,-0.023773376,0.429987311,0.800952494,-0.036544088,0.469018579,0.725562155,-0.05030125,0.47060588,0.645489514,-0.059310567,0.414550662,0.626151621,-0.013359118,0.432753921,0.546994925,-0.045950577,0.41584909,0.6145491,-0.065830842,0.397385597,0.689882159,-0.072432436,0.367310494,0.594325662,-0.014975019,0.384320021,0.511290133,-0.056182619,0.366432935,0.616065562,-0.071684867,0.351308346,0.708462536,-0.071415335,0.319445074,0.575504601,-0.022097366,0.331532001,0.461013049,-0.052177496,0.328445673,0.526800275,-0.056555606,0.325578272,0.599146247,-0.050919537,0.273891628,0.576326311,-0.031838201,0.26580584,0.466830581,-0.047972608,0.256164491,0.395532787,-0.055032585,0.249989778,0.331217706,-0.056687783 +Left,0.2968629,0.900513709,-4.34E-07,0.364082187,0.871077657,-0.021896694,0.428282797,0.787121117,-0.03197965,0.464640737,0.702927709,-0.042592634,0.462570608,0.619713008,-0.048442017,0.404531658,0.620019078,-0.009736911,0.419993401,0.538469911,-0.037146233,0.407014728,0.605888367,-0.05389972,0.392742276,0.678806901,-0.059451953,0.356900126,0.592572033,-0.011667796,0.370945066,0.504827321,-0.048742205,0.35908857,0.60683167,-0.063315712,0.348682612,0.699522793,-0.063311622,0.308774382,0.578883648,-0.018692425,0.316592991,0.46054244,-0.04627873,0.317749441,0.519069672,-0.051803775,0.318686962,0.584999442,-0.048050296,0.26294601,0.584371567,-0.027943972,0.248823047,0.473265111,-0.042280409,0.235278621,0.404798359,-0.048985533,0.22569859,0.342504591,-0.051271915 +Left,0.306440234,0.906176448,-3.76E-07,0.371461064,0.856244802,-0.016340012,0.425126433,0.7541731,-0.024789639,0.452595055,0.664952815,-0.035115983,0.448284268,0.589614332,-0.041558761,0.387174517,0.592260778,-0.004834506,0.396623462,0.506690621,-0.032960791,0.400325656,0.577146232,-0.052034754,0.399609178,0.654564261,-0.058731355,0.34027186,0.580466211,-0.009314708,0.349894583,0.486984938,-0.044614796,0.35776177,0.579530597,-0.060445111,0.358245909,0.671370029,-0.061789971,0.292279392,0.584056556,-0.018582931,0.288909405,0.464077264,-0.043939479,0.305111647,0.517566204,-0.05022686,0.316645384,0.582187295,-0.047466863,0.247612,0.60794723,-0.029852148,0.224152982,0.503389478,-0.043453012,0.209694982,0.437850356,-0.050671831,0.197596058,0.377714604,-0.053537432 +Left,0.322435737,0.895026922,-1.69E-07,0.372148693,0.808165133,-0.017081367,0.405714035,0.68308109,-0.029100642,0.420481741,0.586960614,-0.042462464,0.413227767,0.509287715,-0.051074792,0.337322086,0.560893178,-0.012894351,0.340684474,0.463975132,-0.048409265,0.371737719,0.514379382,-0.072412133,0.397430182,0.575452745,-0.082410723,0.295394659,0.580277622,-0.019296583,0.302344948,0.480806231,-0.062210586,0.339571804,0.561101973,-0.08134374,0.362773508,0.640493393,-0.084849395,0.254049987,0.612891316,-0.030463638,0.240505159,0.496713281,-0.061028298,0.282035887,0.538204551,-0.067492619,0.315211415,0.583393753,-0.065172672,0.219028383,0.661147714,-0.04377377,0.182220653,0.586438,-0.061221082,0.166376054,0.533519804,-0.069915682,0.153711051,0.477526546,-0.073945947 +Left,0.32882005,0.884906828,-1.82E-07,0.374688178,0.790725827,-0.014338614,0.401176184,0.659968495,-0.023885196,0.414441228,0.560459495,-0.035939846,0.407580972,0.483163804,-0.04427636,0.333280146,0.54026711,-0.006425163,0.341107905,0.457574397,-0.039553083,0.374945909,0.507418752,-0.061618686,0.403097421,0.558062613,-0.070714615,0.295692146,0.565015197,-0.015316333,0.303713113,0.479469359,-0.057765957,0.3475945,0.545531571,-0.078882895,0.37873283,0.611752808,-0.083525486,0.259734511,0.607199669,-0.028741898,0.255340636,0.511439621,-0.061374098,0.304806411,0.545962155,-0.071015306,0.345997095,0.583087862,-0.069909781,0.229432613,0.665283918,-0.043948036,0.19554773,0.599651337,-0.062440373,0.188989639,0.550711393,-0.072195172,0.190113544,0.499482393,-0.07663469 +Left,0.336181074,0.863385201,-1.19E-07,0.374298692,0.760164738,-0.013796934,0.394478679,0.631652117,-0.028746054,0.407995701,0.53651762,-0.046297748,0.409120917,0.46132952,-0.060667805,0.323602736,0.527584493,-0.016815275,0.336489797,0.434783638,-0.056115918,0.379109383,0.476375401,-0.082496591,0.410623014,0.527314723,-0.09336517,0.289910078,0.560608387,-0.0276599,0.300173312,0.459643781,-0.073599748,0.354499578,0.511953712,-0.095530219,0.391866624,0.575234234,-0.099899575,0.260789335,0.610301137,-0.042409055,0.252951443,0.510478437,-0.075485788,0.304977238,0.52359426,-0.083757199,0.347592801,0.547103643,-0.081281289,0.237846911,0.674708366,-0.05880921,0.202594131,0.60505861,-0.076350786,0.204322875,0.553670704,-0.082292557,0.214392334,0.506928682,-0.083280325 +Left,0.333298475,0.841575146,3.20E-08,0.369091213,0.725627601,-0.013567938,0.381760418,0.5997293,-0.028685179,0.394859672,0.509952426,-0.047698952,0.392655402,0.433550417,-0.06580326,0.309254229,0.529116333,-0.020402532,0.31447351,0.408000052,-0.058348704,0.361718297,0.424134791,-0.084964223,0.396584123,0.458212912,-0.098451935,0.285541922,0.559729576,-0.0337529,0.291744143,0.44026804,-0.079828441,0.353631675,0.465968996,-0.107937567,0.394747108,0.511872172,-0.11998871,0.26432398,0.609547496,-0.05038755,0.257935584,0.488205165,-0.086582594,0.318045378,0.48949939,-0.102375008,0.364465833,0.514112294,-0.106770664,0.246000648,0.6759758,-0.0685241,0.212389246,0.60853076,-0.094193451,0.22752355,0.555689454,-0.108454861,0.251231074,0.519321978,-0.116113797 +Left,0.328272879,0.83562541,1.23E-07,0.361468792,0.712715805,-0.005315142,0.36561054,0.591619015,-0.018643009,0.372956932,0.5161255,-0.037837092,0.384832501,0.456582606,-0.056879424,0.284991562,0.497992396,-0.009592503,0.300727665,0.395598114,-0.048246488,0.351448357,0.401268393,-0.078952946,0.387467772,0.425918043,-0.096297882,0.264202893,0.531661332,-0.026967134,0.281387925,0.423132241,-0.071337946,0.346345127,0.434388161,-0.10071294,0.389674783,0.468953013,-0.114531346,0.248781398,0.585454583,-0.04723338,0.25135541,0.474620879,-0.083651803,0.314781815,0.469524384,-0.099241301,0.362433463,0.490123719,-0.1030754,0.237627953,0.659410238,-0.068504497,0.230158359,0.586044192,-0.096701689,0.26028049,0.539821446,-0.11007034,0.292725772,0.511034667,-0.115616411 +Left,0.327686161,0.840306044,2.58E-07,0.353141487,0.714511871,-0.003561822,0.352935284,0.596168041,-0.019632125,0.362373531,0.517488122,-0.042146716,0.37533465,0.446875036,-0.065362491,0.261118621,0.518485367,-0.017370559,0.267872274,0.408723265,-0.060274575,0.323137432,0.393947363,-0.092879519,0.365477324,0.405650258,-0.111095026,0.241787761,0.560125768,-0.037118129,0.250793695,0.431709766,-0.0844642,0.320320785,0.418642163,-0.114029877,0.36722064,0.439901233,-0.127847165,0.233315244,0.617552698,-0.059106931,0.237269402,0.497939825,-0.10036169,0.308865577,0.473555386,-0.115807801,0.360224456,0.481396496,-0.118615352,0.236967891,0.690849364,-0.081450373,0.243710414,0.599408388,-0.11379467,0.290540636,0.554108202,-0.125128269,0.332949042,0.532075644,-0.128079101 +Left,0.306066722,0.846596599,3.12E-07,0.340875208,0.694461226,-0.000440888,0.336572051,0.569871724,-0.015814384,0.342499673,0.488406122,-0.036739141,0.350741208,0.415094674,-0.056809328,0.212920785,0.524514914,-0.026196489,0.228562742,0.407479346,-0.066773221,0.289848804,0.382403731,-0.093786635,0.332292497,0.38992539,-0.109858237,0.198836833,0.578064382,-0.050241813,0.216479897,0.432547867,-0.097745329,0.294519305,0.409852773,-0.124618016,0.343317389,0.425604284,-0.13743034,0.206287861,0.641512156,-0.074873291,0.221812457,0.507242024,-0.121099211,0.297779143,0.475088537,-0.135182604,0.344179779,0.480519533,-0.137801051,0.231201455,0.710441709,-0.098742172,0.27126956,0.614551842,-0.136576146,0.325167,0.574816048,-0.146709308,0.361452281,0.562076986,-0.149040177 +Left,0.295991838,0.859004378,3.90E-07,0.331280321,0.702970386,0.001049814,0.325540662,0.575835228,-0.011731965,0.334091216,0.490986407,-0.030293927,0.344053686,0.419145226,-0.046908438,0.2087975,0.539659858,-0.027867842,0.22201018,0.421700418,-0.066225328,0.283409268,0.392265707,-0.088453226,0.326669514,0.401449144,-0.10098099,0.192805439,0.594856441,-0.052921228,0.201205403,0.440215647,-0.100806817,0.27757287,0.412277967,-0.126141265,0.330069095,0.429391623,-0.13613835,0.201447994,0.653211117,-0.077939704,0.216559112,0.514210641,-0.126477167,0.290905505,0.483447164,-0.144025475,0.335990608,0.497746646,-0.148072049,0.226644143,0.711147428,-0.102011822,0.292531312,0.62408489,-0.145184726,0.351745993,0.594772995,-0.161169797,0.388866216,0.593644917,-0.166479096 +Left,0.289694339,0.863660932,3.76E-07,0.318930417,0.70385325,0.001447991,0.309708744,0.579949439,-0.011645718,0.303773284,0.502088964,-0.030547941,0.298936367,0.443773508,-0.047356859,0.186251983,0.555126131,-0.029922871,0.198313683,0.426263779,-0.071792446,0.258802027,0.389633715,-0.096483402,0.30398941,0.395374566,-0.10963738,0.175405398,0.613568306,-0.054807954,0.192626417,0.449068099,-0.103737473,0.270854443,0.411224723,-0.127310261,0.322521895,0.417857468,-0.135919377,0.190899223,0.668118417,-0.079932801,0.216652751,0.51404351,-0.1289258,0.293646783,0.476202875,-0.144305646,0.339314103,0.481042385,-0.146960855,0.221971914,0.720435143,-0.104180269,0.297899425,0.630510569,-0.146010056,0.3544451,0.608865142,-0.160252452,0.387789428,0.608428538,-0.164203823 +Left,0.279136091,0.861204565,4.14E-07,0.305416405,0.681142628,-0.006736141,0.297674835,0.550510287,-0.025239635,0.293158293,0.459038317,-0.047548912,0.295541257,0.382503152,-0.066572092,0.165161699,0.553432286,-0.044508532,0.174579114,0.412320137,-0.090738282,0.23586823,0.371422678,-0.114689313,0.281923145,0.372943521,-0.126054376,0.159552455,0.617098868,-0.06534446,0.181624413,0.453110844,-0.118951567,0.257846683,0.412360907,-0.137965411,0.308540106,0.416377604,-0.142252043,0.180812389,0.676475644,-0.087106287,0.217173487,0.529514253,-0.138755977,0.290872663,0.48584491,-0.147861704,0.336551607,0.482450902,-0.144657955,0.217299342,0.729690015,-0.108820096,0.286670536,0.63741976,-0.148926228,0.339676172,0.614894152,-0.157731906,0.373212695,0.613163352,-0.156926349 +Left,0.278588444,0.86041671,3.17E-07,0.295971751,0.669188797,-0.006399246,0.285201699,0.535229266,-0.026067916,0.280962855,0.438800931,-0.05051145,0.282244533,0.354728281,-0.071121126,0.149125308,0.57027173,-0.04479187,0.153411925,0.418607235,-0.09217672,0.218147069,0.380446434,-0.115922473,0.262868613,0.385015666,-0.126439497,0.15123418,0.633538842,-0.065622658,0.180548266,0.464102596,-0.116938829,0.252491266,0.419200599,-0.133535728,0.298224121,0.420911878,-0.137680441,0.17850478,0.691707969,-0.087868825,0.227123082,0.536579788,-0.136300936,0.29758808,0.494843721,-0.143051535,0.339432597,0.489249796,-0.139282972,0.219728827,0.7424649,-0.110351145,0.2927306,0.641443849,-0.145405263,0.342282355,0.60806495,-0.151978463,0.373292476,0.594886065,-0.150794968 +Left,0.270516932,0.858113527,3.35E-07,0.266871899,0.683666289,-0.012209682,0.25040853,0.544062197,-0.037208706,0.245586216,0.435960889,-0.064473353,0.24565807,0.339872718,-0.088182233,0.131938353,0.598923922,-0.063438363,0.148983926,0.442679882,-0.10860566,0.212459624,0.401949644,-0.126602814,0.255897552,0.403985739,-0.132794932,0.14794299,0.66424042,-0.081505314,0.196664825,0.488795698,-0.130263343,0.268188685,0.440605491,-0.139229253,0.312375814,0.43728888,-0.13835679,0.184983,0.72138834,-0.100043721,0.245969981,0.554637074,-0.145514399,0.311621457,0.509910524,-0.142971098,0.350908101,0.5038293,-0.132773027,0.231783003,0.767695785,-0.119043022,0.300081611,0.650480807,-0.150829136,0.343868762,0.608560741,-0.150005713,0.37234658,0.593123734,-0.142843381 +Left,0.249757722,0.870077133,5.08E-07,0.22992526,0.719060957,-0.016949184,0.218104526,0.574850321,-0.046182826,0.227950454,0.454443693,-0.075309798,0.236150309,0.360711277,-0.100967824,0.119823471,0.61765492,-0.081405059,0.160069883,0.457336843,-0.127194658,0.229004651,0.410028398,-0.143488005,0.273496509,0.410403192,-0.148247868,0.145488426,0.68669802,-0.096758716,0.215364426,0.504916906,-0.14483355,0.286180615,0.461386323,-0.149706915,0.324708551,0.465449393,-0.147141889,0.189934045,0.744019628,-0.111949407,0.263221502,0.574249089,-0.153763905,0.322366297,0.529001057,-0.146335021,0.353102267,0.527467787,-0.134086728,0.241030753,0.787382782,-0.128042117,0.310333878,0.656541228,-0.15549615,0.346329063,0.613220513,-0.150594011,0.365361989,0.602048635,-0.14158006 +Left,0.237815872,0.859895051,6.46E-07,0.205643892,0.724836588,-0.022886461,0.192149505,0.586247802,-0.058512401,0.209124923,0.46929419,-0.092882253,0.225043163,0.380463421,-0.124789856,0.112183861,0.642054737,-0.099665172,0.149802744,0.48094964,-0.145929709,0.215566278,0.420907617,-0.158937186,0.259658247,0.409824342,-0.161427632,0.145176232,0.713314652,-0.113245413,0.210925892,0.523738027,-0.163436487,0.278077483,0.465197325,-0.164444923,0.314617932,0.459079444,-0.158824518,0.193481058,0.76753974,-0.126318127,0.26124531,0.583609283,-0.17092137,0.318655312,0.52003181,-0.161416218,0.351355672,0.510646701,-0.147092849,0.246027216,0.803993404,-0.140485302,0.308232784,0.659078121,-0.170939133,0.344823539,0.594334781,-0.166040629,0.367860496,0.567384839,-0.156506643 +Left,0.245588809,0.878081918,7.68E-07,0.212847725,0.729818225,-0.023971576,0.19438985,0.598674595,-0.059966024,0.208614126,0.501990557,-0.09595786,0.235354662,0.424353778,-0.130545363,0.106771827,0.669477284,-0.095784955,0.132858977,0.503330886,-0.151708439,0.194399327,0.428773105,-0.176725492,0.241198063,0.400412858,-0.187940806,0.137811348,0.745905936,-0.112132803,0.179865867,0.560356379,-0.175864547,0.245857388,0.478385627,-0.192042291,0.291461706,0.445146322,-0.195089966,0.186006323,0.799221873,-0.128687918,0.227945596,0.630296707,-0.188564762,0.286989301,0.542749524,-0.195719182,0.328393102,0.499154478,-0.189740449,0.239673197,0.82774663,-0.145824194,0.293766379,0.685860395,-0.189285591,0.334660202,0.599712312,-0.195570797,0.364587098,0.544588447,-0.19235827 +Left,0.266758114,0.858005524,7.13E-07,0.236747086,0.702348292,-0.026941927,0.213138998,0.579610944,-0.062524736,0.212689415,0.50240308,-0.097512878,0.228540078,0.432097375,-0.131202489,0.106784061,0.664510012,-0.092339464,0.137095958,0.502598226,-0.152844489,0.200839669,0.426354557,-0.182047725,0.249229088,0.393134952,-0.196062356,0.131702036,0.742546678,-0.108083323,0.17184028,0.565929711,-0.179474041,0.243654966,0.477129579,-0.201330304,0.296064645,0.435112208,-0.206304595,0.176371664,0.798445284,-0.124751225,0.217465758,0.638475418,-0.194031522,0.282558084,0.548943639,-0.206619471,0.327162623,0.49613899,-0.201980263,0.229241729,0.833065629,-0.141650006,0.28571409,0.701644361,-0.193737045,0.330343217,0.613319814,-0.204972848,0.361255318,0.549517572,-0.203557998 +Left,0.273109019,0.854643643,7.38E-07,0.256357849,0.691591322,-0.026301302,0.236008659,0.575196624,-0.063490391,0.237526596,0.492473751,-0.09970057,0.254812568,0.42237252,-0.136268795,0.115957998,0.657813966,-0.099653378,0.153087646,0.496673375,-0.159367085,0.213641644,0.42270714,-0.187913299,0.258593678,0.388174236,-0.203476384,0.13473472,0.734385848,-0.117431521,0.174811348,0.56713891,-0.188771427,0.246815681,0.474268079,-0.211971164,0.300462574,0.426452279,-0.220150471,0.176740661,0.795141459,-0.135432184,0.212541983,0.647037446,-0.205990881,0.278049886,0.545903862,-0.221688017,0.324606955,0.485997647,-0.221583694,0.229132369,0.839691341,-0.153082073,0.279830754,0.721960068,-0.208887294,0.325791061,0.631737947,-0.223658338,0.35871911,0.568106592,-0.226640001 +Left,0.256141245,0.785821676,1.01E-06,0.266500026,0.776384592,-0.11029654,0.25065577,0.729123235,-0.189182565,0.265674144,0.641070127,-0.244492635,0.275587887,0.536624432,-0.297533393,0.138705194,0.73815155,-0.236651659,0.181662798,0.587913156,-0.323501199,0.245337248,0.513044715,-0.362697572,0.28496033,0.466658115,-0.384732515,0.144866377,0.70624876,-0.21336025,0.19901827,0.559313953,-0.314519256,0.274880022,0.481724501,-0.351203024,0.325310081,0.430339366,-0.370474964,0.170568809,0.671843648,-0.190490022,0.223449752,0.537775636,-0.278211802,0.289777458,0.463690192,-0.301865399,0.33712858,0.4194718,-0.309295714,0.207123786,0.641496539,-0.172076941,0.251935244,0.540644467,-0.242084458,0.304406285,0.481791109,-0.266695261,0.34210366,0.440994263,-0.277397066 +Left,0.264089406,0.809619844,1.20E-06,0.268303037,0.705270529,-0.081719242,0.251769871,0.625627577,-0.15763697,0.266268909,0.557638168,-0.216190889,0.278596103,0.485112309,-0.276777238,0.139931977,0.673458576,-0.232029319,0.186285451,0.530544877,-0.327437431,0.243000641,0.45692268,-0.374364823,0.283318877,0.411382437,-0.404282987,0.158850506,0.711271524,-0.232638195,0.206241012,0.571806431,-0.34657523,0.270250946,0.480652243,-0.391332924,0.315140575,0.411052078,-0.41898486,0.200096697,0.741497755,-0.232027188,0.240895078,0.618198276,-0.33379966,0.293356359,0.52737236,-0.368539155,0.331128955,0.459343374,-0.385991156,0.251086146,0.761315465,-0.232503355,0.2983585,0.692466617,-0.31855756,0.343636066,0.629235923,-0.356382996,0.371343851,0.57137382,-0.37932387 +Left,0.26427269,0.806323767,1.39E-06,0.275476277,0.790456831,-0.129270434,0.267679989,0.736405194,-0.218292326,0.293716192,0.649478972,-0.280366719,0.314182699,0.54298687,-0.34087199,0.147043183,0.723002493,-0.251144201,0.17919898,0.577183843,-0.34032312,0.228809059,0.492782354,-0.382434845,0.264614522,0.436918974,-0.405174702,0.16134119,0.695954919,-0.217141107,0.202919289,0.55185926,-0.320487797,0.265821338,0.463713646,-0.361543179,0.310405403,0.396827728,-0.382746488,0.197943449,0.670425296,-0.18385914,0.239008725,0.538319111,-0.273908466,0.288556516,0.465218067,-0.302584648,0.325394452,0.412350237,-0.312279493,0.239984855,0.645384967,-0.155695051,0.277816802,0.551072419,-0.223498896,0.316988081,0.507685006,-0.247477084,0.344896436,0.470342338,-0.257640213 +Left,0.263819456,0.876517177,6.01E-07,0.241922393,0.727805674,-0.019411948,0.222667262,0.614272237,-0.054454263,0.229591116,0.528349757,-0.089053333,0.248130158,0.45143795,-0.125950947,0.126723111,0.642123044,-0.10160768,0.173046887,0.489376634,-0.162579417,0.232335523,0.418145716,-0.191494927,0.276876122,0.371531695,-0.206145346,0.151100799,0.719496727,-0.122849569,0.203956351,0.564535916,-0.190356806,0.272401243,0.471582174,-0.210333496,0.322097987,0.405678093,-0.217062742,0.194033787,0.786703527,-0.143822789,0.238939092,0.657073498,-0.210343093,0.29742676,0.561757922,-0.224987045,0.33890304,0.492587358,-0.225144774,0.244870186,0.840175927,-0.1639283,0.305119544,0.753104508,-0.213666171,0.350187957,0.681660354,-0.224694937,0.380763888,0.624916375,-0.225880459 +Left,0.281613618,0.888667941,6.32E-07,0.306390047,0.70934701,-0.00363121,0.303423643,0.577514946,-0.027346365,0.309272856,0.490132272,-0.054419927,0.325880527,0.419069171,-0.08470884,0.177668363,0.575337291,-0.07400085,0.223786399,0.439961076,-0.127975315,0.280275673,0.381753683,-0.162122294,0.329819232,0.347530574,-0.183793604,0.181896627,0.647099674,-0.100125864,0.234119475,0.501940966,-0.157088757,0.298887253,0.427554369,-0.185595736,0.352188855,0.384529501,-0.203733087,0.209430993,0.7251212,-0.124734126,0.24682945,0.599329054,-0.181680009,0.308091313,0.528998196,-0.204320669,0.357805103,0.484283119,-0.215268299,0.249105558,0.796248436,-0.147495076,0.297322601,0.71924144,-0.193291709,0.342321873,0.668092489,-0.20917815,0.380039155,0.630088627,-0.217622742 +Left,0.288850367,0.868270755,7.69E-07,0.338535428,0.700593472,-0.010580337,0.352759838,0.573954403,-0.039055984,0.370084643,0.493343234,-0.069714166,0.390448928,0.423690975,-0.104182787,0.225878894,0.544587493,-0.083468303,0.275927633,0.427267969,-0.141777217,0.329330921,0.378741443,-0.181723595,0.378030628,0.352194965,-0.208347335,0.219797701,0.614861429,-0.109026201,0.2725299,0.47543788,-0.171160296,0.336607784,0.417649925,-0.207678825,0.389987171,0.387007356,-0.232173637,0.235072374,0.696490943,-0.133529007,0.274395913,0.569097042,-0.194167569,0.333908588,0.507976234,-0.223739222,0.383374512,0.471623331,-0.24060522,0.265731454,0.774823189,-0.156643569,0.305334896,0.697415173,-0.205710039,0.348045111,0.652610064,-0.226822183,0.387898743,0.623044789,-0.240425631 +Left,0.304452628,0.863574743,7.65E-07,0.356320322,0.714493692,-0.00476226,0.371066242,0.590787709,-0.028730055,0.392884016,0.507407129,-0.055596821,0.417170763,0.429915607,-0.086950116,0.256138921,0.537852168,-0.072828718,0.308307201,0.432631969,-0.125762999,0.359847128,0.377512217,-0.160324648,0.406248331,0.343624413,-0.183842808,0.240263194,0.597967744,-0.100874849,0.28845343,0.458103001,-0.158688009,0.353451908,0.400694966,-0.191466227,0.406089038,0.36778304,-0.212816164,0.247311965,0.676974893,-0.127559036,0.282145143,0.548473537,-0.187619403,0.34257102,0.489076138,-0.214594141,0.388254434,0.447903812,-0.229081735,0.27039063,0.759208679,-0.152085558,0.302551091,0.680351913,-0.202651888,0.345193684,0.637672842,-0.22163935,0.38319093,0.60856241,-0.232949153 +Left,0.318621129,0.86380589,6.64E-07,0.37033385,0.747780323,-0.007662408,0.38745147,0.626317203,-0.030457914,0.413277566,0.541228294,-0.057423655,0.451804101,0.481923103,-0.089741521,0.310792148,0.532640994,-0.053786967,0.343666077,0.426928371,-0.104087561,0.385334313,0.38012439,-0.140858486,0.430214733,0.352755308,-0.165590018,0.284854352,0.574466407,-0.078526318,0.313101292,0.450493574,-0.131869748,0.367207646,0.401980281,-0.165908679,0.417098492,0.381483793,-0.187439233,0.269892842,0.647284567,-0.103785679,0.283516556,0.52758956,-0.159711272,0.333581954,0.478695184,-0.188813433,0.3772223,0.446417868,-0.204415739,0.268091589,0.735374689,-0.12772876,0.284110665,0.66331166,-0.176921144,0.321627855,0.62748152,-0.198266327,0.359540492,0.602843761,-0.210669219 +Left,0.324726671,0.900976658,5.13E-07,0.379620701,0.804815054,-0.009182039,0.405001879,0.680662096,-0.025958912,0.436645895,0.595413804,-0.045958061,0.475576758,0.541217864,-0.069561958,0.351064801,0.577238262,-0.040435698,0.379141092,0.47301656,-0.080563642,0.417925775,0.435058653,-0.109852076,0.457843125,0.413265139,-0.129985243,0.323033333,0.597707748,-0.059705749,0.346370846,0.470009714,-0.101839021,0.395210177,0.428221643,-0.128109649,0.441251338,0.408425629,-0.145046622,0.298047036,0.648794174,-0.080277115,0.306915671,0.525684476,-0.123889297,0.354235053,0.48359549,-0.145082518,0.399413228,0.455943942,-0.156760767,0.279486537,0.720202923,-0.100748345,0.284020424,0.642122149,-0.140652299,0.315630049,0.606627882,-0.157892749,0.352055281,0.581356704,-0.167899758 +Left,0.321684688,0.927527726,4.91E-07,0.380221188,0.851144731,-0.013494852,0.415537417,0.729822159,-0.028205555,0.453345954,0.649837017,-0.044659901,0.497203201,0.599830747,-0.062944405,0.369599432,0.607483447,-0.028315358,0.407576263,0.513410091,-0.061636038,0.446292013,0.494676888,-0.086488992,0.484921157,0.491419256,-0.103406958,0.340849459,0.615126073,-0.042824309,0.365754187,0.487905741,-0.075785816,0.410510808,0.449284643,-0.097447947,0.454940021,0.434663177,-0.111407697,0.310305387,0.655181766,-0.060133673,0.315385491,0.520922065,-0.096091568,0.356257319,0.482978642,-0.115190476,0.399558514,0.463200986,-0.125831962,0.28117457,0.718465567,-0.078011125,0.271709353,0.635983586,-0.114118129,0.294818938,0.597723424,-0.130918398,0.327756852,0.574055314,-0.14037092 +Left,0.314345002,0.953092813,4.20E-07,0.376568109,0.886668563,-0.013752919,0.418035746,0.764737606,-0.024091806,0.454035223,0.683099389,-0.037453946,0.501535058,0.639333785,-0.051550403,0.380730569,0.625153601,-0.007029408,0.421272635,0.542254448,-0.035466213,0.453106523,0.529248714,-0.059574675,0.489326239,0.529674292,-0.076832563,0.347177446,0.621035159,-0.020422157,0.371873289,0.514157951,-0.047425959,0.404290587,0.469253838,-0.068171851,0.444172978,0.440046966,-0.082565784,0.312138647,0.651502132,-0.038751353,0.319225341,0.537459493,-0.068576828,0.346210182,0.487881839,-0.087777048,0.384396791,0.450872034,-0.099909924,0.27762574,0.70945549,-0.058619797,0.260179132,0.628215373,-0.088082992,0.270614624,0.578623176,-0.10394226,0.295377314,0.538642645,-0.114282526 +Left,0.29821831,0.968412161,3.88E-07,0.364040703,0.914803684,-0.012276959,0.41383931,0.797166288,-0.019616256,0.453268886,0.715389132,-0.030178133,0.500210106,0.672434032,-0.040349785,0.388744354,0.65151757,0.001664105,0.428589404,0.569951773,-0.023678852,0.459145457,0.557569385,-0.045569565,0.493877351,0.558697879,-0.06094411,0.352638453,0.631825566,-0.010632798,0.380520999,0.525306582,-0.032910913,0.411134362,0.476011634,-0.04984903,0.44897151,0.443145841,-0.061702963,0.312794209,0.64569211,-0.028495807,0.32377708,0.533604383,-0.053196616,0.348509938,0.477028072,-0.06841097,0.38573879,0.431965947,-0.078316085,0.272261113,0.688496649,-0.048270591,0.258459508,0.604722083,-0.071598954,0.263888657,0.546226978,-0.083492994,0.282987922,0.494542003,-0.091672793 +Left,0.289965838,0.972260416,3.52E-07,0.355376154,0.924735069,-0.01287363,0.407870859,0.814447403,-0.019201195,0.44709906,0.733911753,-0.028255686,0.491437674,0.691148341,-0.036776513,0.386586726,0.661767721,0.001058827,0.425428271,0.586648047,-0.022536796,0.454304636,0.572281957,-0.043126311,0.487204343,0.569396734,-0.057765033,0.34814927,0.635399282,-0.009979461,0.37470603,0.529687524,-0.031081932,0.402763754,0.482048243,-0.046891909,0.438084871,0.450172663,-0.057924069,0.306496859,0.642564714,-0.026367167,0.316962689,0.534161925,-0.05007121,0.338314503,0.478577256,-0.064891391,0.372443855,0.43554011,-0.074529342,0.263858974,0.679567158,-0.044690583,0.249649495,0.595123053,-0.067073345,0.25232479,0.536916256,-0.078604378,0.268918216,0.48512283,-0.086463481 +Left,0.280418724,0.970674574,3.69E-07,0.346157432,0.92772603,-0.014770427,0.399115503,0.821334839,-0.022250099,0.43594116,0.740359545,-0.031692065,0.480547845,0.698521078,-0.040385637,0.381619692,0.66035533,-0.000494079,0.418219805,0.585444272,-0.023288254,0.445832431,0.570159853,-0.04420568,0.476064384,0.565553904,-0.059046052,0.340801895,0.628906786,-0.009973935,0.364102095,0.520916522,-0.028868018,0.389946312,0.472224712,-0.044608962,0.421765178,0.437083483,-0.055934779,0.29734984,0.632359684,-0.024631169,0.305785388,0.52224791,-0.04595248,0.323647022,0.464703143,-0.060737696,0.352932066,0.417520195,-0.070735551,0.253113091,0.667109966,-0.04128582,0.238626927,0.580753386,-0.061609011,0.236495867,0.51982826,-0.072357014,0.245963931,0.462389737,-0.079698987 +Left,0.272441715,0.960055172,3.23E-07,0.340387076,0.910671234,-0.015081393,0.39242512,0.802298009,-0.023973892,0.427009553,0.716537178,-0.034907442,0.474251598,0.67409128,-0.045266218,0.37668547,0.639290631,-0.004507907,0.408714682,0.560186505,-0.029818635,0.434484959,0.540582299,-0.051861219,0.463344812,0.53069067,-0.067399397,0.334653437,0.609170258,-0.014985003,0.35508135,0.494561702,-0.036010999,0.377730966,0.44239974,-0.051516995,0.406240761,0.399637967,-0.062545083,0.289742857,0.61503458,-0.030707739,0.293108135,0.502309442,-0.0543577,0.30520919,0.438965827,-0.068404615,0.328551412,0.381467313,-0.077442862,0.243684083,0.653558433,-0.048436165,0.226662129,0.559836209,-0.070440993,0.21905309,0.493984103,-0.080899626,0.221170932,0.426561862,-0.087793037 +Left,0.268859386,0.938442111,3.51E-07,0.338323265,0.890290678,-0.015628697,0.389741957,0.78844285,-0.023830062,0.424231112,0.702899814,-0.034298934,0.471813023,0.661132097,-0.044179838,0.384784549,0.623654246,0.003061889,0.415139467,0.547860205,-0.017970208,0.440446496,0.522301853,-0.039144333,0.466987073,0.503689945,-0.05465031,0.340231836,0.583769917,-0.006100321,0.361394852,0.473135829,-0.021789199,0.381782442,0.416505903,-0.037085548,0.40544647,0.364198029,-0.048805229,0.293551505,0.58150667,-0.020643024,0.300959319,0.466442287,-0.039714955,0.311885625,0.399195701,-0.053281657,0.330807656,0.33722502,-0.062622048,0.244862705,0.6132043,-0.037470546,0.230772585,0.512310982,-0.056531608,0.225316688,0.443251729,-0.065576956,0.227682918,0.374074668,-0.071476609 +Left,0.247360572,0.922303319,3.02E-07,0.313727081,0.878974199,-0.020312807,0.363627136,0.7905671,-0.030396665,0.39484185,0.701947272,-0.042063456,0.44305414,0.656307459,-0.052685212,0.369179517,0.619867444,0.003927528,0.397119522,0.552218258,-0.016039928,0.41868791,0.522208691,-0.037415858,0.439938426,0.493162483,-0.05350212,0.326134622,0.572309494,-0.003504701,0.345511854,0.463066638,-0.018295167,0.361071467,0.402842581,-0.033517938,0.378290176,0.341996819,-0.045288838,0.278688461,0.563680947,-0.016984982,0.286472738,0.445328027,-0.037688527,0.293422163,0.373496622,-0.051815495,0.306375176,0.304425448,-0.060823735,0.227397054,0.590088546,-0.033060391,0.212976605,0.480581045,-0.054667309,0.205050021,0.408873975,-0.064036816,0.203132927,0.335256457,-0.069390751 +Left,0.234914973,0.936350107,2.78E-07,0.300155878,0.892259717,-0.020515321,0.348959416,0.7939924,-0.030073844,0.378035992,0.698485315,-0.040665828,0.425146341,0.650408804,-0.050612856,0.349240512,0.625735641,-0.000830247,0.373429656,0.552835286,-0.020475602,0.393921584,0.517271876,-0.040646583,0.41453594,0.483421445,-0.055988375,0.305073828,0.580808401,-0.007650062,0.322238237,0.467617005,-0.02286307,0.335881978,0.402913988,-0.037706237,0.349982262,0.338518083,-0.049038902,0.258214533,0.576093495,-0.019997576,0.263832897,0.452170312,-0.041184317,0.268245727,0.380275697,-0.055982649,0.277780414,0.31126973,-0.065374836,0.208616704,0.606046319,-0.034639183,0.19142881,0.496343374,-0.056584347,0.181381404,0.427316546,-0.066533349,0.175874799,0.357547611,-0.072330818 +Left,0.240226343,0.920638978,3.17E-07,0.305206478,0.843773246,-0.008879345,0.340401977,0.72309953,-0.010450417,0.353071153,0.626704097,-0.015359922,0.38305667,0.570407033,-0.020104073,0.322543621,0.584267497,0.012072377,0.340143383,0.503144443,-0.006175489,0.359503925,0.471967727,-0.025314728,0.382336259,0.444729447,-0.039405912,0.279346943,0.562856972,0.002002663,0.285248011,0.451895058,-0.012583947,0.298143834,0.388266534,-0.027265718,0.316036701,0.328214288,-0.038171172,0.236985058,0.576836944,-0.01291713,0.23097007,0.460615277,-0.031765189,0.239252612,0.394577414,-0.044406444,0.256427705,0.331605494,-0.05251836,0.193550408,0.622378051,-0.029424563,0.178797618,0.530901372,-0.047611892,0.178587824,0.471791565,-0.055653404,0.186881945,0.411538392,-0.060722981 +Left,0.278270245,0.872951269,3.44E-07,0.33100757,0.788949847,-0.009391643,0.352718115,0.662151814,-0.011694438,0.370609403,0.570291758,-0.016881991,0.402286738,0.515124619,-0.021668853,0.323163509,0.549212337,0.010539141,0.343394816,0.470725596,-0.009638008,0.368765205,0.439110011,-0.029472759,0.396024823,0.414835751,-0.043366302,0.288740784,0.534122527,0.00185597,0.299636215,0.428258985,-0.014005026,0.320105314,0.368009239,-0.027132215,0.343373537,0.314682126,-0.03644136,0.255803704,0.548955679,-0.011986095,0.25509429,0.435817957,-0.030952135,0.269295245,0.372901231,-0.040929366,0.289662331,0.318273336,-0.046781372,0.223424211,0.590699255,-0.027734997,0.216973275,0.505564928,-0.044491254,0.225077599,0.450535089,-0.050791349,0.240279227,0.39992398,-0.054671884 +Left,0.314585835,0.864278555,3.17E-07,0.363721251,0.779007673,-0.005364702,0.382722139,0.659540176,-0.008173215,0.40249154,0.574896336,-0.01463527,0.433677763,0.52045083,-0.021639453,0.352189481,0.563053429,0.006069207,0.370021701,0.487493098,-0.015996633,0.399473637,0.459710538,-0.036000431,0.429725617,0.442905962,-0.049750026,0.324470699,0.554381132,-0.004696905,0.334617138,0.446973622,-0.024376135,0.361312747,0.393198252,-0.039417468,0.390777856,0.355200291,-0.049868256,0.297644883,0.574092925,-0.019639075,0.295625985,0.458627313,-0.043233,0.318933159,0.402361035,-0.056621879,0.347804189,0.364074707,-0.064282276,0.271929383,0.615789175,-0.035580453,0.273863286,0.533200622,-0.058139529,0.291832864,0.483107388,-0.06887763,0.31641835,0.445923299,-0.075431257 +Left,0.33044222,0.85629338,2.79E-07,0.37651813,0.782204449,-0.005101482,0.396863222,0.673616648,-0.00796307,0.414539784,0.595925093,-0.013942749,0.443738669,0.548790693,-0.020029783,0.370274901,0.576297343,0.007768874,0.389862835,0.510848701,-0.01132541,0.416682899,0.485533595,-0.029379878,0.442909867,0.467931986,-0.042141251,0.344063103,0.567708194,-0.002162754,0.356278718,0.471993864,-0.018962719,0.382230282,0.429855704,-0.031177545,0.409484357,0.398604333,-0.039645553,0.318522632,0.58457613,-0.016137546,0.320417583,0.480259061,-0.037579499,0.34561798,0.43428877,-0.047873594,0.374205351,0.400495738,-0.053449426,0.293680519,0.622647047,-0.031104712,0.298831403,0.550978065,-0.052083462,0.319236994,0.512180507,-0.060400732,0.344188154,0.482228011,-0.065060213 +Left,0.349229395,0.832454443,2.98E-07,0.390684903,0.768274784,-0.004376682,0.406308204,0.662198663,-0.006529991,0.423893362,0.586743593,-0.01136517,0.451213837,0.540138841,-0.016365804,0.38049373,0.57431972,0.003720154,0.399776876,0.509888351,-0.013549331,0.426287115,0.484444112,-0.028956315,0.451481164,0.469421327,-0.0397131,0.355470598,0.567579627,-0.005414511,0.365371495,0.471861094,-0.022698456,0.39231953,0.431975693,-0.03428252,0.419624358,0.407419026,-0.041175045,0.331501544,0.585506439,-0.01772392,0.331832319,0.48589325,-0.039920341,0.358824253,0.443274111,-0.051312197,0.388602942,0.413932383,-0.056853667,0.309694558,0.622608066,-0.030517749,0.318564355,0.562041163,-0.053192846,0.340272218,0.528400421,-0.063312948,0.365379661,0.502919555,-0.068553887 +Left,0.354841053,0.797100604,2.89E-07,0.396734655,0.738528967,-0.007136439,0.412451982,0.638951004,-0.008847843,0.428700447,0.566920877,-0.012605413,0.456533551,0.524867833,-0.016227806,0.392706513,0.5529477,0.00899711,0.410416514,0.495272517,-0.005846665,0.431912839,0.470933706,-0.020707965,0.453599274,0.453000247,-0.031497236,0.368189603,0.541316211,0.002497495,0.38103354,0.458338857,-0.010039513,0.401165098,0.420102298,-0.020140279,0.423704326,0.389067739,-0.027170286,0.342938304,0.553395748,-0.007858215,0.346358359,0.460891664,-0.025192594,0.36491403,0.42081508,-0.033934597,0.38791281,0.389135718,-0.03868768,0.317495763,0.58492893,-0.019319,0.321589112,0.525674284,-0.036866952,0.337282807,0.491692483,-0.043893851,0.357549578,0.463639736,-0.047795624 +Left,0.345235437,0.803597927,3.25E-07,0.383809894,0.737313986,-0.009116932,0.400144815,0.633321404,-0.013097454,0.418139488,0.560511529,-0.018681072,0.448179245,0.520769298,-0.024030913,0.369692385,0.551887572,0.001761259,0.3851735,0.486898184,-0.015201102,0.408680677,0.460370004,-0.030427337,0.431773752,0.441664696,-0.041150369,0.344595522,0.55021441,-0.004696419,0.353318512,0.460704088,-0.02119733,0.377214879,0.426223993,-0.032209896,0.402452797,0.402863681,-0.038857616,0.321463227,0.570985019,-0.01470429,0.32148239,0.478562802,-0.035221469,0.344287097,0.444243312,-0.044491328,0.370470136,0.421933711,-0.048594117,0.299773574,0.610034227,-0.025944911,0.304032296,0.548698306,-0.046373434,0.322439969,0.513991416,-0.05540185,0.344912738,0.486278296,-0.060021985 +Left,0.338958591,0.804903626,3.58E-07,0.375545174,0.730281115,-0.007266521,0.388094306,0.623137534,-0.013140371,0.404147506,0.552896619,-0.021600153,0.433143348,0.509589434,-0.030536616,0.348446518,0.543777406,-0.001966291,0.363724142,0.477324605,-0.022149721,0.387784183,0.44358027,-0.039832994,0.411329567,0.420289516,-0.05239087,0.325736016,0.55185318,-0.011053269,0.340010971,0.469522119,-0.03274399,0.369484901,0.437607408,-0.047911864,0.398588806,0.419800341,-0.05700298,0.305871427,0.579897106,-0.02313005,0.313774854,0.494813055,-0.047588561,0.344473749,0.464349568,-0.059446584,0.376045555,0.446577847,-0.064950965,0.290329695,0.623869836,-0.036073867,0.305269659,0.567418635,-0.059769601,0.329283535,0.540499032,-0.07055065,0.354985207,0.520358264,-0.075978562 +Left,0.331221312,0.815662086,3.61E-07,0.368194818,0.72400409,-0.001562523,0.378258079,0.623765171,-0.009829245,0.394453585,0.554633021,-0.021626201,0.424588561,0.511057734,-0.034790654,0.319959044,0.553704441,-0.010532857,0.344379276,0.482455254,-0.035411693,0.375359833,0.448862255,-0.055696316,0.404853463,0.430263549,-0.070258878,0.301522166,0.570449173,-0.024760053,0.33002162,0.481090575,-0.052660391,0.367975533,0.451481879,-0.071882688,0.400878608,0.44029513,-0.083726875,0.290728211,0.606777489,-0.040321894,0.314917564,0.520700574,-0.067204423,0.351869017,0.486494035,-0.081306033,0.384753346,0.466511726,-0.088720426,0.28868255,0.656889796,-0.056122713,0.309265494,0.597199202,-0.080394439,0.333341599,0.560253739,-0.092716731,0.358079404,0.530368745,-0.099860936 +Left,0.313697845,0.82344377,3.85E-07,0.361987114,0.721978724,0.002352175,0.375204027,0.62461257,-0.004983437,0.389446676,0.557136714,-0.015895428,0.410788924,0.50559628,-0.028107729,0.305532038,0.550022602,-0.012245623,0.343887597,0.487179577,-0.037293561,0.377344489,0.452063769,-0.057683963,0.407753348,0.428993315,-0.072334066,0.289062351,0.572564244,-0.028626969,0.332998693,0.486695796,-0.056190334,0.372884035,0.45471248,-0.074065194,0.40686512,0.439992309,-0.085113913,0.285399318,0.615251064,-0.045673378,0.325372308,0.534347296,-0.07230176,0.361911088,0.496367633,-0.084682472,0.391796798,0.470689267,-0.091005847,0.293332845,0.669754207,-0.062487993,0.323273063,0.604308069,-0.084559843,0.346221387,0.563933432,-0.093951769,0.367338836,0.531032681,-0.099307783 +Left,0.303279668,0.826967061,4.16E-07,0.360055923,0.727441192,0.003579786,0.372924656,0.647253633,-0.005242477,0.384469211,0.591749072,-0.017889403,0.390700132,0.539433062,-0.032610413,0.294419259,0.560505033,-0.022409003,0.337762386,0.481685042,-0.049789026,0.374209493,0.447671235,-0.072014205,0.407271534,0.423505068,-0.088639565,0.284885854,0.582884431,-0.041336089,0.335922897,0.482979208,-0.070023425,0.378415436,0.446892679,-0.091665946,0.414156616,0.421055436,-0.107441343,0.287826687,0.624085903,-0.059925679,0.332334161,0.531546652,-0.086810999,0.371901244,0.489345431,-0.103458524,0.403299093,0.459598184,-0.114869192,0.302725732,0.676742733,-0.077754132,0.332082152,0.606932223,-0.100277044,0.356286108,0.564354539,-0.111701921,0.378804564,0.53126955,-0.120150156 +Left,0.302062511,0.817626297,4.60E-07,0.359398693,0.717759192,0.001852831,0.368597627,0.63014698,-0.007785987,0.378232539,0.566020072,-0.021005468,0.390873075,0.512472153,-0.035808258,0.291135281,0.561117828,-0.02573375,0.333512574,0.47187379,-0.055660691,0.372449994,0.434261203,-0.077556551,0.406124622,0.409062177,-0.092918344,0.284016341,0.587310791,-0.043572359,0.333273053,0.47647959,-0.075219311,0.378087401,0.437889755,-0.093981847,0.413891196,0.411997914,-0.106129207,0.290157676,0.629153252,-0.061645634,0.334301203,0.527227998,-0.091328174,0.375215173,0.482191533,-0.105459653,0.40656054,0.449445188,-0.113664404,0.308127135,0.679356158,-0.079096384,0.33940208,0.610099018,-0.103353679,0.363421619,0.567778051,-0.11403358,0.384732127,0.53362143,-0.121058971 +Left,0.295902193,0.797117651,5.61E-07,0.297464728,0.695682287,0.005013588,0.301333427,0.598543525,-0.005501466,0.320999295,0.528303742,-0.018551026,0.346736342,0.48570478,-0.033031002,0.277201951,0.551935613,-0.032956764,0.328579873,0.448538929,-0.059570108,0.367914706,0.407257438,-0.075543366,0.397203982,0.383130521,-0.085141763,0.285138994,0.58691591,-0.049114414,0.343408704,0.475133985,-0.07339029,0.387428641,0.426219642,-0.083594382,0.419730455,0.396362484,-0.090214215,0.301267743,0.632715821,-0.064103834,0.354474068,0.528891087,-0.084933504,0.393832475,0.475430757,-0.092032731,0.423331529,0.434999377,-0.09644644,0.325418949,0.682053328,-0.078126594,0.368274063,0.616500199,-0.093680769,0.394679099,0.580937743,-0.096960731,0.416291147,0.551500142,-0.098485693 +Left,0.289137661,0.803164124,6.41E-07,0.282997429,0.700251102,-0.002649345,0.294175476,0.600358725,-0.014098708,0.322452605,0.527011871,-0.025822219,0.348882943,0.476240188,-0.037049368,0.279387683,0.56027019,-0.03602064,0.323508888,0.446516097,-0.060984321,0.356574446,0.391752034,-0.07451205,0.38260904,0.353951037,-0.082234725,0.293369591,0.598970056,-0.046764355,0.352254838,0.485610515,-0.07079275,0.395405471,0.429623753,-0.079859659,0.428050101,0.390545487,-0.085068516,0.314612776,0.644794762,-0.056985218,0.372709125,0.546315193,-0.078112826,0.412297666,0.491324455,-0.083713576,0.442059219,0.448622227,-0.086381674,0.341681778,0.693960905,-0.066964619,0.395080864,0.637467027,-0.082856409,0.426468074,0.605635107,-0.085826665,0.451614022,0.57716924,-0.086395621 +Left,0.30767712,0.840159774,4.72E-07,0.373406172,0.739351451,0.003260508,0.392141223,0.650182307,-0.008020156,0.407651782,0.589036107,-0.024349991,0.426843464,0.53536731,-0.041352767,0.308258235,0.555476904,-0.021618716,0.3370758,0.455578983,-0.050141383,0.367522717,0.398607135,-0.069611996,0.395051301,0.359029055,-0.082376249,0.294596821,0.579047859,-0.040205691,0.356885403,0.477374822,-0.075059704,0.412715435,0.476796657,-0.090142272,0.449927062,0.496306032,-0.095822744,0.297067642,0.623882294,-0.058661096,0.356936425,0.540746927,-0.089844458,0.409513712,0.537448645,-0.09539637,0.444347441,0.548730195,-0.09415675,0.311135232,0.679484248,-0.076731652,0.361255825,0.622029305,-0.097921655,0.401980579,0.609353125,-0.099635191,0.432249486,0.608335495,-0.097646311 +Left,0.317397773,0.854764521,2.91E-07,0.377842009,0.761488676,0.007141287,0.407746375,0.670525849,-0.004010264,0.434962243,0.617508471,-0.021878829,0.461637199,0.579945505,-0.041103333,0.334984988,0.543489814,-0.012111492,0.351663768,0.445899934,-0.037980005,0.380234122,0.392251879,-0.057042181,0.406604588,0.351209819,-0.070992023,0.312610269,0.564765215,-0.034517068,0.365269899,0.47578752,-0.072450198,0.419119328,0.510827124,-0.090048388,0.449475646,0.555798948,-0.096869402,0.303841829,0.610226512,-0.05663589,0.349648386,0.527778268,-0.089656122,0.406643808,0.547054887,-0.095157377,0.442663461,0.578496158,-0.093396567,0.306762159,0.672788978,-0.078184173,0.345232338,0.609319746,-0.10145884,0.389331818,0.602591753,-0.104996853,0.422833979,0.608014166,-0.104397349 +Left,0.329972088,0.846227884,2.44E-07,0.380572379,0.768943191,0.004982905,0.409612864,0.683513701,-0.004788575,0.433920771,0.628970981,-0.021118103,0.462564826,0.589236856,-0.039413366,0.360788733,0.557332218,-0.007421063,0.368380427,0.454642653,-0.030333538,0.393842041,0.397890091,-0.04805477,0.415806055,0.35236913,-0.06068559,0.340428025,0.572606802,-0.02723591,0.37049377,0.47189334,-0.063730776,0.420798093,0.503745914,-0.083312482,0.447929621,0.553231359,-0.090542436,0.324770153,0.60691762,-0.046894241,0.348169386,0.511217594,-0.07697551,0.400551319,0.530610025,-0.083983526,0.432423532,0.570605516,-0.082849234,0.312446028,0.659369171,-0.06623479,0.330364227,0.581117988,-0.08835382,0.371770322,0.57404089,-0.092993483,0.404519409,0.588466942,-0.092664592 +Left,0.339375407,0.856340468,1.96E-07,0.386804551,0.802422225,-2.78E-05,0.417503387,0.715036154,-0.006125244,0.436067998,0.652607143,-0.017508868,0.456267834,0.603819311,-0.029932151,0.390237212,0.585412741,-0.001453791,0.39738819,0.479115546,-0.019536292,0.420556843,0.4228881,-0.033071946,0.439419687,0.374721766,-0.042329952,0.367039502,0.587650299,-0.016635865,0.374317497,0.4604339,-0.046823971,0.417464674,0.491960347,-0.062996149,0.44124186,0.54893887,-0.067469545,0.345543057,0.607400537,-0.032498952,0.351969808,0.494460553,-0.059799548,0.398325801,0.524361789,-0.06555634,0.424158305,0.575840116,-0.062638186,0.323666155,0.640731215,-0.048522577,0.330860913,0.546329916,-0.06935291,0.368274391,0.547767997,-0.072872326,0.395786583,0.575839043,-0.071119599 +Left,0.344332039,0.857470632,1.49E-07,0.390714109,0.809617281,-0.006293003,0.422102928,0.727377415,-0.013875601,0.435431451,0.663871706,-0.025169654,0.446008861,0.607751191,-0.03715134,0.398978323,0.585722566,-0.006519916,0.407910943,0.477388322,-0.02269543,0.428159803,0.427800059,-0.034897048,0.444962054,0.383043587,-0.043310381,0.372302473,0.585790634,-0.018042257,0.380541325,0.461692691,-0.046763156,0.416792691,0.499431521,-0.062265873,0.436195493,0.561152577,-0.06640406,0.347772777,0.603704154,-0.030387022,0.352977574,0.487469256,-0.054095194,0.392892182,0.518418849,-0.059161384,0.414837122,0.573987782,-0.056732606,0.321857065,0.633769035,-0.043733217,0.323728949,0.533505559,-0.062344894,0.356155068,0.531202316,-0.065868266,0.380891293,0.559407473,-0.064494334 +Left,0.341367036,0.861221671,1.84E-07,0.389813691,0.818201602,-0.009227772,0.426086247,0.741770387,-0.016821478,0.439856112,0.678861678,-0.027213631,0.456356734,0.621414483,-0.037493691,0.408729792,0.601390302,-0.002415529,0.422719449,0.504645288,-0.019504987,0.447208881,0.46816951,-0.034037478,0.466354251,0.447330892,-0.042671081,0.381079137,0.590811551,-0.010717494,0.39037326,0.4757514,-0.037081398,0.421553314,0.497546583,-0.053880841,0.439523637,0.556091487,-0.058879007,0.35417828,0.600141525,-0.020809507,0.360458463,0.488002539,-0.041548803,0.395378351,0.499248147,-0.049738947,0.418494672,0.548552513,-0.049681555,0.325102448,0.625137866,-0.032213967,0.324950159,0.530632854,-0.048761882,0.353252292,0.515672147,-0.054084174,0.379008174,0.538849771,-0.053615391 +Left,0.330507487,0.848047197,1.67E-07,0.380178928,0.808165371,-0.008606309,0.419318408,0.733323812,-0.015938381,0.436105847,0.669560075,-0.026150787,0.453801155,0.61137718,-0.036412347,0.406034589,0.595241964,-0.00329023,0.427241743,0.506596625,-0.021085642,0.453311205,0.482751787,-0.036490861,0.472040087,0.475422323,-0.045450397,0.379844397,0.580215216,-0.011630627,0.39625138,0.469107747,-0.036056474,0.428987145,0.482169807,-0.053280916,0.447881311,0.533419192,-0.059652925,0.352775991,0.585119903,-0.021797542,0.362862587,0.471755862,-0.041490272,0.39890191,0.478984982,-0.051200528,0.423816353,0.525395691,-0.053074993,0.323237658,0.607271791,-0.033158064,0.324285895,0.512118876,-0.049495749,0.35282436,0.494567156,-0.055571929,0.379688472,0.517562091,-0.056125779 +Left,0.329377353,0.826405644,1.70E-07,0.378950387,0.788835943,-0.007112647,0.419182807,0.716822267,-0.013553875,0.436648607,0.655339122,-0.022927493,0.454891056,0.600272417,-0.032326527,0.408303529,0.580406129,-0.002875997,0.427587122,0.491952538,-0.020826437,0.455515504,0.472671032,-0.036256228,0.475819349,0.467017889,-0.045151114,0.383590847,0.565424383,-0.011612904,0.40127033,0.453540802,-0.034402367,0.434971839,0.467403948,-0.049833685,0.453240186,0.515189886,-0.055454537,0.357533097,0.569647551,-0.022130564,0.369499445,0.456181914,-0.040256571,0.404340953,0.463608265,-0.047774684,0.426841348,0.506679952,-0.048501778,0.328441292,0.590334475,-0.033896949,0.331897616,0.494123101,-0.048970405,0.36063087,0.479006171,-0.053387508,0.386137873,0.502033114,-0.052870829 +Left,0.331141889,0.805315614,1.71E-07,0.38103199,0.771516144,-0.002787688,0.422147572,0.698084712,-0.008151916,0.4431943,0.638356805,-0.017875003,0.468174577,0.592677295,-0.028080542,0.411781847,0.570893586,0.001271451,0.435063928,0.481210619,-0.014435223,0.465727806,0.448147118,-0.027030798,0.489139259,0.420692503,-0.035568465,0.389893979,0.556468785,-0.01091865,0.41490218,0.445993841,-0.038373146,0.450985193,0.485804468,-0.05472777,0.466224611,0.545338988,-0.05961182,0.367240071,0.558394551,-0.024267184,0.386565715,0.446519583,-0.047112737,0.426112294,0.478910983,-0.053695086,0.446241051,0.532725394,-0.052515369,0.340870351,0.572438836,-0.038359571,0.353532046,0.476897985,-0.056712937,0.386536211,0.481706321,-0.061288536,0.410178959,0.515440702,-0.060730655 +Left,0.33409369,0.786463141,1.60E-07,0.385111213,0.756445169,-0.001616344,0.426814139,0.685828745,-0.006322279,0.449705869,0.631054401,-0.015400516,0.473721474,0.589094043,-0.024941487,0.415035546,0.556589603,0.001886045,0.438854635,0.466857493,-0.012944109,0.467352808,0.432422101,-0.024804404,0.48948434,0.402162403,-0.033334509,0.393589109,0.544038177,-0.011046613,0.420440584,0.436571389,-0.039430179,0.455884993,0.482371986,-0.055668153,0.471086591,0.543597162,-0.060168926,0.371723682,0.547417045,-0.024973918,0.391557574,0.43711555,-0.047987126,0.431869984,0.46973899,-0.054389719,0.453532994,0.521344006,-0.053189415,0.347030878,0.562169254,-0.039565474,0.360516638,0.469712228,-0.057677772,0.393506825,0.473950535,-0.06235886,0.417778224,0.504299104,-0.062177539 +Left,0.329432875,0.78783977,1.56E-07,0.383023947,0.754413784,0.00083951,0.424974978,0.686065197,-0.003708463,0.450065762,0.635883152,-0.013231419,0.476593077,0.598704517,-0.023315854,0.413398772,0.558705866,0.0020154,0.435065269,0.464061439,-0.01483022,0.464897871,0.43399924,-0.027549641,0.488140583,0.409828067,-0.036095683,0.391765296,0.549799323,-0.012670302,0.418795049,0.436594784,-0.042332776,0.456645668,0.484470785,-0.05882553,0.473002285,0.546498179,-0.063331597,0.369774789,0.55578655,-0.028229026,0.393119693,0.451518983,-0.053239513,0.434165061,0.492733061,-0.05912555,0.454875261,0.546469033,-0.056918751,0.345442474,0.572643042,-0.04416772,0.363827318,0.486224055,-0.063427836,0.397179872,0.49266389,-0.067776285,0.420202583,0.520071328,-0.067076325 +Left,0.321384966,0.770377338,3.07E-07,0.379024774,0.72332859,0.005627239,0.41838181,0.657408357,0.001801477,0.448133767,0.611742079,-0.008530744,0.476654828,0.57662636,-0.019343343,0.398263425,0.523181975,0.008182087,0.41902414,0.438918084,-0.007533656,0.446660668,0.411449313,-0.020583885,0.47113958,0.392310679,-0.029197168,0.378657371,0.516947627,-0.008382495,0.406379968,0.413352579,-0.025547275,0.44457525,0.400963098,-0.037373666,0.471020132,0.405905485,-0.044214409,0.35817945,0.529424667,-0.026468286,0.391642034,0.451541781,-0.047330506,0.431559026,0.49071601,-0.052917283,0.454145253,0.542543828,-0.052639246,0.338200599,0.559082627,-0.044543337,0.368538558,0.4984833,-0.061611254,0.403096676,0.517660022,-0.063991323,0.427646697,0.553174794,-0.062655129 +Left,0.324145377,0.730378509,1.76E-07,0.371742904,0.687716365,0.000252219,0.406538188,0.617827773,-0.005728616,0.431657344,0.565989077,-0.016625501,0.460514486,0.52814573,-0.027609374,0.38159287,0.497173846,0.001638426,0.397938401,0.400421798,-0.016059237,0.432023883,0.397370756,-0.030774117,0.45683378,0.411694854,-0.039991654,0.36469084,0.492389917,-0.01145984,0.384794056,0.3827537,-0.029050957,0.427624911,0.388438046,-0.04200571,0.45291543,0.41770792,-0.049820017,0.344767272,0.499542773,-0.026263677,0.367087752,0.399034262,-0.044136938,0.412504524,0.414296806,-0.050790109,0.439082116,0.448555619,-0.053467132,0.324651182,0.519878685,-0.041476361,0.34610939,0.445988357,-0.057571393,0.379455596,0.458402663,-0.059884269,0.400090098,0.494158387,-0.059409123 +Left,0.319020361,0.746588826,1.82E-07,0.368749529,0.695061922,7.86E-05,0.40124464,0.624673486,-0.006279729,0.429068148,0.580778539,-0.017669046,0.45677495,0.540343583,-0.028709451,0.363254994,0.520304859,0.011063644,0.397782326,0.450051814,-0.011034587,0.426814288,0.459833831,-0.029746501,0.448048294,0.487226248,-0.040115334,0.348659664,0.51465404,-0.003443361,0.388582468,0.442853332,-0.029988438,0.424024105,0.45432058,-0.047908854,0.449644923,0.484162778,-0.055052157,0.331193566,0.521781027,-0.021600384,0.362236202,0.429552138,-0.041258045,0.39866972,0.398252964,-0.0521047,0.429975986,0.385112941,-0.056486472,0.312798947,0.542226911,-0.04064836,0.320982724,0.459807247,-0.053662237,0.341863215,0.409664869,-0.059435438,0.366725147,0.375585645,-0.06241658 +Left,0.315061569,0.761678696,1.93E-07,0.368267417,0.718417764,-0.001531801,0.404203087,0.646763921,-0.004492086,0.434070349,0.598345757,-0.012028639,0.458007395,0.564061522,-0.020030741,0.372564107,0.532306671,0.005653365,0.396858394,0.446210057,-0.012169444,0.42800343,0.438810378,-0.026811205,0.453765005,0.448594153,-0.03518834,0.355590165,0.527997077,-0.007011393,0.383830577,0.437036246,-0.032317024,0.422958076,0.446152061,-0.051047616,0.450690955,0.474415839,-0.059526969,0.336090177,0.536517859,-0.022037471,0.368624002,0.454845697,-0.045282446,0.40975064,0.472403228,-0.056394979,0.439670086,0.501182258,-0.059229743,0.314198256,0.556185305,-0.037757643,0.325010836,0.472560346,-0.053434491,0.348298699,0.424650133,-0.060894415,0.373184115,0.391391903,-0.064633779 +Left,0.313301742,0.762446284,1.28E-07,0.366628349,0.717028499,-0.000926386,0.40096584,0.643553257,-0.003332482,0.429433197,0.594625175,-0.0103488,0.452038884,0.55830127,-0.016831534,0.369670242,0.528533995,0.008209063,0.390192538,0.440445155,-0.009091359,0.420414656,0.437506378,-0.022953281,0.445402235,0.452741295,-0.030324731,0.352396041,0.526116848,-0.004115291,0.378157377,0.446138054,-0.032179274,0.414425969,0.472143024,-0.051639978,0.437399566,0.511831462,-0.059260812,0.332329571,0.531462729,-0.018811779,0.360371709,0.449977517,-0.043665335,0.402732819,0.479248881,-0.054742463,0.432082564,0.518351972,-0.056580413,0.309931546,0.546315074,-0.034139682,0.316634178,0.461559355,-0.049334675,0.336711526,0.412058979,-0.056763247,0.359152615,0.374474287,-0.060390305 +Left,0.311444521,0.741526425,1.29E-08,0.362014592,0.698833168,-0.000934515,0.398642898,0.628631234,-0.005191704,0.425717652,0.578652203,-0.0142751,0.447768599,0.537094653,-0.022508835,0.370021313,0.509446502,0.008287598,0.387393117,0.427776456,-0.00742653,0.416041374,0.427938223,-0.018058743,0.438421667,0.44416824,-0.022442413,0.349471867,0.505816162,-0.003684305,0.380441993,0.444105566,-0.034873474,0.404503822,0.508922517,-0.051895332,0.411422849,0.569847286,-0.055063583,0.328088701,0.509029448,-0.017595734,0.358358294,0.437764615,-0.044898335,0.391358137,0.494314492,-0.051674485,0.408557713,0.54770875,-0.048097227,0.304077446,0.521598279,-0.03161373,0.314680815,0.437164068,-0.045569833,0.333644509,0.389307916,-0.049193487,0.352429658,0.34589988,-0.04901154 +Left,0.313490152,0.740929246,4.68E-08,0.360548049,0.699428856,-0.001497719,0.396474749,0.629402816,-0.009871067,0.42100805,0.58571738,-0.022784272,0.446161985,0.541523039,-0.034669578,0.361861944,0.51036638,0.010010355,0.385567933,0.426702321,-0.01005333,0.414386034,0.436678648,-0.02707787,0.435453653,0.464902818,-0.036658596,0.344089508,0.502862155,-0.004869459,0.377349824,0.435811251,-0.037411682,0.40582189,0.483665437,-0.054581687,0.42110613,0.541778564,-0.058038924,0.323680609,0.505129099,-0.023298806,0.347337842,0.405337274,-0.043439832,0.38099736,0.377987444,-0.050646272,0.407536387,0.366520762,-0.052025639,0.301152706,0.521508098,-0.042851593,0.305426836,0.43913275,-0.053203076,0.322813213,0.386976957,-0.055019218,0.342756391,0.34372741,-0.055552527 +Left,0.307404757,0.743640602,4.15E-08,0.354829073,0.701171041,-0.002004474,0.391616017,0.632090271,-0.009830561,0.415408909,0.588349044,-0.022134401,0.436875314,0.543278635,-0.033035263,0.357688129,0.509536862,0.010140548,0.38516283,0.429508358,-0.013490585,0.412033767,0.448745459,-0.033292223,0.431032121,0.487500429,-0.043364439,0.33856377,0.500827789,-0.003820584,0.373124003,0.436259091,-0.036040165,0.40169692,0.478444457,-0.054212611,0.419054061,0.530292869,-0.0586951,0.316633224,0.502397835,-0.021798326,0.340889812,0.40348053,-0.042322114,0.371665686,0.375064969,-0.051319104,0.397251964,0.361797988,-0.053724259,0.29241997,0.518927515,-0.040969305,0.296526819,0.437850952,-0.051511519,0.312001526,0.386641353,-0.054503486,0.331100553,0.343647659,-0.055690676 +Left,0.306004465,0.744950414,6.07E-09,0.352694273,0.702044725,-0.000758263,0.387306839,0.628538191,-0.008033812,0.407998234,0.583052993,-0.020334736,0.428863704,0.535836875,-0.031061476,0.350318611,0.50510788,0.013270942,0.37351191,0.431000978,-0.01055315,0.399949968,0.45652613,-0.030723225,0.419131249,0.493450105,-0.041228626,0.330516607,0.495413333,-0.00192285,0.35980165,0.429667383,-0.03540745,0.390322238,0.476769865,-0.053539746,0.410994917,0.527894437,-0.056902256,0.308174193,0.496283829,-0.021216301,0.325618148,0.398651093,-0.041920241,0.35385415,0.359467775,-0.050594307,0.377982348,0.331069499,-0.052223995,0.284405529,0.513428628,-0.041658424,0.2849828,0.431197554,-0.050490811,0.29653424,0.376879096,-0.051417198,0.310593188,0.328570366,-0.05111945 +Left,0.307014734,0.757098019,1.01E-07,0.352381468,0.707791328,-0.004098154,0.385372519,0.639384031,-0.01161805,0.402655452,0.586832106,-0.023554752,0.416512907,0.532223821,-0.034433778,0.351196855,0.522915959,0.006829353,0.374006718,0.445520103,-0.016666723,0.400706887,0.462127864,-0.03620632,0.418840855,0.499115139,-0.045133494,0.327489406,0.50874275,-0.003752798,0.351842672,0.431288421,-0.030309113,0.383646548,0.45045957,-0.047414262,0.405141354,0.496437788,-0.052337401,0.301919311,0.506314933,-0.017877594,0.309581161,0.405418962,-0.035054781,0.338658094,0.382952482,-0.044363968,0.364725709,0.393614411,-0.046354711,0.275277257,0.518431842,-0.033427477,0.266279012,0.433096081,-0.043752003,0.288497865,0.399622381,-0.047297545,0.318287611,0.396928161,-0.046867896 +Left,0.30724442,0.765083492,-1.07E-07,0.349481642,0.722395182,-0.007304341,0.38730979,0.659196198,-0.01758242,0.40736571,0.605667293,-0.03123669,0.403219819,0.553147316,-0.043216567,0.360808909,0.524221122,-0.00912789,0.379567981,0.439127713,-0.029969806,0.401776254,0.480357766,-0.045160823,0.402938068,0.531459391,-0.05081699,0.333560139,0.514112949,-0.017399712,0.348587543,0.414177448,-0.035384394,0.378706068,0.463157594,-0.045871004,0.382552862,0.526109815,-0.049379058,0.304646581,0.516184509,-0.027684299,0.311206549,0.400007963,-0.041529477,0.345717341,0.438395023,-0.04339445,0.356200755,0.499128342,-0.041502774,0.273453802,0.534135699,-0.039171904,0.274608254,0.436487406,-0.051707771,0.302832514,0.449280202,-0.051065866,0.318130344,0.496694475,-0.047277611 +Left,0.30555445,0.79063946,-1.11E-07,0.348789275,0.747878194,-0.010010471,0.388574004,0.68630302,-0.022768464,0.410227984,0.638600886,-0.0385006,0.404094815,0.581863403,-0.052715294,0.363831043,0.549533486,-0.017762939,0.37975502,0.451748669,-0.041974824,0.404512554,0.500910938,-0.057555661,0.405104995,0.558803618,-0.062651828,0.337490052,0.543966115,-0.025890531,0.352026373,0.433744788,-0.046915285,0.381512612,0.495153725,-0.05750807,0.381569684,0.562199891,-0.060606554,0.308344752,0.549264252,-0.035834882,0.316035569,0.433323681,-0.05046875,0.349269092,0.482871711,-0.050258867,0.356074899,0.546462893,-0.046949569,0.276318222,0.568048477,-0.047328044,0.27804777,0.468104184,-0.06054299,0.305623859,0.488202929,-0.058808658,0.317595452,0.538941383,-0.054054093 +Left,0.298766077,0.826189518,-2.30E-07,0.347557813,0.780466497,-0.006359796,0.387156665,0.718130589,-0.016604105,0.409668505,0.668148875,-0.030336997,0.405587882,0.612280726,-0.041638575,0.370979965,0.575749218,-0.010529725,0.387994319,0.484371483,-0.032505423,0.401829123,0.54960537,-0.045136828,0.393273354,0.606509984,-0.048858196,0.343521357,0.570013762,-0.020549232,0.361128747,0.46187225,-0.039576963,0.380954713,0.543974638,-0.047068581,0.373388737,0.608662486,-0.048096217,0.313119978,0.576075137,-0.032303758,0.325094998,0.473505139,-0.047574714,0.350332499,0.547174215,-0.043789532,0.347912431,0.609463155,-0.037504528,0.279513419,0.595508039,-0.045144241,0.29208979,0.5060727,-0.057098642,0.315641284,0.552302003,-0.050463933,0.317087412,0.609625459,-0.042277288 +Left,0.294302136,0.832280755,-1.50E-07,0.342093974,0.787730575,-0.007735358,0.381956577,0.725969911,-0.019490199,0.404856056,0.678445876,-0.034629561,0.403787196,0.619376779,-0.047542892,0.363828808,0.580844343,-0.014009481,0.38094604,0.479654729,-0.040160578,0.402643561,0.538902581,-0.055239826,0.399347544,0.598952651,-0.059443779,0.335973829,0.577623725,-0.024112299,0.352013379,0.46040076,-0.048355237,0.380320638,0.538422465,-0.058959644,0.378451467,0.606565237,-0.060821451,0.304935634,0.587091684,-0.036029067,0.316608757,0.483139366,-0.056338608,0.349266827,0.555339515,-0.05504819,0.352596045,0.61865592,-0.04894834,0.270329416,0.609954774,-0.048866488,0.284552932,0.521452785,-0.064117283,0.311588228,0.565630078,-0.059042174,0.316471159,0.620327175,-0.051085755 +Left,0.300393969,0.850356758,-1.75E-07,0.345315546,0.808701634,-0.007683725,0.385390013,0.750236213,-0.019359514,0.408845305,0.7047382,-0.034808271,0.411138833,0.64608866,-0.048489407,0.368019164,0.598242283,-0.010793387,0.387945056,0.5018785,-0.03942408,0.405719161,0.561845481,-0.057745922,0.403259009,0.622153103,-0.063682958,0.339243501,0.595339537,-0.02074662,0.358929306,0.487313867,-0.046951011,0.384328991,0.568599463,-0.058971927,0.383382499,0.640982628,-0.060873538,0.306887567,0.607584894,-0.033016607,0.321873039,0.512892604,-0.05552401,0.354217023,0.588775277,-0.055223279,0.360115409,0.65545845,-0.048666772,0.271731019,0.633964777,-0.04604223,0.285229713,0.548722088,-0.061416,0.311243445,0.593912184,-0.055909786,0.31759125,0.649525523,-0.047140934 +Left,0.300544709,0.868440628,-1.06E-07,0.344183177,0.825596035,-0.008884786,0.383471876,0.760512412,-0.020912759,0.408865303,0.714022756,-0.036628082,0.422192663,0.66302669,-0.050978538,0.361005485,0.620240211,-0.013624403,0.386593461,0.525434494,-0.042939566,0.408362627,0.581907928,-0.062053181,0.409717351,0.637442172,-0.069132708,0.33325392,0.618825316,-0.023232087,0.359523207,0.5166502,-0.051051829,0.391145408,0.589268565,-0.064902589,0.395189881,0.657554209,-0.068718299,0.301796138,0.632607698,-0.03522972,0.320164442,0.535310388,-0.060800962,0.359641045,0.605556726,-0.063593484,0.371852219,0.672760546,-0.059190225,0.267232865,0.661115408,-0.04782353,0.280403286,0.574480772,-0.066919386,0.309641987,0.615864992,-0.064659752,0.320690006,0.672614813,-0.058225647 +Left,0.292244583,0.876020491,1.33E-08,0.337947369,0.833113194,-0.008908738,0.376961321,0.761054039,-0.020127555,0.401645005,0.708541512,-0.035045557,0.423526466,0.663720787,-0.049473569,0.359462023,0.626106143,-0.011472703,0.37947017,0.529354572,-0.040650785,0.406197101,0.564224303,-0.061618615,0.42186597,0.611728191,-0.071255989,0.330568254,0.623523831,-0.020950934,0.35559836,0.528888285,-0.050394658,0.389172703,0.586265564,-0.066607177,0.402622342,0.646472096,-0.072621703,0.298515439,0.637295902,-0.032964461,0.316502988,0.54186064,-0.060064439,0.355932355,0.600803614,-0.06552057,0.375316948,0.662484765,-0.06337142,0.263097823,0.666201413,-0.045786399,0.274811566,0.585106432,-0.066936217,0.304660708,0.619074523,-0.068271153,0.322536379,0.669253886,-0.064610943 +Left,0.291867465,0.87704277,1.97E-08,0.335310102,0.833605051,-0.010718455,0.373268604,0.763955891,-0.023419319,0.398307472,0.715383828,-0.039630402,0.420419663,0.670216084,-0.055192459,0.355307221,0.619148135,-0.01214982,0.376169562,0.526634693,-0.042570215,0.404368103,0.561086178,-0.064081416,0.41969502,0.610022664,-0.073385723,0.325847626,0.617728829,-0.021535162,0.350157619,0.52466166,-0.05306625,0.385015279,0.590581477,-0.069604196,0.396542281,0.658699453,-0.074483179,0.293240547,0.633457899,-0.033559617,0.31246987,0.547594547,-0.063300729,0.351496041,0.616634011,-0.067861572,0.366188407,0.683582485,-0.06355489,0.257157475,0.662901759,-0.046341937,0.271477818,0.58251375,-0.068278357,0.298024535,0.625032544,-0.066754647,0.307987422,0.680453897,-0.060080469 +Left,0.297068328,0.866990328,-9.82E-08,0.342413604,0.829622865,-0.009949596,0.384509832,0.767096519,-0.023350397,0.412270486,0.725298107,-0.04009302,0.433815062,0.680745006,-0.055104222,0.370664507,0.613393784,-0.014477277,0.399119735,0.520818591,-0.046881445,0.424412131,0.583907902,-0.067814998,0.425902992,0.647736192,-0.075113788,0.340989739,0.609527171,-0.024563542,0.370821863,0.50848186,-0.054273158,0.400615752,0.594539225,-0.067375429,0.399323523,0.667594135,-0.06955608,0.307516426,0.623233438,-0.03730594,0.333556235,0.536632657,-0.06441357,0.367315918,0.618842363,-0.063715234,0.370900482,0.684616745,-0.055884026,0.270258337,0.650809586,-0.050826732,0.290110528,0.572227478,-0.069420591,0.315622061,0.620239556,-0.063007757,0.318320513,0.673518062,-0.052946851 +Left,0.295749277,0.861223698,-1.40E-07,0.344531775,0.821659327,-0.007376388,0.387483031,0.758388877,-0.019786773,0.415624559,0.716477036,-0.035926346,0.442391753,0.678169072,-0.05014972,0.378130734,0.605668783,-0.012478618,0.410009414,0.523438215,-0.043388501,0.43219009,0.595086873,-0.062668756,0.429391354,0.654734075,-0.069572128,0.348146111,0.598183393,-0.024073657,0.379684418,0.495376647,-0.052279405,0.408079326,0.588401973,-0.063602753,0.403981715,0.661350131,-0.064714313,0.31410557,0.610237241,-0.038014665,0.3408463,0.525460243,-0.064915866,0.375015765,0.61368978,-0.062845021,0.377864242,0.678762794,-0.054025527,0.276305974,0.638604999,-0.052362196,0.298984259,0.562448561,-0.071427822,0.32587707,0.616117001,-0.064089105,0.328632236,0.671058059,-0.053203024 +Left,0.299591273,0.841988683,-9.97E-08,0.346540958,0.801334858,-0.007433759,0.388892233,0.736122549,-0.018925717,0.414825648,0.689247072,-0.034154836,0.438999087,0.645477295,-0.047689419,0.375974178,0.578367054,-0.008282453,0.406037182,0.497978032,-0.036305271,0.426786304,0.560283542,-0.055732075,0.426023841,0.616784751,-0.063384943,0.345785022,0.569670677,-0.018588729,0.375088811,0.478364348,-0.042975221,0.404627323,0.557463169,-0.054712575,0.405914873,0.626339316,-0.057360634,0.31216833,0.582544625,-0.031397846,0.335053384,0.50018084,-0.055435564,0.371115237,0.578616142,-0.055595633,0.37923798,0.646094382,-0.049201202,0.275886446,0.614155114,-0.044777215,0.295867026,0.536790848,-0.063212544,0.323813379,0.587635934,-0.058353841,0.331142068,0.647714198,-0.049413774 +Left,0.295243561,0.824257076,-1.10E-07,0.342843175,0.781241536,-0.007906921,0.385155052,0.708676577,-0.019630212,0.411506444,0.655943215,-0.035216667,0.435460806,0.609452009,-0.049348496,0.369581014,0.563745797,-0.011980006,0.396183997,0.464983284,-0.041214705,0.420788407,0.521916568,-0.061006982,0.423674613,0.576995492,-0.068863161,0.339966923,0.557139575,-0.022449385,0.368478328,0.451088279,-0.049043529,0.400914997,0.528341591,-0.062031075,0.403831869,0.59758532,-0.065422051,0.307187319,0.56816572,-0.035238679,0.328722328,0.473249704,-0.059476398,0.367049426,0.546308398,-0.06061339,0.377027124,0.612523913,-0.055250991,0.270927995,0.594402552,-0.048739254,0.287431061,0.506211996,-0.066624023,0.318008929,0.548630595,-0.062639229,0.328722954,0.605434,-0.054877989 +Left,0.296871752,0.805604279,-8.02E-08,0.347075045,0.755466402,-0.005175303,0.385729313,0.67638129,-0.01649406,0.413007736,0.622348547,-0.032490727,0.438948214,0.577576637,-0.047924977,0.358976275,0.534606636,-0.013560109,0.379735708,0.428926289,-0.043305818,0.410907358,0.476772636,-0.063296534,0.422257006,0.529339433,-0.071755297,0.330650896,0.53775382,-0.025452392,0.355807841,0.438190341,-0.053868081,0.395473152,0.510007143,-0.067135483,0.404793024,0.575155675,-0.071290039,0.300394058,0.557821691,-0.039283711,0.321296692,0.465146661,-0.064696126,0.364320517,0.536189377,-0.065185621,0.378148496,0.601531863,-0.059760638,0.268148452,0.59242624,-0.053708974,0.284678906,0.50628674,-0.072712079,0.317646891,0.547728539,-0.068981394,0.330876708,0.604367793,-0.061600093 +Left,0.29169777,0.804059267,3.46E-08,0.346269041,0.733247161,-0.002823973,0.382912338,0.648504794,-0.015995916,0.412743688,0.596447766,-0.03488576,0.439892769,0.545506775,-0.053054627,0.330499411,0.498944074,-0.010018621,0.358139634,0.41590476,-0.04316153,0.398374826,0.457698554,-0.067186132,0.41759342,0.508732796,-0.078806676,0.300942481,0.507812858,-0.024799585,0.338630438,0.444411218,-0.057183731,0.38702935,0.510929286,-0.07368356,0.402113885,0.573628306,-0.079943344,0.274866104,0.542195797,-0.041726992,0.309208691,0.477856219,-0.071287505,0.359908938,0.542992949,-0.073395237,0.378724575,0.603835225,-0.068222769,0.251978636,0.594603777,-0.059235297,0.281329721,0.537594199,-0.082032628,0.321777493,0.575019836,-0.080576465,0.341925442,0.622302413,-0.073792309 +Left,0.280628562,0.790260613,5.73E-08,0.338310033,0.708829582,0.000502334,0.371661663,0.615107,-0.011029094,0.401074409,0.556707978,-0.029175516,0.428744286,0.510748804,-0.046848986,0.308919817,0.466958761,-0.006184131,0.338735372,0.392833292,-0.040769134,0.383788705,0.430234402,-0.067227043,0.410357237,0.47669518,-0.080814265,0.280159175,0.481868654,-0.022097919,0.326373845,0.430673927,-0.056190189,0.379225522,0.493871242,-0.073325649,0.399626464,0.554394603,-0.079949528,0.259208173,0.521416068,-0.040200915,0.301701993,0.465454429,-0.070349641,0.355422974,0.524460971,-0.072732203,0.378822386,0.583366752,-0.067615025,0.244647056,0.578187823,-0.058895294,0.281081021,0.53248018,-0.081168644,0.322356462,0.561342597,-0.080979988,0.345673501,0.600223303,-0.075152285 +Left,0.275042772,0.779510915,5.46E-08,0.334246725,0.685489655,0.004310804,0.364892423,0.593652725,-0.008293017,0.393729031,0.535135627,-0.027762698,0.423136383,0.487722069,-0.046651009,0.286613882,0.462113768,-0.010648905,0.327730894,0.380810022,-0.044809375,0.376958698,0.413361549,-0.069469251,0.403275728,0.456045926,-0.082419537,0.26149714,0.482716799,-0.029474638,0.320198923,0.413590133,-0.06227218,0.376872808,0.470289707,-0.077346347,0.396576345,0.525848091,-0.083589412,0.249344349,0.527109861,-0.049579009,0.302710921,0.455157161,-0.078969687,0.358417481,0.505455375,-0.07916376,0.380027592,0.558224142,-0.073455043,0.246704578,0.58456552,-0.069756702,0.287556261,0.52640897,-0.090983011,0.327992022,0.546354771,-0.08885023,0.348611444,0.578505516,-0.082587697 +Left,0.270968169,0.766181231,1.06E-07,0.32908991,0.659596324,0.008030504,0.355391741,0.568564713,-0.003785383,0.384397388,0.511243641,-0.022687515,0.413203716,0.464440793,-0.041183397,0.259659588,0.451767921,-0.010036231,0.310104132,0.366253525,-0.041990127,0.362733394,0.392660528,-0.066067033,0.390771836,0.429779083,-0.079662487,0.241682529,0.474797696,-0.031202206,0.307822049,0.390229404,-0.06071277,0.366708755,0.429028332,-0.076682672,0.391208172,0.475249022,-0.084911309,0.239446715,0.519050062,-0.052772943,0.296330005,0.438179314,-0.078396685,0.35463497,0.470182538,-0.080302127,0.381217301,0.512098134,-0.077425435,0.248908281,0.573665559,-0.074091375,0.289346457,0.507535577,-0.091356777,0.32955727,0.518624127,-0.08851479,0.352945894,0.546683788,-0.083156057 +Left,0.270813376,0.765867412,7.92E-08,0.325017095,0.663892627,0.012179386,0.350527942,0.571147084,0.002632632,0.378463984,0.513997912,-0.014902619,0.410382986,0.47803095,-0.032898329,0.262282014,0.449421763,-0.005952191,0.302950442,0.361148238,-0.035585318,0.352567762,0.381313503,-0.058206316,0.379968643,0.416941285,-0.070965134,0.243231326,0.472008675,-0.029204709,0.298115104,0.38574779,-0.056494251,0.356932908,0.412701428,-0.072263733,0.3847543,0.455899,-0.080590889,0.237551123,0.515015125,-0.052551214,0.284407258,0.431576759,-0.076498836,0.344662845,0.451557696,-0.080307141,0.377194762,0.487553239,-0.079138741,0.244225591,0.570665598,-0.075288832,0.280304879,0.501723051,-0.092146203,0.323384076,0.505110443,-0.090876579,0.352564186,0.5278759,-0.086861946 +Left,0.261834115,0.771488011,7.63E-08,0.317437261,0.66275543,0.012965539,0.340970933,0.571919441,0.003842728,0.364948153,0.512917757,-0.013730705,0.390797019,0.474641085,-0.031537335,0.251563191,0.454996586,-0.004440508,0.287677407,0.355808586,-0.035180032,0.336810619,0.369706184,-0.057917245,0.365589023,0.405315399,-0.07032875,0.234515741,0.476463348,-0.028370164,0.287020624,0.376405984,-0.059047595,0.346780449,0.398979217,-0.076620758,0.377246022,0.444856048,-0.08490333,0.231092811,0.516632915,-0.052494224,0.276463717,0.424116552,-0.078175135,0.336856067,0.437360048,-0.083796799,0.372017264,0.471976995,-0.083148636,0.239733651,0.569821835,-0.076010451,0.275240242,0.49727118,-0.094502784,0.318255007,0.492223471,-0.095672287,0.349985987,0.5081141,-0.093043387 +Left,0.278886557,0.760942578,6.30E-08,0.321768671,0.674143255,0.007319435,0.341884524,0.574846506,0.000705379,0.361870795,0.509954214,-0.012615102,0.38353163,0.463486433,-0.025615841,0.267390698,0.44566077,0.003728852,0.287626117,0.360580683,-0.022299627,0.333995402,0.37122792,-0.044840742,0.363043964,0.401377738,-0.05766546,0.246470243,0.461037189,-0.014026155,0.282066077,0.382212162,-0.038561743,0.338321984,0.396938026,-0.055603042,0.369684964,0.434496462,-0.064444207,0.233842582,0.496388853,-0.033089567,0.272028029,0.425638318,-0.054209556,0.327754527,0.433556557,-0.060843464,0.361993015,0.463231146,-0.061752763,0.230356902,0.5473001,-0.052373353,0.26451996,0.49094075,-0.068662152,0.305859208,0.489325464,-0.070926473,0.336473763,0.505909562,-0.069103636 +Left,0.294051498,0.797752559,1.87E-07,0.337879002,0.72364378,-0.00562645,0.360653698,0.613365769,-0.012525649,0.384568453,0.535789907,-0.023487154,0.412202418,0.484548867,-0.034680519,0.314616024,0.528499961,-0.002936118,0.324426025,0.433238447,-0.026475409,0.35859859,0.423128068,-0.045790102,0.386956632,0.445322186,-0.055971276,0.290136874,0.530299842,-0.013226565,0.29730466,0.42126742,-0.038643911,0.33758387,0.412825435,-0.056590173,0.368724287,0.447061181,-0.064213887,0.265772969,0.547770381,-0.025883757,0.260017186,0.436517924,-0.045471527,0.297315091,0.418888211,-0.055178896,0.330764502,0.441854954,-0.057953104,0.241318941,0.578943133,-0.039932922,0.227172196,0.49199298,-0.056004658,0.251766682,0.455902755,-0.062877439,0.284132063,0.455277413,-0.06467732 +Left,0.293485135,0.828328252,3.17E-07,0.343424678,0.757769227,-0.010711462,0.372645468,0.652032733,-0.01693899,0.399037808,0.57587111,-0.026366174,0.432433426,0.524345636,-0.035631131,0.332009792,0.551805913,0.007991873,0.35386163,0.475385725,-0.012725835,0.379641086,0.456381679,-0.032951746,0.407521009,0.452080011,-0.046084829,0.304483473,0.541748464,-0.000235274,0.320936173,0.4471322,-0.021159992,0.348025471,0.416570812,-0.038784746,0.379064202,0.411052942,-0.048752729,0.276313156,0.553323388,-0.013063191,0.281170905,0.453394145,-0.03162653,0.304965615,0.409437537,-0.04440257,0.336243629,0.390423298,-0.051090904,0.247797489,0.584694505,-0.027946424,0.237082362,0.503447294,-0.042898599,0.248987481,0.454923391,-0.051090393,0.273073703,0.426907003,-0.055734396 +Left,0.285468966,0.843298376,2.92E-07,0.338761449,0.787670732,-0.011802113,0.373432994,0.681221783,-0.015854267,0.401792675,0.604735732,-0.022140037,0.437506795,0.566803813,-0.028034281,0.343136281,0.576426923,0.006689773,0.367135197,0.502856314,-0.012213644,0.389025658,0.484297454,-0.029840227,0.414214194,0.478592455,-0.041654069,0.312510729,0.560489476,-3.30E-05,0.329978168,0.472181529,-0.017809901,0.351966083,0.436143279,-0.032067116,0.379971147,0.415438652,-0.040885765,0.280511886,0.566187918,-0.01169711,0.287915885,0.47332871,-0.029783642,0.307598621,0.427187204,-0.042079788,0.336738855,0.394057274,-0.049406566,0.24728021,0.592004359,-0.025333801,0.237839341,0.518699765,-0.040139932,0.243973866,0.469851136,-0.048565775,0.262277007,0.428866625,-0.054426305 +Left,0.278629363,0.862982273,2.94E-07,0.334520936,0.813064039,-0.010457299,0.372268975,0.711373806,-0.013772798,0.399683952,0.638562322,-0.019391948,0.436479509,0.60636282,-0.024661688,0.346189022,0.59928304,0.006793081,0.370035857,0.528579712,-0.010851884,0.390615463,0.510315478,-0.02757282,0.414783269,0.502483964,-0.03910692,0.313500583,0.580359876,-0.00021906,0.329549998,0.492827475,-0.015670637,0.349590153,0.454543054,-0.028632229,0.375656664,0.429623514,-0.037239179,0.2796067,0.585393012,-0.011874988,0.285298079,0.496106714,-0.02831831,0.302012652,0.449261665,-0.040111363,0.327977568,0.413933516,-0.047644369,0.245014012,0.611176133,-0.025322454,0.235549927,0.537673056,-0.039285339,0.236917853,0.485660046,-0.047502544,0.248593897,0.439014077,-0.053444818 +Left,0.268600404,0.862496555,2.78E-07,0.326893717,0.819220424,-0.009878074,0.36734271,0.720802784,-0.012040102,0.394716233,0.646654129,-0.016247615,0.430212229,0.611915946,-0.020103062,0.349727988,0.603967905,0.008921396,0.37296319,0.534957051,-0.005586846,0.391505003,0.513011813,-0.020860016,0.412734747,0.498712718,-0.032051198,0.315890878,0.578404129,0.002451799,0.329716295,0.492078811,-0.009105921,0.348456889,0.451105863,-0.020680247,0.372003704,0.421232134,-0.029291844,0.280141652,0.578073621,-0.008546188,0.285027325,0.488196641,-0.02233867,0.299130589,0.438420773,-0.033809666,0.321133584,0.398367643,-0.04190648,0.24316512,0.599629104,-0.021214928,0.233797938,0.524292827,-0.034394227,0.233018041,0.471667171,-0.042463657,0.240580231,0.42141515,-0.048460733 +Left,0.258119136,0.860244751,2.71E-07,0.319589674,0.814177036,-0.012195203,0.359806478,0.718741059,-0.014636582,0.385425985,0.638012111,-0.018698003,0.421294868,0.600374997,-0.022132967,0.344659716,0.600471139,0.010020624,0.366120219,0.532833993,-0.003515063,0.383145094,0.504211545,-0.018757921,0.402397692,0.480046928,-0.030236391,0.308926314,0.570705235,0.005124604,0.320038497,0.480555356,-0.005366999,0.335146427,0.434188664,-0.016799366,0.354677588,0.393535674,-0.02545795,0.271943599,0.568246484,-0.004495168,0.275156021,0.474765301,-0.018217808,0.284870774,0.421666086,-0.029260729,0.301915169,0.37567696,-0.036646575,0.23315537,0.589728177,-0.015990648,0.223132074,0.510163605,-0.029384619,0.219958901,0.455197811,-0.036884125,0.223379254,0.401591748,-0.04198119 +Left,0.243431687,0.850849986,2.64E-07,0.304006815,0.809543729,-0.018183451,0.345946431,0.714581847,-0.023272747,0.370695293,0.627030611,-0.028518703,0.410259783,0.587356687,-0.033190172,0.334444731,0.590950429,0.00301996,0.354352832,0.523121178,-0.010515061,0.367123276,0.487936974,-0.025747983,0.379532099,0.452488005,-0.037934329,0.296142608,0.558601975,0.000140674,0.306065857,0.464276284,-0.010087928,0.316566497,0.411795318,-0.021554867,0.328624964,0.360678852,-0.030927282,0.256504714,0.555779219,-0.007690972,0.258581579,0.454951793,-0.023081141,0.262707949,0.39403674,-0.035491157,0.270698637,0.335600585,-0.043938633,0.215491608,0.578313947,-0.017626481,0.203702152,0.490146399,-0.034300372,0.19743228,0.43404156,-0.043461744,0.195104271,0.374268532,-0.049476091 +Left,0.232032955,0.850247264,2.53E-07,0.292901903,0.808310986,-0.019814169,0.334943116,0.709957778,-0.025317134,0.358847201,0.618665934,-0.030578962,0.398806155,0.578416586,-0.035416119,0.322800398,0.586457491,-0.00010368,0.342573583,0.516263187,-0.013818427,0.354179233,0.477425277,-0.028934535,0.364751935,0.437581241,-0.041400235,0.28350535,0.554537535,-0.002654983,0.291537344,0.456863791,-0.01361563,0.29974094,0.402285248,-0.025485735,0.309254676,0.348473728,-0.035206467,0.243253604,0.553598225,-0.010052131,0.242692873,0.449471563,-0.026773941,0.244563907,0.387073666,-0.039491322,0.250309885,0.326158404,-0.048056841,0.201736122,0.578386247,-0.01958102,0.189460278,0.488103569,-0.037989587,0.182871312,0.430655658,-0.047939673,0.180171132,0.369083464,-0.054355819 +Left,0.236908212,0.836073756,2.69E-07,0.298832804,0.771771729,-0.014866516,0.332206756,0.657959282,-0.018808687,0.346584022,0.559402764,-0.023410721,0.379974067,0.507338822,-0.02851725,0.30209437,0.551620543,-0.004022431,0.314425468,0.471927166,-0.019944649,0.324778706,0.428301096,-0.03521385,0.335666299,0.383441359,-0.047363676,0.260126114,0.533139765,-0.00897759,0.261201203,0.433902413,-0.022009535,0.267022878,0.374559879,-0.033750717,0.275176018,0.313994467,-0.043259073,0.220590979,0.543441653,-0.017909897,0.210061133,0.439897329,-0.034671795,0.208815545,0.376080215,-0.046314653,0.213183731,0.312554091,-0.054419816,0.182103992,0.579424977,-0.028517837,0.160003409,0.495141178,-0.04586539,0.149155423,0.438806623,-0.055097345,0.142555565,0.377968907,-0.061328661 +Left,0.250135303,0.813775539,3.47E-07,0.302337527,0.730965495,-0.013533625,0.325395882,0.614996731,-0.017668173,0.334653616,0.522413552,-0.022941254,0.362026989,0.461255789,-0.028023079,0.280008733,0.518106818,0.003843167,0.289499342,0.438599169,-0.013049615,0.304576933,0.399059415,-0.030071223,0.322715521,0.359766483,-0.042505078,0.241374731,0.508031785,-0.001196663,0.240417585,0.412778258,-0.014836663,0.252524942,0.355714262,-0.02730383,0.268845409,0.301513821,-0.036532994,0.206499353,0.524462581,-0.010929334,0.193557397,0.426326632,-0.026782822,0.19907549,0.365594298,-0.037959803,0.213221163,0.308851391,-0.045374103,0.174076527,0.564681709,-0.022554258,0.150193423,0.489942789,-0.036967009,0.141784623,0.434229463,-0.04482311,0.141149908,0.376283884,-0.050340809 +Left,0.257068515,0.811942816,3.35E-07,0.301764935,0.724690318,-0.012832375,0.317614079,0.601884186,-0.017002443,0.324423671,0.509436011,-0.02249917,0.348383814,0.444512129,-0.0277544,0.268800408,0.516692638,0.003697018,0.27880767,0.433399379,-0.014518669,0.295276731,0.393013358,-0.031901293,0.315007955,0.35518837,-0.044174332,0.234518811,0.513542593,-0.002082127,0.23583059,0.415807128,-0.01692198,0.248498514,0.358151615,-0.029057685,0.265948147,0.305317402,-0.037705734,0.20398061,0.534931183,-0.012656351,0.191464722,0.438934445,-0.029320285,0.198422745,0.377541959,-0.039828561,0.214584708,0.320329815,-0.046684287,0.175733998,0.57865119,-0.025189504,0.148707837,0.509079814,-0.040051114,0.14545919,0.455672085,-0.047542203,0.153144032,0.401587546,-0.052778862 +Left,0.263621211,0.807125151,3.22E-07,0.303538114,0.715409935,-0.01121083,0.314443231,0.593050539,-0.015638199,0.321844399,0.503676891,-0.0220998,0.344072282,0.437425911,-0.028212845,0.264145046,0.510740578,0.004990765,0.273609012,0.424760103,-0.014446067,0.292334139,0.386624336,-0.032577381,0.314575315,0.355185837,-0.044982091,0.234032005,0.511809826,-0.00190305,0.235295609,0.414870024,-0.017310314,0.250781029,0.36018759,-0.029663542,0.271254927,0.313753366,-0.038364988,0.207327917,0.536084235,-0.013603355,0.196293697,0.437943757,-0.029823279,0.206485555,0.377399385,-0.039584909,0.225080878,0.323643148,-0.046059884,0.182894051,0.582907498,-0.027307222,0.158977509,0.515219331,-0.04158663,0.159404725,0.463005185,-0.048485778,0.170073703,0.412458837,-0.053265423 +Left,0.267476201,0.816261292,2.84E-07,0.308980823,0.721281826,-0.006646426,0.318353117,0.600538909,-0.010951047,0.327121735,0.509910583,-0.018522901,0.348391324,0.439524651,-0.026816264,0.267960191,0.514053881,0.001737927,0.273562938,0.429879725,-0.01884979,0.295248657,0.385015011,-0.03736398,0.318839461,0.353741825,-0.049939577,0.240204111,0.51903975,-0.008435466,0.233512074,0.413944989,-0.028002005,0.254903406,0.358972073,-0.043185208,0.280885816,0.32698667,-0.053131957,0.218086183,0.548823595,-0.022137376,0.199617386,0.442461789,-0.043171357,0.219311059,0.384641469,-0.055544708,0.247274846,0.349661797,-0.062519275,0.199640721,0.597332835,-0.036974266,0.181691244,0.517489135,-0.057351578,0.192551047,0.461643517,-0.067661121,0.213818282,0.422580659,-0.073515728 +Left,0.268459916,0.792650223,1.22E-07,0.305407882,0.69720161,-0.000146974,0.308583975,0.58209753,-0.006484359,0.312806338,0.501852453,-0.018305117,0.326972574,0.437874377,-0.030248208,0.246575534,0.491785467,-0.001211216,0.244595364,0.397231102,-0.027831322,0.285925418,0.388475746,-0.049420103,0.31682989,0.404138267,-0.061830163,0.224691525,0.515936375,-0.015489054,0.221154392,0.404212713,-0.045211844,0.273419142,0.394188881,-0.064542621,0.309458345,0.417702407,-0.073551275,0.208070651,0.555255413,-0.031912778,0.196555018,0.444722325,-0.059664179,0.251260608,0.427797109,-0.070374094,0.292239994,0.440935075,-0.072784707,0.198208168,0.609741271,-0.048564527,0.202781603,0.526102901,-0.073788747,0.241701528,0.494893342,-0.083057605,0.277262837,0.487433612,-0.085693248 +Left,0.25870502,0.806305766,2.79E-07,0.296371251,0.659621894,0.001332163,0.297710955,0.550712705,-0.011926585,0.30252108,0.477426648,-0.030990047,0.311815977,0.412498653,-0.050352797,0.184142858,0.507037103,-0.021838702,0.217548385,0.410506785,-0.060952652,0.271751434,0.392335713,-0.089216895,0.310349256,0.39877677,-0.105614103,0.170976892,0.547270834,-0.041961629,0.208352193,0.438732564,-0.084633484,0.272597522,0.421854436,-0.107552387,0.31475693,0.436662316,-0.11849083,0.176142991,0.599025726,-0.062943369,0.206029192,0.496459991,-0.102484539,0.270198375,0.472448915,-0.113469258,0.312522531,0.478476286,-0.114162281,0.195999771,0.654117763,-0.0835291,0.22476244,0.570228636,-0.114084177,0.268854916,0.54028964,-0.120856196,0.304643571,0.532262027,-0.120613381 +Left,0.265096515,0.822352469,2.86E-07,0.302080095,0.672568619,-0.003481244,0.304136336,0.56342119,-0.019915378,0.31150654,0.490069866,-0.040844332,0.323718965,0.426988602,-0.061287317,0.183401272,0.532757998,-0.030269597,0.224010795,0.432132483,-0.069820076,0.282139689,0.41440779,-0.095566534,0.323166877,0.416451812,-0.110581033,0.171173975,0.577407122,-0.04886597,0.216251686,0.460787058,-0.093844883,0.283844858,0.446829259,-0.1145816,0.326921761,0.458232939,-0.123472668,0.179614812,0.630180001,-0.068302549,0.215993896,0.520337343,-0.11064975,0.282983243,0.497351646,-0.119169258,0.326185405,0.500280559,-0.117420159,0.203253329,0.682155848,-0.087529697,0.237255022,0.597559869,-0.119020008,0.282215685,0.568243027,-0.12424057,0.316682249,0.557631135,-0.12261533 +Left,0.28502664,0.833608031,1.41E-07,0.3206954,0.698070884,-0.002893892,0.330298036,0.591944158,-0.01904151,0.343511641,0.516687155,-0.039018985,0.352953434,0.455401838,-0.057557993,0.205600843,0.556579947,-0.025262624,0.243757293,0.464888573,-0.059043761,0.297940165,0.458266318,-0.079835221,0.333272249,0.468532205,-0.091452852,0.195037648,0.596687555,-0.042732317,0.24225086,0.481799424,-0.079481475,0.305687845,0.475343049,-0.095403127,0.344655126,0.488279641,-0.102006085,0.204155207,0.64712286,-0.061196394,0.24810949,0.538780689,-0.096553281,0.312078267,0.517224491,-0.102695227,0.353438944,0.517953575,-0.10076993,0.22928834,0.699528694,-0.079421677,0.264258146,0.617466509,-0.104684286,0.307421327,0.587469816,-0.108103648,0.34026593,0.574080706,-0.106483392 +Left,0.280979455,0.792712331,1.67E-07,0.318324029,0.698596835,-0.00309884,0.338109612,0.602706909,-0.01727673,0.358084261,0.542219937,-0.036922842,0.375645041,0.485525876,-0.056780372,0.256353766,0.514372051,-0.010526919,0.27023381,0.427700788,-0.043496829,0.31689021,0.431270778,-0.069898091,0.349168122,0.452444375,-0.085192516,0.236740187,0.536890984,-0.02706114,0.252758116,0.429972708,-0.062313333,0.30984363,0.430695117,-0.086170718,0.34697023,0.459298968,-0.098084658,0.224294379,0.574862659,-0.045762759,0.233194575,0.467351049,-0.076668054,0.292546719,0.453207105,-0.089854248,0.335377038,0.467728347,-0.093790695,0.222624823,0.629748821,-0.064790599,0.235192135,0.553159893,-0.089964218,0.276289821,0.523199677,-0.099177636,0.313446492,0.516691744,-0.10205961 +Left,0.275056809,0.799436569,1.83E-07,0.314659953,0.704389095,-0.000807799,0.336033463,0.60935998,-0.014914216,0.356167197,0.548816562,-0.034429274,0.377246976,0.491924405,-0.054150313,0.251917541,0.515174747,-0.011139308,0.272936702,0.427394331,-0.04292012,0.319843322,0.429024398,-0.067994587,0.352074981,0.449367553,-0.082466811,0.231457353,0.537947059,-0.028272895,0.256361306,0.428571969,-0.061188426,0.312756062,0.42875579,-0.082738534,0.348713666,0.457901478,-0.093516618,0.220628142,0.576703191,-0.047006391,0.237789631,0.468577921,-0.075692765,0.295671284,0.454800785,-0.086650692,0.336561441,0.469159186,-0.089673012,0.221908033,0.630891562,-0.065864861,0.240506053,0.552305877,-0.089418784,0.280680031,0.522890806,-0.096748337,0.315695733,0.516217887,-0.098401152 +Left,0.275330365,0.803913236,1.39E-07,0.314479262,0.711081624,0.001413446,0.331321627,0.615375876,-0.009904692,0.345738322,0.549402177,-0.026734218,0.364706993,0.492502093,-0.043723628,0.260698587,0.514248192,-0.006941189,0.281595558,0.42984426,-0.035478204,0.325327545,0.431603163,-0.058407221,0.356001318,0.451423824,-0.071748093,0.239901185,0.534349144,-0.023775972,0.262977183,0.428252041,-0.052332859,0.315311074,0.424417615,-0.070977069,0.350736856,0.450678289,-0.080342337,0.227358028,0.571894526,-0.042126857,0.243125945,0.46714887,-0.067322053,0.298241377,0.451488942,-0.076587208,0.339124769,0.463626236,-0.07914415,0.225722507,0.62560147,-0.060587697,0.2438353,0.547654748,-0.081916392,0.283604741,0.519966543,-0.087984271,0.318804979,0.514342427,-0.088979609 +Left,0.277636945,0.799661636,1.63E-07,0.317030191,0.715849578,7.97E-05,0.331639767,0.617641866,-0.009726986,0.341405153,0.551003039,-0.02462795,0.35265255,0.498262256,-0.039484058,0.263827205,0.509279191,-0.008023028,0.280332476,0.42411691,-0.037274159,0.324528307,0.426210999,-0.060640849,0.356188685,0.446338415,-0.074116521,0.242364496,0.530385971,-0.023844024,0.261440188,0.427831054,-0.053776238,0.315151393,0.424705625,-0.073056512,0.35207355,0.44873029,-0.082516007,0.229445711,0.568413198,-0.041301172,0.243725538,0.470094204,-0.067712769,0.299849331,0.45607093,-0.077985018,0.341071576,0.466463685,-0.080963813,0.227508843,0.622027755,-0.059032742,0.24824065,0.547601104,-0.081082694,0.289093792,0.523447752,-0.087983094,0.324452102,0.51831311,-0.089585587 +Left,0.275171041,0.795278013,1.57E-07,0.316487432,0.709292293,-0.000170565,0.331276298,0.608034194,-0.009701169,0.333918363,0.538011491,-0.024098843,0.314441264,0.509961486,-0.038438872,0.260319799,0.501333475,-0.00958115,0.281484097,0.411382973,-0.040522758,0.331440955,0.418220729,-0.064955451,0.364706248,0.44355309,-0.078456514,0.239275068,0.520950198,-0.025800252,0.264700443,0.414788842,-0.055709209,0.323983669,0.417130083,-0.0743047,0.36109215,0.446923524,-0.083138987,0.226915389,0.559590638,-0.043719057,0.252981871,0.459169835,-0.070992894,0.312841058,0.453686684,-0.080796771,0.352268428,0.473155111,-0.082728788,0.226120099,0.61268425,-0.061945371,0.253638893,0.533922195,-0.083618276,0.296135068,0.515860796,-0.089218162,0.329431146,0.519584715,-0.089724548 +Left,0.273225218,0.802966237,1.25E-07,0.315579474,0.708424866,0.002904471,0.331519157,0.61101383,-0.006285893,0.342095315,0.54372412,-0.020992702,0.343057305,0.498586178,-0.035582528,0.251042008,0.498923212,-0.007913465,0.278455496,0.417877257,-0.037795004,0.328743011,0.425778955,-0.060275212,0.36289835,0.450698912,-0.072332494,0.231116608,0.51954937,-0.025409872,0.265626818,0.420724422,-0.05525342,0.324639469,0.430760324,-0.07242652,0.361300409,0.468522102,-0.079500951,0.222271636,0.559839368,-0.044042204,0.256293535,0.469830096,-0.071373306,0.315920174,0.474574685,-0.078627132,0.354171038,0.502421319,-0.077822901,0.225793689,0.615276933,-0.062612206,0.255993873,0.542801678,-0.084066711,0.299746752,0.531262159,-0.087427109,0.334488839,0.54019928,-0.085223444 +Left,0.272806764,0.807754278,1.52E-07,0.315878689,0.713247418,0.002273761,0.331879973,0.617339134,-0.007860876,0.340527505,0.554428399,-0.02374232,0.335834116,0.515237033,-0.039363209,0.255227089,0.508202851,-0.009899126,0.273079157,0.42013526,-0.041548975,0.325568199,0.428538024,-0.065400228,0.359086812,0.456801653,-0.078378081,0.235177651,0.530292034,-0.028134011,0.25816223,0.423263729,-0.060367618,0.320151031,0.433814704,-0.079773307,0.355395019,0.472381264,-0.088709883,0.224854827,0.569792509,-0.047645476,0.246453628,0.467605621,-0.076894186,0.308924794,0.472033441,-0.08592809,0.346601248,0.501221538,-0.086758003,0.226416856,0.625150263,-0.067104787,0.254294336,0.548104346,-0.090404853,0.299795747,0.537245929,-0.095482051,0.333579689,0.548600495,-0.095091827 +Left,0.273649424,0.818988562,1.55E-07,0.320782363,0.714814544,7.56E-05,0.336454064,0.611381948,-0.010054455,0.347249717,0.541308641,-0.024764996,0.355023444,0.479659915,-0.038568594,0.249725714,0.504185617,-0.012452128,0.286412388,0.431338549,-0.042435061,0.337232828,0.442656755,-0.063471541,0.370155215,0.469254613,-0.075022466,0.230019018,0.526085496,-0.028956959,0.273034811,0.434876025,-0.061309598,0.333116651,0.448750705,-0.078968465,0.369984865,0.487803966,-0.086178742,0.222961277,0.568279684,-0.046573583,0.263611645,0.483456016,-0.077465706,0.324157715,0.492672086,-0.08543168,0.362300366,0.521960557,-0.084809221,0.228931561,0.6251899,-0.064071938,0.268637031,0.562518239,-0.089213438,0.313718438,0.556539118,-0.094170265,0.347896874,0.567295015,-0.092670389 +Left,0.270957559,0.820961356,1.77E-07,0.320218503,0.714415431,0.000458437,0.335968375,0.611953557,-0.008380886,0.347086191,0.541338801,-0.021665895,0.356822491,0.480201036,-0.03359798,0.242557928,0.505516946,-0.006652378,0.286848456,0.437407374,-0.034393128,0.337001443,0.44764781,-0.054558281,0.371324778,0.471123755,-0.06575013,0.223779142,0.525131524,-0.022014715,0.276002198,0.438018411,-0.051220458,0.333454311,0.453154027,-0.066913188,0.371000051,0.488691986,-0.072944455,0.218357444,0.564354718,-0.038738724,0.27152127,0.488243908,-0.067242555,0.329002112,0.501014113,-0.07360436,0.365927428,0.529169977,-0.071912028,0.226332173,0.617225647,-0.055514418,0.275189936,0.56255126,-0.077451229,0.318984598,0.56000638,-0.080338769,0.351467133,0.569932759,-0.077403694 +Left,0.269372284,0.818998218,2.70E-07,0.32085675,0.708685279,7.20E-05,0.33459574,0.605188489,-0.007761556,0.343616694,0.532922029,-0.02006319,0.353888214,0.472074747,-0.031042987,0.23215732,0.511797488,-0.004811059,0.283705026,0.438897043,-0.031853076,0.331189394,0.43669039,-0.051847778,0.366963744,0.447090387,-0.063622914,0.21454832,0.531981945,-0.019629184,0.276434898,0.445676118,-0.048345786,0.331815898,0.452289313,-0.062652014,0.371198744,0.473136425,-0.068052821,0.212004423,0.570900619,-0.036110647,0.278663218,0.499741971,-0.065951355,0.335607827,0.512052596,-0.071794167,0.373327911,0.533438444,-0.069337979,0.223378271,0.620292962,-0.052807234,0.282296568,0.567063749,-0.074785039,0.326208651,0.570569336,-0.076864287,0.357861519,0.582434952,-0.073162928 +Left,0.26440081,0.837875426,4.35E-07,0.323414773,0.71448046,-0.003598806,0.336128056,0.620977402,-0.014744324,0.342590988,0.554531634,-0.030368105,0.349791259,0.499068379,-0.044150371,0.227876991,0.529757082,-0.0123661,0.280775517,0.445114851,-0.046188995,0.331456214,0.439133584,-0.07119333,0.370022088,0.45021531,-0.08529976,0.213097513,0.551565528,-0.027046274,0.27766636,0.460531801,-0.062027309,0.335878909,0.457808375,-0.08009772,0.379003167,0.472485512,-0.086820684,0.215500325,0.592467308,-0.043746267,0.291450709,0.528709054,-0.079697542,0.349403292,0.537962794,-0.089180909,0.388406098,0.55496186,-0.087441869,0.23156561,0.643049657,-0.060863048,0.305297673,0.604340672,-0.086446732,0.35187766,0.60854876,-0.090512961,0.385387242,0.618425608,-0.087000661 +Left,0.25575453,0.840783417,5.51E-07,0.318130076,0.708844244,-0.00146987,0.3291623,0.61594373,-0.012257312,0.334833533,0.549399376,-0.02860949,0.344513297,0.488334298,-0.043754261,0.225321114,0.532468319,-0.013717956,0.268415689,0.441497445,-0.045847576,0.308941364,0.411997527,-0.069207259,0.344030499,0.399771303,-0.083117992,0.211229175,0.554019094,-0.029097421,0.2815741,0.473073274,-0.065038249,0.337927312,0.457533419,-0.08182843,0.381934673,0.460206032,-0.087950446,0.216624796,0.59312278,-0.046081211,0.300217628,0.538747787,-0.081396237,0.355138898,0.545991182,-0.089049324,0.394622952,0.561991036,-0.086423621,0.234833747,0.639623463,-0.063741647,0.315306753,0.608997524,-0.088187627,0.360550523,0.611822486,-0.091943868,0.394594759,0.618938804,-0.08829508 +Left,0.252755523,0.830789268,5.40E-07,0.30982545,0.695936024,-0.004012136,0.315567404,0.595454335,-0.015036739,0.308930099,0.520191908,-0.030058326,0.315732598,0.458877683,-0.044164255,0.224124908,0.520791769,-0.02186417,0.264976889,0.428806692,-0.050421566,0.304094672,0.392304003,-0.067974217,0.337491691,0.374118328,-0.077528082,0.214665219,0.550096631,-0.033165406,0.294141531,0.483835757,-0.06473837,0.350461841,0.468923539,-0.075395092,0.392549336,0.472766757,-0.078407146,0.223594069,0.595948756,-0.04568778,0.320081323,0.562300861,-0.077534012,0.368370235,0.581229389,-0.081565417,0.400689483,0.605898201,-0.077051967,0.242935777,0.646957576,-0.058842774,0.326960415,0.627827168,-0.078141145,0.365081936,0.641710103,-0.078940883,0.392470837,0.657982111,-0.07401789 +Left,0.2561194,0.824628353,4.44E-07,0.31004858,0.697706044,-0.007422285,0.317952782,0.588322699,-0.020143418,0.312484205,0.507973194,-0.036105756,0.318426728,0.439795345,-0.050628133,0.230509341,0.509963632,-0.022093438,0.272743315,0.425061584,-0.051918674,0.314247847,0.392683685,-0.070973441,0.349028558,0.378296643,-0.081796065,0.220344812,0.544274092,-0.032864191,0.308435559,0.49548021,-0.067675315,0.365389228,0.503155291,-0.079206452,0.40169251,0.526140571,-0.082327023,0.226762354,0.596814871,-0.044930827,0.327379286,0.580197513,-0.07794027,0.364396691,0.632661939,-0.07453952,0.379164428,0.677491188,-0.064612307,0.242838159,0.651931703,-0.05828454,0.328648686,0.641146839,-0.07794527,0.350948602,0.681957185,-0.072516263,0.357282728,0.717248142,-0.062871978 +Left,0.254758239,0.826184273,4.59E-07,0.304881245,0.691322923,-0.005729164,0.312480778,0.581969261,-0.018501582,0.308984458,0.503848076,-0.034988258,0.316910893,0.436149806,-0.049940277,0.228655428,0.506821215,-0.019512344,0.272730768,0.421584666,-0.04894362,0.313694417,0.39060533,-0.067859545,0.348498076,0.376833022,-0.07901229,0.219374269,0.542218745,-0.031370394,0.308300287,0.495780379,-0.066432141,0.365198165,0.504985631,-0.078595467,0.40254131,0.52644217,-0.082674667,0.226176888,0.595422566,-0.044491626,0.329471588,0.5816558,-0.075582102,0.357496798,0.640068948,-0.071527801,0.363585413,0.684210658,-0.062513515,0.24222067,0.650510311,-0.059015226,0.330106676,0.644681811,-0.075974002,0.344302565,0.688148856,-0.069806732,0.34016791,0.720228374,-0.060920306 +Left,0.25658536,0.828443348,2.96E-07,0.304640383,0.698982,-0.005616108,0.312980801,0.586122751,-0.017067639,0.311036766,0.503712535,-0.031378303,0.322418094,0.431691736,-0.043740544,0.231269434,0.510999382,-0.021207916,0.270872474,0.426345766,-0.050430529,0.315673023,0.401071191,-0.067822568,0.351736337,0.396815419,-0.077258877,0.220637769,0.546403706,-0.032703925,0.31115365,0.504536986,-0.068461567,0.360686064,0.539572418,-0.077133551,0.385190696,0.578938544,-0.077743232,0.226573467,0.600986183,-0.045614354,0.326011926,0.595127583,-0.077087581,0.344433993,0.660381496,-0.072030284,0.340025812,0.703449726,-0.06240223,0.241721839,0.657638252,-0.059717562,0.327997625,0.654181719,-0.076028489,0.34106642,0.701123357,-0.069452308,0.334426373,0.732513189,-0.060686629 +Left,0.260809481,0.82542634,1.78E-07,0.308168471,0.703799605,-0.00863592,0.313042521,0.589580595,-0.020322999,0.30504781,0.510511398,-0.0335664,0.308510184,0.451521993,-0.044595141,0.233359933,0.51205498,-0.025602095,0.264940739,0.429728091,-0.054700866,0.311364591,0.405791849,-0.070294999,0.348011792,0.405912429,-0.078445546,0.220059007,0.546575308,-0.035503898,0.309977949,0.507527828,-0.072053194,0.349804074,0.565617561,-0.078036427,0.359098047,0.619428396,-0.076160461,0.224224746,0.60281235,-0.047199048,0.321125835,0.601548493,-0.080219105,0.338798612,0.666289926,-0.076265968,0.330068141,0.70385927,-0.067433685,0.238477483,0.66353482,-0.060004439,0.323727757,0.666368604,-0.077995449,0.337803304,0.710218251,-0.07374566,0.328905314,0.736234963,-0.067074746 +Left,0.251698673,0.831099868,-1.09E-08,0.301868975,0.700127244,-0.003465417,0.304635108,0.585626006,-0.014463756,0.296595663,0.501823187,-0.029642491,0.297128171,0.440273583,-0.042208269,0.222319454,0.501334727,-0.017539604,0.26855436,0.422330081,-0.048390336,0.316882819,0.420407772,-0.063228652,0.350884616,0.441139698,-0.06917692,0.207696155,0.539902329,-0.029950311,0.309885949,0.521714151,-0.061775833,0.325889915,0.592141449,-0.063979186,0.310721666,0.628454626,-0.061194796,0.211145252,0.596250594,-0.044810042,0.31650874,0.594855785,-0.075459979,0.321198851,0.666667342,-0.067597762,0.302053332,0.697626531,-0.057445906,0.224281654,0.658385575,-0.060872473,0.312929422,0.652822793,-0.079428554,0.322648823,0.703856111,-0.073558889,0.310301512,0.729018569,-0.065373525 +Left,0.245906383,0.840346456,-1.26E-07,0.296226323,0.70675689,0.000214389,0.297197759,0.58527863,-0.009094885,0.288255453,0.495758235,-0.023113741,0.287636429,0.429363877,-0.033844192,0.216688171,0.512433946,-0.018882936,0.256195575,0.425824821,-0.048603885,0.305865079,0.431088984,-0.059398077,0.337606251,0.46205914,-0.062275425,0.201180503,0.551291287,-0.032790437,0.302794725,0.529433012,-0.064951479,0.320759386,0.604812324,-0.065624289,0.303170979,0.640732646,-0.061686825,0.204586983,0.606719434,-0.048482098,0.310281754,0.601777256,-0.078624226,0.316236824,0.673447847,-0.070395671,0.294228196,0.697997272,-0.060702935,0.217941985,0.666581273,-0.064758547,0.307377696,0.661527693,-0.082274459,0.314264894,0.711146712,-0.076431938,0.296566576,0.729975462,-0.069000177 +Left,0.245037749,0.851067305,-1.17E-07,0.297163635,0.715954363,0.000685334,0.298148692,0.597045302,-0.008557759,0.287846148,0.509915113,-0.022775056,0.285892248,0.446898043,-0.033681408,0.216687202,0.517867506,-0.018286811,0.253132761,0.430660099,-0.048224468,0.302620798,0.43534413,-0.05865404,0.334687561,0.469094038,-0.060669709,0.199946702,0.55660224,-0.032128565,0.300821096,0.535581589,-0.063614458,0.320289195,0.61095047,-0.063564599,0.303771943,0.647841454,-0.058904666,0.202605292,0.613400578,-0.047806665,0.30826062,0.609132528,-0.077990703,0.315212667,0.681116402,-0.069650844,0.294217467,0.708232403,-0.05954165,0.215562284,0.675270081,-0.064042702,0.305502892,0.670684338,-0.081876405,0.314139187,0.721247256,-0.076044962,0.298160285,0.742330313,-0.068258189 +Left,0.249401927,0.854682803,-5.82E-08,0.30393675,0.718932033,-0.002695245,0.307022512,0.603240848,-0.014761113,0.303792596,0.516720355,-0.031714324,0.306605041,0.444666982,-0.045578066,0.216202855,0.524975598,-0.01748066,0.244054794,0.434843004,-0.051902298,0.295306087,0.433489203,-0.068681218,0.329592317,0.466584086,-0.074756578,0.197564483,0.564323723,-0.031017456,0.292896569,0.528128386,-0.066787504,0.321817338,0.602106392,-0.070251152,0.310486436,0.64686811,-0.066972837,0.198903412,0.62355262,-0.047330886,0.300667942,0.607057989,-0.081124656,0.315899074,0.67586261,-0.073254727,0.29859069,0.708306372,-0.062015273,0.211327627,0.686894417,-0.064590849,0.298137486,0.672678053,-0.084206514,0.311905503,0.717219234,-0.077595957,0.297959864,0.739128828,-0.068613231 +Left,0.249309584,0.851639092,-6.03E-08,0.306566089,0.732415676,-0.006640815,0.319930524,0.63094902,-0.023992456,0.331765264,0.552312553,-0.046117719,0.355633914,0.477294236,-0.063746616,0.213872075,0.54233408,-0.020901028,0.225247353,0.430952728,-0.054634158,0.273779273,0.433073103,-0.069525614,0.304167569,0.468694478,-0.074746773,0.192329884,0.574261546,-0.034814402,0.262002319,0.495511115,-0.068978667,0.301235139,0.560645282,-0.071564876,0.297215849,0.606500268,-0.067636929,0.194241226,0.624798059,-0.051689919,0.284765482,0.586482763,-0.08100494,0.311235428,0.655195117,-0.071221806,0.298387706,0.693853617,-0.059784614,0.211512387,0.678090215,-0.070443764,0.291783899,0.662257016,-0.085798591,0.308757812,0.708146691,-0.078444064,0.294001937,0.735423684,-0.070260473 +Left,0.258943319,0.849315047,-8.79E-08,0.309739709,0.727067769,-0.005531441,0.321935892,0.626215577,-0.021659423,0.335422426,0.547063053,-0.042772122,0.358574808,0.474980325,-0.059190162,0.21884872,0.530071676,-0.016350193,0.235100687,0.427771449,-0.048833601,0.284080923,0.444857061,-0.064047337,0.308073282,0.487767905,-0.069602929,0.195687622,0.564305961,-0.030647803,0.254607141,0.481018424,-0.063283429,0.303218275,0.541751564,-0.067260124,0.306646943,0.590733588,-0.064087041,0.193277881,0.61679852,-0.047922127,0.275567502,0.57024616,-0.076554164,0.310913324,0.633233666,-0.068193324,0.302915603,0.674820304,-0.056984182,0.205103606,0.674019337,-0.066889718,0.281444132,0.650024772,-0.082501695,0.302378654,0.69117254,-0.075794168,0.288840979,0.721247256,-0.067495547 +Left,0.277874887,0.849203646,-1.56E-07,0.321846932,0.738546431,-0.007038233,0.340034604,0.631400228,-0.021465132,0.355738014,0.55698061,-0.040697448,0.378740817,0.490603536,-0.055485357,0.251815081,0.522324443,-0.003518991,0.281561583,0.441995978,-0.034907795,0.321105987,0.491807431,-0.051749393,0.331127971,0.540005147,-0.058762833,0.223777264,0.545875549,-0.016114088,0.270539403,0.474123597,-0.04564805,0.31617102,0.547301412,-0.052942574,0.316909403,0.590915263,-0.052102052,0.206321508,0.589358807,-0.032441854,0.266530991,0.538960218,-0.061621506,0.305490583,0.612882793,-0.054516204,0.298449576,0.655168235,-0.042968236,0.199128002,0.64747715,-0.050035179,0.258707404,0.614651322,-0.067574389,0.286595553,0.660190105,-0.059871126,0.276358068,0.692939281,-0.049449615 +Left,0.288973987,0.845119774,-1.99E-07,0.331184804,0.764302313,-0.007549465,0.357108533,0.669063449,-0.018598052,0.374272317,0.600045145,-0.034131262,0.39150095,0.533808291,-0.046342708,0.305997223,0.555409074,0.001153321,0.317267895,0.465898275,-0.026906492,0.349845409,0.522825181,-0.043594491,0.357398599,0.582393527,-0.048999012,0.279602468,0.567512453,-0.008780849,0.297916055,0.470294058,-0.035560425,0.335885793,0.550024569,-0.044553567,0.339151472,0.617694736,-0.043925148,0.251098543,0.59190309,-0.022433538,0.27411744,0.506727874,-0.049985159,0.311377168,0.586099863,-0.044255029,0.31281811,0.649758041,-0.032014962,0.220229745,0.629437506,-0.036862507,0.24212864,0.55076474,-0.055210501,0.274782538,0.595984459,-0.045750607,0.279012769,0.646579206,-0.032963321 +Left,0.283269942,0.84818846,-2.14E-07,0.329876631,0.77979207,-0.011531825,0.363565892,0.691955209,-0.023955956,0.385063648,0.624282062,-0.039908115,0.400882214,0.558018804,-0.052673683,0.32286346,0.5716573,-0.004148925,0.338765383,0.485636234,-0.031884789,0.362396836,0.553280592,-0.049041826,0.362228394,0.615920663,-0.054825015,0.292688608,0.573718727,-0.011999669,0.310435086,0.469591469,-0.037645333,0.338851333,0.558155954,-0.047410883,0.335970938,0.629662812,-0.047619134,0.259875447,0.587875843,-0.023448801,0.276653916,0.494638175,-0.048764396,0.308811724,0.57595849,-0.044909202,0.30975464,0.641812325,-0.034574144,0.223925143,0.614755094,-0.035938911,0.238656014,0.525437355,-0.052857913,0.270612597,0.570949972,-0.044434965,0.278873086,0.625955939,-0.03284052 +Left,0.255067706,0.82548213,-1.74E-07,0.307694584,0.769816041,-0.01390905,0.349882692,0.68729645,-0.024674313,0.373278081,0.614409626,-0.038782619,0.378690332,0.541004837,-0.051079657,0.316952467,0.567969263,-0.004249256,0.330997556,0.488823831,-0.030414689,0.344582379,0.548685849,-0.049770236,0.341207415,0.609951735,-0.057373773,0.281289786,0.556714177,-0.009423405,0.295414269,0.464658558,-0.033200111,0.317037642,0.540731132,-0.046405826,0.31613645,0.612635136,-0.05018599,0.24335961,0.560252905,-0.018378118,0.25061205,0.463584661,-0.037564773,0.279546469,0.531030297,-0.040120516,0.28607747,0.599610507,-0.036718063,0.204257041,0.577438354,-0.029002819,0.199124247,0.480909109,-0.042002607,0.227150142,0.509149432,-0.040138196,0.244433984,0.562551498,-0.034845274 +Left,0.242566377,0.823542595,-7.93E-08,0.300872654,0.777860343,-0.016174613,0.347823977,0.69037956,-0.025334703,0.373236507,0.610022068,-0.036320802,0.375104785,0.531520426,-0.045329794,0.312898755,0.580546319,-0.007545657,0.331368446,0.509792089,-0.036537893,0.342693448,0.562390625,-0.058571137,0.336800367,0.627858222,-0.066281356,0.277880996,0.561202407,-0.010763453,0.288755,0.464460373,-0.03576725,0.311428964,0.498961806,-0.052726731,0.316993088,0.565759718,-0.057995021,0.240486279,0.556110322,-0.018169772,0.241130978,0.451742291,-0.036303919,0.268165499,0.470366985,-0.045708276,0.282116383,0.524295807,-0.046584364,0.201589227,0.566289306,-0.027516341,0.186538339,0.46754247,-0.039796371,0.208969206,0.460447311,-0.044016633,0.231639415,0.496058583,-0.04282295 +Left,0.23081848,0.839147568,2.65E-07,0.290880144,0.813665032,-0.027549153,0.342802286,0.736459255,-0.038678035,0.371959925,0.659132302,-0.049028117,0.381773293,0.586540103,-0.05814074,0.320164174,0.604827881,-0.016571578,0.34276548,0.529732287,-0.046277903,0.353172243,0.507614434,-0.068997435,0.355995089,0.524690688,-0.079097256,0.280152917,0.567821443,-0.015773207,0.293818295,0.47452414,-0.040329136,0.306365788,0.442349404,-0.056467723,0.314238578,0.468257129,-0.062810436,0.238935485,0.559157014,-0.02060679,0.241341949,0.458505809,-0.043822218,0.252515286,0.415290415,-0.055399895,0.268295646,0.42437911,-0.058188483,0.19559142,0.57761997,-0.028161932,0.180492401,0.489766002,-0.049893618,0.184718758,0.446150601,-0.059639417,0.198049396,0.444682717,-0.061402038 +Left,0.226936877,0.844366431,2.76E-07,0.287036717,0.820215642,-0.024499787,0.338610709,0.752361536,-0.035122596,0.368319035,0.681815207,-0.045099299,0.379018217,0.613174796,-0.053929869,0.319076419,0.594816625,-0.013900317,0.338623643,0.521810055,-0.036371227,0.350490212,0.495380282,-0.055203442,0.360442251,0.488486409,-0.066483773,0.276899189,0.562119782,-0.015288857,0.283482403,0.465750873,-0.032074906,0.29301545,0.424685985,-0.0453928,0.304018468,0.409019828,-0.054512959,0.234481826,0.559718907,-0.021628622,0.234871596,0.464082956,-0.040644303,0.238397673,0.412998855,-0.05246475,0.247884363,0.382277012,-0.059409596,0.192082435,0.5853104,-0.030370746,0.180537045,0.503848791,-0.048846379,0.174520105,0.451155365,-0.057518661,0.174575031,0.408669353,-0.061785821 +Left,0.237153023,0.844574332,2.76E-07,0.297557086,0.816154182,-0.023762939,0.342191607,0.750272036,-0.03528687,0.362602949,0.674550831,-0.046297774,0.382315457,0.61003834,-0.056667622,0.331171066,0.593998551,-0.012144302,0.351724923,0.526004732,-0.032709565,0.363063127,0.488444507,-0.051933583,0.372278541,0.452006549,-0.065609023,0.289879858,0.557774901,-0.015093254,0.29858911,0.458891511,-0.030787766,0.305940568,0.404817581,-0.044886012,0.313802391,0.354387641,-0.055584446,0.247621402,0.554722667,-0.022740241,0.247705281,0.451756179,-0.041406065,0.248856694,0.390508771,-0.053783655,0.253380805,0.334318459,-0.06171076,0.205085546,0.580044627,-0.032801777,0.194985956,0.489425391,-0.051779203,0.18912679,0.431422472,-0.060533836,0.186628282,0.37429589,-0.065354653 +Left,0.239504158,0.849261343,2.74E-07,0.299417853,0.817243457,-0.022956278,0.343898773,0.749734879,-0.033736717,0.36170876,0.672984481,-0.044350311,0.382036567,0.608648121,-0.05422309,0.334439516,0.592334151,-0.008721015,0.354110837,0.521436155,-0.028626205,0.365972668,0.484187841,-0.047780685,0.376436055,0.448465168,-0.061479311,0.293219745,0.557317734,-0.012020928,0.302197754,0.45799154,-0.027259057,0.310181856,0.402612984,-0.041892752,0.319187164,0.350970417,-0.052988119,0.251172841,0.555672169,-0.020158526,0.251927972,0.452306926,-0.03866354,0.253766567,0.389634013,-0.05179118,0.259345949,0.331986278,-0.060270961,0.208403319,0.582491875,-0.030690834,0.198979527,0.492420852,-0.049843851,0.193709761,0.434152037,-0.05907381,0.192112237,0.376060575,-0.064224735 +Left,0.239639223,0.835421324,3.24E-07,0.296195835,0.76237601,-0.013309767,0.325641125,0.661765099,-0.019428255,0.335233271,0.572940052,-0.027796593,0.363580674,0.51394701,-0.035964943,0.302967489,0.52749902,0.00567227,0.316746235,0.449031293,-0.012804152,0.330762297,0.409344465,-0.031096572,0.347729892,0.37233907,-0.044922888,0.264269561,0.512592018,-0.002187868,0.267546386,0.413465112,-0.01774459,0.277529627,0.355808794,-0.03185761,0.291860193,0.301480919,-0.04244924,0.227207378,0.530063033,-0.014949873,0.22108689,0.427059293,-0.034682199,0.227721602,0.367252141,-0.046603322,0.242530853,0.310917288,-0.054289341,0.189668566,0.574493408,-0.029481726,0.174955726,0.498002678,-0.048763048,0.177695557,0.448975176,-0.05749917,0.187734693,0.398760736,-0.062903419 +Left,0.240938395,0.805355191,3.61E-07,0.294339895,0.731679738,-0.015061561,0.318480909,0.628513217,-0.021004217,0.325545222,0.540014386,-0.028654279,0.351084232,0.474838644,-0.03572445,0.291029304,0.502215326,0.008392043,0.305928826,0.424721718,-0.010013785,0.322808474,0.386194229,-0.028402958,0.34285152,0.349662364,-0.041961737,0.255989283,0.489509702,0.002650931,0.264344156,0.390157253,-0.013130167,0.27719,0.334928781,-0.027227966,0.295755357,0.285739273,-0.037248842,0.222998381,0.505895674,-0.008460076,0.221370682,0.398128808,-0.028433701,0.231800973,0.340899199,-0.039890349,0.25112766,0.292311907,-0.046526685,0.190175861,0.548493087,-0.021618804,0.181651443,0.471628189,-0.040727329,0.191700965,0.42437914,-0.049120855,0.210376278,0.381604195,-0.053886056 +Left,0.242063016,0.804122806,3.27E-07,0.294009835,0.724197984,-0.009215215,0.313265115,0.615088224,-0.012359001,0.322420746,0.52625823,-0.018519415,0.348371506,0.458811045,-0.024641993,0.28469196,0.500560462,0.014405058,0.300906003,0.428970069,-0.003484734,0.32064876,0.393636048,-0.021851221,0.341758937,0.360270679,-0.035539687,0.251822203,0.488429189,0.005637857,0.260979563,0.390971869,-0.009577258,0.277185857,0.338705778,-0.023593927,0.297538191,0.290665567,-0.033959612,0.220415503,0.505499125,-0.008314593,0.219688952,0.398620784,-0.028878085,0.23335132,0.342050433,-0.040724948,0.254506499,0.29215917,-0.047901679,0.188863382,0.547930539,-0.023763452,0.182370961,0.470293671,-0.044001762,0.196153879,0.42391634,-0.052862115,0.218379855,0.381222844,-0.058233239 +Left,0.244563952,0.799252987,2.85E-07,0.293257117,0.714106619,-0.007469314,0.310262799,0.600116134,-0.010160845,0.318295419,0.509700775,-0.016242575,0.339762002,0.44105804,-0.022251353,0.273480177,0.495443016,0.014259053,0.289339751,0.424263537,-0.004943323,0.312239319,0.398561329,-0.02425758,0.335758448,0.377399206,-0.0379005,0.242602527,0.486187756,0.004823361,0.250276208,0.387326658,-0.011502,0.268425584,0.335624248,-0.026218668,0.29070577,0.290074021,-0.036856141,0.213135302,0.503951192,-0.009673963,0.210707322,0.393313169,-0.031182993,0.22677055,0.33655715,-0.044130415,0.250082135,0.291048497,-0.051625468,0.184138775,0.545667231,-0.025452288,0.174110949,0.463379741,-0.046496481,0.188356578,0.415317714,-0.056126859,0.212381661,0.377204001,-0.061726011 +Left,0.247684404,0.79162991,2.90E-07,0.293299735,0.7034657,-0.008736053,0.309134007,0.588618636,-0.012844328,0.318822324,0.498117626,-0.020213088,0.339980572,0.428983212,-0.02760425,0.268693775,0.494529933,0.00961065,0.28439939,0.421391994,-0.012706104,0.308941305,0.400115401,-0.033575151,0.334402263,0.389579594,-0.046969861,0.238885731,0.48629573,0.000780375,0.245473385,0.384984493,-0.017863391,0.266663641,0.336400568,-0.032702435,0.292432904,0.301377773,-0.042154461,0.210683495,0.505003095,-0.013116311,0.205853552,0.393334508,-0.034896292,0.223283082,0.33677882,-0.047161952,0.249169573,0.295836598,-0.053381089,0.183443233,0.547255516,-0.028507316,0.171853811,0.463179201,-0.048417389,0.185878441,0.413808882,-0.056891587,0.210732162,0.3789469,-0.061107829 +Left,0.247348621,0.794007242,2.85E-07,0.292914391,0.705380917,-0.008603057,0.309463173,0.59089607,-0.012887945,0.320518166,0.499706686,-0.020412898,0.340472043,0.428925037,-0.027976973,0.267671764,0.501537025,0.008824907,0.283617795,0.427334636,-0.012482288,0.308031917,0.401331782,-0.032537434,0.333281904,0.38597399,-0.045694806,0.238248006,0.493102223,0.00011017,0.244715407,0.391659588,-0.018130276,0.26628837,0.34236908,-0.032911398,0.291975588,0.308496892,-0.042690471,0.210645109,0.510824919,-0.013419148,0.205906868,0.399342656,-0.034453332,0.22521618,0.343765318,-0.046563126,0.252374768,0.305810481,-0.053058546,0.18430078,0.551257372,-0.02844514,0.172457933,0.466463447,-0.047871482,0.186968476,0.415845394,-0.056598376,0.212403044,0.381602973,-0.061266303 +Left,0.246162921,0.801081657,2.60E-07,0.292869627,0.718870163,-0.009553657,0.308726251,0.606548607,-0.013772212,0.317901134,0.515870452,-0.02107914,0.339898437,0.448058307,-0.028092602,0.267349511,0.505624712,0.00912352,0.28359127,0.430788815,-0.012260494,0.308729231,0.412034154,-0.03211217,0.333595514,0.40786159,-0.044631273,0.237870529,0.496190041,0.001519058,0.245350853,0.392509043,-0.017347625,0.269776434,0.350341201,-0.03227653,0.29695195,0.332019508,-0.041203797,0.210730329,0.51422596,-0.010982082,0.204967931,0.402304441,-0.031714752,0.225506052,0.348643452,-0.044355307,0.252627671,0.31897366,-0.05070385,0.184928119,0.55523181,-0.025051419,0.173380136,0.468474418,-0.044377133,0.188900173,0.417355895,-0.053944796,0.215018332,0.385587096,-0.058838751 +Left,0.243935078,0.805731535,2.07E-07,0.289326251,0.72574985,-0.011125941,0.307327569,0.61624372,-0.017588973,0.315515935,0.526389539,-0.026742065,0.338158846,0.459435046,-0.035678782,0.265724033,0.510848761,0.002496719,0.276819289,0.428059638,-0.020398749,0.299509138,0.402564704,-0.040614113,0.321078241,0.409588873,-0.051941857,0.235375598,0.504310846,-0.004133154,0.234715953,0.390148163,-0.02546237,0.26269269,0.357670426,-0.041860502,0.291061878,0.370045364,-0.050203681,0.209108725,0.523897469,-0.014731485,0.195107132,0.40391314,-0.037106644,0.223828375,0.360875607,-0.050269946,0.257384807,0.360577613,-0.055606917,0.183807209,0.565132201,-0.026567873,0.171473861,0.475090623,-0.047772367,0.193055198,0.430239439,-0.057667445,0.223668471,0.41992864,-0.061386827 +Left,0.24755238,0.806853175,1.78E-07,0.2916632,0.725558639,-0.010734367,0.308445096,0.618314266,-0.018174039,0.313413531,0.531560957,-0.028550005,0.330550343,0.460320264,-0.038226578,0.265410274,0.51072824,0.003423646,0.272681445,0.424698591,-0.019065212,0.297717184,0.411284149,-0.038888011,0.319500446,0.427917749,-0.049684491,0.235709041,0.508909404,-0.003523642,0.231737301,0.397762328,-0.025864314,0.263331592,0.376302719,-0.042712826,0.292748004,0.39903307,-0.050426889,0.20964095,0.529901743,-0.014393846,0.191635847,0.409743547,-0.035846371,0.222208843,0.373713851,-0.047871478,0.255941719,0.379882872,-0.051915385,0.185980648,0.570003808,-0.026630973,0.170247078,0.478444695,-0.045703974,0.192553088,0.435608476,-0.054206602,0.223582745,0.42864418,-0.056774247 +Left,0.251900047,0.801059902,1.81E-07,0.293854356,0.723466933,-0.011243979,0.308024943,0.608710885,-0.018448833,0.311473578,0.51959151,-0.02816689,0.328337699,0.449295372,-0.037464257,0.266583651,0.512960136,0.002547743,0.278317899,0.435186267,-0.01810695,0.306497812,0.423485935,-0.036965664,0.331471145,0.429148257,-0.048731491,0.239096463,0.509749889,-0.004282511,0.244714856,0.40852949,-0.028069645,0.28192842,0.395200074,-0.045248147,0.315300494,0.412559897,-0.053219616,0.213870034,0.527337372,-0.014807849,0.201236859,0.409051418,-0.037935838,0.235564008,0.379515767,-0.049765795,0.271577388,0.38136977,-0.05378148,0.190333724,0.564235628,-0.026724923,0.179108649,0.472996593,-0.04707218,0.203445673,0.436400831,-0.055448029,0.234647304,0.429895401,-0.058368653 +Left,0.252900749,0.797366679,1.87E-07,0.296532631,0.716494799,-0.009345305,0.308960319,0.602535069,-0.013138271,0.309243888,0.514772892,-0.020004913,0.322365552,0.447099507,-0.027067816,0.271603912,0.516906977,0.006861857,0.286100239,0.446257502,-0.012276998,0.312886119,0.424884915,-0.030824767,0.338104993,0.421616912,-0.042506047,0.24468717,0.511621296,-0.000164518,0.251480907,0.414723068,-0.021215854,0.282869995,0.391993731,-0.039166942,0.313851565,0.401422203,-0.048954621,0.219731659,0.526824653,-0.010951218,0.213394403,0.418644071,-0.033342477,0.246493727,0.388411224,-0.048499193,0.282089055,0.395038009,-0.055315733,0.194984257,0.559275866,-0.022934489,0.186036363,0.467799038,-0.043938421,0.209899291,0.433126539,-0.054894872,0.241710484,0.432812482,-0.059941079 +Left,0.256641775,0.809271872,1.94E-07,0.299632281,0.729163826,-0.009765445,0.312693059,0.615104377,-0.013826068,0.312945396,0.528664649,-0.02078825,0.326906383,0.462729067,-0.027789298,0.276627392,0.527768731,0.005116516,0.290644795,0.455104589,-0.014295563,0.318670988,0.434415996,-0.032640759,0.34496963,0.431840748,-0.044049799,0.250297129,0.525295913,-0.001530616,0.257694513,0.428051531,-0.023553323,0.289363176,0.408538431,-0.04134272,0.319498092,0.419802904,-0.050492834,0.225544095,0.541361153,-0.011732965,0.221247464,0.438105226,-0.033053111,0.25523594,0.412986875,-0.046410788,0.290071249,0.423852623,-0.051826511,0.200919762,0.573708653,-0.023369689,0.193062365,0.484275162,-0.042163823,0.217382863,0.448276222,-0.05183202,0.248769507,0.446727216,-0.056054272 +Left,0.254919738,0.803215861,1.91E-07,0.298056602,0.723774195,-0.008173428,0.310688257,0.609982073,-0.012155233,0.310960472,0.524683297,-0.019526828,0.325884789,0.462139904,-0.026868246,0.272742361,0.521100163,0.004853994,0.28329277,0.442494035,-0.013671991,0.314174235,0.429916084,-0.030973261,0.341587991,0.433833838,-0.041940581,0.247690961,0.523079515,-0.002818649,0.256865442,0.424162984,-0.024625542,0.294262081,0.411082506,-0.041580986,0.326600552,0.424671531,-0.050130572,0.223940685,0.540032208,-0.013700689,0.22241959,0.434744835,-0.034568757,0.262929112,0.417409778,-0.045969762,0.300486267,0.431403399,-0.050056815,0.200487256,0.571276248,-0.025989242,0.196503744,0.479316175,-0.04402829,0.226332054,0.451834798,-0.051582854,0.26045531,0.456004024,-0.054231979 +Left,0.25683105,0.792143822,2.76E-07,0.300269336,0.71066916,-0.009718256,0.313264906,0.589004219,-0.011724563,0.319013923,0.497891128,-0.01706223,0.336013436,0.430233061,-0.02173605,0.27515313,0.515844643,0.011689487,0.288630545,0.441206127,-0.006069186,0.319104284,0.419571847,-0.023117326,0.346638054,0.409687489,-0.034323815,0.251185417,0.516874075,0.005877377,0.268243194,0.427162766,-0.015861955,0.303009272,0.411167383,-0.03295752,0.335244,0.411200166,-0.041728415,0.226923764,0.52980715,-0.004093709,0.23823671,0.43750608,-0.027122114,0.278081894,0.42425105,-0.038471915,0.316326171,0.433093011,-0.041861046,0.201705948,0.554175735,-0.015736803,0.214472845,0.473269016,-0.035659414,0.247341439,0.451117903,-0.044098206,0.282787174,0.44950211,-0.046960097 +Left,0.254996777,0.800273597,2.67E-07,0.30208832,0.721530974,-0.008233692,0.318385541,0.601542354,-0.009736336,0.329975784,0.512480915,-0.014976645,0.350659311,0.446383506,-0.02014395,0.279960781,0.523288131,0.015563601,0.298121035,0.456232101,-0.000642178,0.328272313,0.435125113,-0.017897872,0.354912013,0.425407469,-0.029674225,0.256052285,0.521422625,0.008910614,0.276538074,0.436628699,-0.012220389,0.311891139,0.422176659,-0.030783305,0.344718695,0.426755965,-0.040489689,0.231158361,0.532927752,-0.001763719,0.244605213,0.441543281,-0.023558155,0.283575267,0.428485483,-0.03619682,0.321194798,0.439548343,-0.040760238,0.204766721,0.557008803,-0.014024487,0.215224206,0.476029009,-0.033628691,0.247139066,0.453275919,-0.04272823,0.282760978,0.453610122,-0.046125606 +Left,0.259224653,0.807306767,1.60E-07,0.306070507,0.729376197,-0.004432241,0.325334072,0.62436229,-0.008373146,0.339256525,0.542948484,-0.016807452,0.358267218,0.479700029,-0.025416555,0.288520426,0.534181416,0.004620903,0.301562369,0.441295028,-0.016018348,0.334393829,0.437296599,-0.033967052,0.360895216,0.455366135,-0.04420149,0.264518648,0.534280837,-0.004713707,0.280058593,0.428923726,-0.029072631,0.319547057,0.432596594,-0.04778916,0.348905504,0.466272712,-0.056594588,0.239642859,0.547102213,-0.016736006,0.24633424,0.439540982,-0.037734617,0.288260847,0.437926501,-0.049282048,0.323025107,0.46835047,-0.053133108,0.21258679,0.572520554,-0.029865025,0.210117698,0.482266068,-0.047824718,0.2404612,0.45899725,-0.056099914,0.274449557,0.468878925,-0.058953337 +Left,0.257840067,0.816891789,1.38E-07,0.305645108,0.739784122,-0.007795426,0.329426259,0.637732089,-0.015022387,0.348716319,0.557823479,-0.026574396,0.372993469,0.49693799,-0.037862036,0.28831467,0.544424117,0.001584391,0.302460134,0.443595231,-0.023217438,0.338826239,0.449071348,-0.044494361,0.36418885,0.477584898,-0.056052126,0.263773918,0.544205129,-0.007470431,0.27908662,0.430767894,-0.035724267,0.321650237,0.44646585,-0.05679309,0.347424984,0.490586668,-0.066429354,0.237732887,0.555509567,-0.019648531,0.242690921,0.439410031,-0.043690845,0.286927342,0.447169185,-0.055698354,0.317684203,0.487854749,-0.058823399,0.208979636,0.577469826,-0.033183835,0.206470966,0.481002867,-0.052968077,0.239025682,0.46709621,-0.060750253,0.270167232,0.489506513,-0.062590867 +Left,0.254949093,0.81087774,1.60E-07,0.302680969,0.731934011,-0.010341791,0.329442024,0.630605817,-0.018593276,0.351946235,0.550199986,-0.030692808,0.376444072,0.485569626,-0.042468287,0.283114433,0.541461647,0.002741219,0.296826035,0.445975214,-0.021374337,0.331555814,0.451144516,-0.042864081,0.356089324,0.476911247,-0.054934699,0.257450551,0.539562106,-0.005087756,0.271394908,0.429238498,-0.033219885,0.31274277,0.443866551,-0.054965202,0.339885443,0.487183958,-0.065140672,0.230509579,0.55001837,-0.016402729,0.23528555,0.436566353,-0.040307704,0.278242916,0.442008853,-0.052766439,0.31031242,0.480197787,-0.05628702,0.201674595,0.572454572,-0.029350266,0.198540956,0.478206754,-0.049107246,0.230527043,0.462734103,-0.057314359,0.263397187,0.48201105,-0.059475508 +Left,0.256576478,0.819163501,1.36E-07,0.298790902,0.73184067,-0.008610189,0.319725692,0.619839072,-0.01546564,0.337720245,0.534811437,-0.026544256,0.358701348,0.465704858,-0.037276711,0.271311104,0.538506866,0.005000714,0.284502774,0.449940622,-0.017890776,0.321485817,0.453990877,-0.037761796,0.347983092,0.471835434,-0.049204983,0.246345967,0.543144941,-0.003857508,0.261691779,0.43808341,-0.032280907,0.307268083,0.456982106,-0.051933754,0.336761653,0.49626255,-0.060040195,0.220716715,0.56092155,-0.016112901,0.226868927,0.454674602,-0.041606203,0.274054378,0.465657711,-0.051318604,0.308093429,0.50131923,-0.051891789,0.193193048,0.5922786,-0.029800823,0.192623407,0.501047611,-0.05040653,0.227316514,0.491520792,-0.056217726,0.259491235,0.511556208,-0.056020029 +Left,0.252505004,0.836013973,1.06E-07,0.297753453,0.742387772,-0.005759294,0.316606909,0.631482422,-0.011676814,0.324826837,0.549213648,-0.022713082,0.33092466,0.492132217,-0.033760626,0.270074129,0.540473044,0.002762179,0.284813076,0.452288538,-0.023044681,0.32142067,0.456551313,-0.043348134,0.3491638,0.475812823,-0.054101001,0.245791242,0.552927196,-0.008194211,0.264358282,0.453258425,-0.041192584,0.310209662,0.477285147,-0.061881576,0.340345591,0.522326231,-0.069339208,0.220063508,0.576347351,-0.022286953,0.235305756,0.485176176,-0.052321311,0.285256922,0.503821909,-0.064194679,0.319237798,0.545237601,-0.064627305,0.191938281,0.612134635,-0.03729469,0.197263181,0.525343537,-0.060873277,0.234125093,0.524138987,-0.068067625,0.266788989,0.550215006,-0.067950659 +Left,0.241415352,0.841414928,6.74E-08,0.289215177,0.768988311,-0.006371533,0.318492621,0.662120581,-0.015501122,0.348650455,0.595406353,-0.029680153,0.385932028,0.557175636,-0.043571893,0.275114745,0.545503259,-0.000836068,0.298142046,0.467885971,-0.029454332,0.332716137,0.499496102,-0.050542288,0.353018492,0.540263653,-0.060840413,0.245315641,0.555252671,-0.011965482,0.270681024,0.469754517,-0.043689504,0.313968569,0.525230467,-0.06029718,0.334929645,0.585089386,-0.064967886,0.215194806,0.581359565,-0.026266508,0.239586592,0.50056839,-0.058543779,0.288521796,0.559906542,-0.0647934,0.31304881,0.620859385,-0.060365565,0.1851556,0.62276262,-0.041041356,0.20999366,0.554649293,-0.065941609,0.248726815,0.588407815,-0.068004124,0.271336913,0.632766783,-0.063281819 +Left,0.249258757,0.8373698,7.47E-08,0.297819823,0.769171417,-0.005593374,0.329149097,0.664636016,-0.014525006,0.362145603,0.599980593,-0.028737227,0.402757436,0.567035913,-0.043052085,0.289278507,0.541763365,0.000206732,0.313207895,0.465773582,-0.026897665,0.346975178,0.494553924,-0.047291063,0.368603826,0.534570396,-0.057630267,0.260845661,0.548630655,-0.011038365,0.288699031,0.465909541,-0.041930322,0.330954432,0.521978319,-0.058753222,0.351914793,0.583527863,-0.063849017,0.23147136,0.572139919,-0.025217926,0.259112716,0.49306488,-0.056432899,0.306431204,0.553903222,-0.063281029,0.330619693,0.617591858,-0.059609141,0.201601177,0.611915767,-0.039886206,0.227245346,0.544109643,-0.06426084,0.265665501,0.578559995,-0.066928938,0.289075911,0.624623001,-0.062836722 +Left,0.251858622,0.832912743,4.72E-08,0.304379165,0.774903893,-0.00448867,0.345309258,0.680066228,-0.013053531,0.383005589,0.622537136,-0.026903568,0.422516465,0.597744346,-0.041028369,0.314187437,0.542549312,0.00161125,0.344626158,0.483012617,-0.023368811,0.375861347,0.517185986,-0.043538749,0.395851642,0.561621904,-0.054007426,0.285585225,0.54339397,-0.009429605,0.323648304,0.478625238,-0.036695842,0.359486967,0.53867507,-0.053023182,0.37525928,0.60257566,-0.058557361,0.254982769,0.561957061,-0.023037199,0.290739954,0.500835419,-0.050416879,0.330707669,0.565046132,-0.057454091,0.349539965,0.630006492,-0.054855667,0.222930431,0.597907245,-0.0371258,0.252341539,0.53671819,-0.057753026,0.286786944,0.574637353,-0.059049953,0.307335258,0.624096215,-0.054559592 +Left,0.249236092,0.827964902,1.56E-08,0.307667464,0.793014884,-0.007465896,0.361024827,0.723836064,-0.019363001,0.40434438,0.684311986,-0.036170404,0.447288513,0.683563232,-0.052696936,0.350090832,0.58313942,-0.00464673,0.390190631,0.531635106,-0.033157207,0.412197232,0.585843384,-0.053614192,0.419588029,0.640881777,-0.063247427,0.320129991,0.571149826,-0.015882965,0.367425621,0.507740855,-0.045621693,0.389974028,0.587764442,-0.059718557,0.391131312,0.65835923,-0.062879212,0.285047829,0.575158179,-0.029997967,0.328916728,0.517615259,-0.05996928,0.357486546,0.60547483,-0.063463368,0.362799823,0.678613961,-0.057791598,0.245955974,0.594303906,-0.04465105,0.285603225,0.546467364,-0.066438138,0.312011242,0.60582751,-0.06448295,0.318870366,0.663963795,-0.057352625 +Left,0.238929793,0.833674908,-6.25E-08,0.298514783,0.822332621,-0.009495481,0.359157711,0.775637984,-0.020947434,0.407607794,0.754717171,-0.03764122,0.451299131,0.776729226,-0.054053668,0.370244592,0.642268181,-0.001230919,0.412262857,0.576580405,-0.029662497,0.419545472,0.632102311,-0.050643198,0.411767095,0.690033197,-0.059967719,0.342626333,0.614094913,-0.010613054,0.390178412,0.54367882,-0.039967764,0.391289473,0.629791915,-0.054855149,0.373821616,0.698804557,-0.057975978,0.307281822,0.597948134,-0.02341025,0.351205677,0.524142027,-0.050951947,0.357964367,0.618798792,-0.053627435,0.344694108,0.692170501,-0.047421571,0.26474607,0.590863824,-0.037251737,0.300035894,0.528696716,-0.056750473,0.313735247,0.588713765,-0.054536507,0.308675259,0.646369457,-0.04741279 +Left,0.226377606,0.832812846,-1.13E-07,0.291412234,0.83620131,-0.011120335,0.358483613,0.794632733,-0.023447771,0.411291361,0.782324135,-0.040513046,0.456190199,0.816156447,-0.056555565,0.367137104,0.66876471,-0.006005978,0.414625704,0.598885119,-0.034940679,0.413047016,0.660983562,-0.054399487,0.394487947,0.718136549,-0.062492449,0.33935228,0.635166287,-0.014657498,0.388428867,0.571438074,-0.043571237,0.378672659,0.663182735,-0.054904267,0.353639096,0.722097993,-0.056153324,0.303782761,0.609652936,-0.026983893,0.352652758,0.537596643,-0.053675141,0.348353207,0.633102238,-0.051589329,0.326154828,0.69536221,-0.042837944,0.262015045,0.590657234,-0.040627223,0.30072841,0.528455079,-0.060174871,0.307002753,0.595586538,-0.055260792,0.293676049,0.651645303,-0.046214044 +Left,0.223545089,0.841990054,-1.11E-07,0.288781226,0.840453386,-0.011249714,0.35431239,0.793298125,-0.022628929,0.40608722,0.775917172,-0.038971439,0.454000086,0.795954764,-0.053949628,0.367231846,0.667632103,0.000398761,0.414553881,0.601386547,-0.029663289,0.413842589,0.662608087,-0.05174851,0.396201074,0.720010757,-0.061419591,0.339231849,0.63098532,-0.007922879,0.387960911,0.570192158,-0.036879398,0.380216658,0.660449266,-0.050141115,0.356314451,0.72202754,-0.052756354,0.302820355,0.603727281,-0.020582603,0.350785524,0.535871148,-0.048264664,0.347199649,0.633518517,-0.047213685,0.325685918,0.699921489,-0.038871326,0.260045201,0.584068954,-0.034649935,0.300136685,0.528291583,-0.05522199,0.305601299,0.59777683,-0.050658252,0.291433096,0.655573905,-0.041567829 +Left,0.226981521,0.845828772,-1.77E-07,0.288415343,0.865056038,-0.008425224,0.350694358,0.818948627,-0.01714923,0.400607139,0.787853599,-0.030545492,0.445492059,0.797674954,-0.041797746,0.380974144,0.688729346,0.000767911,0.434987426,0.614668608,-0.027556116,0.435980946,0.678185701,-0.047186401,0.414244413,0.734037995,-0.055085763,0.356038928,0.650344312,-0.008139453,0.411376715,0.575355113,-0.033616219,0.402965546,0.66702491,-0.044155013,0.375523508,0.723718166,-0.045299735,0.322366834,0.621804833,-0.020917954,0.374736995,0.55187571,-0.046278402,0.369760215,0.648944378,-0.043366637,0.345894814,0.708157957,-0.034489516,0.281145453,0.600040078,-0.034798481,0.326906204,0.550121248,-0.055231418,0.329842836,0.622513413,-0.050204385,0.311861426,0.676410556,-0.041080706 +Left,0.22606191,0.876609802,-1.13E-07,0.290672541,0.887384892,-0.008144575,0.34822455,0.844683111,-0.016965849,0.389912784,0.795696139,-0.030762427,0.432087123,0.785162985,-0.042494487,0.39034602,0.724965572,0.005318912,0.444589704,0.651958942,-0.02430333,0.447987467,0.699375093,-0.046485353,0.42867294,0.751141429,-0.055813808,0.365583092,0.683852255,-0.004023666,0.423067033,0.595552444,-0.031050991,0.419852406,0.668769598,-0.045368392,0.396385461,0.731304944,-0.048743062,0.333220989,0.654741108,-0.017502125,0.386484444,0.574808836,-0.044427745,0.385876805,0.659609497,-0.046831883,0.366476834,0.727940261,-0.041236449,0.292500228,0.634649158,-0.032033928,0.336003244,0.586547911,-0.054207724,0.343153745,0.653761625,-0.053761113,0.331699729,0.715580344,-0.047518633 +Left,0.230970025,0.880146682,-4.31E-08,0.294386268,0.899926543,-0.007472262,0.359673411,0.858330369,-0.016316757,0.411788285,0.830875933,-0.030218016,0.45478633,0.842523873,-0.042677026,0.395871162,0.736562371,-0.002128664,0.455675304,0.666445017,-0.032135434,0.462971985,0.726909816,-0.054172911,0.445775837,0.786504507,-0.063748769,0.37300545,0.69704771,-0.012258919,0.436536431,0.618604481,-0.040548686,0.437527031,0.702738643,-0.05540527,0.413328677,0.768122137,-0.059500892,0.341022342,0.66846621,-0.025760483,0.400253445,0.591633379,-0.053673886,0.403944671,0.685911238,-0.057039831,0.384085387,0.758810759,-0.052439466,0.300300628,0.646555543,-0.040088437,0.347242504,0.603676319,-0.06463825,0.356062382,0.674414277,-0.065930948,0.343073308,0.737579823,-0.060986187 +Left,0.237201914,0.883620262,-3.95E-08,0.302951306,0.902992666,-0.006476066,0.369197994,0.859145641,-0.014284511,0.421258241,0.831189573,-0.027402058,0.464378268,0.841082275,-0.039227329,0.40211463,0.738129914,0.000237726,0.462240964,0.666428864,-0.028630728,0.470453203,0.728870094,-0.05045788,0.454996377,0.788017571,-0.060406141,0.37955302,0.699016809,-0.010070096,0.444081724,0.622610211,-0.037359487,0.445764124,0.708134115,-0.052549403,0.422353387,0.771134377,-0.05755987,0.348222136,0.6692307,-0.023754036,0.408800185,0.593152702,-0.050222743,0.412921578,0.687240243,-0.053874604,0.393036842,0.757512927,-0.050199334,0.308234602,0.644595742,-0.038297847,0.356912255,0.601746321,-0.061390728,0.366261482,0.671108603,-0.062539928,0.353161931,0.731634855,-0.058181357 +Left,0.24518846,0.870298743,8.74E-08,0.311275721,0.889722705,-0.006753646,0.378596187,0.852218449,-0.015503068,0.432848305,0.83459723,-0.029599475,0.47433883,0.866580307,-0.043586273,0.404115438,0.725693524,-0.001794341,0.459893972,0.648340285,-0.026903357,0.475465178,0.698977888,-0.047624402,0.468895346,0.754951358,-0.058323465,0.381011069,0.690777302,-0.01256799,0.441949993,0.601272941,-0.038992364,0.455378979,0.67178452,-0.057164207,0.440158218,0.737298012,-0.065049618,0.350427508,0.66279161,-0.025865179,0.405246526,0.577421486,-0.050462849,0.420198381,0.656723738,-0.059257813,0.40735662,0.726650476,-0.060037009,0.31321618,0.636927187,-0.040018734,0.361870736,0.578115523,-0.061109006,0.378587753,0.635492444,-0.065008752,0.371778637,0.696573198,-0.063621573 +Left,0.238908157,0.893069029,1.11E-07,0.301998436,0.907710791,-0.00878125,0.36721307,0.869835496,-0.018705854,0.418967456,0.85028702,-0.033074029,0.461188912,0.867975473,-0.047500879,0.392870188,0.738106072,-0.00786245,0.444753826,0.652707994,-0.034206606,0.466417432,0.698829889,-0.056154657,0.466862589,0.753679335,-0.06810493,0.368988574,0.704774618,-0.018278813,0.428458542,0.604244947,-0.04567882,0.447803915,0.668495476,-0.064770252,0.43831712,0.734282613,-0.073994957,0.337193161,0.679745317,-0.031044943,0.391168326,0.587665677,-0.056067094,0.41147238,0.657490313,-0.065628558,0.403702527,0.725512147,-0.067779809,0.298599184,0.658731818,-0.044848595,0.345698863,0.593658149,-0.067057632,0.368139446,0.641647995,-0.072437115,0.368278235,0.699279249,-0.072621077 +Left,0.232199058,0.904929757,1.35E-07,0.296301842,0.917090952,-0.008285183,0.360909909,0.877727032,-0.018313142,0.411468267,0.855661273,-0.032687627,0.452818036,0.874274611,-0.046970867,0.388803065,0.748891711,-0.008542487,0.440628529,0.665430725,-0.034056291,0.46277082,0.708828151,-0.055309828,0.464095116,0.762564421,-0.066989116,0.364351064,0.713868201,-0.019303557,0.423538893,0.613929272,-0.046743359,0.442389876,0.677088022,-0.065328248,0.431679517,0.743971109,-0.073876932,0.332283497,0.688554287,-0.032184999,0.386241883,0.592929959,-0.056834139,0.407746851,0.662363291,-0.065935835,0.399915695,0.732192874,-0.067770295,0.293054909,0.66803503,-0.046061356,0.340123773,0.602627218,-0.068359204,0.361735284,0.650341511,-0.073583357,0.360607266,0.708276093,-0.073461555 +Left,0.22902517,0.910391688,1.40E-07,0.293701142,0.923951864,-0.006637009,0.355492592,0.878529012,-0.014688382,0.40049842,0.83849746,-0.027105529,0.442641914,0.833829701,-0.039222591,0.391387284,0.762768924,-0.000378315,0.445761323,0.694710016,-0.025787052,0.468109339,0.736296952,-0.047679536,0.472028613,0.789516568,-0.059859451,0.368639886,0.724841535,-0.010293465,0.433303654,0.646196842,-0.036430299,0.451928943,0.707818329,-0.05514814,0.445320815,0.772108436,-0.064103246,0.338009357,0.696560264,-0.022900818,0.397404224,0.613675475,-0.0473409,0.41730839,0.686130106,-0.056513056,0.412448049,0.757555306,-0.058728125,0.298924327,0.676867306,-0.036402587,0.347912133,0.631405473,-0.058680709,0.36713466,0.684046149,-0.064222254,0.367574751,0.742080331,-0.064602718 +Left,0.221020669,0.902881861,1.26E-07,0.288486034,0.915332317,-0.007194586,0.353810757,0.874662817,-0.017191052,0.406185478,0.852247715,-0.032142892,0.44783324,0.87983942,-0.047138114,0.385405898,0.743578076,-0.005064222,0.440488607,0.665226638,-0.031230215,0.461021036,0.713969111,-0.05304575,0.460366338,0.772502005,-0.064936034,0.361313581,0.709192157,-0.016488886,0.42462793,0.615558684,-0.042716242,0.443251491,0.683032751,-0.060881011,0.434206456,0.749898314,-0.069506183,0.328917712,0.683896661,-0.030290581,0.386438221,0.594759285,-0.055331308,0.405550957,0.671658874,-0.064221367,0.398614973,0.742423058,-0.065838143,0.288591355,0.664938867,-0.044989873,0.337197602,0.605587423,-0.067370653,0.355894446,0.661390722,-0.071473666,0.353072673,0.722995698,-0.070494078 +Left,0.210806236,0.880332649,1.90E-07,0.277695715,0.893255353,-0.009650741,0.344823301,0.855207682,-0.020227619,0.399459004,0.842207015,-0.035152517,0.442149013,0.878896594,-0.050191741,0.373474121,0.723520279,-0.005195253,0.42658779,0.646505594,-0.030119108,0.447568834,0.691011429,-0.051869664,0.449019015,0.74605608,-0.064170495,0.349117756,0.688779891,-0.015108373,0.408698469,0.593979478,-0.039860003,0.426690072,0.654528141,-0.05806005,0.418466657,0.719304383,-0.06696143,0.316222847,0.662495673,-0.027554862,0.370067328,0.576102614,-0.051048819,0.38752839,0.64754343,-0.059337076,0.379535645,0.715969622,-0.06077766,0.275510252,0.641141474,-0.041240759,0.322177023,0.584946573,-0.061958618,0.336988777,0.640226483,-0.064790845,0.330629796,0.699807107,-0.063046925 +Left,0.200049534,0.854816496,1.79E-07,0.264087021,0.859645128,-0.010796119,0.330637246,0.814032853,-0.022057155,0.384133428,0.799838603,-0.037452579,0.427513123,0.830140293,-0.053146955,0.35560441,0.677475572,-0.011048624,0.404049128,0.589981675,-0.038001414,0.427768677,0.629727483,-0.059707683,0.431767732,0.684408486,-0.071404718,0.328467041,0.643964946,-0.021403672,0.382554531,0.531363428,-0.049863778,0.403891474,0.592957556,-0.068707071,0.395915329,0.664724767,-0.076894902,0.292790383,0.622066379,-0.034054637,0.342547387,0.516655028,-0.061071336,0.364682674,0.587413251,-0.069596276,0.358027905,0.66127795,-0.069892712,0.249725968,0.606282592,-0.047796007,0.2922979,0.53257966,-0.072227158,0.312077999,0.580708504,-0.076696396,0.309849501,0.639465392,-0.075164668 +Left,0.204324767,0.850089431,2.04E-07,0.2652888,0.848021269,-0.0114791,0.330839276,0.792699158,-0.024867622,0.382656455,0.777664244,-0.042086937,0.427523166,0.801582813,-0.060192604,0.346736312,0.652276099,-0.019411003,0.394028187,0.550143182,-0.050559681,0.420746833,0.585435987,-0.075291701,0.426206917,0.64753902,-0.08797992,0.315575093,0.621883571,-0.030234508,0.365149617,0.491800249,-0.060465563,0.39220354,0.542325139,-0.080110729,0.389122665,0.616788745,-0.089331247,0.276245654,0.606343329,-0.043211475,0.321149021,0.475274861,-0.070287026,0.349343091,0.531177342,-0.079432681,0.348308444,0.60543865,-0.080891512,0.229993343,0.601052344,-0.057307873,0.267149925,0.511365116,-0.081802078,0.294374347,0.545458436,-0.087316714,0.300678223,0.601430357,-0.086961307 +Left,0.224018186,0.884006619,4.18E-07,0.284698248,0.848231554,-0.013666105,0.341670781,0.777297258,-0.027286543,0.391056895,0.747895002,-0.043607298,0.440268844,0.757998168,-0.061367314,0.337685049,0.613274217,-0.018898768,0.371171623,0.527255714,-0.046006132,0.401430488,0.524423599,-0.067521304,0.426402658,0.554009855,-0.080351025,0.303489417,0.594012678,-0.030111341,0.331659466,0.462824732,-0.055170152,0.367015392,0.454472303,-0.07263346,0.396195352,0.491302758,-0.082706518,0.262899458,0.604923964,-0.044149734,0.280804276,0.466531217,-0.072265364,0.317478031,0.462322801,-0.088032857,0.349208593,0.501815498,-0.095320389,0.217850491,0.636903703,-0.059132822,0.230277002,0.538270354,-0.086037077,0.258613884,0.534567714,-0.096088096,0.284354746,0.570798159,-0.099799804 +Left,0.24404721,0.932730794,4.71E-07,0.301271081,0.871864855,-0.015595688,0.347911656,0.773914456,-0.029214209,0.392395377,0.719967067,-0.044902746,0.443068892,0.709722102,-0.061600819,0.326450825,0.616874754,-0.015911182,0.353128076,0.526144147,-0.044277094,0.383922964,0.501428246,-0.067602806,0.41454947,0.507823169,-0.082382761,0.29200837,0.606851518,-0.026812632,0.308012754,0.474487573,-0.053003859,0.341185212,0.44250825,-0.071617417,0.376626819,0.448403746,-0.08232104,0.253500879,0.630647957,-0.041174673,0.258708477,0.497726679,-0.073004924,0.296385556,0.476163507,-0.090462111,0.337235451,0.486433923,-0.098777495,0.214306369,0.681540847,-0.056559023,0.218869567,0.609867215,-0.089627236,0.248322845,0.610908329,-0.102089182,0.28077662,0.635617554,-0.106781676 +Left,0.248622715,0.960767448,4.89E-07,0.308758825,0.894999325,-0.015447606,0.354221195,0.790192127,-0.027743209,0.396570325,0.730802596,-0.042355828,0.444916904,0.71540612,-0.057534598,0.329168975,0.636243641,-0.011169589,0.355092078,0.54269284,-0.039576776,0.386359692,0.515603483,-0.063554227,0.416989088,0.520702243,-0.078654014,0.293666303,0.624633789,-0.021059345,0.310415179,0.495809674,-0.048794255,0.344170868,0.466910422,-0.068999171,0.378905505,0.475231111,-0.079981141,0.254606485,0.645798624,-0.034617878,0.262065768,0.518253148,-0.067030676,0.301978827,0.499903858,-0.085252345,0.343537241,0.510177076,-0.093693778,0.215486914,0.695201695,-0.049349599,0.22904405,0.638536334,-0.083164789,0.261674255,0.639186025,-0.097208232,0.296086431,0.656968892,-0.102742903 +Left,0.255628198,0.965543389,4.69E-07,0.314334989,0.901613474,-0.013767508,0.356777847,0.795866966,-0.02633597,0.39624387,0.729164779,-0.041608915,0.445087552,0.709391236,-0.057490673,0.329576373,0.646611929,-0.012135877,0.354465127,0.548408926,-0.040989626,0.388549954,0.522416949,-0.064783581,0.420959264,0.527165651,-0.079696737,0.294775367,0.637867987,-0.023035869,0.310844511,0.498895288,-0.052075107,0.350019097,0.4767223,-0.071730211,0.386504769,0.491527736,-0.081896104,0.257261485,0.659885645,-0.037148628,0.26445514,0.521639585,-0.07000836,0.310085475,0.513423562,-0.085416161,0.352988452,0.533202291,-0.091406912,0.21942459,0.70768708,-0.052326392,0.231939316,0.634102046,-0.085414946,0.267100424,0.636238933,-0.097188368,0.301395774,0.657837152,-0.101020262 +Left,0.270086825,0.958410382,4.59E-07,0.326512367,0.873703122,-0.002763761,0.361115783,0.747228801,-0.007322124,0.392316103,0.667543888,-0.016660105,0.431930363,0.632690072,-0.025284035,0.312700957,0.607467115,0.005942187,0.336878121,0.519657671,-0.01650922,0.371242523,0.497826934,-0.036083959,0.403606385,0.499067664,-0.048867352,0.276418298,0.607045293,-0.00730395,0.302135974,0.502345204,-0.032301486,0.34693709,0.489505112,-0.049263671,0.385963112,0.502531052,-0.057535522,0.243351847,0.632429004,-0.023401784,0.274329245,0.545768261,-0.052426714,0.32462576,0.546334982,-0.066295028,0.366217434,0.563491464,-0.071514815,0.219070256,0.683264315,-0.040294334,0.273709983,0.665100574,-0.068274319,0.320929348,0.677526474,-0.080164455,0.359223008,0.691693723,-0.084520802 +Left,0.282392323,0.913480878,5.16E-07,0.328504294,0.818386495,-0.000327715,0.359694004,0.688086987,-0.007009713,0.392371863,0.607702732,-0.018717011,0.428963512,0.559444606,-0.030015111,0.278753042,0.558973312,0.001367119,0.311685562,0.475886345,-0.023258151,0.354640603,0.4572528,-0.044053815,0.391859233,0.4639979,-0.056888465,0.246505886,0.571670294,-0.013663573,0.284694463,0.466109157,-0.038364999,0.337711632,0.456094205,-0.055770118,0.37986505,0.47360146,-0.064502813,0.22491765,0.609392285,-0.030510277,0.27399981,0.526083231,-0.057862651,0.330998331,0.52907145,-0.0699028,0.372566164,0.546922386,-0.073845834,0.21738942,0.668326437,-0.04781102,0.286218286,0.640510798,-0.071942151,0.337704301,0.648178935,-0.080185637,0.374529749,0.659844041,-0.081845887 +Left,0.276596487,0.87390095,6.12E-07,0.337845653,0.75566709,-0.007878665,0.36200887,0.645383835,-0.023652716,0.3843683,0.573504686,-0.043046229,0.409688979,0.514901817,-0.061129734,0.244304165,0.534261584,-0.021594385,0.297719061,0.450324655,-0.058997426,0.349896431,0.432243764,-0.086547405,0.391172826,0.437996984,-0.103743456,0.22116828,0.565266311,-0.039534993,0.278178513,0.456942558,-0.081546612,0.343266994,0.445780128,-0.106379904,0.393608749,0.462250829,-0.117748551,0.217604309,0.621658802,-0.059097979,0.276019424,0.531901062,-0.102586351,0.341443688,0.523880243,-0.118924327,0.388279349,0.531451344,-0.122890435,0.23098734,0.690930605,-0.078896143,0.306708604,0.653881848,-0.114461958,0.361805797,0.651992023,-0.124667354,0.402222574,0.658832014,-0.125988647 +Left,0.27715075,0.882248342,5.74E-07,0.329384416,0.738635182,-0.007383381,0.33724609,0.626615882,-0.02453896,0.334148079,0.551135361,-0.044270962,0.341500461,0.498131007,-0.062602066,0.222093582,0.553194582,-0.042775519,0.278230458,0.44983387,-0.086568393,0.339095145,0.434619695,-0.112973467,0.386549294,0.444551289,-0.126916885,0.210111558,0.604224324,-0.060386617,0.279081643,0.486346513,-0.106613591,0.350225687,0.474217296,-0.124101572,0.401199698,0.484848738,-0.128912121,0.221665442,0.670803547,-0.078719556,0.293047458,0.576633155,-0.123984978,0.362247288,0.563505769,-0.13184309,0.408796161,0.564804792,-0.12848334,0.246943921,0.73992759,-0.097199388,0.325549871,0.69621551,-0.132088304,0.378417641,0.682299197,-0.13758482,0.415620506,0.675300121,-0.13415888 +Left,0.269036025,0.884809732,6.05E-07,0.283977598,0.723714352,-0.015527343,0.298535943,0.594032705,-0.040812954,0.325398266,0.495756567,-0.066783935,0.350777447,0.426702201,-0.09086331,0.190863729,0.590739071,-0.061845046,0.260143459,0.475157052,-0.104463108,0.321969956,0.454275906,-0.127059057,0.365125358,0.454722196,-0.138449743,0.200369552,0.660110295,-0.075735733,0.289824665,0.542328238,-0.119464785,0.354022682,0.51736474,-0.132096842,0.397125304,0.515659571,-0.136949748,0.227893591,0.730446994,-0.09036535,0.317542374,0.629562974,-0.129944921,0.375752717,0.60252434,-0.133719444,0.414647579,0.594084561,-0.130290404,0.265337318,0.789358616,-0.105914935,0.341876149,0.722350657,-0.131406114,0.382875741,0.696418941,-0.132344916,0.412905872,0.683109701,-0.128819376 +Left,0.263465524,0.87149471,4.12E-07,0.254501671,0.744555652,-0.014000073,0.255738467,0.614332438,-0.043901712,0.272143245,0.511749744,-0.073344953,0.283065557,0.427625835,-0.100220412,0.184438318,0.640836895,-0.085350402,0.243715659,0.511113405,-0.122416079,0.308101654,0.4897888,-0.129157946,0.3417795,0.51322484,-0.127281129,0.205775291,0.714616001,-0.098620526,0.299372613,0.569050729,-0.128603846,0.352623105,0.572267592,-0.115412295,0.360981643,0.603729665,-0.104530223,0.244359374,0.783510923,-0.111093149,0.339552999,0.639977217,-0.134614035,0.373606533,0.641445994,-0.110452138,0.368992418,0.677215934,-0.092896082,0.288198948,0.838673174,-0.124719381,0.36651054,0.722884297,-0.135478064,0.380682439,0.716592669,-0.117301203,0.369213462,0.742370486,-0.103350237 +Left,0.262547791,0.866444886,2.60E-07,0.250726879,0.752660215,-0.012830577,0.25811407,0.620931923,-0.041467324,0.276266307,0.514414847,-0.068191662,0.283313543,0.427070677,-0.092381917,0.191880077,0.635020912,-0.090237103,0.26134631,0.510702908,-0.122402549,0.315438896,0.507552505,-0.127088055,0.339343518,0.538031876,-0.125852391,0.215031758,0.700139046,-0.102663979,0.313629955,0.565568268,-0.1259505,0.348075569,0.590529442,-0.112173542,0.346602082,0.626913428,-0.105288163,0.252813905,0.764750838,-0.113325365,0.348098874,0.64145726,-0.129780501,0.360487133,0.674201369,-0.106567524,0.345829576,0.717352331,-0.094376333,0.295247495,0.818461597,-0.125088856,0.371189445,0.709474802,-0.131201982,0.374351263,0.723405123,-0.113638043,0.358190179,0.757714331,-0.103633188 +Left,0.260737002,0.845383525,2.75E-07,0.25417918,0.729183912,-0.014924983,0.265505373,0.597090304,-0.043840535,0.284695655,0.492979437,-0.070147716,0.290565282,0.409875661,-0.093294315,0.196914792,0.610893786,-0.092132218,0.268673599,0.492593527,-0.125445202,0.322129488,0.495945811,-0.130512729,0.343274385,0.529727817,-0.129575253,0.218549699,0.678076029,-0.104270302,0.317486614,0.548403203,-0.130578637,0.351765424,0.57564187,-0.118033387,0.349956214,0.612206459,-0.111355819,0.254696071,0.745870054,-0.114803627,0.352085292,0.622584045,-0.133531258,0.365290284,0.657054484,-0.109892406,0.350418687,0.698877573,-0.096805088,0.296829581,0.803063691,-0.126629934,0.374370784,0.697578073,-0.135579661,0.375887096,0.713831544,-0.118745431,0.357064903,0.74624145,-0.108685568 +Left,0.26536265,0.83745563,2.45E-07,0.259368628,0.726626039,-0.013143404,0.272056699,0.596271932,-0.041524611,0.293688744,0.491504639,-0.0678702,0.30169028,0.405130386,-0.091583535,0.216641068,0.58698523,-0.090108372,0.294558436,0.476837218,-0.12273822,0.346765935,0.48561269,-0.12710911,0.367604077,0.517576635,-0.125862017,0.234707713,0.653684676,-0.102736205,0.341142952,0.53822577,-0.127517059,0.372634649,0.572236955,-0.113726258,0.36983487,0.605963051,-0.106223017,0.266718119,0.723667085,-0.113727793,0.370585978,0.616777182,-0.130337343,0.379705846,0.656618655,-0.10564144,0.362506568,0.696718097,-0.09213677,0.304911435,0.785164356,-0.126071975,0.387147456,0.692772269,-0.13283658,0.387114167,0.710131705,-0.115454175,0.367412448,0.738458991,-0.105252638 +Left,0.266771108,0.81197983,3.52E-07,0.26502201,0.697891116,-0.009612186,0.275708824,0.568501353,-0.034854699,0.285603374,0.4638623,-0.059397087,0.27473858,0.377177268,-0.082030796,0.235834718,0.537510514,-0.076227657,0.323214889,0.444128335,-0.11037305,0.379048079,0.447421432,-0.117832735,0.40600121,0.478183627,-0.117145516,0.249911219,0.600583911,-0.088564657,0.366929471,0.513607025,-0.113524348,0.401423901,0.552711546,-0.100817673,0.399313211,0.589002788,-0.092152625,0.277090937,0.675704837,-0.099787347,0.388485253,0.58799094,-0.119255312,0.403633356,0.628429472,-0.096002333,0.388027549,0.668931484,-0.080419242,0.309900373,0.743781269,-0.111700319,0.400413632,0.668274701,-0.119197175,0.408122241,0.680586755,-0.101945966,0.391842335,0.701723695,-0.089781411 +Left,0.266457498,0.818187356,4.43E-07,0.266218156,0.702705383,-0.010876837,0.27676633,0.575740099,-0.037782144,0.286037117,0.474969625,-0.063763425,0.273235679,0.391857207,-0.08813677,0.234170541,0.5426718,-0.080472358,0.319913894,0.449719548,-0.114399441,0.378622472,0.445164353,-0.121375635,0.409998238,0.468269736,-0.120714687,0.247426748,0.608815074,-0.092762291,0.366228402,0.51841104,-0.11882402,0.405842006,0.553594291,-0.105843373,0.407140434,0.588454485,-0.096501298,0.274980038,0.68532455,-0.103653759,0.388174981,0.59471482,-0.124181792,0.409997731,0.630998909,-0.100133799,0.398197711,0.671036422,-0.083556928,0.308318198,0.753342986,-0.115288451,0.400213897,0.673071802,-0.123187922,0.412918329,0.682017863,-0.104848541,0.400225073,0.702791631,-0.091648467 +Left,0.266947925,0.828769565,5.66E-07,0.26616767,0.708975434,-0.014987119,0.272786945,0.582316756,-0.043158762,0.276589841,0.484395564,-0.069737196,0.257593393,0.402097821,-0.095478438,0.230063498,0.557735384,-0.084266953,0.313552082,0.458480895,-0.120084144,0.37464565,0.443944931,-0.130162597,0.411424398,0.454830647,-0.132366136,0.242551491,0.629608572,-0.09499719,0.355976224,0.532588124,-0.125237688,0.410064757,0.544215262,-0.118011862,0.428541929,0.567748845,-0.112836674,0.269411951,0.706127286,-0.104590267,0.379261255,0.60939461,-0.128132075,0.41976887,0.618454754,-0.109434031,0.427519113,0.647479951,-0.096044138,0.303659976,0.772111952,-0.115214296,0.391446769,0.684733152,-0.125408575,0.413702667,0.677203774,-0.110600688,0.412079275,0.693021774,-0.099723011 +Left,0.268442214,0.823027372,7.49E-07,0.264699966,0.706466079,-0.021045374,0.266213119,0.578122139,-0.047847919,0.264709413,0.481026947,-0.070478365,0.243209258,0.400321364,-0.094341494,0.220298797,0.568791986,-0.092715412,0.292745948,0.468524218,-0.136883035,0.349290937,0.435497046,-0.159371391,0.394255519,0.419145465,-0.171490297,0.234400541,0.644948602,-0.102391407,0.33586067,0.541650057,-0.144178301,0.400417477,0.508878112,-0.153369248,0.443204641,0.498111576,-0.159756839,0.262255639,0.72242099,-0.111120291,0.361161351,0.619192183,-0.14862667,0.418109477,0.588378549,-0.148267344,0.455018103,0.578565359,-0.145943984,0.296184033,0.785123229,-0.120204225,0.366840005,0.711912513,-0.145399764,0.402655184,0.685034633,-0.143494681,0.42733264,0.670977592,-0.140537858 +Left,0.26826185,0.838386655,7.21E-07,0.263650894,0.718185961,-0.02035046,0.261538327,0.590733886,-0.04650775,0.258140832,0.494550467,-0.068877399,0.237128794,0.410567999,-0.09252049,0.216938764,0.583977699,-0.091202542,0.285468757,0.478820562,-0.135196894,0.341311604,0.442428529,-0.157156214,0.385478288,0.423903048,-0.168696955,0.233040616,0.660736203,-0.101102211,0.330684245,0.5509516,-0.144085646,0.395108044,0.51387167,-0.154251978,0.437867492,0.500552952,-0.160662264,0.262232035,0.73804915,-0.110013612,0.356967688,0.630731404,-0.14978072,0.41443342,0.598013103,-0.15139924,0.451920122,0.588691652,-0.149294853,0.296302348,0.800849557,-0.119006507,0.362927943,0.725007176,-0.146982789,0.398899198,0.695430756,-0.147108972,0.423965275,0.680975437,-0.144760013 +Left,0.260653079,0.852894783,8.40E-07,0.260971397,0.726866424,-0.025703205,0.263664424,0.595758498,-0.055029947,0.262250632,0.4962008,-0.079849146,0.237456918,0.414293349,-0.105903715,0.218129069,0.59809804,-0.099672809,0.283384293,0.493889183,-0.149490848,0.3384642,0.452341735,-0.17603527,0.38443169,0.426830471,-0.190604731,0.236405566,0.677422404,-0.108774528,0.329337597,0.56913358,-0.159235582,0.395880163,0.517986894,-0.172965989,0.444831669,0.490031183,-0.181270227,0.267332405,0.753691494,-0.117517285,0.361162364,0.648971796,-0.16316013,0.418030143,0.601074934,-0.167269185,0.457631946,0.57413733,-0.166185424,0.302370697,0.816546381,-0.126860291,0.371348113,0.730713189,-0.158325359,0.412454605,0.684901297,-0.160045505,0.445221305,0.656508327,-0.158624753 +Left,0.261509687,0.850879192,8.63E-07,0.260671169,0.726727962,-0.022522731,0.267182857,0.594030321,-0.051386029,0.270939857,0.489691764,-0.075870007,0.246511608,0.409088224,-0.101551659,0.225103527,0.599385083,-0.10327597,0.283011705,0.489318997,-0.153967574,0.334944695,0.442236066,-0.181440845,0.379892349,0.414788365,-0.196836725,0.2434728,0.677456617,-0.113909736,0.32402426,0.569280744,-0.166387931,0.389343262,0.51657182,-0.182801902,0.439400494,0.490924537,-0.192729175,0.275201678,0.752217531,-0.12322975,0.360818535,0.65341109,-0.169927046,0.42063266,0.60139209,-0.177985474,0.463367462,0.572060525,-0.179909095,0.311740786,0.814166903,-0.132544801,0.378966808,0.733754277,-0.165304005,0.42146188,0.692024112,-0.170129195,0.455900818,0.666631937,-0.171223491 +Left,0.264880985,0.865639865,7.37E-07,0.291401207,0.736923754,-0.006211834,0.306702465,0.601765633,-0.026316758,0.312935561,0.500191808,-0.04766228,0.303901196,0.415195048,-0.070317879,0.25086993,0.582310796,-0.073298693,0.305288851,0.458241522,-0.122756541,0.359784395,0.424403727,-0.149661377,0.405106694,0.413891852,-0.164503083,0.247167692,0.644771338,-0.09249711,0.322193801,0.523901045,-0.144977972,0.391278625,0.495542377,-0.16299507,0.440146327,0.494714499,-0.171574563,0.261948258,0.718360424,-0.110491045,0.337959409,0.616876125,-0.159858882,0.404240727,0.596265376,-0.169126034,0.450818628,0.589345217,-0.169666097,0.287702709,0.79039526,-0.127416313,0.363052905,0.737138629,-0.166279688,0.415761262,0.712623179,-0.17453137,0.455379248,0.698427498,-0.175710142 +Left,0.269469738,0.923191428,6.07E-07,0.346357554,0.807108402,0.005021893,0.371316791,0.700921059,-0.009994124,0.390915036,0.626241446,-0.030988125,0.413817942,0.570266366,-0.052860361,0.282665014,0.589669466,-0.045105878,0.326486379,0.466970503,-0.090289123,0.383101583,0.443260282,-0.119886234,0.427617013,0.450735927,-0.137624264,0.26245299,0.630314708,-0.071407266,0.321565211,0.496527851,-0.119788356,0.393715948,0.481188238,-0.14535445,0.444441915,0.494334042,-0.159000009,0.261783659,0.696071267,-0.096388757,0.32099551,0.591609836,-0.142021269,0.393329382,0.576147377,-0.158861473,0.442584574,0.577784538,-0.165662244,0.276111603,0.772400022,-0.120100215,0.348781407,0.726160824,-0.154951349,0.404878974,0.715280056,-0.164740384,0.446546555,0.71404928,-0.168454185 +Left,0.290973365,0.911419451,6.01E-07,0.353751987,0.817037463,-0.00096962,0.374727875,0.71990025,-0.011041485,0.38484174,0.657868385,-0.02527767,0.389945984,0.60209924,-0.039881602,0.31164369,0.581701458,-0.021510432,0.352179676,0.503327131,-0.05622863,0.397044957,0.482651681,-0.081590876,0.435485363,0.48452878,-0.097890183,0.283771098,0.604634941,-0.041474953,0.327776432,0.498643994,-0.079448678,0.385779142,0.486151814,-0.103683673,0.432019651,0.493781567,-0.116996378,0.267704487,0.655875027,-0.062429994,0.317060113,0.573792398,-0.104289033,0.376761764,0.570288181,-0.12491136,0.421876341,0.574756086,-0.133856401,0.266945034,0.724542081,-0.082548998,0.332432657,0.707050622,-0.118440501,0.382355154,0.71109128,-0.13248156,0.420798481,0.715897918,-0.138513699 +Left,0.313919902,0.914696991,4.12E-07,0.366555095,0.835835159,-0.007124386,0.395191193,0.71547997,-0.018155735,0.418875635,0.631797075,-0.032291703,0.447122544,0.571785569,-0.048187379,0.350234449,0.608064175,-0.023592383,0.367559701,0.501217365,-0.055932701,0.405090243,0.485317647,-0.079961531,0.441273034,0.493167251,-0.094425693,0.318879992,0.62513268,-0.037854794,0.335993558,0.506885052,-0.071219027,0.384735465,0.493010342,-0.092815302,0.425834894,0.504653215,-0.104649104,0.290255398,0.665969789,-0.053546309,0.303331584,0.556288362,-0.087369286,0.353726923,0.54406321,-0.102408797,0.39564687,0.548543334,-0.109046139,0.268571347,0.725473881,-0.069455415,0.296133608,0.668712258,-0.100170165,0.337672263,0.666111648,-0.110796735,0.373154759,0.673126042,-0.114851944 +Left,0.30757761,0.940960467,3.06E-07,0.368060887,0.867976308,-0.008156934,0.405031413,0.747898638,-0.016085876,0.436883897,0.666678429,-0.026725994,0.472629189,0.613685668,-0.039182395,0.36493063,0.638647795,-0.015553903,0.389316797,0.548440576,-0.041923601,0.422568262,0.522729576,-0.062983774,0.455698788,0.513774514,-0.076957278,0.335199684,0.641459823,-0.028545963,0.352054864,0.520986974,-0.054902319,0.391960979,0.493068814,-0.07288944,0.429926395,0.492792666,-0.083776854,0.304831386,0.670717835,-0.043888997,0.309859574,0.545225739,-0.072103128,0.350444674,0.516263902,-0.085929617,0.39069733,0.511183441,-0.092891775,0.276067257,0.720816374,-0.059818998,0.269438207,0.630934775,-0.086817592,0.294146091,0.601879776,-0.09740784,0.3253811,0.59798938,-0.102524631 +Left,0.296696305,0.963374615,3.77E-07,0.36386779,0.910513401,-0.012451802,0.416731954,0.805752158,-0.020488156,0.456182748,0.737972558,-0.03168866,0.498076379,0.695283771,-0.043234568,0.383886755,0.661142886,-0.000897111,0.412149459,0.577354848,-0.025028558,0.437026352,0.555751324,-0.046397317,0.468900383,0.547603548,-0.061477717,0.348663092,0.649333,-0.012336484,0.366868138,0.548523188,-0.034560859,0.393440843,0.508770466,-0.052467406,0.428708464,0.486314237,-0.064618208,0.310997427,0.666529298,-0.028595766,0.315728605,0.564259887,-0.051704403,0.338601828,0.5171507,-0.065542407,0.37322849,0.483461052,-0.074350372,0.273102582,0.709531128,-0.04684459,0.260301322,0.628206253,-0.068036981,0.26636982,0.574336648,-0.078587927,0.284355938,0.528443456,-0.085627601 +Left,0.290627688,0.965650022,3.61E-07,0.361218989,0.927706003,-0.014859848,0.420192838,0.828628957,-0.022307804,0.461273432,0.760884941,-0.031740941,0.501924634,0.717775822,-0.041438546,0.392242014,0.678814113,-0.006961724,0.424796283,0.599054635,-0.029813403,0.448806137,0.569650471,-0.049841881,0.479035348,0.54816395,-0.064598523,0.353537828,0.655681551,-0.016691871,0.37253201,0.554879427,-0.037634663,0.396118522,0.507572353,-0.054242104,0.427604109,0.470110983,-0.066300012,0.312976092,0.664561808,-0.031087395,0.317540377,0.564619124,-0.053734954,0.335407853,0.511110783,-0.068678379,0.363725275,0.463949293,-0.078914262,0.272740722,0.700724006,-0.047508027,0.260859847,0.62038815,-0.06955196,0.257354707,0.560202897,-0.08195065,0.262822956,0.499161094,-0.090654999 +Left,0.286052406,0.957703769,3.74E-07,0.356105179,0.926205277,-0.021010889,0.416388184,0.829652607,-0.030005155,0.455117136,0.753712773,-0.038988002,0.495644182,0.706519902,-0.048183791,0.389127433,0.67824173,-0.016640728,0.420400381,0.59524262,-0.038758989,0.444169819,0.561030269,-0.057660058,0.469989032,0.531408966,-0.071956433,0.345992863,0.650371253,-0.022903187,0.361455649,0.543527484,-0.042175718,0.379881948,0.487001121,-0.057917513,0.401885509,0.431656867,-0.070227988,0.302076846,0.656457543,-0.03358046,0.305808008,0.55199331,-0.056615833,0.31775105,0.488992155,-0.071968466,0.335617781,0.425515354,-0.082449406,0.258312315,0.691013455,-0.046290644,0.242368519,0.60191679,-0.069990359,0.232806697,0.539241195,-0.082183696,0.228444278,0.471249133,-0.09007477 +Left,0.276893348,0.952720582,3.57E-07,0.347898185,0.929197907,-0.024992717,0.408972114,0.830149531,-0.034882188,0.447134197,0.742074609,-0.043494176,0.491233647,0.695232153,-0.052736375,0.382943749,0.680964053,-0.023272365,0.412660062,0.596158803,-0.045344204,0.434311599,0.553394973,-0.063737892,0.455210149,0.514302313,-0.077887297,0.337618262,0.649240971,-0.027540334,0.352521211,0.537837803,-0.046938557,0.366593152,0.474306166,-0.062844694,0.381298244,0.410081625,-0.075463764,0.291891903,0.651711583,-0.035928786,0.292481333,0.540305257,-0.059755851,0.297721744,0.471344352,-0.075765118,0.306750059,0.402116269,-0.086636014,0.245980337,0.683741748,-0.046413757,0.225835606,0.586566985,-0.071372494,0.211570203,0.523878396,-0.083915509,0.202166513,0.454531133,-0.091849029 +Left,0.265461326,0.943354785,2.98E-07,0.334796727,0.919785678,-0.029347576,0.391841263,0.820146322,-0.041750964,0.43135938,0.728481293,-0.052234512,0.478273749,0.682354927,-0.063161723,0.368225783,0.659032047,-0.025832864,0.392861068,0.57375133,-0.048307825,0.407215089,0.52430135,-0.067456499,0.418218195,0.474828839,-0.082678117,0.320082724,0.624245405,-0.029018493,0.327875912,0.505223751,-0.049425699,0.333148062,0.438432097,-0.065778449,0.336893529,0.369135946,-0.078664482,0.272230446,0.626692951,-0.036649652,0.268635094,0.504727185,-0.062073052,0.264552861,0.429956168,-0.07884118,0.262585372,0.352898449,-0.089936413,0.224902377,0.660131872,-0.046659276,0.200902715,0.553079247,-0.073377214,0.182156846,0.489408463,-0.086507834,0.167450085,0.419490397,-0.094483189 +Left,0.25823772,0.942813456,2.95E-07,0.323956192,0.921348631,-0.032270622,0.380092233,0.83547008,-0.04865915,0.417881668,0.755070925,-0.063108325,0.464324355,0.718646228,-0.077387169,0.363919437,0.653212488,-0.028440369,0.383930296,0.565052807,-0.053585872,0.393586338,0.514151156,-0.075323865,0.399807096,0.463058621,-0.091984682,0.314925313,0.61243403,-0.031486128,0.320455462,0.490754485,-0.053500552,0.322493941,0.423578888,-0.071078926,0.322547078,0.356630474,-0.084590346,0.265478879,0.611803174,-0.039334416,0.261276484,0.482889891,-0.066023856,0.251547188,0.406378418,-0.083599016,0.243747726,0.329315335,-0.094961248,0.216436923,0.645425558,-0.049815323,0.193571985,0.531977654,-0.076630846,0.173691884,0.468660533,-0.089430936,0.157088682,0.400354087,-0.09701287 +Left,0.25971061,0.933103859,2.32E-07,0.325957865,0.904651403,-0.02953425,0.380029321,0.814274848,-0.043984599,0.415097058,0.726252913,-0.056941409,0.458317161,0.679133892,-0.069614053,0.361826539,0.635139048,-0.023962917,0.378211677,0.5456599,-0.047301691,0.383981705,0.491947055,-0.067947507,0.385922313,0.436267823,-0.084044173,0.312375993,0.594271183,-0.027752718,0.315045059,0.469566256,-0.048691686,0.314374864,0.398709416,-0.06550584,0.311456978,0.3275114,-0.078222223,0.263317823,0.593142748,-0.036188405,0.255415052,0.46241951,-0.061794132,0.243744135,0.383122414,-0.078557245,0.234060332,0.303082347,-0.089173734,0.215543479,0.62689507,-0.047123145,0.189334288,0.512076497,-0.073046692,0.168300375,0.445354581,-0.085354,0.151232213,0.374111831,-0.092439972 +Left,0.278394669,0.911735177,2.91E-07,0.346372485,0.869792998,-0.024257822,0.395833433,0.76160574,-0.034473155,0.429424524,0.663979471,-0.043980751,0.47437942,0.612274468,-0.053873129,0.37277782,0.602095366,-0.018406998,0.395809382,0.508044958,-0.039227903,0.407887995,0.450918913,-0.057697289,0.416545004,0.394341797,-0.072374046,0.324686021,0.571331501,-0.023721362,0.329633325,0.44216454,-0.042022057,0.334006697,0.365586638,-0.057288066,0.337114781,0.288819015,-0.069261953,0.277848572,0.577606261,-0.033364635,0.271642089,0.449547827,-0.056230512,0.266272426,0.366128385,-0.072495058,0.263193786,0.28330788,-0.083422557,0.232697338,0.614343226,-0.04525042,0.206324607,0.509266496,-0.069896773,0.187462837,0.442243427,-0.082701907,0.172496885,0.371043414,-0.090613574 +Left,0.288499862,0.908315241,2.94E-07,0.357408434,0.860047221,-0.021766394,0.407794178,0.748167634,-0.030827209,0.438695192,0.649209499,-0.039739866,0.481106192,0.593576908,-0.049234599,0.381687105,0.598423243,-0.01566899,0.402815312,0.501044512,-0.036266219,0.416702539,0.442028403,-0.054517582,0.428647101,0.384338021,-0.069041334,0.33417052,0.569909215,-0.02195181,0.340014428,0.440091163,-0.040347543,0.345798194,0.363219082,-0.056137759,0.351070195,0.288013965,-0.06842225,0.288400322,0.57624501,-0.032325469,0.28218779,0.448307008,-0.054586776,0.278224498,0.364919752,-0.070604302,0.277080327,0.283133358,-0.081564344,0.244024664,0.612530351,-0.04477508,0.218539268,0.50933063,-0.0682934,0.201146409,0.443353176,-0.080364943,0.187563911,0.372829229,-0.088015772 +Left,0.300142258,0.916156411,3.48E-07,0.365077257,0.855382562,-0.020049408,0.407121599,0.735599399,-0.028784495,0.432160437,0.633399606,-0.03806993,0.475335121,0.57839483,-0.047793251,0.382140666,0.590259314,-0.011921158,0.405440211,0.49431935,-0.034100976,0.423952937,0.440053046,-0.054067645,0.443108946,0.388703048,-0.069599159,0.337093353,0.570579231,-0.019468164,0.342529178,0.446885675,-0.038491849,0.352589577,0.372858137,-0.054612476,0.364626259,0.299848974,-0.067189202,0.294094712,0.586536705,-0.031523839,0.287317365,0.46368134,-0.054671995,0.287746787,0.382355034,-0.070481159,0.293562025,0.300909966,-0.081299759,0.252177745,0.63275969,-0.045702383,0.228973866,0.53481549,-0.070095569,0.215647757,0.469138503,-0.082628109,0.206916168,0.397509098,-0.090785198 +Left,0.305460215,0.914432287,3.33E-07,0.360724509,0.830648065,-0.012638742,0.385583282,0.702573478,-0.020035246,0.400014967,0.603234708,-0.029849015,0.437093168,0.546015739,-0.039863825,0.359001637,0.573203087,-0.004985509,0.376972795,0.478240311,-0.029543834,0.398687035,0.435977757,-0.051010113,0.424252212,0.397129118,-0.066848688,0.320554525,0.566259265,-0.016100485,0.324097246,0.44890371,-0.036615029,0.338733286,0.382021368,-0.052116189,0.357822835,0.317759871,-0.06378191,0.283685923,0.595098495,-0.03179691,0.275277436,0.477017283,-0.055376034,0.282792985,0.40460521,-0.069575518,0.298232853,0.331150502,-0.079282045,0.24794136,0.653961658,-0.04916155,0.227508307,0.571144223,-0.072559752,0.22107169,0.511386037,-0.08402472,0.220484525,0.447698414,-0.091880351 +Left,0.310566366,0.917032361,3.67E-07,0.361550242,0.826849997,-0.014400319,0.378702313,0.699169099,-0.022262486,0.392085671,0.599969685,-0.031743199,0.428410858,0.537513912,-0.041199509,0.347708106,0.573702455,-0.004270731,0.362510413,0.475850999,-0.028539753,0.383707792,0.430591911,-0.049395245,0.409764051,0.390547276,-0.064610064,0.312292933,0.572219193,-0.01361059,0.314773053,0.454686463,-0.03327157,0.329927236,0.389765888,-0.047940928,0.350448132,0.329546928,-0.058603592,0.28041479,0.606235981,-0.027732339,0.270817578,0.48597008,-0.050763343,0.280363888,0.418896198,-0.063881755,0.298856705,0.351980001,-0.072610028,0.251431704,0.670424581,-0.043703821,0.232457474,0.60192579,-0.067578696,0.23421374,0.549440444,-0.07916598,0.244298041,0.493319869,-0.086603165 +Left,0.300937355,0.919883013,3.98E-07,0.350905031,0.824686825,-0.013323544,0.365796924,0.689135194,-0.019833431,0.376032054,0.590027332,-0.028000241,0.409228176,0.522782505,-0.036078505,0.327987552,0.568151593,-0.002830098,0.339929134,0.470488012,-0.027114118,0.365630895,0.425700933,-0.047788765,0.394312173,0.389414251,-0.062487248,0.293663591,0.574475825,-0.012336784,0.291855812,0.454304874,-0.033284016,0.314320236,0.391786516,-0.04860279,0.341664821,0.338871539,-0.058982972,0.264767319,0.615870833,-0.026455821,0.251195401,0.491058677,-0.053709347,0.270642519,0.429569483,-0.068426795,0.297917217,0.373355478,-0.076905929,0.240744203,0.684397876,-0.042017933,0.233478189,0.61875701,-0.071588702,0.249558777,0.573337555,-0.085462242,0.272852272,0.528256774,-0.093111932 +Left,0.291944772,0.910368562,4.67E-07,0.340207577,0.813154578,-0.006606227,0.353515834,0.670427918,-0.009063318,0.360820353,0.574392319,-0.014343524,0.387799621,0.505687833,-0.019809861,0.306868583,0.56140089,0.004173541,0.31825304,0.467100501,-0.015471211,0.34493655,0.418761134,-0.033113688,0.372854531,0.382084876,-0.045683727,0.270982444,0.567619383,-0.007416991,0.267219901,0.448639989,-0.025572015,0.292464703,0.381330639,-0.039561529,0.321751058,0.330088854,-0.048970215,0.241334036,0.605158627,-0.022934644,0.228044152,0.483962715,-0.051268071,0.255930722,0.4182432,-0.068905972,0.288568765,0.365452617,-0.079037741,0.218383938,0.668207645,-0.038797207,0.228712186,0.60228008,-0.070923343,0.261489809,0.572151959,-0.085930988,0.29582572,0.547304034,-0.093851186 +Left,0.288318723,0.896991432,4.55E-07,0.335038245,0.80354017,-0.006968614,0.345390677,0.659265041,-0.008898352,0.352414221,0.559571207,-0.013292537,0.377348781,0.485402703,-0.017841285,0.298034459,0.553895593,0.004032886,0.31205529,0.454034388,-0.013346816,0.335052818,0.39684552,-0.029334912,0.358140856,0.352034748,-0.041035082,0.26316762,0.559747994,-0.005707374,0.262979239,0.440029711,-0.022286294,0.286815226,0.37106511,-0.03489555,0.313914925,0.318181694,-0.043352563,0.234704062,0.59545356,-0.01919944,0.225222394,0.469021678,-0.045501985,0.25327,0.399287999,-0.06189594,0.284726918,0.344739765,-0.071416356,0.212899148,0.655589998,-0.032989785,0.227861762,0.586737692,-0.062725455,0.260857671,0.552910686,-0.076860279,0.294521958,0.526671052,-0.084469765 +Left,0.28902036,0.878446579,4.47E-07,0.333174914,0.785270512,-0.005258942,0.342424929,0.643249512,-0.007246051,0.349083126,0.547093451,-0.01218818,0.372288525,0.473859489,-0.01722716,0.293055594,0.538547873,0.005209517,0.307598144,0.444052041,-0.012351708,0.330705762,0.387822181,-0.028890723,0.352317482,0.344187349,-0.041235749,0.259643257,0.546194196,-0.00558727,0.259676903,0.429351658,-0.024066173,0.286141634,0.362999737,-0.038288843,0.314090371,0.313652366,-0.047856472,0.233447984,0.581928492,-0.019962277,0.225580052,0.457834482,-0.048070304,0.258155435,0.391930133,-0.06552133,0.292565584,0.343716621,-0.0753465,0.215380937,0.64038378,-0.034394089,0.235596895,0.565310359,-0.06523446,0.271965057,0.527071893,-0.080576338,0.308031142,0.498096466,-0.089078285 +Left,0.292659581,0.883302212,4.42E-07,0.33536914,0.787526131,-0.006445748,0.343045443,0.648727775,-0.009922953,0.348101556,0.554070711,-0.01641692,0.370409012,0.47796154,-0.022735959,0.29100129,0.540527582,0.007460807,0.302642763,0.451537013,-0.011413559,0.325619221,0.395578444,-0.029856706,0.34741962,0.354400754,-0.043167137,0.257869184,0.54988122,-0.00283193,0.258750468,0.436702192,-0.022251926,0.286082059,0.375949383,-0.037421759,0.314987779,0.333764017,-0.047002677,0.232866883,0.585716665,-0.017079718,0.230372652,0.466929078,-0.04462574,0.26275754,0.403006196,-0.061119612,0.296517581,0.35582903,-0.070086747,0.217405424,0.644615591,-0.03176406,0.24490124,0.570029676,-0.061037838,0.28282845,0.529563904,-0.074923277,0.319012761,0.497817904,-0.082233109 +Left,0.295361668,0.875147462,3.49E-07,0.333540738,0.757174671,-4.17E-05,0.33375746,0.62368083,-0.005219324,0.339049101,0.533639073,-0.015228639,0.353301883,0.464475989,-0.024558784,0.249960691,0.518891394,0.002123092,0.254964203,0.415961534,-0.024360878,0.290291786,0.369337201,-0.047616359,0.324477851,0.351829767,-0.062178984,0.222692445,0.550551593,-0.013319287,0.229020894,0.428174794,-0.038765613,0.275509298,0.38441214,-0.057438344,0.315195769,0.373728156,-0.067824744,0.20963183,0.601926267,-0.031075491,0.226075411,0.491848528,-0.057966586,0.27599743,0.440057844,-0.070949838,0.316784382,0.415588319,-0.076716222,0.214778155,0.666451216,-0.049398266,0.259518445,0.586649776,-0.073554814,0.302410424,0.545583129,-0.082536012,0.336331248,0.519862235,-0.085836187 +Left,0.286586106,0.853128195,4.42E-07,0.325192928,0.719906688,-0.006850636,0.323814243,0.598566473,-0.018307719,0.322282195,0.525446773,-0.033884354,0.318186879,0.457358241,-0.048694465,0.218801975,0.522965968,-0.012403734,0.23051402,0.429703891,-0.046168029,0.273941129,0.387132585,-0.074065156,0.311319947,0.364602447,-0.092810139,0.195366964,0.562991798,-0.030230362,0.205026597,0.439962268,-0.06655024,0.260474205,0.388132602,-0.092642821,0.306960255,0.363888979,-0.107213281,0.189951494,0.620289564,-0.050468829,0.209384814,0.506500304,-0.090220667,0.266261458,0.45069766,-0.11148943,0.310903639,0.417150617,-0.121339783,0.204783574,0.684283614,-0.070993826,0.262991965,0.613936782,-0.106634021,0.313270867,0.577662528,-0.121574193,0.351267606,0.554383218,-0.12810798 +Left,0.269397497,0.866803885,6.15E-07,0.308435857,0.7056458,-0.006459157,0.300471306,0.58015883,-0.022430895,0.299729854,0.498880804,-0.042354565,0.298868358,0.426809907,-0.062354773,0.15798156,0.571677327,-0.036001518,0.173766032,0.447332412,-0.079978772,0.218815044,0.380444765,-0.112211995,0.258537948,0.344054699,-0.133388147,0.148157164,0.625140309,-0.058024995,0.169918314,0.469634712,-0.106665269,0.233889654,0.40253064,-0.137925655,0.281521529,0.370513976,-0.155498207,0.165361613,0.684179962,-0.080680214,0.194254786,0.54076457,-0.131983623,0.260733247,0.474627167,-0.154271349,0.304879189,0.446174324,-0.16307278,0.199635684,0.742601871,-0.102659233,0.256002545,0.641263604,-0.146853164,0.306252182,0.586699963,-0.163070142,0.34111163,0.556322157,-0.169502392 +Left,0.285009086,0.91099298,4.27E-07,0.309191674,0.719676256,-0.002244161,0.293429613,0.586598754,-0.016538695,0.282630712,0.494321465,-0.03579719,0.280368209,0.415861368,-0.053787328,0.153918713,0.588759899,-0.031213336,0.175493091,0.462001711,-0.07240472,0.223064378,0.403332084,-0.099048898,0.26685676,0.36916703,-0.115089074,0.149452209,0.645989656,-0.052058231,0.1924126,0.506252885,-0.099665619,0.257656068,0.44556874,-0.121695705,0.307433039,0.414259136,-0.131377414,0.170110971,0.707539201,-0.073668264,0.215380937,0.582886159,-0.120924465,0.281398863,0.51941365,-0.134243816,0.330077231,0.482369721,-0.136004552,0.206595227,0.766569436,-0.095137745,0.265370101,0.673208237,-0.132747591,0.315862775,0.622062445,-0.14323689,0.355266333,0.587095916,-0.144479454 +Left,0.296777219,0.901790023,4.02E-07,0.328542024,0.731940508,-0.007601357,0.328107625,0.608281195,-0.025100475,0.331349373,0.51987946,-0.046920672,0.335053265,0.443029076,-0.0672388,0.189626053,0.586701393,-0.026837418,0.222766355,0.454246074,-0.066587105,0.273247868,0.411008209,-0.09308733,0.316122711,0.391779065,-0.108274013,0.178742468,0.634229243,-0.043435287,0.234477967,0.491006374,-0.087965652,0.300931603,0.452997983,-0.108321503,0.349612296,0.437598974,-0.116511218,0.191022918,0.689583898,-0.061972111,0.250788122,0.556208372,-0.104960598,0.317640722,0.512772918,-0.114774942,0.366568267,0.490565836,-0.113388009,0.220046967,0.744341433,-0.08101809,0.271206051,0.64269501,-0.112475082,0.317385346,0.597657859,-0.118615441,0.353396654,0.56613636,-0.116878942 +Left,0.310592055,0.878027916,3.68E-07,0.343210191,0.721950591,-0.0028552,0.339033067,0.596308112,-0.016047094,0.340439081,0.505849302,-0.034061264,0.350964367,0.433296144,-0.053157117,0.230127469,0.532380819,-0.021550016,0.277537823,0.429609329,-0.061195709,0.329383194,0.403134525,-0.090519316,0.373142898,0.391895354,-0.109018758,0.211608052,0.57618618,-0.041232008,0.269184738,0.458181918,-0.085441902,0.33132419,0.431770146,-0.109661527,0.380949318,0.424010038,-0.121765457,0.211735472,0.64047879,-0.062787458,0.267838657,0.533079803,-0.106072001,0.331315935,0.496068209,-0.121170223,0.381081164,0.473836839,-0.12476714,0.229651287,0.712902427,-0.084352314,0.268998563,0.625776827,-0.118619315,0.312789857,0.583688974,-0.12902759,0.351838231,0.550682008,-0.13160713 +Left,0.323277116,0.881216168,2.73E-07,0.357677668,0.758213162,-0.003272606,0.357826144,0.636598885,-0.013771226,0.359324038,0.551142871,-0.028314244,0.368459105,0.484622568,-0.043715794,0.269809604,0.552718639,-0.012063734,0.309271276,0.474383712,-0.045384314,0.360084057,0.451909065,-0.071872748,0.401848018,0.443652391,-0.088570759,0.247508764,0.58566761,-0.028147796,0.293077499,0.486866593,-0.062469926,0.351605088,0.457456678,-0.083227232,0.397813678,0.449995637,-0.09433943,0.238369405,0.642235816,-0.046432205,0.279789895,0.543309033,-0.082474664,0.339075387,0.508089125,-0.095031977,0.386302948,0.489529699,-0.098201387,0.244833693,0.713054895,-0.064879999,0.279698551,0.631500423,-0.095482849,0.321010947,0.592834115,-0.104222201,0.356835067,0.564566672,-0.105930977 +Left,0.324571162,0.88933152,3.75E-07,0.364197344,0.766444325,-0.000255216,0.368412912,0.640340805,-0.007748111,0.368947446,0.554490805,-0.019451559,0.381868869,0.491959035,-0.032325856,0.288957089,0.554848373,-0.009072381,0.330921918,0.476409674,-0.038186941,0.375891209,0.451246202,-0.061798301,0.41643247,0.440130621,-0.077593677,0.264705896,0.580030918,-0.025838507,0.317620069,0.488332778,-0.057008933,0.372486293,0.4606902,-0.077084012,0.418245137,0.451676011,-0.088470519,0.252099395,0.631693184,-0.044233654,0.300120533,0.537182093,-0.076800331,0.354950666,0.505070686,-0.090362407,0.400515378,0.485798776,-0.095636867,0.252886534,0.698527098,-0.062689766,0.2910873,0.622814655,-0.09170194,0.329636157,0.592703521,-0.101002872,0.364388049,0.572870791,-0.103755012 +Left,0.331179887,0.893600702,4.28E-07,0.375867724,0.782485366,-0.002904008,0.385460019,0.660467625,-0.01174908,0.389741808,0.57421875,-0.024180733,0.402689338,0.509967446,-0.037988346,0.315307558,0.557811081,-0.015137751,0.34823209,0.47586292,-0.045461103,0.387160242,0.440764904,-0.069505662,0.424460649,0.419614017,-0.085778654,0.289106697,0.581092477,-0.030879328,0.33242026,0.484364778,-0.061496992,0.381580412,0.449647903,-0.08133705,0.424593538,0.434259683,-0.093699403,0.273273706,0.63118422,-0.048305511,0.317699403,0.541288316,-0.080973983,0.368091464,0.505345881,-0.095384583,0.41132015,0.483538032,-0.102353409,0.270241618,0.699516952,-0.065947957,0.308085382,0.626090527,-0.095687978,0.346265763,0.595570147,-0.106115587,0.381636947,0.575834692,-0.110509574 +Left,0.324410051,0.93187511,4.96E-07,0.373485267,0.814192414,0.000661005,0.391527355,0.690139234,-0.009734452,0.40200913,0.60486728,-0.025085093,0.418739557,0.53155309,-0.04146589,0.316165924,0.584198654,-0.011936797,0.334355891,0.486474037,-0.039815385,0.360755026,0.425503433,-0.061720032,0.385196447,0.378373653,-0.077182591,0.289694607,0.606290758,-0.03083864,0.330147237,0.498768657,-0.061199278,0.386258006,0.462563038,-0.078888096,0.431493938,0.447425216,-0.089467525,0.274349272,0.655432343,-0.050996814,0.31834957,0.556944072,-0.082713492,0.378542691,0.532874227,-0.091542631,0.426603824,0.525311112,-0.094455034,0.272308677,0.724366784,-0.071321353,0.311938137,0.647297859,-0.097831093,0.359603226,0.633638322,-0.101972379,0.399423897,0.633842349,-0.101856098 +Left,0.323484212,0.924415946,5.00E-07,0.37168026,0.820541918,-0.0022426,0.392042518,0.699030459,-0.010808717,0.399331272,0.615049899,-0.022958254,0.411294758,0.548036993,-0.03539006,0.322792292,0.589169383,-0.010367833,0.34907341,0.499278396,-0.037059333,0.38307631,0.457698643,-0.057531584,0.415354401,0.430484772,-0.070988886,0.294463038,0.60636425,-0.026921744,0.322426617,0.488548279,-0.052721899,0.36613366,0.437188447,-0.068775564,0.404970407,0.405798972,-0.078583643,0.276407391,0.650828779,-0.045261141,0.318467796,0.551291704,-0.076455705,0.377704293,0.528718352,-0.086600795,0.425058931,0.521826208,-0.089670867,0.271602213,0.715502977,-0.06369897,0.313619167,0.641934872,-0.090524308,0.360552669,0.632040799,-0.094907537,0.399604052,0.634780765,-0.094365701 +Left,0.317178577,0.927638531,4.80E-07,0.367054999,0.823339164,-0.002883538,0.390886903,0.698817134,-0.013312676,0.404879272,0.613324046,-0.027890455,0.421529531,0.540421367,-0.043243166,0.320907652,0.583607137,-0.012110914,0.339680344,0.494400114,-0.04000771,0.368693173,0.441826165,-0.061864223,0.396615416,0.40451777,-0.07662753,0.291976064,0.601432741,-0.028447948,0.3305085,0.500941932,-0.058746621,0.386275291,0.473065287,-0.076954454,0.431437939,0.467270941,-0.087093674,0.272457927,0.64753288,-0.046359297,0.317534596,0.555613458,-0.078929082,0.377959162,0.542832613,-0.088814862,0.425384521,0.544889212,-0.091511533,0.265052527,0.71563828,-0.064538628,0.308600366,0.64859271,-0.092159264,0.357402951,0.642470837,-0.097369663,0.397424579,0.648341238,-0.097112834 +Left,0.296552181,0.932047963,4.07E-07,0.358468115,0.833714962,-0.002666471,0.388852477,0.716618836,-0.014206246,0.410041004,0.634480596,-0.030321259,0.433386981,0.568917572,-0.047934439,0.324219763,0.584053159,-0.017904712,0.350572735,0.495776951,-0.049483344,0.389322162,0.463835955,-0.074110091,0.425942004,0.452393711,-0.089955576,0.29420957,0.601240933,-0.034810435,0.341240525,0.520494461,-0.068094067,0.398339599,0.511910915,-0.088864788,0.44231531,0.523374081,-0.101029038,0.271636605,0.647537708,-0.052960899,0.320118487,0.575628459,-0.086802326,0.378551275,0.572233677,-0.099488385,0.424082428,0.583392382,-0.104517192,0.259320557,0.71533823,-0.071325995,0.306343049,0.659779608,-0.099966586,0.353533715,0.662179053,-0.10713952,0.392317653,0.675458968,-0.108496733 +Left,0.269814193,0.920904934,2.92E-07,0.338390768,0.845965981,-0.002802219,0.382802516,0.744923294,-0.012846727,0.409181684,0.670592785,-0.027238013,0.436149478,0.613977075,-0.042418942,0.334669858,0.587709785,-0.010397356,0.364876449,0.506903291,-0.038061094,0.403105885,0.486216068,-0.061056029,0.438434601,0.488662243,-0.075715765,0.302528679,0.590884566,-0.025265757,0.358088702,0.543630421,-0.056001373,0.409214705,0.561670184,-0.075677216,0.446384966,0.595346868,-0.086281516,0.273303241,0.624924541,-0.041759029,0.32965368,0.586638749,-0.071760818,0.382063717,0.602003396,-0.083719619,0.422244012,0.628234804,-0.088180698,0.248996153,0.682213306,-0.058798302,0.295535773,0.654577434,-0.084287517,0.335142821,0.677871108,-0.090588659,0.366842806,0.709007502,-0.09099777 +Left,0.258717507,0.913948953,2.91E-07,0.322663635,0.856153131,-0.004063543,0.368961275,0.780099511,-0.014940429,0.397125095,0.727222204,-0.030748758,0.420213878,0.684048235,-0.046995439,0.349179357,0.630052745,-0.008770547,0.388720989,0.5503546,-0.03954703,0.426922619,0.580168188,-0.064499438,0.454035163,0.624499679,-0.078526996,0.321055144,0.626329184,-0.023060547,0.365954041,0.537552416,-0.054527048,0.411284745,0.575981975,-0.076513201,0.43809852,0.630830288,-0.087614939,0.288613379,0.641347289,-0.039359044,0.320894569,0.54306221,-0.067633502,0.368827939,0.584131777,-0.078841075,0.401064306,0.640038013,-0.081955165,0.253508598,0.677295566,-0.056292139,0.279132307,0.612288654,-0.080372497,0.315921962,0.637387812,-0.086203501,0.345059961,0.68212378,-0.086131975 +Left,0.263329506,0.895354748,3.29E-07,0.32264483,0.842491329,-0.01030946,0.364541143,0.753311992,-0.022163965,0.382604569,0.68849498,-0.037217449,0.401445061,0.6318838,-0.05225892,0.356657654,0.612021685,-0.014410557,0.394305557,0.530236125,-0.045804579,0.433892667,0.549594998,-0.070821092,0.466320097,0.583514035,-0.085533619,0.324965805,0.60412401,-0.025966275,0.367452085,0.513661981,-0.05800033,0.412804514,0.547339439,-0.078650452,0.444586605,0.59277755,-0.089166582,0.28913632,0.614968777,-0.040211599,0.321108788,0.509857118,-0.070961416,0.369135529,0.550065637,-0.080581747,0.405896187,0.597535849,-0.08260937,0.250411779,0.64869982,-0.055693407,0.275769174,0.579014778,-0.082918905,0.311977714,0.604861438,-0.088467829,0.342003614,0.643313706,-0.088067353 +Left,0.251451135,0.865924537,2.61E-07,0.316164017,0.832948148,-0.007947352,0.368409425,0.752906978,-0.020314174,0.399680883,0.687462389,-0.036803275,0.4239963,0.637320817,-0.053167492,0.366554886,0.598383188,-0.014974466,0.420898825,0.54192692,-0.048064206,0.459870964,0.58162117,-0.073152252,0.488230139,0.628006816,-0.087923415,0.335720688,0.580568254,-0.02907769,0.397979707,0.534622312,-0.06876605,0.439672619,0.612809598,-0.090047166,0.460850865,0.691736817,-0.098229893,0.298511595,0.587954044,-0.045569103,0.351238847,0.528046012,-0.082559079,0.395610064,0.600931883,-0.092702679,0.423077464,0.673811316,-0.092752352,0.256776631,0.61919111,-0.062760897,0.294844538,0.583498716,-0.093064502,0.330508411,0.62713778,-0.099871278,0.357088774,0.678509533,-0.099321693 +Left,0.249361679,0.867762804,2.49E-07,0.314778447,0.838106036,-0.010712768,0.368897438,0.756795645,-0.023989607,0.401113778,0.689013422,-0.040703181,0.426671535,0.639333189,-0.056845024,0.365659624,0.590112031,-0.016344808,0.423658907,0.551922798,-0.053352453,0.460617244,0.60886091,-0.081431292,0.486234725,0.670994818,-0.09707734,0.333521128,0.571409941,-0.029598897,0.397344798,0.539834797,-0.071085349,0.436255068,0.62121594,-0.09326829,0.456670403,0.701816916,-0.101452485,0.29490903,0.58297348,-0.045967419,0.349461377,0.539723873,-0.085647307,0.392289758,0.618348122,-0.09685725,0.419645786,0.692873001,-0.096567959,0.252963603,0.620925725,-0.063162029,0.292424381,0.598549187,-0.094914518,0.327456743,0.644693911,-0.102108702,0.354459256,0.694696367,-0.101212285 +Left,0.255211681,0.877939105,2.54E-07,0.322991967,0.846277475,-0.009465863,0.378264427,0.769425452,-0.023401665,0.412673414,0.707048655,-0.040929575,0.443043947,0.662218213,-0.05838893,0.372720867,0.605241418,-0.021370761,0.424064577,0.550316691,-0.05811144,0.463785768,0.590400696,-0.084841795,0.494555116,0.641378164,-0.100292414,0.3414298,0.589149177,-0.035206124,0.405891418,0.569737256,-0.078549869,0.444061428,0.652671039,-0.100025587,0.465030491,0.729619384,-0.108206823,0.303764403,0.601348042,-0.051431268,0.359091431,0.573696554,-0.092595875,0.399841636,0.654234409,-0.102649696,0.426061064,0.726085067,-0.101846084,0.262134433,0.636543393,-0.068271123,0.301402986,0.621222496,-0.100492112,0.334700048,0.672438085,-0.106545776,0.360205531,0.725030422,-0.104855925 +Left,0.247820824,0.887701035,3.26E-07,0.323317111,0.850447297,-0.004794302,0.38136968,0.772788942,-0.018010003,0.415447295,0.711957335,-0.036661994,0.446329564,0.671217978,-0.056445256,0.372344881,0.598865211,-0.014998444,0.422207475,0.517442226,-0.047358342,0.466862679,0.507037759,-0.071787432,0.506645322,0.514803588,-0.08716955,0.3393085,0.586140931,-0.031715602,0.406458199,0.565133214,-0.077398576,0.446231216,0.651002169,-0.100669235,0.464851409,0.733145535,-0.109026864,0.302462041,0.601585448,-0.049863782,0.359474123,0.569521964,-0.090133302,0.401870012,0.648438811,-0.099227794,0.425941676,0.724495173,-0.097690985,0.261201143,0.638534427,-0.06851127,0.302983195,0.618258357,-0.099234164,0.338152379,0.667721391,-0.104596473,0.362973213,0.721726537,-0.102365196 +Left,0.246470064,0.886978269,3.49E-07,0.320162326,0.84516871,-0.001085498,0.37907964,0.765726447,-0.012144749,0.414337844,0.706275165,-0.029242376,0.444897354,0.668587863,-0.047659926,0.363906264,0.578981698,-0.010969087,0.415986389,0.507179976,-0.040530801,0.461113691,0.501770735,-0.063392989,0.500282466,0.514076769,-0.077936076,0.329822838,0.566415906,-0.028467774,0.394574016,0.550762296,-0.067704856,0.439060211,0.631915212,-0.088736221,0.4621571,0.712853312,-0.09754236,0.293257952,0.585790694,-0.047029357,0.351665199,0.561532378,-0.082478352,0.397352129,0.637834251,-0.09090665,0.424561083,0.712910533,-0.090496883,0.254772693,0.629140496,-0.06592685,0.301399618,0.612769723,-0.093138896,0.338416338,0.662055075,-0.097534865,0.363874853,0.716834664,-0.095573887 +Left,0.246455327,0.845668197,3.66E-07,0.316378057,0.81008476,-0.005018213,0.374661893,0.74489665,-0.022456909,0.412301362,0.69862932,-0.04475826,0.448256224,0.661413133,-0.068134315,0.356904685,0.540844202,-0.025537426,0.407784641,0.464959562,-0.059372317,0.451325089,0.457744598,-0.084658645,0.489132613,0.472503006,-0.100287296,0.321094364,0.526395977,-0.042861942,0.393375903,0.518416703,-0.084362544,0.44002831,0.588885128,-0.10619621,0.466237545,0.662616074,-0.115960166,0.284027398,0.548802853,-0.060875583,0.349044025,0.540336668,-0.096963756,0.396545887,0.605883062,-0.105811916,0.42808786,0.671104789,-0.106468096,0.247904852,0.597859204,-0.079464152,0.298100024,0.593062162,-0.106313467,0.336913139,0.638588667,-0.110382788,0.365942836,0.685249329,-0.108589835 +Left,0.240399718,0.826295078,4.20E-07,0.315633833,0.789338946,-0.008533455,0.376741916,0.733184695,-0.029376388,0.419395864,0.696041584,-0.055134147,0.460300952,0.657547653,-0.082469709,0.349701375,0.530979812,-0.030291824,0.399437398,0.450459778,-0.067731701,0.443199396,0.440181255,-0.09651687,0.483323455,0.449626625,-0.114785448,0.314362109,0.521218836,-0.048345309,0.385136575,0.49740535,-0.0956074,0.434378654,0.564422548,-0.121952742,0.462445676,0.637865067,-0.133919522,0.278239101,0.546783268,-0.067312941,0.341140091,0.52949518,-0.106624931,0.392552197,0.589245498,-0.117486514,0.427690268,0.653131247,-0.118754014,0.243217647,0.597852707,-0.087301277,0.290015519,0.578530133,-0.116422981,0.331254214,0.618303359,-0.121976666,0.363527089,0.665217996,-0.120934702 +Left,0.238813609,0.827331901,4.29E-07,0.311391383,0.794405282,-0.010345244,0.373486876,0.737382174,-0.032413729,0.417623162,0.701754272,-0.058950014,0.458860368,0.665514767,-0.086992659,0.347009212,0.530174255,-0.034613427,0.395797521,0.448696971,-0.074077807,0.440448999,0.440883785,-0.10401962,0.482391536,0.453990936,-0.122785062,0.310070753,0.520191908,-0.052152604,0.382543296,0.500899732,-0.101069868,0.431282163,0.569728076,-0.127574787,0.460384399,0.643102765,-0.139490336,0.272937536,0.547178984,-0.070657663,0.338591784,0.538154125,-0.111863017,0.389673322,0.60087949,-0.122771814,0.425775945,0.664819598,-0.123723671,0.23829107,0.600797176,-0.090274535,0.285430312,0.587805986,-0.120688133,0.326787144,0.628413737,-0.126456708,0.360356033,0.673915267,-0.125361726 +Left,0.20955649,0.852466583,3.97E-07,0.288161933,0.81703037,-0.006713912,0.352017343,0.760775149,-0.028310327,0.394777477,0.730676651,-0.055003818,0.434174627,0.705431283,-0.08315637,0.329341978,0.535526872,-0.033404913,0.378312111,0.454220295,-0.070253611,0.420185089,0.423454821,-0.097265013,0.462030947,0.411562502,-0.115455009,0.291658998,0.523887217,-0.053433251,0.369410932,0.536262751,-0.102973476,0.41182223,0.623796403,-0.127251744,0.434347004,0.703615248,-0.137653634,0.25470522,0.558095515,-0.073740169,0.324797481,0.565051258,-0.117044672,0.371139348,0.644449949,-0.126227796,0.401198387,0.716677547,-0.125974864,0.22050418,0.620642066,-0.094595812,0.27018255,0.634473264,-0.12663874,0.308843046,0.682411551,-0.132428437,0.338074356,0.726653576,-0.13138245 +Left,0.206364721,0.856489301,4.31E-07,0.286848515,0.817207813,-0.007295411,0.349721968,0.758603811,-0.030042341,0.392792672,0.729165554,-0.058246538,0.432587802,0.701961398,-0.088245846,0.324000537,0.534707069,-0.035422616,0.371744215,0.448282182,-0.074966639,0.4146595,0.412093997,-0.10458184,0.456850171,0.394701838,-0.124525771,0.285058588,0.524975538,-0.056469385,0.36125955,0.52890867,-0.109677367,0.40747875,0.61587131,-0.137089238,0.43232134,0.697105587,-0.149143949,0.247220382,0.56037575,-0.077749468,0.314721733,0.555932164,-0.123835571,0.36492157,0.633048534,-0.134870008,0.398293436,0.706322551,-0.135375187,0.212990671,0.624226153,-0.099593714,0.26199308,0.630050719,-0.134257749,0.302687049,0.677189827,-0.141357034,0.334005982,0.723194599,-0.140810728 +Left,0.204460502,0.858171701,4.53E-07,0.287045687,0.816800952,-0.007484676,0.350035757,0.756502032,-0.030815912,0.392576098,0.725470066,-0.059618674,0.433801979,0.701614559,-0.090365984,0.320577502,0.531443417,-0.036787763,0.367034048,0.447072625,-0.077789806,0.410880417,0.409812987,-0.108708128,0.453878164,0.39162451,-0.129566103,0.281495303,0.523697495,-0.058305431,0.35783422,0.528886378,-0.112443775,0.405590504,0.613318563,-0.140577316,0.431946844,0.692608118,-0.153436631,0.243787959,0.561835051,-0.080123372,0.312663049,0.560628951,-0.127533257,0.364444077,0.635964096,-0.139178261,0.398853779,0.70766902,-0.140136972,0.209493935,0.628408968,-0.102476023,0.259789646,0.633672774,-0.138016969,0.301470369,0.680047572,-0.145369515,0.333760977,0.726027489,-0.145127848 +Left,0.210464835,0.879953682,3.87E-07,0.293708205,0.82830745,-0.007973482,0.360381365,0.743902743,-0.028798528,0.406366855,0.693212152,-0.054708116,0.445179075,0.645970345,-0.082700305,0.309745431,0.532085001,-0.037495639,0.353762746,0.444094479,-0.078528769,0.396618187,0.40533641,-0.109029092,0.439392745,0.382304728,-0.129686967,0.267324656,0.530759156,-0.058102742,0.349763751,0.538228035,-0.113079235,0.403884232,0.628200412,-0.140421137,0.435674518,0.705848575,-0.152774423,0.230577171,0.578546822,-0.079047039,0.301790029,0.569990933,-0.129414752,0.358839601,0.651200056,-0.139825746,0.398167074,0.722794712,-0.139404774,0.200541377,0.656179368,-0.100277044,0.252447307,0.66363281,-0.139122829,0.299280673,0.710165977,-0.146628603,0.336841255,0.75219512,-0.145962656 +Left,0.207791179,0.903998792,3.29E-07,0.295901239,0.833382666,-0.001942747,0.359720826,0.724310756,-0.019390909,0.401035905,0.645607829,-0.041661941,0.440237731,0.577371418,-0.066132404,0.30503577,0.535455704,-0.041345369,0.348266155,0.450807571,-0.082082108,0.390074223,0.409692585,-0.110954851,0.431914628,0.383018851,-0.131088138,0.262616336,0.540751755,-0.064353935,0.347234875,0.550165534,-0.117477559,0.407291353,0.63679266,-0.142621785,0.444288552,0.711828291,-0.155027315,0.22783795,0.59714818,-0.086568475,0.301169276,0.59290874,-0.138211653,0.363008112,0.669011474,-0.149459839,0.406449765,0.735453069,-0.150761843,0.200678781,0.682085454,-0.107985251,0.258354038,0.695011973,-0.149360582,0.309723437,0.743100643,-0.158142999,0.350452244,0.785835564,-0.15886803 +Left,0.191527858,0.933396459,3.35E-07,0.287437528,0.85153687,5.39E-05,0.351714134,0.724067211,-0.016270656,0.391799092,0.631121993,-0.037501499,0.429714739,0.548246801,-0.061580267,0.287437648,0.545515835,-0.044286393,0.335313082,0.457021236,-0.0858633,0.378599465,0.412539542,-0.114665285,0.421424568,0.386662602,-0.135025933,0.247149244,0.560115516,-0.069301836,0.3409082,0.55990845,-0.123572364,0.405851722,0.637602925,-0.150046438,0.447116882,0.709139526,-0.164136618,0.216155529,0.625096202,-0.093174919,0.298230618,0.616963267,-0.147179917,0.364778847,0.684840858,-0.161193028,0.411637664,0.746423006,-0.164836198,0.193485826,0.716826797,-0.11576999,0.254491746,0.719335079,-0.160148621,0.309421778,0.759426713,-0.171538025,0.353601843,0.797773123,-0.174699441 +Left,0.193487436,0.950073719,3.26E-07,0.289901018,0.860106051,-0.001964044,0.35144487,0.731030285,-0.018604565,0.388332993,0.635854006,-0.040035632,0.426315308,0.550395727,-0.063948706,0.283172786,0.549961448,-0.042306907,0.32907927,0.468146324,-0.084388033,0.371608943,0.42753458,-0.11360272,0.415363789,0.403542638,-0.133975372,0.24346748,0.565353334,-0.065795466,0.335961014,0.570502937,-0.119052179,0.401130855,0.643501699,-0.144605368,0.445471585,0.712169766,-0.158021718,0.213690847,0.631954372,-0.088774391,0.298200786,0.637251854,-0.142326027,0.36382854,0.702988267,-0.155242205,0.412443042,0.762770832,-0.15754661,0.192845985,0.725734115,-0.1109218,0.254543722,0.735426426,-0.15519619,0.310304314,0.776624799,-0.166198939,0.356980771,0.815309823,-0.168296665 +Left,0.197707862,0.962730646,3.73E-07,0.287646145,0.861957312,-0.003276363,0.339827508,0.719538867,-0.020617545,0.370657712,0.612235844,-0.042081572,0.405507892,0.521394491,-0.065845937,0.261900693,0.55929476,-0.046118468,0.302843332,0.46965301,-0.090845369,0.348598689,0.428985149,-0.122218043,0.394883215,0.407500923,-0.143845454,0.221515268,0.595208704,-0.069789119,0.317363143,0.577103674,-0.127745345,0.389805198,0.638285697,-0.154778197,0.439501435,0.703189969,-0.167880461,0.197449863,0.673838496,-0.09296599,0.287460655,0.661745012,-0.150773361,0.362106234,0.718148112,-0.164616913,0.417478174,0.769726396,-0.166434258,0.185550854,0.77262193,-0.115164682,0.260413766,0.789750159,-0.162665784,0.320345134,0.831559956,-0.174324498,0.367838919,0.863143563,-0.176167324 +Left,0.204341814,0.97292006,3.80E-07,0.288511008,0.856904685,-0.003904733,0.332684457,0.710117459,-0.023612408,0.356906563,0.600803673,-0.047329493,0.384843737,0.501334012,-0.073258989,0.240270227,0.556632996,-0.052265938,0.275920749,0.459564567,-0.10099265,0.324053645,0.422020912,-0.134466305,0.372605503,0.404824942,-0.156746224,0.200845331,0.603054762,-0.076449275,0.300181121,0.571939826,-0.137868762,0.376065254,0.628687739,-0.165220648,0.427234173,0.688955843,-0.178150579,0.180434704,0.6892308,-0.100174971,0.274784863,0.66910696,-0.161756903,0.352388918,0.721038103,-0.17507875,0.409641504,0.766656697,-0.17565684,0.173658088,0.793012977,-0.122701161,0.250504762,0.795611382,-0.172833145,0.31404227,0.829011381,-0.18385382,0.364060879,0.852659583,-0.184484676 +Left,0.235658407,0.981548071,2.66E-07,0.296757489,0.830128908,-0.003396498,0.324605703,0.680102229,-0.023346622,0.344721347,0.572583199,-0.048775271,0.368905246,0.473994792,-0.074804425,0.217391044,0.543619215,-0.040969744,0.241318718,0.440996081,-0.088630117,0.292040497,0.409434021,-0.120082706,0.342985779,0.398604155,-0.138900489,0.18031013,0.601586998,-0.064883411,0.277355015,0.55766803,-0.124093302,0.358312845,0.609598935,-0.145966202,0.411515474,0.666765749,-0.152514264,0.166654646,0.698801517,-0.089324117,0.267739534,0.666023493,-0.148330048,0.34366411,0.717311442,-0.154913887,0.395268857,0.763337672,-0.148213908,0.169009835,0.811259866,-0.113389328,0.257213622,0.809589624,-0.159652069,0.324272364,0.833557308,-0.16540803,0.37226373,0.855080485,-0.15961878 +Left,0.244258896,0.974719584,1.28E-07,0.295151085,0.815659761,-0.007443078,0.309984118,0.660294652,-0.028106332,0.321529865,0.547735214,-0.054364376,0.336227745,0.447808295,-0.07847558,0.190507516,0.524853528,-0.038315721,0.207879156,0.408414572,-0.09275616,0.268613845,0.394391328,-0.128905773,0.32076627,0.413775384,-0.147549137,0.152096108,0.593490064,-0.059750963,0.25080955,0.550567925,-0.119840696,0.335903257,0.604780972,-0.13907446,0.380204409,0.661788225,-0.143242955,0.138046503,0.698055863,-0.083666667,0.244799241,0.667205036,-0.137653723,0.319459647,0.720492184,-0.136081934,0.354304284,0.765602112,-0.124654002,0.142035574,0.811954319,-0.108881608,0.241459221,0.814401269,-0.144949868,0.292724729,0.845913291,-0.142434865,0.309714079,0.871065497,-0.131892309 +Left,0.235613599,0.967009544,5.24E-08,0.284998566,0.801068783,-0.006470117,0.299438804,0.642778993,-0.026862793,0.31201908,0.531212091,-0.053493265,0.327858329,0.428881764,-0.077954642,0.180373758,0.520251036,-0.038134512,0.203464553,0.394629598,-0.090355061,0.263962895,0.380896866,-0.122889437,0.313590527,0.39993906,-0.139107466,0.144207299,0.591062427,-0.059712075,0.245751783,0.538443029,-0.118269332,0.331531882,0.589568853,-0.134955958,0.37650907,0.645816743,-0.137427628,0.132222444,0.695413172,-0.083596252,0.240288913,0.653406024,-0.135860667,0.314513654,0.707550406,-0.131970167,0.347387075,0.755791426,-0.119121291,0.137615889,0.806756377,-0.108854376,0.23923634,0.799443007,-0.143566713,0.286947072,0.832681596,-0.140145421,0.298429668,0.86287415,-0.129207045 +Left,0.230110943,0.962640226,6.11E-08,0.287202924,0.789393783,-0.001794831,0.304232299,0.621853888,-0.01746482,0.314001501,0.500297606,-0.039542604,0.323414743,0.390769571,-0.058848862,0.185986504,0.502766192,-0.030133717,0.210621491,0.377419651,-0.076875471,0.271041244,0.360267788,-0.103872001,0.319877744,0.388192862,-0.11585813,0.154725015,0.56452024,-0.052508857,0.252741873,0.502050817,-0.103840165,0.337763578,0.545194626,-0.116616003,0.380778968,0.605659723,-0.116776384,0.14645505,0.661143661,-0.076850861,0.253755987,0.611154318,-0.125528023,0.325392544,0.666221976,-0.11906714,0.355041564,0.720159411,-0.104408428,0.153283775,0.769271731,-0.102092937,0.254674703,0.75792253,-0.136951268,0.303511083,0.79377687,-0.132444426,0.318180233,0.828872621,-0.119833902 +Left,0.230200976,0.936562538,2.18E-07,0.288483173,0.758128047,0.003106323,0.308224648,0.6100474,-0.012872519,0.320044667,0.505311131,-0.037041098,0.335380316,0.417604357,-0.058324218,0.189833432,0.496626884,-0.024835831,0.222098067,0.369068742,-0.074463792,0.286142498,0.350172848,-0.106559686,0.336539924,0.373215973,-0.12246599,0.16539903,0.554002345,-0.0499552,0.262952805,0.473855913,-0.103863984,0.345275879,0.511731267,-0.120685816,0.385514557,0.569414496,-0.123879559,0.162948966,0.638292849,-0.076836191,0.267370343,0.574007452,-0.12482807,0.336420506,0.626612425,-0.11988128,0.365059167,0.679811001,-0.106301703,0.174500376,0.730296016,-0.104528859,0.26995787,0.704894304,-0.133697495,0.313664198,0.735165477,-0.127294213,0.328086197,0.766295016,-0.114832215 +Left,0.269962668,0.891203821,1.62E-07,0.323514909,0.731765926,0.003753766,0.33315894,0.599419236,-0.009563904,0.336804986,0.507280529,-0.030058976,0.343068749,0.425346434,-0.047897957,0.223618686,0.505054235,-0.019048888,0.244541317,0.39612481,-0.060157403,0.299869925,0.374740422,-0.085367337,0.344642967,0.393819571,-0.097299621,0.20306091,0.554475009,-0.040941037,0.283387572,0.474472284,-0.086364783,0.358319044,0.508042336,-0.098236702,0.393642604,0.559398293,-0.09859208,0.203112379,0.625200331,-0.06441132,0.290390491,0.559985578,-0.105484352,0.355293244,0.604425251,-0.098743886,0.381819516,0.652583241,-0.085107557,0.216095909,0.704030693,-0.088511035,0.299710035,0.671920061,-0.113790981,0.34360379,0.695658743,-0.107109092,0.360495239,0.723719656,-0.095160499 +Left,0.317578554,0.919741333,3.09E-07,0.372416794,0.762760162,0.001613771,0.375755638,0.648251712,-0.010963307,0.369849145,0.570775568,-0.029917331,0.371627182,0.502446949,-0.046352345,0.273669809,0.572516382,-0.022167616,0.296930343,0.469257236,-0.055681627,0.347529918,0.438297153,-0.071978725,0.387455881,0.444189847,-0.078688331,0.263500571,0.617617488,-0.039889764,0.337671161,0.523049533,-0.076568171,0.404239357,0.544117093,-0.081766941,0.432986021,0.582908213,-0.07855612,0.273728669,0.676756144,-0.058612045,0.357233822,0.593587279,-0.093718581,0.413020283,0.626225054,-0.084755108,0.432561606,0.669381022,-0.070163533,0.295591444,0.740543842,-0.077745982,0.378006577,0.683879137,-0.098626807,0.414392531,0.698492527,-0.090680391,0.425700814,0.723153055,-0.078553528 +Left,0.339638919,0.862463951,3.90E-07,0.321146607,0.749095738,0.003701612,0.320271373,0.639680862,-0.012246921,0.341287047,0.555859745,-0.031163713,0.368920207,0.495511532,-0.049934607,0.289996892,0.613710582,-0.049447209,0.323853135,0.491453201,-0.079924524,0.371335804,0.448002338,-0.093569309,0.409559071,0.440449834,-0.099045441,0.30603236,0.657237589,-0.065831035,0.384594977,0.53266418,-0.090915009,0.43265444,0.533229947,-0.088079609,0.449519575,0.559440613,-0.084217079,0.335433781,0.708656192,-0.080428153,0.410826117,0.590085983,-0.099343874,0.449185491,0.5964275,-0.085338876,0.459356725,0.628051817,-0.073503911,0.369665861,0.75941813,-0.094862863,0.433124483,0.67259115,-0.103425577,0.457748622,0.66421926,-0.090848707,0.464377344,0.676238537,-0.07955537 +Left,0.347779989,0.877961278,4.24E-07,0.331904233,0.769501925,0.005215172,0.333642393,0.662913561,-0.010058701,0.355770916,0.582787156,-0.02827527,0.382290244,0.528789759,-0.04638961,0.309129953,0.63196677,-0.047898248,0.339882463,0.510648847,-0.077595212,0.383991092,0.466810703,-0.089968279,0.418969691,0.458472669,-0.093862265,0.324059188,0.672883749,-0.064082339,0.397570014,0.551164508,-0.087872118,0.443964243,0.552283645,-0.082488611,0.4597781,0.57905817,-0.075369209,0.352400452,0.722569108,-0.078444757,0.427458912,0.610418022,-0.095651157,0.462420851,0.614014566,-0.078996927,0.468582779,0.642849743,-0.064305343,0.386470437,0.771879315,-0.092531562,0.451213419,0.686801314,-0.099073648,0.472302794,0.680386603,-0.084427133,0.474002659,0.693237245,-0.070891224 +Left,0.360801846,0.879582107,4.26E-07,0.330051899,0.781595707,-0.004355577,0.327933818,0.654285431,-0.018695658,0.348104715,0.550362706,-0.030368527,0.365653664,0.477621317,-0.040229265,0.316820592,0.678348601,-0.057549186,0.343847603,0.550970674,-0.081981845,0.378216952,0.48808223,-0.092418343,0.407305121,0.459553003,-0.095375687,0.353176594,0.718502879,-0.065151811,0.410308659,0.565387309,-0.086900845,0.433749706,0.535176754,-0.083557099,0.436853647,0.545020223,-0.078055397,0.394885838,0.753727674,-0.069856636,0.448409259,0.60480988,-0.081619099,0.458609104,0.586665988,-0.064979315,0.4503299,0.602238595,-0.051329903,0.434375674,0.786029518,-0.074617945,0.474043578,0.664079845,-0.075115427,0.47059986,0.647505224,-0.057941999,0.456402451,0.659286022,-0.043802816 +Left,0.367737263,0.858597994,3.85E-07,0.327364475,0.768338442,-0.005476719,0.319744736,0.648271978,-0.017247962,0.332084775,0.546660602,-0.023861019,0.338311911,0.475008935,-0.028830076,0.32326895,0.669200897,-0.063537568,0.351780623,0.546756148,-0.08858002,0.378901094,0.478569955,-0.098223746,0.401436001,0.445606232,-0.099470817,0.368700802,0.698931217,-0.066094249,0.416910172,0.542272687,-0.088638872,0.423210949,0.503241122,-0.083296753,0.41492936,0.514221907,-0.073512882,0.413201332,0.722519517,-0.064752772,0.450571686,0.578554034,-0.076271147,0.444569141,0.555804551,-0.056793645,0.430116564,0.571965814,-0.038516175,0.450311661,0.744261444,-0.063040756,0.472523868,0.626880765,-0.064065486,0.460690647,0.614697576,-0.044531062,0.446935803,0.634777248,-0.026188483 +Left,0.375817686,0.870487273,1.12E-07,0.330718786,0.78193599,-0.011342049,0.31844303,0.662844241,-0.023672467,0.332117885,0.559278071,-0.03085639,0.33540073,0.487189293,-0.03705027,0.344728976,0.672360539,-0.05331485,0.37271288,0.536218524,-0.070993319,0.390696824,0.471152544,-0.075082853,0.405035347,0.434729785,-0.074763238,0.394897521,0.69134748,-0.052771848,0.428249687,0.535704017,-0.071203604,0.419536144,0.530107379,-0.065373771,0.40670529,0.559480131,-0.05554764,0.437432438,0.708587289,-0.049549367,0.45680362,0.569941163,-0.060143199,0.442910939,0.570841491,-0.044324167,0.430323422,0.59820509,-0.029443216,0.471070409,0.725057602,-0.046420883,0.475350738,0.61973393,-0.049396683,0.461544484,0.623892546,-0.034959961,0.452625453,0.648499608,-0.021341536 +Left,0.401284575,0.904722333,-5.57E-08,0.352556378,0.833115101,-0.013488266,0.335110009,0.729022384,-0.026637148,0.341268063,0.627575219,-0.035547707,0.333049804,0.55186218,-0.043694429,0.38045162,0.723266244,-0.049742099,0.404902548,0.581983447,-0.062755503,0.414635301,0.512894511,-0.061254829,0.419726998,0.470373929,-0.05789398,0.427202106,0.731948674,-0.047953565,0.430790693,0.584333122,-0.061623596,0.416530907,0.594994783,-0.053130325,0.408932298,0.632899046,-0.04390227,0.464883834,0.739865005,-0.044361729,0.459166586,0.611511886,-0.054345209,0.443365723,0.62629962,-0.040030356,0.437022299,0.659568727,-0.028201422,0.49460566,0.743269205,-0.040923938,0.481847435,0.64285773,-0.04554154,0.467017114,0.65647614,-0.034604337,0.46233514,0.683902085,-0.024868013 +Left,0.445710063,0.915922761,-9.79E-08,0.397858292,0.857070506,-0.012588493,0.375216454,0.762257338,-0.024603043,0.374899507,0.672313452,-0.03403347,0.35864684,0.617162526,-0.043113403,0.428791285,0.739367485,-0.036657747,0.444907516,0.610058308,-0.051465612,0.447976083,0.54657805,-0.054548867,0.446317732,0.51283741,-0.054380666,0.473453522,0.743774772,-0.037229434,0.47425586,0.61154604,-0.052709132,0.464083463,0.627990365,-0.049284,0.459670544,0.671269655,-0.043191422,0.509239435,0.752825141,-0.037254225,0.502941966,0.63495791,-0.051757019,0.489522278,0.653025389,-0.042790875,0.485237867,0.690420985,-0.033360317,0.538158417,0.759937048,-0.037335671,0.525141537,0.668061376,-0.047231,0.511517704,0.688852787,-0.039471056,0.508065224,0.724754989,-0.031016944 +Left,0.472976923,0.930232644,-1.57E-07,0.429037601,0.862879872,-0.016487569,0.411972135,0.774978161,-0.03233147,0.416352749,0.681064785,-0.042351607,0.403600246,0.616155028,-0.049843315,0.469895959,0.767627537,-0.059898108,0.485861093,0.624266446,-0.072947763,0.481773555,0.575133443,-0.066759154,0.47216329,0.56640029,-0.057826947,0.514597058,0.776806116,-0.055054098,0.5180372,0.625742853,-0.066539846,0.504136384,0.602543354,-0.054761097,0.492926925,0.615205646,-0.043210134,0.549892068,0.781768382,-0.048040356,0.544790804,0.6470595,-0.055061623,0.526921809,0.632158577,-0.037542481,0.516013622,0.645016074,-0.023379497,0.576028109,0.787538409,-0.041644379,0.56633693,0.685226202,-0.047052406,0.549831152,0.674164653,-0.03575968,0.541061282,0.68479979,-0.024321998 +Left,0.473103195,0.940220594,-3.56E-07,0.426708788,0.861492753,-0.016692422,0.406038254,0.767777741,-0.032555804,0.412180364,0.673524618,-0.04327935,0.414029598,0.59520036,-0.049966246,0.459503859,0.777446985,-0.060122643,0.476224273,0.612095237,-0.072943352,0.463546783,0.629573703,-0.065915011,0.456453294,0.68225342,-0.057388049,0.50872767,0.792139411,-0.0559806,0.513041735,0.626306295,-0.066957757,0.498204857,0.645495117,-0.057723925,0.493305564,0.691398323,-0.050770041,0.548236191,0.799556553,-0.049869321,0.545037389,0.647531152,-0.056902472,0.529914975,0.669907391,-0.043167472,0.525936365,0.714410186,-0.03419413,0.578519642,0.804367065,-0.044117749,0.572979093,0.682510555,-0.052177284,0.55940336,0.69719553,-0.044123609,0.554983914,0.73833555,-0.036723506 +Left,0.455751926,0.917244315,-3.79E-07,0.407993376,0.825855792,-0.009925685,0.390652061,0.71231854,-0.019363636,0.400872409,0.612544179,-0.026534734,0.409746349,0.536277831,-0.029502951,0.428330451,0.732100606,-0.034688473,0.445195138,0.587695956,-0.049544461,0.434304357,0.623778105,-0.048973873,0.42863369,0.674893141,-0.044334766,0.47650519,0.751236498,-0.035327479,0.48767969,0.594511747,-0.047523044,0.475270867,0.626245856,-0.043464847,0.471405566,0.679132402,-0.037963726,0.519325912,0.766071618,-0.035329863,0.525552809,0.618054569,-0.043970738,0.512402296,0.648111105,-0.03296829,0.508634448,0.697530389,-0.02354846,0.554654121,0.779595077,-0.035533179,0.555964112,0.663291037,-0.041905019,0.54298526,0.684209228,-0.033458609,0.538970888,0.728814542,-0.025251102 +Left,0.422114462,0.88320148,-2.71E-07,0.380398512,0.79118818,-0.006356434,0.371234655,0.668761432,-0.015045555,0.38904354,0.557695329,-0.02254189,0.412644923,0.487647146,-0.025616594,0.385115296,0.682893813,-0.02949754,0.417288214,0.55913049,-0.045238603,0.415280163,0.588129818,-0.045192972,0.409745216,0.627854466,-0.041037407,0.429341227,0.70830071,-0.033206884,0.45996815,0.570119262,-0.045519508,0.454183817,0.60346818,-0.039405141,0.446969479,0.651142061,-0.032601528,0.472260475,0.731585145,-0.036750592,0.498276502,0.595228314,-0.045927346,0.490939081,0.626472712,-0.032629538,0.483576357,0.671427608,-0.021431299,0.51024133,0.754319191,-0.040354241,0.528527915,0.645772099,-0.044274602,0.519807875,0.667838693,-0.033791799,0.511881649,0.707799256,-0.024684081 +Left,0.390916288,0.852696657,-1.83E-07,0.360763848,0.751828015,-0.002582277,0.362698197,0.621201456,-0.014712813,0.388234288,0.51178205,-0.026956985,0.410782814,0.442663252,-0.034844175,0.332939833,0.607342243,-0.03448692,0.394690484,0.487237006,-0.054547053,0.40787521,0.52529794,-0.058477398,0.396925867,0.57290411,-0.05752546,0.370454937,0.638881087,-0.044138052,0.430968553,0.5204916,-0.056616884,0.439585716,0.56139487,-0.050800316,0.424049556,0.605509639,-0.047246169,0.413329065,0.672144413,-0.053359397,0.464159995,0.555989444,-0.060323033,0.470739961,0.593840599,-0.044026401,0.45754981,0.633672297,-0.034175098,0.456259012,0.704413116,-0.062904753,0.494932294,0.598041892,-0.062318474,0.49804309,0.628323495,-0.047139104,0.487396657,0.665051162,-0.037019167 +Left,0.36755392,0.853660107,-1.45E-07,0.352218151,0.731639445,0.007115917,0.363396436,0.600073934,-0.005001042,0.398434103,0.498177618,-0.020369949,0.428937316,0.435105681,-0.032316022,0.314624041,0.561124325,-0.029346721,0.394747525,0.456922472,-0.047551796,0.416465014,0.504079103,-0.051415987,0.408782631,0.546647072,-0.052878834,0.337253153,0.59732002,-0.046736512,0.42538774,0.49423933,-0.057776596,0.445435613,0.539092422,-0.052230228,0.435369492,0.576063573,-0.050958917,0.369615674,0.641359746,-0.062820971,0.451900572,0.534100771,-0.070344202,0.469990402,0.573713124,-0.055461593,0.459220529,0.606097639,-0.047682226,0.406877041,0.686882377,-0.078582294,0.473913312,0.584870398,-0.078871161,0.489917219,0.603916764,-0.065048993,0.484629273,0.627002478,-0.056585379 +Left,0.345004797,0.869073033,-4.34E-08,0.35215959,0.738448262,0.00960181,0.366685033,0.613954782,-0.00229345,0.401942462,0.519661725,-0.018130057,0.431316793,0.461467981,-0.032215372,0.303198904,0.567968965,-0.030227825,0.387813509,0.480727434,-0.049107905,0.417838156,0.517306268,-0.054610305,0.417384744,0.551166296,-0.057283122,0.315896332,0.6108073,-0.048890665,0.410691768,0.516872525,-0.061081272,0.44174999,0.555000544,-0.055282749,0.44279173,0.591287851,-0.053395808,0.34062016,0.664854228,-0.066047221,0.427778095,0.559948146,-0.075477429,0.458450049,0.589376807,-0.062142458,0.461940467,0.62507093,-0.054243121,0.372387767,0.720483363,-0.082523085,0.433129519,0.621288598,-0.085518412,0.463137716,0.619347155,-0.073854439,0.47785753,0.634315491,-0.065957882 +Left,0.324053824,0.924259365,-6.47E-08,0.378973991,0.784632087,0.004010603,0.390734404,0.667488992,-0.00552015,0.401743472,0.577147663,-0.018642865,0.412051678,0.50199306,-0.028591935,0.288653761,0.580651104,-0.015662655,0.368604869,0.523404002,-0.037764862,0.407705426,0.569380939,-0.048038125,0.416537166,0.608491719,-0.053999141,0.281245798,0.61811018,-0.031273313,0.373401105,0.546532691,-0.053083353,0.413808942,0.600166678,-0.05545488,0.425515532,0.643153191,-0.055129789,0.289644271,0.674374223,-0.047308806,0.374000549,0.597028434,-0.069366276,0.415345073,0.629968047,-0.064495802,0.431717604,0.665464103,-0.057979874,0.31031391,0.739299655,-0.062805556,0.372833997,0.678104877,-0.07958544,0.411269844,0.6759637,-0.07753963,0.435401171,0.68244797,-0.072970994 +Left,0.314813495,0.935171187,-1.94E-07,0.361736804,0.830092549,-0.006294519,0.380133748,0.702785254,-0.016849259,0.387095779,0.607481956,-0.03046592,0.396134555,0.522277117,-0.042503152,0.316403747,0.601673067,-0.008770725,0.367051691,0.562684774,-0.043876104,0.402247995,0.62220943,-0.067901284,0.415321887,0.682721496,-0.079098441,0.28612718,0.622804999,-0.019897755,0.346027225,0.581095815,-0.053480998,0.39188087,0.640744448,-0.067403801,0.413419783,0.6994102,-0.071171403,0.264886826,0.669106543,-0.034469757,0.314949125,0.614425898,-0.067327008,0.369336605,0.656898081,-0.071189106,0.403798997,0.699354172,-0.066932909,0.253568053,0.738860726,-0.049357053,0.28935793,0.703387737,-0.075421751,0.331927627,0.711878598,-0.079625785,0.364813834,0.724508762,-0.076928735 +Left,0.319331765,0.924912512,3.13E-08,0.362366557,0.851306498,-0.014939747,0.384334177,0.725006461,-0.027872447,0.394192129,0.633859217,-0.042477194,0.406412721,0.558341384,-0.055959243,0.336788058,0.641575933,-0.026138153,0.367304713,0.577118516,-0.065724112,0.408438772,0.633990943,-0.091270514,0.435611725,0.686960161,-0.102878049,0.303239048,0.661708653,-0.035694182,0.330043614,0.58436197,-0.076744132,0.381616294,0.632154226,-0.094926275,0.415721834,0.680487454,-0.100378975,0.270479411,0.706406772,-0.048859876,0.275806427,0.605481982,-0.085319333,0.329105586,0.636583269,-0.091929011,0.36963585,0.671753764,-0.089040287,0.240353853,0.773275018,-0.063226238,0.231508911,0.709450781,-0.091699712,0.264825553,0.703345597,-0.098936826,0.299560279,0.709488034,-0.098938465 +Left,0.316280216,0.937229455,1.26E-07,0.363024175,0.859092355,-0.017013999,0.387853444,0.741679132,-0.03271972,0.404307157,0.651358902,-0.049536012,0.424578547,0.576477349,-0.064924493,0.335731536,0.657151043,-0.032765478,0.361682415,0.581219673,-0.075763561,0.402671754,0.620822906,-0.10412427,0.43742007,0.672149181,-0.117591105,0.298690259,0.67841959,-0.042607065,0.310570061,0.591058433,-0.086719275,0.361231297,0.622440636,-0.108180888,0.402421594,0.670548797,-0.115990728,0.264342159,0.724996507,-0.056053109,0.249953508,0.625222921,-0.091196112,0.29091391,0.635222495,-0.102482438,0.33131966,0.659480214,-0.104700923,0.235165954,0.794561923,-0.071086682,0.194209903,0.750741601,-0.09634503,0.206511676,0.726598144,-0.107319258,0.232992217,0.712740779,-0.112148575 +Left,0.306723326,0.924457669,1.89E-08,0.358815134,0.840172291,-0.02350411,0.390852749,0.733644068,-0.044460364,0.412308693,0.650729656,-0.065854564,0.430276573,0.576054871,-0.085256547,0.331763685,0.644053638,-0.044829048,0.350768417,0.577124536,-0.090875581,0.38755244,0.624292314,-0.123148441,0.420907438,0.680845201,-0.140304685,0.288166374,0.667990267,-0.053384077,0.281776756,0.572638452,-0.10074199,0.324793607,0.603155017,-0.12659426,0.36307168,0.65877986,-0.138556972,0.247058302,0.71315974,-0.065459058,0.215422958,0.607868493,-0.10429962,0.248571292,0.617807508,-0.122673258,0.284071594,0.647313178,-0.130498782,0.216521949,0.780800283,-0.07916528,0.17573148,0.74132061,-0.109017082,0.15963918,0.723441303,-0.126506358,0.149672642,0.711852849,-0.137126341 +Left,0.30846566,0.921380043,4.21E-08,0.365784049,0.839157641,-0.023295544,0.402878582,0.739047408,-0.045477122,0.428382516,0.660670996,-0.069072857,0.451502025,0.588012397,-0.091311194,0.340619355,0.632882833,-0.038854156,0.362032592,0.562434554,-0.085037127,0.39529866,0.603584647,-0.118014403,0.424776047,0.66656512,-0.133978784,0.297922671,0.646965086,-0.047517918,0.300099224,0.555052936,-0.092816927,0.335163027,0.572212458,-0.120241344,0.368667662,0.628258348,-0.132702366,0.254923522,0.683928251,-0.060131721,0.230939031,0.587269306,-0.095465593,0.251314521,0.575994313,-0.11558374,0.278820664,0.59480834,-0.124814279,0.219671011,0.743318439,-0.074543238,0.179615051,0.688063502,-0.099110633,0.159515575,0.655144751,-0.113518193,0.148923308,0.633792341,-0.121978357 +Left,0.316277981,0.942373276,1.26E-07,0.37046513,0.866161108,-0.02102934,0.408017099,0.755178273,-0.037237436,0.435136318,0.66615504,-0.054183163,0.461558819,0.59155184,-0.070472799,0.354363084,0.646452844,-0.028970422,0.375526041,0.565177441,-0.064681083,0.404962838,0.577329755,-0.0910125,0.431960672,0.618110418,-0.104724437,0.312341064,0.652914464,-0.035349827,0.308109581,0.555946469,-0.068808034,0.336286187,0.556935489,-0.089649297,0.363517284,0.596497834,-0.100162446,0.272622705,0.687093496,-0.045480561,0.249293327,0.589617133,-0.074447423,0.26878044,0.574113667,-0.089534052,0.294001639,0.583956897,-0.096873321,0.239197806,0.744339108,-0.057241779,0.206421077,0.685128331,-0.079848275,0.192780674,0.652753949,-0.090858743,0.18568781,0.631672204,-0.096811347 +Left,0.340926707,0.96769923,2.33E-07,0.3926723,0.90306294,-0.02618107,0.424014986,0.797036707,-0.045454204,0.443366259,0.711137831,-0.063853905,0.468848944,0.638922453,-0.082409792,0.373494357,0.685479045,-0.040274732,0.387589574,0.605089724,-0.07963258,0.419672489,0.596014023,-0.108745709,0.453200459,0.621988595,-0.12457259,0.333488077,0.696180701,-0.045537725,0.323116124,0.589186192,-0.08503411,0.354331613,0.583343327,-0.110112622,0.385736287,0.624452174,-0.122582637,0.298132807,0.736275375,-0.054230131,0.270345569,0.636564493,-0.089500405,0.29093644,0.61766237,-0.110374361,0.317264229,0.634618342,-0.120356925,0.268976301,0.800702155,-0.064439982,0.231307566,0.738333285,-0.094732262,0.227050245,0.710748851,-0.111545786,0.231692523,0.704862177,-0.12054082 +Left,0.352088988,0.995518386,3.18E-07,0.40311265,0.92883575,-0.027333412,0.431885213,0.829229295,-0.047551911,0.451800078,0.748106956,-0.066612415,0.47850123,0.679951489,-0.086778514,0.382836878,0.718693018,-0.043144938,0.393413246,0.638352692,-0.079966865,0.423321694,0.628014624,-0.107816763,0.455451488,0.647991955,-0.124291934,0.344488859,0.736642063,-0.048486974,0.33367154,0.639908075,-0.086939789,0.36673969,0.630109668,-0.113812745,0.401485682,0.662048638,-0.129162312,0.309636146,0.783509672,-0.056875955,0.285724372,0.692836881,-0.091846347,0.307625264,0.670537472,-0.115311943,0.335297495,0.681164384,-0.128526777,0.278794914,0.851742506,-0.06671311,0.246426538,0.796865344,-0.097237967,0.246280387,0.762477517,-0.116143674,0.255624026,0.74653244,-0.127763286 +Left,0.357562721,1.010893464,3.77E-07,0.405869484,0.942855358,-0.026766773,0.43229115,0.841819048,-0.047073152,0.447658122,0.761530578,-0.066554338,0.472542048,0.689368486,-0.087352365,0.381027043,0.724671364,-0.03805067,0.382479161,0.631393552,-0.073838204,0.408247024,0.615211666,-0.101050049,0.436989993,0.633048058,-0.116883859,0.343985111,0.743162394,-0.043233272,0.334818989,0.638995707,-0.079632707,0.364128143,0.619918823,-0.106348403,0.395658314,0.646987796,-0.121855311,0.311276793,0.792681515,-0.051663544,0.290564626,0.683625221,-0.085362181,0.312390357,0.655837893,-0.107688561,0.340051979,0.667208791,-0.119889498,0.281757951,0.863606691,-0.061453123,0.25869292,0.791140378,-0.093029626,0.270036161,0.746537924,-0.112047918,0.291152537,0.724773169,-0.122829415 +Left,0.347634703,0.999855876,4.27E-07,0.406579673,0.936836004,-0.030597595,0.438455909,0.834927738,-0.047872532,0.456121922,0.751756907,-0.06383273,0.481553197,0.676556468,-0.081863277,0.391907066,0.706163645,-0.036538802,0.396871209,0.623588562,-0.067423463,0.405267239,0.57871604,-0.09159597,0.420130819,0.535434961,-0.109487243,0.351034433,0.721549332,-0.040466703,0.34907648,0.638068259,-0.07027667,0.355641335,0.591095686,-0.09257362,0.372518927,0.546454668,-0.110034719,0.314372063,0.768976867,-0.048886981,0.30351007,0.689113796,-0.082062379,0.30932793,0.64539659,-0.10122814,0.328046501,0.609171689,-0.114103422,0.280483842,0.837627172,-0.059693675,0.262089163,0.771638095,-0.093005225,0.26774615,0.731875241,-0.110965714,0.286309808,0.697588325,-0.12273021 +Left,0.351441026,0.967952967,4.39E-07,0.408893704,0.898698092,-0.027971392,0.439155757,0.787532508,-0.043325648,0.456645489,0.703387499,-0.057844389,0.47976014,0.628140152,-0.07452102,0.388579696,0.659293413,-0.032862395,0.390870571,0.570493221,-0.06245501,0.398057431,0.517867208,-0.085982502,0.410925686,0.471486509,-0.103336602,0.34909609,0.679376483,-0.038174283,0.345104396,0.587179482,-0.066171512,0.352059722,0.534290254,-0.087980703,0.368418843,0.49009499,-0.105116859,0.314142078,0.73227042,-0.047873393,0.300935626,0.644181013,-0.080003329,0.30852145,0.596341014,-0.099559963,0.328095436,0.560375512,-0.112815082,0.282143414,0.806110978,-0.059633981,0.263722062,0.739427388,-0.09265694,0.269069761,0.69816184,-0.110699341,0.286465168,0.663740337,-0.122602202 +Left,0.353810579,0.929200649,5.20E-07,0.406255543,0.84886992,-0.026677208,0.430547595,0.734988213,-0.045036148,0.445673048,0.650940001,-0.062242255,0.466501534,0.573646307,-0.082039304,0.370042503,0.621518373,-0.045562949,0.37279734,0.530866802,-0.081561051,0.38491562,0.477907449,-0.10778676,0.40373978,0.430257708,-0.125849739,0.332247049,0.649832547,-0.053809322,0.317844123,0.548106074,-0.088068806,0.333854675,0.498322845,-0.110224336,0.359631091,0.459017634,-0.125671819,0.302310616,0.712204158,-0.065478958,0.27663517,0.620483816,-0.103497371,0.294815689,0.575272441,-0.122207694,0.323885173,0.538612485,-0.133106887,0.279308856,0.795969605,-0.078641728,0.253655732,0.733510315,-0.115705192,0.263724446,0.697727621,-0.132206663,0.28618297,0.666269422,-0.141706526 +Left,0.350420922,0.905024946,5.11E-07,0.397316486,0.821369648,-0.028162893,0.416892767,0.709964931,-0.048222546,0.426889837,0.618777037,-0.066848963,0.443584919,0.53330636,-0.088286191,0.354180515,0.597635984,-0.051300187,0.34417671,0.508767247,-0.090491861,0.354713291,0.455732673,-0.118867978,0.37505129,0.413756877,-0.137934208,0.319523871,0.633938372,-0.060121223,0.289290696,0.544000804,-0.097867891,0.307241559,0.500339806,-0.121640213,0.339847416,0.467004955,-0.137891307,0.293755949,0.704258263,-0.07240013,0.258663952,0.632309616,-0.113882713,0.274293691,0.595735371,-0.135115653,0.303982764,0.565294981,-0.147911891,0.276595712,0.794784784,-0.086230233,0.248297125,0.761231422,-0.126539037,0.26406768,0.745945632,-0.144904718,0.293073475,0.733685791,-0.155733898 +Left,0.340794533,0.880751014,5.92E-07,0.369768053,0.774037778,-0.023048723,0.364548594,0.641042471,-0.039312862,0.360114366,0.542171836,-0.054530237,0.366096318,0.454522252,-0.072239093,0.28176862,0.601245701,-0.058308896,0.246466875,0.494962037,-0.098611891,0.267256975,0.448082417,-0.126725554,0.300712436,0.423357129,-0.14496538,0.258288294,0.660984337,-0.069233589,0.206122071,0.578974187,-0.107369423,0.234793335,0.524521351,-0.132548466,0.27495575,0.48865518,-0.150433689,0.251228362,0.742226422,-0.082083888,0.20948565,0.68603313,-0.125892714,0.23758778,0.63684988,-0.153546989,0.271079004,0.602080405,-0.171764717,0.257865578,0.833469033,-0.095648661,0.265410364,0.822134435,-0.14073965,0.302312165,0.806108117,-0.164675087,0.338598222,0.793791056,-0.179879844 +Left,0.314662218,0.855688095,7.86E-07,0.315053761,0.724147856,-0.026408708,0.288854599,0.616452694,-0.05059259,0.265551418,0.537486374,-0.073399268,0.241989017,0.457582533,-0.098288506,0.186171532,0.646114767,-0.073956586,0.132536441,0.573309898,-0.121387124,0.139119074,0.510615587,-0.15210636,0.15984568,0.459137201,-0.171297982,0.177936748,0.722020388,-0.086295091,0.121788472,0.671645999,-0.134010032,0.138374239,0.593442678,-0.161002889,0.170508713,0.536975384,-0.178725854,0.192518681,0.806512415,-0.100232206,0.165040463,0.764252901,-0.155462682,0.190819383,0.69620645,-0.185433358,0.221217573,0.653058708,-0.202984989,0.223673642,0.888291657,-0.11447423,0.256440818,0.844048977,-0.169840887,0.298526585,0.786591768,-0.197803825,0.335082322,0.746911764,-0.21399565 +Left,0.301511317,0.837184787,8.27E-07,0.284125656,0.704609215,-0.043504093,0.25435394,0.607117116,-0.08705651,0.226702392,0.52592814,-0.127396137,0.195591822,0.442883849,-0.17171222,0.151447043,0.678730965,-0.124333411,0.095145196,0.621400058,-0.195007205,0.09019912,0.55263555,-0.236261502,0.098780699,0.474922121,-0.261665761,0.153588429,0.776153803,-0.14078784,0.09151458,0.736718535,-0.219890758,0.10546761,0.644554198,-0.259886742,0.13720277,0.55697912,-0.28153038,0.18524684,0.859954774,-0.158200473,0.1771947,0.798738241,-0.24204126,0.22336939,0.695727587,-0.277795494,0.267020643,0.612496316,-0.292445987,0.238943502,0.925174356,-0.176351279,0.281078786,0.898400068,-0.252327502,0.320767045,0.855247021,-0.28739962,0.349782467,0.817477942,-0.305038154 +Left,0.29744342,0.812133253,7.03E-07,0.282591581,0.658874154,-0.02454515,0.252842396,0.545508146,-0.055269822,0.232598156,0.461037517,-0.086582407,0.205552012,0.385012865,-0.120409474,0.149507403,0.618327796,-0.093225896,0.098061144,0.552323103,-0.153387293,0.106408887,0.477949262,-0.187932,0.124554932,0.410688639,-0.207502306,0.151101887,0.708712697,-0.112562329,0.110947818,0.661321223,-0.17685017,0.132473156,0.565352738,-0.204811677,0.167989999,0.489156246,-0.218904182,0.178869307,0.790246308,-0.132819325,0.192599833,0.708823919,-0.203673467,0.238069549,0.616373897,-0.228725821,0.279038608,0.553851247,-0.23688899,0.228271738,0.854671478,-0.153221756,0.284011215,0.764100194,-0.216938689,0.335141182,0.690072656,-0.240214556,0.375594437,0.639252365,-0.249073938 +Left,0.31503278,0.882005632,6.63E-07,0.320452511,0.697004616,-0.026254185,0.304199457,0.571026206,-0.062503435,0.294803888,0.478989899,-0.099681854,0.270978361,0.398391694,-0.14088802,0.186013907,0.643630505,-0.107698135,0.157951027,0.530765176,-0.176906437,0.188922063,0.450847477,-0.221044943,0.226316899,0.389557868,-0.248444661,0.18386811,0.727390885,-0.129689872,0.175761089,0.623305738,-0.207379252,0.225265205,0.534025788,-0.248968989,0.272380531,0.474373639,-0.27394554,0.209216624,0.805983424,-0.151761115,0.219661549,0.720840514,-0.230019689,0.274864078,0.639373541,-0.266759157,0.324202955,0.587667763,-0.285119325,0.254798949,0.874843121,-0.173361704,0.301993221,0.810353041,-0.241696015,0.354023159,0.737401545,-0.273043036,0.399925977,0.682240129,-0.290528953 +Left,0.324286699,0.875339329,5.88E-07,0.340169311,0.708909869,-0.023764502,0.324412495,0.585805655,-0.053422511,0.316990674,0.497519135,-0.084825993,0.308750927,0.414296329,-0.120441847,0.206094638,0.594605505,-0.084831983,0.189989164,0.495949715,-0.145856097,0.229898125,0.431614757,-0.188380301,0.273871392,0.386882246,-0.215611041,0.196567178,0.673373401,-0.104581833,0.189929068,0.581226885,-0.166834459,0.240740955,0.508745134,-0.206740782,0.288776547,0.462787449,-0.233827829,0.212791845,0.759937286,-0.125279054,0.216420814,0.690729916,-0.18840237,0.265329361,0.621559799,-0.224426165,0.310744733,0.579494774,-0.246470839,0.247952476,0.84755975,-0.146168768,0.284618467,0.791282415,-0.202361345,0.332701266,0.733834624,-0.231039479,0.376770526,0.692629635,-0.249487057 +Left,0.347281814,0.8942765,2.38E-07,0.384752333,0.76578474,-0.016050739,0.389266908,0.628550529,-0.036304459,0.390713632,0.529015839,-0.058659174,0.404070884,0.442768604,-0.082282558,0.304661185,0.567808509,-0.041665774,0.31364733,0.448486269,-0.08696793,0.35904634,0.415536106,-0.119363502,0.400906205,0.410774589,-0.138438746,0.276757002,0.61721766,-0.056975268,0.270614535,0.482915461,-0.100801036,0.330633432,0.443043113,-0.127014607,0.379335582,0.434644252,-0.141421124,0.261751592,0.690200806,-0.074255355,0.249373019,0.575328171,-0.118778244,0.312454343,0.533614874,-0.133672893,0.361202359,0.512992024,-0.138561904,0.259157628,0.77959764,-0.092086591,0.260916829,0.71805656,-0.131256431,0.304850817,0.689396381,-0.141901374,0.343574852,0.67360568,-0.14491719 +Left,0.362374842,0.883497477,4.14E-07,0.399961144,0.780920863,-0.018087296,0.408179075,0.650437474,-0.038486965,0.41971603,0.55484724,-0.06070064,0.435760856,0.467392206,-0.0853379,0.335612714,0.577642441,-0.044147719,0.338470459,0.457679808,-0.087978557,0.381146699,0.426111609,-0.120537445,0.425592929,0.418973207,-0.140235513,0.310110778,0.620582819,-0.05819926,0.301184833,0.480999112,-0.104415543,0.356665403,0.450076818,-0.134588674,0.406259686,0.449364841,-0.151419252,0.290968776,0.685580015,-0.07404577,0.270225227,0.562777936,-0.116525307,0.327003509,0.531429172,-0.135088593,0.37628758,0.522211671,-0.143147081,0.27883625,0.767121375,-0.090808928,0.262895286,0.691497743,-0.127676278,0.301197171,0.663372755,-0.141046047,0.342832983,0.654059887,-0.146968529 +Left,0.365940571,0.890975654,3.99E-07,0.406344563,0.799424648,-0.020894341,0.423776358,0.671921968,-0.041969385,0.440534443,0.57817626,-0.06387423,0.45620054,0.493590444,-0.08735168,0.352110624,0.583887458,-0.04417498,0.35965687,0.462179363,-0.086696483,0.402127236,0.44171828,-0.118231684,0.445015728,0.446388781,-0.136752054,0.323093474,0.617220879,-0.055990655,0.314759672,0.474764645,-0.101619668,0.369466931,0.457836568,-0.130865842,0.418534696,0.471697986,-0.146004274,0.298764229,0.676214159,-0.069827951,0.27335906,0.551835239,-0.109868042,0.326650292,0.53312099,-0.127083823,0.374510169,0.534350574,-0.134069666,0.279672176,0.755982399,-0.085033521,0.252166033,0.688042879,-0.119398266,0.284307808,0.661438346,-0.132564843,0.323467195,0.650352418,-0.138339028 +Left,0.365041912,0.942536175,1.76E-07,0.416877985,0.869786263,-0.026105259,0.453148752,0.744413912,-0.048704132,0.476394951,0.656554103,-0.072297685,0.497048736,0.579407573,-0.095171101,0.39237985,0.60818392,-0.043657042,0.408664882,0.481375039,-0.090336181,0.453799486,0.504268289,-0.123015478,0.487796634,0.552161396,-0.139372528,0.351297021,0.633409023,-0.053116214,0.352377653,0.489563882,-0.102533326,0.407772481,0.523517251,-0.131444559,0.446839988,0.587814271,-0.143892735,0.313487798,0.683110595,-0.066098973,0.293018162,0.550577879,-0.106991418,0.342867643,0.564598918,-0.124911517,0.382682025,0.606957793,-0.130638808,0.278394639,0.754943907,-0.081091814,0.240207672,0.667205453,-0.112729996,0.266365439,0.656321466,-0.1259114,0.298940957,0.675479829,-0.13124001 +Left,0.357930899,0.982508779,2.90E-09,0.417564511,0.929866314,-0.027057383,0.469925523,0.82647723,-0.049797378,0.505618691,0.746854007,-0.074097969,0.51493454,0.679179907,-0.096645743,0.41657719,0.658722162,-0.037670791,0.438289165,0.549394369,-0.081317879,0.472775042,0.594606638,-0.110764377,0.492632151,0.660268843,-0.124872074,0.370475739,0.669913769,-0.046275266,0.377972633,0.534672797,-0.091760695,0.420979083,0.582602859,-0.116942853,0.446218401,0.660000145,-0.127115443,0.325139344,0.708281398,-0.059229117,0.310415179,0.571975827,-0.096032396,0.349182367,0.598668098,-0.111923739,0.377707481,0.652354956,-0.116894424,0.284624219,0.772449851,-0.074459322,0.250834972,0.688419044,-0.102662683,0.258883446,0.668291509,-0.116873749,0.26783219,0.672142148,-0.123847716 diff --git a/data/peace_sign.csv b/data/peace_sign.csv new file mode 100644 index 0000000..272f7fd --- /dev/null +++ b/data/peace_sign.csv @@ -0,0 +1,241 @@ +handedness,0_x,0_y,0_z,1_x,1_y,1_z,2_x,2_y,2_z,3_x,3_y,3_z,4_x,4_y,4_z,5_x,5_y,5_z,6_x,6_y,6_z,7_x,7_y,7_z,8_x,8_y,8_z,9_x,9_y,9_z,10_x,10_y,10_z,11_x,11_y,11_z,12_x,12_y,12_z,13_x,13_y,13_z,14_x,14_y,14_z,15_x,15_y,15_z,16_x,16_y,16_z,17_x,17_y,17_z,18_x,18_y,18_z,19_x,19_y,19_z,20_x,20_y,20_z +Right,0.772620082,0.739686847,6.71E-07,0.723646283,0.698871076,-0.032686897,0.695325255,0.618301928,-0.053189442,0.727316618,0.560735822,-0.073247634,0.768990338,0.529897213,-0.09196049,0.718216121,0.459955215,-0.035990484,0.701154768,0.357289612,-0.062803075,0.691174448,0.28980577,-0.080226921,0.687067866,0.224612385,-0.093372189,0.767323613,0.451137155,-0.040611848,0.783371747,0.327733099,-0.07031098,0.800476849,0.249845952,-0.088967904,0.818138659,0.178194046,-0.099745989,0.807486594,0.483666211,-0.048480768,0.824319661,0.425689876,-0.089180924,0.807895422,0.51620388,-0.092129298,0.796525776,0.58386004,-0.083836153,0.841784894,0.537990808,-0.058895592,0.845426798,0.511766672,-0.09248174,0.827772856,0.574511647,-0.091891222,0.815458179,0.623755097,-0.084176883 +Right,0.778556287,0.72613728,6.81E-07,0.727641046,0.690365553,-0.033353142,0.699679434,0.612930179,-0.054457325,0.735783577,0.550558627,-0.075017631,0.776756048,0.512462497,-0.094247751,0.713914275,0.457171351,-0.037518248,0.694423795,0.356139332,-0.065158449,0.682444632,0.288540304,-0.083384752,0.675480366,0.223463535,-0.097150899,0.763392389,0.441124022,-0.041248031,0.775962532,0.315825105,-0.071977168,0.790043712,0.234835282,-0.09042421,0.803602099,0.159741789,-0.101059638,0.805076122,0.466877162,-0.048315801,0.822777569,0.402126312,-0.089520894,0.812774241,0.49470678,-0.090876065,0.804337204,0.564012051,-0.081263892,0.842206717,0.516948462,-0.058028031,0.849704981,0.478291094,-0.091951199,0.835927963,0.542616844,-0.090470746,0.823930979,0.595080078,-0.081856526 +Right,0.775541961,0.694174528,7.22E-07,0.726230621,0.665252984,-0.040476736,0.704357386,0.59159863,-0.065191224,0.745838106,0.527090013,-0.087907597,0.786435008,0.479896784,-0.108758621,0.709567308,0.43043673,-0.043733906,0.692629158,0.325628489,-0.074447215,0.683018565,0.255723357,-0.094795361,0.678651273,0.186271101,-0.110014863,0.758416176,0.405719936,-0.044946607,0.769941032,0.276054144,-0.078859828,0.785818219,0.192744344,-0.099829808,0.80057019,0.113211513,-0.112399787,0.800530314,0.425581366,-0.050074808,0.824265718,0.352290541,-0.095594689,0.819715321,0.448719978,-0.099418722,0.81338346,0.520194471,-0.09104082,0.839871287,0.473293513,-0.058284335,0.854043603,0.434063405,-0.096589252,0.84324199,0.501335025,-0.098051943,0.830159247,0.556455374,-0.091192625 +Right,0.778155863,0.672171891,7.96E-07,0.732185066,0.656519055,-0.047806412,0.713360667,0.591469646,-0.0772117,0.756537497,0.524719,-0.103084706,0.797237873,0.470463604,-0.126518026,0.706458032,0.428045928,-0.054798659,0.688033462,0.319348574,-0.088036194,0.678505957,0.249020085,-0.108576946,0.674831867,0.176946387,-0.123994648,0.753412664,0.392915368,-0.053832822,0.762415171,0.258856535,-0.090923063,0.779823601,0.173612744,-0.112423033,0.794084072,0.090164423,-0.125297755,0.793989897,0.40686962,-0.057145495,0.824445069,0.334339827,-0.107160874,0.829075217,0.434202135,-0.113098718,0.825213373,0.507142425,-0.105672568,0.831566036,0.450491339,-0.063951463,0.854003251,0.421057284,-0.107809432,0.848483443,0.490343034,-0.113318801,0.834953606,0.547177255,-0.10896948 +Right,0.782414317,0.637151837,9.31E-07,0.743389547,0.639203787,-0.057842299,0.728894353,0.586550593,-0.090733021,0.774544358,0.514040351,-0.116950154,0.813299179,0.453171372,-0.140482858,0.702599347,0.4231309,-0.070210837,0.685173333,0.312677264,-0.106596947,0.677285016,0.242729485,-0.129856348,0.674650252,0.169192687,-0.146525368,0.747861862,0.376847625,-0.063947245,0.754508674,0.234869167,-0.102295265,0.771998405,0.143885404,-0.125815988,0.785002291,0.05620116,-0.140440375,0.788351953,0.380288094,-0.062145062,0.821071267,0.308449537,-0.11435613,0.840577364,0.403088957,-0.124594443,0.84632206,0.477952808,-0.119718634,0.82551837,0.414348871,-0.064280197,0.854146361,0.381280243,-0.111072108,0.85936749,0.449209601,-0.119224846,0.852297604,0.515251279,-0.116342209 +Right,0.783466041,0.61225003,9.24E-07,0.745781779,0.611299038,-0.054413296,0.732476354,0.557157815,-0.084680691,0.778987586,0.48373735,-0.109081529,0.818647325,0.426577091,-0.130836844,0.707344592,0.397494167,-0.061943002,0.689499795,0.291005194,-0.09544681,0.681547582,0.22227475,-0.117406957,0.678083718,0.150311247,-0.133135319,0.750977397,0.350461543,-0.056475561,0.756282926,0.210788071,-0.091602698,0.772383392,0.120321006,-0.113386706,0.784145594,0.034433067,-0.126574233,0.790585577,0.353933811,-0.055534195,0.822964132,0.285678238,-0.104378916,0.842104733,0.381105006,-0.112519592,0.847844064,0.455954522,-0.106082916,0.826575935,0.389510393,-0.058469933,0.855016351,0.35268873,-0.101638682,0.860505641,0.420288622,-0.107096687,0.85446161,0.486960828,-0.102298826 +Right,0.781359673,0.615766287,8.15E-07,0.736975014,0.596218944,-0.042248357,0.716690958,0.531006396,-0.069793768,0.755384207,0.464933306,-0.095143907,0.793711185,0.414111346,-0.118536167,0.709179819,0.371327281,-0.05012612,0.687709272,0.266857773,-0.082708195,0.676606536,0.198860377,-0.103831723,0.671009898,0.130335838,-0.119381838,0.756117225,0.339308232,-0.051680353,0.765444338,0.205886245,-0.08741428,0.780243576,0.120168984,-0.108391412,0.793335319,0.037901968,-0.120599195,0.797996104,0.355453581,-0.056924917,0.819874823,0.283913702,-0.10259667,0.81862247,0.383984357,-0.10485816,0.813935578,0.454905629,-0.095532402,0.836805642,0.400178254,-0.065504074,0.852675676,0.363474816,-0.10348317,0.843547463,0.430398792,-0.103822097,0.831197262,0.484162301,-0.096222989 +Right,0.787291229,0.679234564,7.12E-07,0.739238024,0.639250278,-0.036355291,0.71562928,0.558559895,-0.059160784,0.754050493,0.498848915,-0.081114136,0.796584904,0.463232696,-0.101490676,0.725875437,0.41348356,-0.042270545,0.703423858,0.304978848,-0.072243646,0.690515697,0.236169949,-0.090815797,0.682748854,0.170709699,-0.103735477,0.773976207,0.392295986,-0.044797663,0.78606391,0.257298797,-0.07611917,0.802177131,0.171842456,-0.093113802,0.818217337,0.096505344,-0.101764128,0.815560102,0.415425241,-0.050968554,0.833427668,0.348528326,-0.091602288,0.827656031,0.440771937,-0.092483945,0.823318243,0.511118889,-0.082075454,0.853036106,0.464871466,-0.060293335,0.860692143,0.439050883,-0.092966728,0.848423958,0.499641001,-0.091550864,0.838744044,0.548585534,-0.082783885 +Right,0.802339315,0.754953861,6.82E-07,0.757004499,0.706161559,-0.031336248,0.734411299,0.620733857,-0.052056428,0.772169352,0.560203493,-0.072504848,0.815012574,0.524042785,-0.091621287,0.746773243,0.473004043,-0.039847955,0.72704196,0.36261788,-0.070465572,0.716972411,0.291611552,-0.09063229,0.710152149,0.224753499,-0.105358146,0.796833098,0.456672221,-0.044872932,0.813502192,0.321425408,-0.076118059,0.834548354,0.241870835,-0.094308779,0.853959858,0.172446072,-0.104597032,0.838654578,0.484333485,-0.052892137,0.858561277,0.424486935,-0.091368206,0.848280489,0.513598621,-0.091592476,0.839874864,0.579845786,-0.08241158,0.875014007,0.537644148,-0.06383352,0.883589387,0.521852791,-0.09583836,0.866626382,0.583911717,-0.094457217,0.852222562,0.630957425,-0.08660274 +Right,0.804773092,0.788363814,6.58E-07,0.755336821,0.734127402,-0.030329483,0.732067347,0.64639473,-0.051160086,0.768884659,0.585492611,-0.072624937,0.812691391,0.55472672,-0.09305802,0.760445416,0.48985219,-0.034117606,0.74036473,0.377925843,-0.061900333,0.729638696,0.307038218,-0.080155283,0.724495113,0.239146292,-0.093580447,0.811029732,0.485792577,-0.040770859,0.830674291,0.352077395,-0.07073421,0.848612726,0.271217197,-0.088624172,0.866821766,0.197156012,-0.098637037,0.851658285,0.523901582,-0.050520752,0.867808342,0.450679719,-0.0914419,0.846593738,0.545509398,-0.090521432,0.832657099,0.61479789,-0.079165347,0.886173546,0.587558508,-0.062708713,0.890371501,0.539748073,-0.095268324,0.869057,0.606718838,-0.08992552,0.854205847,0.660127521,-0.078468934 +Right,0.815400362,0.783926308,5.71E-07,0.76692903,0.725660503,-0.024957467,0.730742693,0.640711904,-0.045084603,0.738565505,0.578709185,-0.067283884,0.778782308,0.557583213,-0.08865539,0.775474072,0.477079958,-0.03106661,0.755280674,0.367563844,-0.058472708,0.742346942,0.302570045,-0.075715728,0.734771371,0.238652021,-0.088045388,0.823524237,0.479766726,-0.041074842,0.841160297,0.34644407,-0.06987118,0.852697551,0.267395645,-0.086896829,0.865602136,0.191402495,-0.095846131,0.863564491,0.523435354,-0.053751502,0.857625127,0.454304576,-0.095280126,0.824730277,0.546269894,-0.09824264,0.807221413,0.612778604,-0.088991694,0.896233439,0.59140867,-0.068113215,0.874130189,0.560105681,-0.100182816,0.843077898,0.622680008,-0.097529426,0.827229738,0.670990705,-0.088144995 +Right,0.816658258,0.773784876,5.01E-07,0.769362509,0.703008354,-0.017740177,0.732095957,0.603228092,-0.033351421,0.721712053,0.530642092,-0.052161925,0.753485382,0.527248561,-0.070555799,0.786137164,0.457010686,-0.022082163,0.766555667,0.344726473,-0.045518808,0.751410186,0.276242077,-0.060269408,0.741640747,0.21072194,-0.071526825,0.82820338,0.461087257,-0.033152539,0.842127681,0.320405602,-0.05825948,0.848518372,0.237743735,-0.072684236,0.856617987,0.164767951,-0.080159128,0.863532186,0.501112223,-0.046387929,0.839194596,0.425929248,-0.082451686,0.801606357,0.500528693,-0.085691504,0.782586038,0.563208401,-0.077885784,0.889593959,0.562424302,-0.060995769,0.844647288,0.528215528,-0.087980673,0.811263502,0.58057332,-0.086525559,0.797659397,0.627201974,-0.079411305 +Right,0.792414188,0.736248076,4.01E-07,0.745373666,0.663075149,-0.017268751,0.716602266,0.560426474,-0.033943363,0.703269064,0.49059087,-0.054860916,0.730911553,0.455272317,-0.074776441,0.783436716,0.418370277,-0.014563025,0.767310441,0.306315958,-0.039864272,0.755292356,0.238715202,-0.056366678,0.749212861,0.177478075,-0.067749612,0.823475838,0.426502198,-0.026338842,0.836892605,0.284089923,-0.055782735,0.838384986,0.195785701,-0.074604087,0.842195034,0.120991468,-0.083808839,0.854120433,0.465644985,-0.040772129,0.819924653,0.369787335,-0.081748866,0.776033401,0.437835157,-0.08632715,0.754831791,0.498123795,-0.077804357,0.871201038,0.523750544,-0.056289814,0.815714419,0.472961485,-0.087072954,0.77864188,0.523922443,-0.086299703,0.764303923,0.573590279,-0.078215808 +Right,0.764408588,0.712923706,4.24E-07,0.720281065,0.633129478,-0.017129708,0.69930023,0.535070837,-0.034099344,0.695612133,0.468168408,-0.055579372,0.72254014,0.429461181,-0.076254196,0.767145455,0.401970208,-0.014561583,0.757490158,0.29154402,-0.04025973,0.751282752,0.227119744,-0.057250809,0.750935078,0.166724503,-0.06883046,0.807428479,0.412303239,-0.026679717,0.830426931,0.269120216,-0.056365423,0.838187575,0.180156708,-0.075742483,0.846928418,0.107577771,-0.085702226,0.837506235,0.450996637,-0.041505929,0.817588568,0.352049798,-0.082720317,0.771130323,0.413236678,-0.088868648,0.74351418,0.472036034,-0.081754349,0.856279135,0.504928231,-0.05740352,0.811314225,0.451097518,-0.088874184,0.770581782,0.49446851,-0.089263216,0.747737706,0.540014565,-0.082160071 +Right,0.746317327,0.733347952,4.78E-07,0.70122385,0.656682909,-0.01677461,0.681105912,0.557798266,-0.031556882,0.6870538,0.487431794,-0.050991748,0.71462214,0.450056493,-0.069509961,0.740577698,0.422466129,-0.015086182,0.732197821,0.31030184,-0.039351679,0.727093995,0.243882179,-0.055969253,0.7255041,0.180155843,-0.067919195,0.779453993,0.433163464,-0.027712936,0.809114039,0.289610088,-0.054740474,0.8236081,0.20563221,-0.07221175,0.838942409,0.136681944,-0.081857011,0.808962345,0.477083743,-0.043049306,0.805934012,0.378004581,-0.080836646,0.764609456,0.443916857,-0.083197966,0.739965796,0.503305674,-0.07461518,0.831136167,0.540658236,-0.05979402,0.810186148,0.471693516,-0.088194743,0.772696495,0.513998091,-0.084706008,0.749267399,0.559342623,-0.075718194 +Right,0.734128475,0.73927784,5.34E-07,0.689362884,0.668928266,-0.021399273,0.668761373,0.573711634,-0.037539121,0.689993978,0.504028082,-0.056619726,0.728594303,0.472738773,-0.07500609,0.72015363,0.423544168,-0.019112617,0.711408734,0.31332916,-0.04281415,0.707357168,0.243961856,-0.059466671,0.707886696,0.178976446,-0.072054178,0.763580084,0.433208734,-0.029206248,0.795806587,0.300794631,-0.054818381,0.815082669,0.222322464,-0.072635978,0.834592402,0.155732691,-0.083469182,0.795473695,0.479896486,-0.042101912,0.80823648,0.390406311,-0.079741552,0.771248102,0.468360841,-0.081939124,0.748111069,0.531605244,-0.073842905,0.820533812,0.549131989,-0.056606248,0.810705304,0.492622405,-0.086678103,0.780356526,0.549298048,-0.083504483,0.762494802,0.599755764,-0.074589893 +Right,0.718485296,0.721642137,5.67E-07,0.671694458,0.664487123,-0.02763335,0.648823023,0.57136631,-0.045574639,0.677266359,0.507568717,-0.064569309,0.717420042,0.475632071,-0.082949653,0.685880125,0.418792158,-0.028424947,0.675806224,0.313103497,-0.053643413,0.670388341,0.244985282,-0.070561931,0.669867933,0.180434763,-0.083087727,0.732115567,0.422080755,-0.035293367,0.76011461,0.295517176,-0.062254373,0.778462708,0.2177082,-0.079926603,0.796664357,0.149670422,-0.090458252,0.767508984,0.463484168,-0.045232613,0.787098467,0.389797896,-0.084572986,0.757736683,0.471050292,-0.087932624,0.736871004,0.533522308,-0.080528915,0.796103179,0.528537452,-0.057129059,0.797744155,0.48523581,-0.089456059,0.773135185,0.546759427,-0.087564953,0.754942834,0.597359955,-0.079321474 +Right,0.723150611,0.705447793,5.70E-07,0.675981045,0.655783892,-0.027023138,0.653264046,0.564360201,-0.04340861,0.684885263,0.503987968,-0.060437873,0.724065602,0.473490506,-0.076968275,0.683287442,0.416029841,-0.027984209,0.66862452,0.311735004,-0.052087862,0.659962475,0.243815884,-0.068401374,0.656655073,0.177797973,-0.080742605,0.729062676,0.413597971,-0.034004223,0.751689255,0.285898268,-0.059906263,0.768918335,0.207461774,-0.076629207,0.786247551,0.137447208,-0.086757943,0.764689982,0.448905885,-0.043005183,0.786303699,0.368296564,-0.081388302,0.76308161,0.454009086,-0.084267013,0.746358752,0.519441605,-0.076734163,0.794840693,0.507703602,-0.053916935,0.799876153,0.464768022,-0.086607546,0.77938503,0.53012228,-0.085434712,0.764070749,0.581979573,-0.077703275 +Right,0.742825985,0.685755789,7.11E-07,0.69473052,0.642710805,-0.032351475,0.673457623,0.557701528,-0.052910924,0.711889684,0.502390385,-0.072965004,0.752427161,0.470027983,-0.092203602,0.692559063,0.409127384,-0.039338335,0.677090287,0.300562948,-0.067299016,0.670364857,0.230160445,-0.084538244,0.669199228,0.16263327,-0.096889697,0.741335392,0.398638159,-0.043516081,0.760947526,0.267458349,-0.074551292,0.780738175,0.186900526,-0.092656039,0.799649239,0.114232957,-0.102358766,0.780732095,0.428038359,-0.050473917,0.800167203,0.364685774,-0.091352038,0.784623682,0.457991719,-0.092007935,0.772336006,0.524614155,-0.081897855,0.814265192,0.480920911,-0.059956107,0.822698355,0.449670553,-0.092834093,0.805844188,0.519423068,-0.089731492,0.791489065,0.572545767,-0.080067433 +Right,0.751199901,0.682499349,7.03E-07,0.701758325,0.643273294,-0.03598633,0.681368768,0.561088681,-0.057587966,0.72353667,0.50629425,-0.078032956,0.764832258,0.47294125,-0.097206965,0.693709373,0.419315249,-0.041837383,0.676775694,0.311316907,-0.071180508,0.667370319,0.241176382,-0.089253716,0.663607597,0.172554761,-0.10233666,0.742968738,0.402394205,-0.04405218,0.758880377,0.274046421,-0.0764741,0.776485682,0.192057922,-0.094884917,0.793188572,0.115302801,-0.104897037,0.783526599,0.426091135,-0.049673982,0.80352056,0.362196147,-0.092983864,0.794739723,0.457398087,-0.094812714,0.786720335,0.52658546,-0.084914207,0.819701195,0.475079775,-0.058079209,0.829969764,0.446009368,-0.09356714,0.815829813,0.514102936,-0.092762195,0.802403152,0.566729903,-0.084373102 +Right,0.76593864,0.697345734,8.26E-07,0.720729589,0.676523089,-0.048056293,0.701001883,0.603174329,-0.076822385,0.744065702,0.541893601,-0.10129787,0.788464904,0.496368796,-0.123901658,0.700932741,0.448846191,-0.059075754,0.687083364,0.335396111,-0.092613049,0.679437697,0.26360023,-0.113850608,0.677051425,0.189965218,-0.129895002,0.750527322,0.419727772,-0.056885015,0.76452595,0.288651735,-0.093871623,0.785459518,0.205266029,-0.115380213,0.803814471,0.124825954,-0.128490731,0.791978598,0.436045289,-0.058325592,0.818692446,0.362672985,-0.108482599,0.819003105,0.465969503,-0.113976307,0.815157592,0.545167387,-0.106742129,0.828956008,0.479915172,-0.06322898,0.849226654,0.460070014,-0.111302301,0.842779636,0.541530371,-0.117961705,0.832342982,0.607676566,-0.113557391 +Right,0.767749786,0.709393203,8.51E-07,0.723556936,0.683540344,-0.048241511,0.706359804,0.616809309,-0.077356942,0.750100136,0.549512625,-0.102375224,0.792538404,0.501770735,-0.124928772,0.704445124,0.456545085,-0.057521187,0.692062795,0.340328753,-0.091040879,0.686716259,0.269193888,-0.11315345,0.686918318,0.196238369,-0.129707783,0.754444957,0.428614378,-0.055707783,0.769919634,0.293771982,-0.091878034,0.791646481,0.20993939,-0.114075355,0.810377121,0.129025191,-0.128049523,0.796852589,0.44797042,-0.057588812,0.823607504,0.379620999,-0.105284892,0.82206589,0.485145748,-0.108628489,0.815983593,0.563866854,-0.100113466,0.832890451,0.497726351,-0.063230999,0.852108359,0.467500687,-0.106443286,0.845300019,0.543749034,-0.109180287,0.834368169,0.608112037,-0.102532417 +Right,0.764587998,0.712406993,7.99E-07,0.718326807,0.677406311,-0.042679586,0.700802982,0.598978579,-0.068624116,0.744831681,0.544126928,-0.091806218,0.787616074,0.506972134,-0.113161139,0.712055087,0.444323361,-0.050030034,0.701028824,0.332226157,-0.081449755,0.695551515,0.260314465,-0.101642556,0.695242167,0.18885681,-0.116697468,0.762208104,0.426776946,-0.050338868,0.783536673,0.296634704,-0.084880494,0.806847692,0.215591073,-0.105237104,0.827368557,0.138680696,-0.117345385,0.802329183,0.452994972,-0.054287266,0.833114564,0.386967868,-0.101300955,0.824222565,0.488739491,-0.104788758,0.813378513,0.564779937,-0.09601479,0.836265326,0.506406426,-0.061423827,0.856296718,0.481124312,-0.103821792,0.842704594,0.557417154,-0.106495053,0.827066183,0.618032515,-0.099733278 +Right,0.761105776,0.718839526,7.47E-07,0.71464318,0.670560598,-0.033328801,0.692618728,0.583915353,-0.055164229,0.731986821,0.531241477,-0.076762527,0.77464819,0.503370166,-0.097323351,0.719458222,0.431141376,-0.040309515,0.708871186,0.319568515,-0.069095589,0.703783453,0.247502506,-0.088393219,0.703547955,0.178426176,-0.103219964,0.769124687,0.427631646,-0.045328699,0.794789255,0.297315389,-0.077195846,0.818397999,0.217100456,-0.096947603,0.839741647,0.144107908,-0.108979136,0.808031559,0.46502915,-0.053325377,0.833556414,0.397785753,-0.094867393,0.812181115,0.489884496,-0.095743403,0.793866158,0.558815479,-0.086587884,0.839206338,0.526975989,-0.06409888,0.852048576,0.492668986,-0.099069096,0.83085376,0.555509925,-0.097353324,0.81170994,0.606391609,-0.088972598 +Right,0.756017327,0.725961089,6.51E-07,0.708415747,0.670251906,-0.027264023,0.682769895,0.579057992,-0.046463244,0.713812411,0.531174004,-0.066757262,0.757816851,0.516138673,-0.086272106,0.723742783,0.427739292,-0.033992678,0.712486386,0.318932116,-0.062953837,0.706484914,0.250189066,-0.082612179,0.705667555,0.183232278,-0.096880808,0.771390498,0.433888555,-0.041980766,0.797091365,0.307160914,-0.071830913,0.81779933,0.229703709,-0.090398498,0.838639081,0.158145547,-0.101250969,0.808343828,0.477228791,-0.052686773,0.826579928,0.415601701,-0.091778532,0.796143234,0.505910635,-0.091517337,0.774776995,0.571160197,-0.081342079,0.83764112,0.540943861,-0.065815367,0.84105134,0.513053179,-0.096274771,0.813498378,0.574698508,-0.091548413,0.793630898,0.620633662,-0.08128579 +Right,0.758150876,0.723778486,5.73E-07,0.712197781,0.668920338,-0.023920804,0.679679036,0.582553983,-0.041856773,0.694564342,0.534344554,-0.061478678,0.733605564,0.518290162,-0.080171131,0.728346467,0.428342223,-0.032115951,0.715590477,0.318855047,-0.059566908,0.707575023,0.25206399,-0.077496551,0.704079092,0.186250508,-0.090441249,0.774795055,0.43433696,-0.040513657,0.796237707,0.311223179,-0.068593189,0.813678026,0.23679024,-0.08572688,0.831657708,0.16651234,-0.09560965,0.810632467,0.476524174,-0.051283933,0.815360785,0.422256649,-0.088499472,0.780206442,0.508719623,-0.090385996,0.75661993,0.572210729,-0.082133867,0.837774217,0.538793802,-0.064135849,0.825197935,0.526770294,-0.093236722,0.792623043,0.582797885,-0.091624118,0.770195067,0.623819351,-0.084001116 +Right,0.761340499,0.722426653,5.05E-07,0.714071512,0.667987227,-0.022146083,0.678952396,0.580431521,-0.038522307,0.684367955,0.519864798,-0.057045035,0.719155848,0.496404439,-0.074639425,0.724952579,0.421957374,-0.025746465,0.708107948,0.312467515,-0.05031376,0.696348727,0.247167975,-0.065382496,0.689568579,0.183759391,-0.075973488,0.769442499,0.424601585,-0.034977816,0.787130773,0.292765975,-0.059875041,0.794603288,0.217134282,-0.074426241,0.803234816,0.147850305,-0.081961952,0.805653691,0.465082377,-0.046780299,0.796245992,0.393803388,-0.084184378,0.763242126,0.482246161,-0.086584188,0.746504724,0.548334539,-0.077919602,0.833413363,0.529228926,-0.060184654,0.805601239,0.504231751,-0.089693874,0.774557412,0.567601502,-0.08762531,0.759761035,0.616188943,-0.079214342 +Right,0.75905025,0.723000526,5.07E-07,0.712121606,0.667184472,-0.022260228,0.677297711,0.57986325,-0.039225936,0.681555629,0.516533613,-0.058582485,0.717598081,0.492668003,-0.077074997,0.726031184,0.418539315,-0.025160715,0.708913803,0.309613883,-0.050030924,0.697578728,0.24444887,-0.065642953,0.69100523,0.180516213,-0.076776728,0.770404339,0.421521813,-0.034598473,0.787589908,0.288300425,-0.060158078,0.795368016,0.21291402,-0.075241275,0.804556847,0.143414736,-0.083251029,0.806209326,0.461880147,-0.046706568,0.794245064,0.387451172,-0.0847032,0.760938823,0.475852191,-0.087338455,0.744650066,0.542307436,-0.078837015,0.834017932,0.525621295,-0.060442831,0.804919362,0.497004092,-0.089913182,0.774282575,0.560938478,-0.087982766,0.760564506,0.610373616,-0.079853632 +Right,0.744534016,0.726024389,4.96E-07,0.697735131,0.666782677,-0.021868462,0.667598307,0.57445693,-0.037946083,0.68144995,0.508026063,-0.056581825,0.720243871,0.478364438,-0.07455685,0.717001677,0.419083655,-0.022062948,0.703387141,0.308701217,-0.046179861,0.69495523,0.241897792,-0.061833009,0.690246105,0.177729815,-0.073312975,0.761016071,0.422763228,-0.031598885,0.782478034,0.28727904,-0.057652991,0.793982863,0.210041508,-0.074090295,0.806224108,0.140970558,-0.083244294,0.795827448,0.463793337,-0.043908276,0.792507887,0.381946236,-0.08369258,0.759263933,0.469859362,-0.086860768,0.741419792,0.536701083,-0.078440346,0.823983371,0.528022528,-0.05762786,0.801579773,0.486165285,-0.089572661,0.771602571,0.551299989,-0.087697402,0.756450236,0.60396409,-0.07921841 +Right,0.728930712,0.725115418,4.63E-07,0.68299824,0.656759739,-0.018414753,0.657999396,0.560354948,-0.032452982,0.673646808,0.493446082,-0.049829271,0.711121976,0.468389213,-0.066636592,0.71183461,0.419135511,-0.016618561,0.701796591,0.309757948,-0.038839117,0.695052445,0.243114188,-0.053964961,0.691270351,0.179879457,-0.065474443,0.752436101,0.424123257,-0.026989546,0.776362717,0.287382871,-0.050959915,0.789431214,0.210369661,-0.066648103,0.803331494,0.14489612,-0.075876355,0.785056949,0.465237916,-0.039992675,0.786607742,0.37694943,-0.075658597,0.751604855,0.455840826,-0.077621572,0.731323719,0.520576358,-0.069550999,0.812347293,0.529545307,-0.054470692,0.793653905,0.478617221,-0.082859166,0.763431489,0.533324778,-0.080285482,0.746778548,0.582003951,-0.072177991 +Right,0.716448724,0.74089694,4.46E-07,0.669715524,0.673375428,-0.020978993,0.645846248,0.580142021,-0.038038932,0.656490743,0.510065675,-0.058492634,0.690866351,0.47567755,-0.0779301,0.701200247,0.436725259,-0.019712524,0.691744506,0.327676862,-0.045152187,0.685870767,0.263220012,-0.062384102,0.683060646,0.200088054,-0.074927881,0.741310596,0.443343669,-0.030141065,0.7640028,0.305461556,-0.057595465,0.775200069,0.229399115,-0.074344181,0.787726045,0.163401783,-0.083779268,0.772838771,0.484762132,-0.043600604,0.769209325,0.392986715,-0.08307486,0.73200655,0.473349601,-0.08420781,0.710775554,0.538429379,-0.074532963,0.798105478,0.549560308,-0.058659002,0.776618779,0.487306535,-0.089219697,0.74286586,0.542264819,-0.085607804,0.722873271,0.59336251,-0.076162338 +Right,0.712492526,0.732055783,3.73E-07,0.667698085,0.66593194,-0.016032893,0.640853643,0.571625531,-0.030268442,0.634910464,0.501149118,-0.04794275,0.662415564,0.480053037,-0.064770088,0.699364543,0.437675834,-0.015986478,0.688441217,0.331719398,-0.038052656,0.678554833,0.267103434,-0.052177254,0.67316252,0.207554579,-0.062212996,0.738064647,0.443522185,-0.026079398,0.753096282,0.311334014,-0.050164651,0.755298615,0.232291579,-0.064551122,0.757827282,0.165023893,-0.071878374,0.767928839,0.478854686,-0.038484417,0.744550586,0.39225179,-0.073385797,0.70599854,0.458548635,-0.076916248,0.684225023,0.518105924,-0.06945923,0.786853254,0.532058537,-0.052017163,0.740957618,0.491815209,-0.07895533,0.704496443,0.536528766,-0.079011083,0.685029387,0.58033365,-0.072684735 +Right,0.712095618,0.728406072,3.72E-07,0.666432738,0.667302608,-0.014746062,0.638434887,0.57395786,-0.027515944,0.628154814,0.510037065,-0.043737818,0.649930239,0.470252156,-0.059146583,0.692012608,0.436676025,-0.013800628,0.679285586,0.331649959,-0.034532152,0.668566048,0.268345416,-0.047502473,0.663066387,0.20987764,-0.05661254,0.730075538,0.440975636,-0.023938827,0.739951134,0.309123337,-0.048331778,0.740141273,0.227729857,-0.064002253,0.741396308,0.158690363,-0.072082289,0.759657562,0.472069621,-0.036149859,0.729556203,0.388985872,-0.071942002,0.690713584,0.457592577,-0.076594248,0.669084549,0.517152786,-0.069827862,0.777596235,0.51922816,-0.049141202,0.725825608,0.481708765,-0.07791207,0.689994514,0.534746885,-0.078682259,0.671909869,0.584022939,-0.072444901 +Right,0.715988696,0.720673919,3.68E-07,0.669205427,0.658825278,-0.015884301,0.639999211,0.567843437,-0.029289652,0.635669708,0.500445724,-0.046484858,0.662550747,0.466821223,-0.062899664,0.691269875,0.430312604,-0.014449946,0.677391052,0.327259898,-0.036596615,0.667402864,0.264330298,-0.05125,0.661938548,0.204187721,-0.061823361,0.7297135,0.432034194,-0.02487753,0.743200064,0.299820155,-0.049131967,0.745851994,0.221038878,-0.064208083,0.750107169,0.154544502,-0.072415672,0.761000752,0.46593374,-0.037805986,0.743872762,0.377277523,-0.073282063,0.706007302,0.44678396,-0.076784067,0.684206605,0.508393824,-0.069539614,0.784164429,0.519838452,-0.051865783,0.747494042,0.473279804,-0.080147944,0.711182892,0.520071566,-0.07998807,0.690062046,0.566022515,-0.073490381 +Right,0.716691017,0.720300078,4.36E-07,0.670416594,0.657526314,-0.020164844,0.644709051,0.567234635,-0.03661653,0.654583931,0.498623878,-0.056160744,0.687324345,0.463038951,-0.074854977,0.695165038,0.424712569,-0.020555779,0.684481025,0.317920089,-0.045062806,0.677028537,0.254486918,-0.061381962,0.672560275,0.192238152,-0.073271506,0.735299647,0.429683924,-0.03051823,0.756737113,0.294867367,-0.056485683,0.767384768,0.220649883,-0.072242297,0.778846502,0.155326188,-0.08125069,0.767584324,0.469026923,-0.043226819,0.764683127,0.377914041,-0.081398189,0.729988039,0.458262801,-0.082835741,0.709770262,0.523281217,-0.073902629,0.79482317,0.531730056,-0.05735942,0.774233997,0.474290997,-0.087663054,0.74194634,0.528851509,-0.084799595,0.722268462,0.578693569,-0.076110721 +Right,0.726828814,0.729813159,4.86E-07,0.677703321,0.671552837,-0.023312621,0.649531364,0.583457947,-0.040552329,0.666346133,0.516087532,-0.060198717,0.703916788,0.480481029,-0.079279616,0.69129312,0.430396974,-0.022974828,0.678133607,0.32739079,-0.048281059,0.67010808,0.262904346,-0.065902859,0.666071832,0.199575335,-0.078839332,0.735285223,0.431873292,-0.031960148,0.757083416,0.301613569,-0.058177449,0.769372523,0.225556791,-0.075319149,0.782715619,0.157233894,-0.085519463,0.770926118,0.471293032,-0.043939143,0.776805282,0.386700273,-0.083033301,0.74608022,0.470074892,-0.086235359,0.7275877,0.536177754,-0.078432046,0.801201165,0.535239518,-0.05753313,0.790066779,0.484620929,-0.088953577,0.763290703,0.543195009,-0.086705253,0.746900678,0.594663262,-0.07821247 +Right,0.737157941,0.730760217,5.38E-07,0.687929094,0.682816207,-0.025628671,0.65833348,0.596769929,-0.043372229,0.678894699,0.529321253,-0.062690131,0.716923237,0.491623074,-0.081436887,0.693214595,0.437379986,-0.026174996,0.676818192,0.336818755,-0.051152132,0.666407943,0.273067385,-0.067961447,0.661046863,0.209896564,-0.080223881,0.737771094,0.434433043,-0.034039918,0.757427037,0.304087043,-0.06013583,0.769628882,0.226018608,-0.076434195,0.782932937,0.15694198,-0.085747391,0.774414241,0.47089842,-0.044986714,0.786563814,0.389860362,-0.083776362,0.761171043,0.47699362,-0.0863306,0.745248199,0.544001639,-0.078101851,0.806159675,0.531248629,-0.057773419,0.802194655,0.485704452,-0.089342713,0.779041052,0.549739361,-0.086902551,0.764050603,0.602008402,-0.078174211 +Right,0.742246985,0.722851872,5.88E-07,0.694179714,0.678431451,-0.029013511,0.667307317,0.593300819,-0.048136357,0.696363509,0.528789699,-0.067807972,0.73764956,0.495908707,-0.086692028,0.695488334,0.43610999,-0.031213544,0.678792298,0.331638873,-0.057031937,0.669323444,0.265639275,-0.074873902,0.665453076,0.199633718,-0.088431291,0.742248476,0.430710852,-0.037441757,0.761021674,0.299859166,-0.064239636,0.775158048,0.221094459,-0.081467815,0.790353119,0.148988605,-0.09217912,0.780218363,0.465474159,-0.046730105,0.797978103,0.383486092,-0.085390732,0.776021957,0.474002719,-0.086483017,0.76171875,0.542339087,-0.077833436,0.813011706,0.524426579,-0.058325768,0.817848384,0.478334785,-0.091028079,0.798271298,0.544407964,-0.088450901,0.784817874,0.59763813,-0.079719193 +Right,0.757739365,0.709473252,6.64E-07,0.708390534,0.674629748,-0.035216395,0.680223346,0.596800625,-0.057678211,0.715626061,0.540038705,-0.079384208,0.759198308,0.504977405,-0.099882767,0.696896434,0.442373633,-0.040202081,0.677522302,0.336765587,-0.068789102,0.667273939,0.269920975,-0.086359106,0.663010001,0.203010172,-0.099271506,0.745754957,0.424787164,-0.043405928,0.758456826,0.295034587,-0.074759997,0.773467481,0.216249943,-0.092598498,0.788207233,0.141658545,-0.102540582,0.786467671,0.448135972,-0.049983893,0.802460968,0.378211677,-0.092969216,0.790534616,0.478916287,-0.093920544,0.780842364,0.551593959,-0.083599642,0.823472977,0.497216851,-0.059279498,0.8294909,0.464547515,-0.094642244,0.814724863,0.537915051,-0.093177766,0.801558614,0.594195902,-0.084421225 +Right,0.768849671,0.69192344,7.49E-07,0.718436658,0.669950962,-0.039165784,0.68966049,0.607837021,-0.064789042,0.72276181,0.5457021,-0.088396661,0.761003017,0.500608087,-0.110143565,0.69188565,0.449399143,-0.048153121,0.668669462,0.345870495,-0.078666188,0.655966103,0.281619787,-0.0983992,0.649612486,0.215732574,-0.113302648,0.740336359,0.422112912,-0.049802538,0.747472882,0.29408437,-0.083920628,0.760845721,0.212238058,-0.104191869,0.774405658,0.133470356,-0.116538741,0.782440901,0.439151973,-0.054542143,0.798405707,0.371841162,-0.097960874,0.792753935,0.472573519,-0.098188221,0.786854625,0.546169758,-0.088252231,0.820742011,0.483427197,-0.062443029,0.82954222,0.450748205,-0.099147603,0.819153488,0.522917867,-0.098072708,0.80833745,0.580484033,-0.089763962 +Right,0.772545695,0.688960016,8.03E-07,0.724465847,0.67138052,-0.041043282,0.69728142,0.616987169,-0.066898443,0.730226219,0.550207019,-0.089920767,0.768348336,0.502305865,-0.110786431,0.688714147,0.459295094,-0.05086856,0.662760675,0.356469929,-0.081528254,0.649538934,0.295045406,-0.101736933,0.642339051,0.230032623,-0.117087416,0.735798478,0.424221069,-0.051805168,0.740349293,0.294428289,-0.085777923,0.7531147,0.212494701,-0.106500894,0.764913023,0.133762985,-0.119431376,0.778400362,0.43558073,-0.055866007,0.795448244,0.36759609,-0.09922307,0.795607448,0.470819622,-0.10054078,0.792042255,0.545663595,-0.091573752,0.817169487,0.476477414,-0.063273542,0.830477715,0.445114225,-0.101028807,0.824082613,0.518214166,-0.101203799,0.814273715,0.579662621,-0.09371122 +Right,0.778367102,0.675218821,7.91E-07,0.733717918,0.664120078,-0.044855166,0.709907115,0.609512031,-0.07216204,0.74511373,0.541539788,-0.095606416,0.78448832,0.492798388,-0.116960488,0.695348859,0.460348904,-0.05707619,0.670533657,0.358513892,-0.088987485,0.658058703,0.296133399,-0.1094843,0.650890291,0.230642438,-0.124746218,0.740859389,0.419319481,-0.056143858,0.744306624,0.287011713,-0.090483494,0.757744431,0.202564135,-0.110789128,0.769115448,0.122290939,-0.123385638,0.78240186,0.42559725,-0.058536626,0.803131282,0.355657369,-0.103509597,0.810848713,0.456046164,-0.106743932,0.811259568,0.530811846,-0.098775834,0.821488857,0.462379009,-0.064342313,0.838667512,0.428152144,-0.104126006,0.837331057,0.500823975,-0.106141143,0.830328524,0.565073609,-0.09984652 +Right,0.781565726,0.673815608,8.08E-07,0.737227678,0.661645234,-0.045010909,0.714170158,0.604147851,-0.072153568,0.749845505,0.534214616,-0.095306315,0.788376093,0.483599037,-0.116024196,0.700031817,0.453301787,-0.05580163,0.67563498,0.350293726,-0.087941855,0.662473798,0.287817985,-0.108372957,0.654415667,0.220997751,-0.123675108,0.745474339,0.412740946,-0.054680247,0.749575794,0.282423705,-0.089803934,0.764186502,0.198822066,-0.109926939,0.776271939,0.117955893,-0.122068956,0.787140727,0.418942034,-0.057046991,0.809125364,0.353090405,-0.103050321,0.815574765,0.456925571,-0.105617628,0.814438999,0.532852352,-0.096774332,0.82618624,0.455502719,-0.062968262,0.845737219,0.42912057,-0.104459167,0.843254209,0.504827559,-0.107173912,0.83395499,0.569216728,-0.100835018 +Right,0.779702485,0.703050971,6.66E-07,0.729765832,0.675715268,-0.034579962,0.702039599,0.60898906,-0.057625338,0.733145893,0.538445532,-0.079816915,0.769096911,0.486123532,-0.100411251,0.700289965,0.453171641,-0.040338933,0.670840979,0.350664318,-0.068391815,0.653396189,0.288220346,-0.087164409,0.640839219,0.223399252,-0.101654336,0.747092664,0.422989458,-0.043726373,0.749177814,0.291078925,-0.073688217,0.758505404,0.209933847,-0.092140011,0.767429531,0.131497413,-0.103860192,0.789515078,0.437920928,-0.05027961,0.800737023,0.357883275,-0.090100452,0.800705016,0.453980327,-0.089990415,0.799702287,0.52510494,-0.080609918,0.82997334,0.480894119,-0.059753798,0.837245286,0.432693958,-0.093499489,0.828711629,0.501280844,-0.091766559,0.820231318,0.558858216,-0.083590932 +Right,0.775311649,0.733915508,6.07E-07,0.722525835,0.699962735,-0.031182138,0.693634629,0.618064046,-0.050603252,0.728843451,0.542142391,-0.070393384,0.769807756,0.496172398,-0.089342393,0.699954987,0.462980598,-0.031719469,0.672173858,0.359972894,-0.057488017,0.656087399,0.295072734,-0.075748973,0.645022869,0.230158538,-0.090167977,0.748016417,0.438815534,-0.036765251,0.751830101,0.302411795,-0.064514481,0.759677112,0.22138536,-0.083354458,0.768144786,0.143475354,-0.095707364,0.789839983,0.459194988,-0.045106202,0.800280273,0.366392523,-0.084234767,0.795428574,0.464063972,-0.085100986,0.792794406,0.536978364,-0.076425306,0.828848124,0.508141816,-0.056064591,0.833865047,0.447497249,-0.089009978,0.824077606,0.516888976,-0.086792909,0.816521823,0.577066481,-0.078522615 +Right,0.761553884,0.76652348,5.58E-07,0.708085239,0.723917067,-0.029499898,0.680598855,0.633093119,-0.04711308,0.716571152,0.557097316,-0.065426111,0.758784294,0.513851285,-0.083207659,0.694846928,0.478037655,-0.027136045,0.669764519,0.375618309,-0.051064156,0.654443622,0.30969736,-0.068644799,0.644694984,0.246068448,-0.082812183,0.743255258,0.460856825,-0.032789107,0.750851691,0.326012373,-0.058689188,0.758682668,0.245028719,-0.077382423,0.767979205,0.169579476,-0.09014418,0.783554614,0.487589926,-0.041847747,0.79801321,0.390360355,-0.079935968,0.786887765,0.480631322,-0.082604818,0.779361427,0.551669955,-0.075887844,0.820127904,0.54228884,-0.053332713,0.826813221,0.477489442,-0.08641123,0.815503716,0.543830633,-0.085542388,0.806718826,0.604293823,-0.078619152 +Right,0.756951511,0.774588823,5.13E-07,0.705438018,0.730406582,-0.027348397,0.673817694,0.640278101,-0.044382982,0.701634526,0.561247289,-0.062517062,0.743820965,0.518424749,-0.080263928,0.693291783,0.48603183,-0.026535086,0.666323066,0.385292947,-0.049460053,0.650556922,0.321285576,-0.065976866,0.641116202,0.25944078,-0.07928393,0.739671767,0.469398379,-0.033266544,0.74717617,0.333672583,-0.057352614,0.755404472,0.253660679,-0.074694678,0.765205622,0.182028949,-0.08666601,0.778955221,0.496435106,-0.043214843,0.792010546,0.394130409,-0.08036609,0.77951318,0.478578359,-0.084881946,0.770990431,0.548680604,-0.079892568,0.814601898,0.552294433,-0.055183221,0.818678677,0.48643297,-0.087555073,0.804938376,0.549379826,-0.087659828,0.794217706,0.609857798,-0.081944436 +Right,0.741960168,0.751872122,5.48E-07,0.691575885,0.692598522,-0.023562044,0.664447606,0.598994851,-0.039315093,0.687718689,0.520478606,-0.057668686,0.727707148,0.482923746,-0.075670063,0.699759841,0.449471205,-0.021222653,0.683771014,0.345816374,-0.043928172,0.673297286,0.280582309,-0.060546041,0.667855918,0.21625632,-0.073758997,0.74401927,0.444129378,-0.030398801,0.763637483,0.310256124,-0.054426692,0.774206638,0.227218419,-0.072123669,0.78645736,0.153705269,-0.08394701,0.780575156,0.480617553,-0.042668171,0.796689153,0.380930871,-0.077955365,0.771087468,0.459369659,-0.081980132,0.754024982,0.526837587,-0.076480359,0.812703252,0.544153392,-0.056946222,0.81355834,0.478245169,-0.085911997,0.790546417,0.527998388,-0.084978059,0.773309648,0.579235315,-0.078647621 +Right,0.732640326,0.743301868,5.26E-07,0.682216346,0.683020413,-0.023119301,0.656654477,0.591566205,-0.039717615,0.677211463,0.512678087,-0.059280727,0.715924978,0.47494185,-0.078334697,0.694831371,0.433768749,-0.020876784,0.680793285,0.330205381,-0.045415841,0.671582699,0.264103621,-0.063363738,0.666807532,0.199345112,-0.077266835,0.738872647,0.432041377,-0.030696219,0.760638416,0.298441708,-0.056635458,0.772436142,0.217435598,-0.074915655,0.785629511,0.145871073,-0.086732656,0.774932742,0.47088033,-0.043622024,0.78763175,0.374666095,-0.080669776,0.758538127,0.459591001,-0.083220616,0.740048945,0.528408229,-0.076127931,0.806857526,0.53599602,-0.058510996,0.801235616,0.475034803,-0.087779805,0.775794804,0.532302976,-0.085227996,0.758748412,0.584730804,-0.077418923 +Right,0.722952068,0.732090592,4.79E-07,0.674893677,0.665717959,-0.020895693,0.650928497,0.569229364,-0.036532678,0.667888403,0.497740209,-0.055189703,0.704338551,0.464863956,-0.073419616,0.699245512,0.420917451,-0.020168329,0.687395513,0.311915398,-0.044575065,0.679998934,0.244042858,-0.061954509,0.676849663,0.178393364,-0.075194225,0.741815984,0.426040322,-0.030457817,0.766745687,0.289208591,-0.056105625,0.780150294,0.209658533,-0.073819093,0.79499799,0.140515417,-0.085046865,0.775801182,0.467987388,-0.043486483,0.784294844,0.372389555,-0.08120428,0.749270618,0.452040344,-0.084128805,0.727698326,0.517767072,-0.077011965,0.80443728,0.534372568,-0.058056284,0.791801572,0.476814061,-0.088654175,0.761653066,0.534266412,-0.086403914,0.743085682,0.585973978,-0.078545891 +Right,0.713717103,0.723404527,4.59E-07,0.669020176,0.650644541,-0.020100636,0.644693553,0.553522289,-0.03681916,0.651510358,0.486655474,-0.057459936,0.686020851,0.461257756,-0.077184685,0.705386817,0.40808624,-0.017910533,0.697241366,0.298047155,-0.043935511,0.691119671,0.230180219,-0.062608264,0.689034462,0.164735913,-0.076500289,0.74542886,0.421630055,-0.029351357,0.770638704,0.285553098,-0.057391886,0.783458412,0.205916449,-0.07589028,0.797947466,0.136419773,-0.087064646,0.776182175,0.468450814,-0.043856397,0.773919582,0.372731984,-0.083903521,0.732452154,0.45099318,-0.086083002,0.708479702,0.515699029,-0.07747148,0.799196124,0.536459267,-0.060014285,0.775676489,0.474186748,-0.092020817,0.73721379,0.526502132,-0.089751914,0.713953018,0.575698137,-0.081347883 +Right,0.720755756,0.72005105,4.61E-07,0.676750541,0.649474919,-0.018850764,0.650476396,0.554356515,-0.034968875,0.65542388,0.490549535,-0.054803558,0.688930213,0.4664675,-0.073912367,0.709677339,0.406989872,-0.019615397,0.700231612,0.294706792,-0.044646714,0.692710817,0.226069644,-0.061442498,0.689775527,0.160346508,-0.07380259,0.750862598,0.419771075,-0.03092649,0.774718165,0.283324748,-0.057868,0.786273003,0.203383744,-0.074934237,0.799779177,0.134131312,-0.084876716,0.782396376,0.465703934,-0.044862159,0.777749062,0.374527186,-0.084109083,0.735297441,0.453675956,-0.086607039,0.711013258,0.519117892,-0.078229047,0.805451512,0.531751931,-0.060182162,0.776080489,0.483412862,-0.091935143,0.737994134,0.538023591,-0.090603292,0.716949582,0.586591601,-0.082755044 +Right,0.747529626,0.70148766,4.69E-07,0.701713085,0.646575451,-0.020582395,0.666568458,0.559105575,-0.036289174,0.668771088,0.502762973,-0.054224115,0.702723265,0.478782058,-0.071292564,0.713466942,0.396532267,-0.026919356,0.697753787,0.287677735,-0.052197304,0.686098814,0.222931117,-0.067956343,0.678845406,0.158331573,-0.079088993,0.758755922,0.401100576,-0.036076106,0.77674377,0.268051594,-0.06128319,0.785647571,0.193517238,-0.076137692,0.796177268,0.123322815,-0.084214292,0.795470238,0.441540837,-0.047482431,0.78466022,0.374072224,-0.083903737,0.749986947,0.460557193,-0.086673401,0.73208797,0.525517583,-0.078814678,0.823859334,0.503701448,-0.060399085,0.792991519,0.486623317,-0.088027716,0.760593951,0.54751879,-0.086315803,0.745296955,0.593413293,-0.078795739 +Right,0.757567406,0.694997549,5.42E-07,0.710950315,0.644295573,-0.023721199,0.675542176,0.560093164,-0.041387081,0.681714535,0.507539511,-0.060822133,0.71778357,0.489129126,-0.079525448,0.722116709,0.398554116,-0.032268085,0.705873787,0.287558496,-0.057780996,0.694390655,0.223331094,-0.073499709,0.688151121,0.158710122,-0.084898748,0.769000292,0.4019036,-0.040681507,0.78543824,0.275549948,-0.066713959,0.797484219,0.200299144,-0.082152568,0.81069845,0.12974,-0.090897709,0.806233168,0.443506479,-0.0513294,0.798700392,0.38457343,-0.088173471,0.76388818,0.47375226,-0.090902559,0.743043303,0.540197074,-0.083408259,0.83393544,0.507071793,-0.063864261,0.809389412,0.497043282,-0.093715638,0.774983525,0.55802232,-0.093177252,0.753572524,0.603491783,-0.086371288 +Right,0.756976724,0.704483151,5.39E-07,0.710705578,0.651843071,-0.022897312,0.676652312,0.566178679,-0.039946638,0.68305701,0.512245238,-0.058922783,0.71899426,0.496294022,-0.077138692,0.726033986,0.408675104,-0.03088812,0.710915208,0.296423078,-0.056198481,0.700511694,0.230829164,-0.072069898,0.695642292,0.166098565,-0.083645575,0.77202177,0.413438886,-0.039313745,0.78966409,0.28890714,-0.065128438,0.803023696,0.213289738,-0.08069776,0.818060517,0.142992556,-0.089597844,0.808013499,0.45563972,-0.049928095,0.80230689,0.39685452,-0.085753329,0.767016649,0.483141392,-0.088139683,0.746084392,0.54878056,-0.080662072,0.834414721,0.519627392,-0.062498629,0.81038487,0.511109054,-0.091463841,0.775922656,0.568434298,-0.091034561,0.754853368,0.611356139,-0.084472783 +Right,0.751942456,0.717769504,5.30E-07,0.707154155,0.663589239,-0.023432072,0.674734235,0.575041831,-0.040219352,0.68284446,0.522708297,-0.058854613,0.719901264,0.505075991,-0.076558016,0.723824263,0.419201612,-0.029636186,0.70929873,0.306271076,-0.055103678,0.699814558,0.239656731,-0.070913389,0.695571303,0.173671186,-0.082477547,0.769569814,0.425325096,-0.038140573,0.789929628,0.299931824,-0.064524308,0.804409504,0.225431204,-0.080689892,0.820308745,0.155033022,-0.090059519,0.804758012,0.467892438,-0.049064603,0.805447221,0.403623372,-0.086838424,0.770818591,0.493477494,-0.089496925,0.750286639,0.560281575,-0.081643134,0.831209838,0.531335354,-0.061858468,0.812114298,0.51924473,-0.092854597,0.778968692,0.58011198,-0.092765182,0.758836269,0.624907136,-0.086010821 +Right,0.738279879,0.745063186,5.36E-07,0.690891981,0.695520639,-0.026432417,0.663676262,0.606818318,-0.044207688,0.685427129,0.545591056,-0.063181154,0.724056363,0.515241206,-0.081327885,0.699312091,0.449100405,-0.029727373,0.684512615,0.339332938,-0.05474484,0.676290452,0.27213949,-0.070668198,0.672161043,0.206816435,-0.082670547,0.746116698,0.44798255,-0.037136652,0.767322004,0.316441774,-0.06383159,0.781507611,0.239525989,-0.080039665,0.795073211,0.168603361,-0.089529529,0.782986104,0.487366885,-0.047362439,0.793679893,0.410863042,-0.087189756,0.766681612,0.500805259,-0.08934325,0.748679519,0.567383111,-0.080783822,0.813085914,0.551638365,-0.059436668,0.807970107,0.513556302,-0.093085758,0.782745123,0.577382863,-0.091760501,0.765604377,0.628267229,-0.083652265 +Right,0.739959002,0.747657299,5.76E-07,0.688915133,0.709019125,-0.02799977,0.65994662,0.621011496,-0.045155272,0.689770043,0.555488646,-0.062940367,0.730045676,0.521876872,-0.079867728,0.679679155,0.463563949,-0.028507261,0.657208502,0.360796005,-0.052877173,0.645431519,0.296197593,-0.068624243,0.638870955,0.23245278,-0.080518112,0.727352321,0.4505997,-0.034932639,0.740802169,0.317737281,-0.061751343,0.753744483,0.241780221,-0.07766182,0.766811728,0.171809137,-0.086525343,0.7675547,0.478533387,-0.044475868,0.781862557,0.397304982,-0.084078372,0.766894102,0.497431397,-0.083816782,0.756963551,0.568965435,-0.073246755,0.803488553,0.533180416,-0.056175128,0.805127621,0.492535681,-0.088962995,0.789130926,0.567469478,-0.085531898,0.778383374,0.624158025,-0.075705662 +Right,0.742319465,0.746064425,6.29E-07,0.692678094,0.713706017,-0.029902425,0.662768245,0.630514622,-0.048523966,0.695523739,0.565216541,-0.067369089,0.736030757,0.527323425,-0.085341774,0.676640511,0.472898841,-0.033586878,0.652070761,0.368124366,-0.058562476,0.639144003,0.30325225,-0.074083939,0.631248355,0.239618897,-0.085711122,0.724772453,0.455195785,-0.038806461,0.73539716,0.319064498,-0.066315413,0.748581231,0.239025146,-0.082436435,0.760870576,0.167875856,-0.091473401,0.766065001,0.4801552,-0.046992786,0.778780401,0.40106371,-0.086942278,0.769902766,0.499790996,-0.087354302,0.763220549,0.57300061,-0.07724297,0.803631306,0.531727791,-0.057436083,0.808033407,0.490600765,-0.090996519,0.79572618,0.564761758,-0.088594437,0.786462665,0.623870492,-0.079447515 +Right,0.746854007,0.743267238,6.82E-07,0.696682572,0.716952145,-0.036246117,0.668095171,0.644340873,-0.059584197,0.701946795,0.575809121,-0.081727207,0.741668522,0.529289901,-0.102317542,0.673411727,0.483792096,-0.043671742,0.646643281,0.376739681,-0.072109714,0.632286489,0.311826408,-0.090120874,0.623113751,0.245144561,-0.103923149,0.722540855,0.458055645,-0.046697471,0.730124354,0.322763979,-0.077346772,0.743106127,0.242201045,-0.095192999,0.755073011,0.166303098,-0.106040224,0.764927268,0.478373021,-0.052825309,0.777330399,0.400637776,-0.095181704,0.773255467,0.503358305,-0.095069967,0.769569457,0.578340948,-0.084817171,0.803764999,0.527628422,-0.061798483,0.810699582,0.48597011,-0.098537184,0.80079335,0.560814083,-0.097206265,0.792264819,0.62160635,-0.088561669 +Right,0.755041301,0.741682053,7.32E-07,0.707041323,0.715986609,-0.039007433,0.682941318,0.643145442,-0.062572159,0.722281039,0.575198352,-0.08407025,0.7629053,0.529397488,-0.104280904,0.67874074,0.490632594,-0.04632169,0.654601216,0.383630961,-0.075853296,0.641820848,0.318401098,-0.09492369,0.634573221,0.251315266,-0.109354019,0.72823751,0.458407015,-0.047836501,0.736425698,0.324114323,-0.080312483,0.751183987,0.241869077,-0.100060634,0.764205396,0.164497048,-0.111997217,0.771244705,0.473099351,-0.052545499,0.789896488,0.394345701,-0.098035857,0.790181279,0.496641308,-0.102152593,0.787553251,0.573901653,-0.094358496,0.810766876,0.517301083,-0.060026936,0.824781597,0.486323476,-0.101527758,0.818666875,0.564098179,-0.104415789,0.810849965,0.627767503,-0.09816315 +Right,0.760411978,0.746912241,7.30E-07,0.712657154,0.720404029,-0.041168217,0.689464092,0.650998116,-0.066545114,0.728667676,0.580656946,-0.0895909,0.770497918,0.533137023,-0.110661432,0.686304986,0.487051606,-0.047121279,0.666992724,0.377401352,-0.077577978,0.656207919,0.311339915,-0.098029718,0.651198804,0.242425308,-0.113794833,0.73611325,0.45598501,-0.048411138,0.744996786,0.320420623,-0.081491075,0.76144588,0.23847872,-0.102331899,0.776662111,0.160444766,-0.115686379,0.779761553,0.472591668,-0.053156298,0.801607251,0.39207378,-0.098868877,0.800726295,0.498720348,-0.102074251,0.796895325,0.578616798,-0.093862183,0.819769442,0.520380259,-0.061068937,0.835423708,0.484175116,-0.10252592,0.828353107,0.561736226,-0.10505563,0.819403052,0.6265257,-0.098659642 +Right,0.76200068,0.751083851,6.82E-07,0.711928308,0.715368032,-0.033786252,0.686524749,0.637119532,-0.055659622,0.724198341,0.572621703,-0.077104375,0.765430808,0.531973004,-0.097170256,0.696302533,0.478542328,-0.037921496,0.675878525,0.370528221,-0.065312959,0.664470911,0.305342197,-0.084102459,0.657597899,0.238873988,-0.098882608,0.746153235,0.458190262,-0.042244054,0.757537603,0.321992993,-0.07180959,0.772215903,0.240465716,-0.091041751,0.786057651,0.164142072,-0.103597902,0.788026035,0.483602405,-0.049769755,0.805853069,0.400348842,-0.090702467,0.798081577,0.499670625,-0.091931291,0.791142106,0.575486541,-0.08332146,0.82532084,0.537905097,-0.060061865,0.836285114,0.493157357,-0.095972404,0.823812008,0.563455582,-0.095564298,0.812492728,0.623041034,-0.088138469 +Right,0.756384194,0.754454613,6.51E-07,0.706048012,0.715672255,-0.029746914,0.676413357,0.631275535,-0.049199715,0.710170388,0.570917487,-0.069124028,0.752833426,0.537705004,-0.088368036,0.695983052,0.470153123,-0.033612169,0.674007773,0.368136525,-0.059721414,0.661726356,0.304680109,-0.076887667,0.65463239,0.242025524,-0.089982778,0.745127201,0.455924511,-0.040241353,0.759229004,0.319706559,-0.068903342,0.772387743,0.23946479,-0.08702869,0.785511911,0.167523026,-0.097805075,0.786602616,0.485274732,-0.049795661,0.80312705,0.407706171,-0.09012261,0.787253022,0.506035328,-0.091058441,0.775238276,0.578508198,-0.08174216,0.823201716,0.541179419,-0.061673399,0.828194141,0.503981352,-0.095509842,0.812428296,0.577715337,-0.092821278,0.800372839,0.635549009,-0.083672009 +Right,0.756437123,0.752494931,6.38E-07,0.70636934,0.709947824,-0.029294843,0.676313043,0.625745893,-0.04856009,0.707239211,0.568959355,-0.068549588,0.749369442,0.540397704,-0.0875642,0.700381875,0.464087248,-0.032553546,0.679986298,0.35885492,-0.059485167,0.667828321,0.294724226,-0.077672057,0.660410345,0.231742561,-0.091327257,0.749503374,0.454276919,-0.039564196,0.765851855,0.320829183,-0.068064123,0.779737353,0.239563406,-0.086026058,0.794007838,0.164710194,-0.096820936,0.790302098,0.486578792,-0.04964108,0.805256426,0.414696902,-0.088332057,0.783346236,0.512009144,-0.087777019,0.768371701,0.581555843,-0.077828728,0.825239956,0.544701636,-0.062363386,0.827926397,0.512650013,-0.094008803,0.80703181,0.583284795,-0.089913294,0.792357981,0.636088729,-0.080153137 +Right,0.753474832,0.738896668,5.67E-07,0.706260204,0.69205296,-0.025854118,0.674379289,0.607886314,-0.044687811,0.69211787,0.545686364,-0.065321326,0.732953608,0.517327726,-0.084903464,0.709306359,0.444664627,-0.02917755,0.690824866,0.339023054,-0.055599954,0.678800344,0.274852455,-0.072553538,0.671676278,0.212068856,-0.085091382,0.756338835,0.441520095,-0.038038515,0.77342689,0.310203552,-0.066151597,0.785838306,0.232135296,-0.083073631,0.79942739,0.159713984,-0.092731237,0.794736683,0.480049014,-0.049758576,0.804447711,0.407315433,-0.08930438,0.775292039,0.504667878,-0.08944229,0.757111847,0.575178802,-0.07925301,0.82663852,0.542504668,-0.063641407,0.819284022,0.513570011,-0.095783517,0.792780161,0.578917325,-0.09284813,0.775768697,0.628724873,-0.083538651 +Right,0.749316692,0.747066617,5.03E-07,0.702326894,0.696848154,-0.023273068,0.668909013,0.608864605,-0.040267713,0.680317342,0.545702398,-0.059383482,0.718500078,0.516115487,-0.077882953,0.71006614,0.447419465,-0.026096096,0.690352261,0.339838505,-0.050984614,0.677519381,0.275271565,-0.066796362,0.669879973,0.212929606,-0.078472853,0.756012201,0.446831197,-0.035438374,0.772753835,0.312060237,-0.06207123,0.781320691,0.234749526,-0.078826964,0.79152602,0.163859069,-0.088326611,0.793567836,0.485751748,-0.047392413,0.791569591,0.407024324,-0.087222904,0.759875178,0.500001609,-0.089733496,0.742941201,0.568516254,-0.081140347,0.824034929,0.548884749,-0.060902275,0.801642954,0.518010497,-0.093632713,0.772794902,0.586540341,-0.091993548,0.75836432,0.639398634,-0.083630383 +Right,0.751237273,0.772844911,4.62E-07,0.702812433,0.714711607,-0.022106683,0.669194221,0.630149186,-0.040163968,0.671381474,0.565538585,-0.061170101,0.705071807,0.529451251,-0.081105612,0.712362468,0.466857046,-0.022338277,0.691448152,0.361746639,-0.048302259,0.677183688,0.298868716,-0.065927327,0.667063177,0.236347735,-0.079110213,0.756155729,0.466356903,-0.032876331,0.768332303,0.33065629,-0.059998415,0.772216678,0.254198223,-0.077328891,0.777935803,0.182965726,-0.087666899,0.793218076,0.504946589,-0.046403907,0.781202912,0.417300075,-0.08594723,0.749473631,0.507885516,-0.088528931,0.734260082,0.575921714,-0.080435626,0.823937595,0.570165992,-0.061613373,0.792925477,0.53430146,-0.093534,0.762065768,0.597748756,-0.092387095,0.747792959,0.648150682,-0.084843196 +Right,0.751674056,0.783683062,4.01E-07,0.704627395,0.725018442,-0.018776884,0.669606149,0.637962699,-0.033913709,0.660100579,0.574628115,-0.052045226,0.687416553,0.539334655,-0.069303751,0.711535573,0.485250771,-0.019594984,0.690214992,0.38140741,-0.044048522,0.673324704,0.319735765,-0.05967759,0.661647499,0.258679032,-0.071059547,0.753318012,0.482376873,-0.029414129,0.758613944,0.346432149,-0.055333246,0.758073926,0.270095229,-0.070849232,0.760406792,0.20143798,-0.079274394,0.789570808,0.51465106,-0.041811109,0.764954269,0.432130665,-0.080029324,0.731320918,0.519178689,-0.083379932,0.715657234,0.588745713,-0.075568728,0.818008542,0.56960398,-0.055498324,0.772185266,0.547837019,-0.087010108,0.739930093,0.60901922,-0.087981723,0.727091372,0.658029556,-0.08167658 +Right,0.750526845,0.785271347,4.23E-07,0.703159511,0.725791514,-0.021712163,0.667818487,0.637504876,-0.03880357,0.659115076,0.570562959,-0.058790706,0.69012475,0.53767699,-0.077622615,0.711845756,0.482947469,-0.021350788,0.69259733,0.376468122,-0.046836209,0.677228332,0.314287901,-0.062993445,0.666734099,0.253824711,-0.074814625,0.754763782,0.482316673,-0.030657249,0.764317274,0.349410057,-0.058369122,0.764107704,0.272865474,-0.075196169,0.765791655,0.204033941,-0.08445318,0.790648878,0.51746577,-0.04286091,0.769698024,0.434182674,-0.082898252,0.734111726,0.520801604,-0.086552948,0.715936184,0.589686215,-0.078713462,0.817992091,0.575456858,-0.056654412,0.775122285,0.551875889,-0.089852057,0.741433382,0.612470865,-0.091454007,0.726109982,0.661985219,-0.085362151 +Right,0.742664933,0.780603051,4.72E-07,0.695825338,0.720498562,-0.022099238,0.666668534,0.627407372,-0.039467704,0.674185276,0.560869575,-0.05966457,0.708868384,0.529259086,-0.078896753,0.720477343,0.466252565,-0.022540823,0.704896986,0.356024563,-0.048247613,0.694370031,0.290584117,-0.065385826,0.68745625,0.226482242,-0.07783854,0.762911677,0.472843528,-0.033016663,0.780271053,0.333326578,-0.059722707,0.788231492,0.25668776,-0.075626217,0.796918929,0.18840909,-0.084352106,0.79744184,0.517782211,-0.046533544,0.788842201,0.425430149,-0.087093093,0.754417121,0.514441252,-0.089374945,0.73607713,0.584242642,-0.080335751,0.824387014,0.588197231,-0.061596934,0.796388626,0.542322874,-0.094825834,0.762045264,0.604729176,-0.09322197,0.74341619,0.656986833,-0.084807239 +Right,0.73293066,0.796436191,4.82E-07,0.689157784,0.729652405,-0.022717107,0.663376153,0.628800273,-0.038647827,0.680063605,0.564300299,-0.057006001,0.71936512,0.540802479,-0.074699543,0.7189762,0.473046005,-0.023953391,0.709240973,0.359869242,-0.049220186,0.703058064,0.291217446,-0.066310771,0.700398207,0.223396182,-0.079216503,0.764413774,0.486087769,-0.033813059,0.79204762,0.353063911,-0.059683137,0.807867289,0.280095965,-0.076006673,0.823609173,0.212088823,-0.085813917,0.798370004,0.536247313,-0.046590257,0.800675511,0.448315889,-0.086993843,0.762257934,0.535478592,-0.090141982,0.74017483,0.602147579,-0.082191788,0.823639572,0.61006391,-0.060938429,0.804011345,0.566931605,-0.094590575,0.768110871,0.627563477,-0.09368889,0.747350454,0.676921368,-0.086109065 +Right,0.733269453,0.79576695,5.71E-07,0.689336061,0.730100811,-0.028063253,0.665442348,0.637862861,-0.04844176,0.687697411,0.575693965,-0.070411786,0.728482783,0.550217867,-0.091441937,0.71704185,0.474757969,-0.031369861,0.710525811,0.362978101,-0.059422348,0.706198275,0.293449491,-0.07897494,0.705880463,0.223409444,-0.093643934,0.763973832,0.487207532,-0.039902668,0.795500636,0.356967032,-0.06817396,0.815360069,0.283640146,-0.085970022,0.835016191,0.21437785,-0.096921995,0.798209369,0.539281547,-0.051550075,0.813252866,0.456744134,-0.093365841,0.775618076,0.547003984,-0.095034353,0.75125128,0.614587009,-0.085841395,0.823812962,0.615586519,-0.065270416,0.82063961,0.567035735,-0.099999391,0.787180007,0.62699604,-0.097392105,0.76393652,0.6765306,-0.088140085 +Right,0.717256963,0.804549456,6.24E-07,0.673717022,0.740580916,-0.030462187,0.651512563,0.646135688,-0.051553365,0.680555582,0.58730495,-0.073635086,0.723806262,0.564762473,-0.094625935,0.698368251,0.487137407,-0.033363592,0.691491961,0.373236537,-0.061999578,0.687151194,0.301097989,-0.0815522,0.687879384,0.230359584,-0.095997222,0.746917307,0.496047586,-0.040712483,0.778818607,0.367329836,-0.069985524,0.800115466,0.290052712,-0.087951615,0.821598828,0.219024122,-0.098680146,0.782760143,0.54506129,-0.051386215,0.805993378,0.470397651,-0.092580959,0.772117734,0.560307384,-0.092680492,0.748771191,0.627941966,-0.082409732,0.810539722,0.618906796,-0.064635053,0.819005311,0.577589154,-0.098470755,0.790700197,0.638474405,-0.094783641,0.769843996,0.687638998,-0.084691301 +Right,0.715877593,0.800961852,6.66E-07,0.669786334,0.740541637,-0.032232203,0.650199413,0.642876089,-0.053118855,0.689745843,0.593815982,-0.074215718,0.736627698,0.579501629,-0.094564803,0.692138851,0.488228589,-0.036791679,0.684390306,0.372035176,-0.065289766,0.68116492,0.299084276,-0.08510419,0.683238208,0.228325993,-0.100333095,0.743137836,0.495495737,-0.043052688,0.774852455,0.363749564,-0.072338797,0.797597408,0.287180126,-0.091278687,0.820218563,0.2167162,-0.103359088,0.780387223,0.542272568,-0.052478511,0.807541907,0.463508993,-0.093272783,0.777471244,0.554376125,-0.093548216,0.756620646,0.622710109,-0.084071971,0.808913767,0.613443553,-0.064603716,0.819041014,0.569701135,-0.099339508,0.792778671,0.635173202,-0.09631113,0.773910522,0.687824488,-0.086988442 +Right,0.722504556,0.779146135,7.37E-07,0.674314618,0.733792186,-0.038555361,0.654050589,0.649101973,-0.06281253,0.694778204,0.595268548,-0.085700355,0.739094734,0.562302947,-0.106748998,0.680906415,0.485186517,-0.044107236,0.669132531,0.363041222,-0.07440915,0.664402544,0.287695497,-0.094006002,0.66564393,0.213420391,-0.108939275,0.733276963,0.481072575,-0.047095638,0.758365989,0.34707278,-0.080300048,0.781719029,0.268087238,-0.100505881,0.803718984,0.1931431,-0.112932228,0.772825301,0.518434942,-0.053524788,0.79995358,0.439724982,-0.099071667,0.779334307,0.542123199,-0.099227339,0.762398303,0.616968334,-0.08852075,0.80514437,0.582363844,-0.062980421,0.818898916,0.543013513,-0.102976389,0.797858357,0.616485476,-0.101972677,0.779683173,0.673835337,-0.09293054 +Right,0.728726983,0.746350348,7.70E-07,0.678190947,0.713570535,-0.042144477,0.654196858,0.638115227,-0.068774469,0.693102598,0.582846999,-0.093044803,0.735910535,0.544850647,-0.115248561,0.67273885,0.472994208,-0.051106919,0.657843113,0.355885804,-0.083530471,0.650982678,0.282727659,-0.103261627,0.650316954,0.209138423,-0.117971629,0.724539995,0.457199991,-0.052206594,0.744426072,0.32601881,-0.088339962,0.765654743,0.247526765,-0.108269446,0.785516381,0.171028763,-0.119706325,0.765144706,0.485394478,-0.056805637,0.788815081,0.420188397,-0.10440813,0.773098052,0.527728915,-0.104415402,0.759245932,0.602480888,-0.092977256,0.80006218,0.541634798,-0.064703494,0.812127233,0.518354297,-0.105614461,0.794801712,0.594492614,-0.105648398,0.778465509,0.649039686,-0.09708818 +Right,0.746294737,0.752999544,8.40E-07,0.69843632,0.728039503,-0.042089213,0.674841464,0.658555627,-0.067880377,0.714863837,0.595045507,-0.09083207,0.758167326,0.554625094,-0.111605316,0.676350474,0.49445796,-0.051715195,0.65649426,0.383743316,-0.085202619,0.648034155,0.312569588,-0.108123243,0.644846559,0.242092341,-0.125835896,0.727397799,0.467966139,-0.05344522,0.741520882,0.333528996,-0.090080246,0.762841344,0.25295639,-0.112623304,0.781063616,0.178796083,-0.126613215,0.769785225,0.490205228,-0.058486085,0.794388533,0.420034766,-0.103935331,0.789988577,0.528359592,-0.104191929,0.780841708,0.606614232,-0.094307557,0.806085646,0.541467786,-0.067161515,0.823829651,0.520467281,-0.1086132,0.812261701,0.5966627,-0.109605931,0.79622221,0.657224238,-0.102035023 +Right,0.75164932,0.761361063,8.58E-07,0.705441415,0.737163544,-0.043033957,0.683241189,0.671617508,-0.070207372,0.724780083,0.608730197,-0.094670221,0.767463326,0.565476894,-0.117083378,0.681237936,0.506997466,-0.052797697,0.662150085,0.395192981,-0.085096464,0.65296638,0.324717581,-0.106241338,0.649489522,0.253377795,-0.12229301,0.731413782,0.476634324,-0.053980052,0.747052073,0.339878708,-0.08869049,0.768428147,0.256156534,-0.109634742,0.786124229,0.177861392,-0.122761965,0.773714662,0.497093111,-0.058569379,0.801124096,0.424241185,-0.104122199,0.799355924,0.52959615,-0.10599681,0.792052925,0.608011484,-0.096921384,0.810276568,0.549433827,-0.066574581,0.83113277,0.518290997,-0.107237659,0.82279557,0.592480898,-0.108425744,0.809563398,0.655333161,-0.101145096 +Right,0.778091431,0.751373887,8.70E-07,0.73352623,0.735718608,-0.048991993,0.714970767,0.673990011,-0.079421513,0.758693635,0.609899402,-0.105427921,0.804573476,0.568099558,-0.129508123,0.705506146,0.519951344,-0.063075028,0.685822487,0.411595613,-0.096518598,0.675705194,0.34549585,-0.118422955,0.67145586,0.275008917,-0.134841412,0.753809094,0.483583152,-0.060709227,0.768000603,0.34932968,-0.095631316,0.788900793,0.26457876,-0.11685624,0.805912375,0.182867467,-0.130401671,0.795719981,0.495871365,-0.061576445,0.82731539,0.427130848,-0.107835978,0.832674742,0.532952428,-0.112136416,0.829766691,0.614493072,-0.104792081,0.83245039,0.540293813,-0.066173039,0.859482408,0.511652291,-0.109360881,0.857348323,0.591394246,-0.112792365,0.848740399,0.66257298,-0.10676042 +Right,0.790363073,0.735834777,9.19E-07,0.747492552,0.730634332,-0.05274881,0.728443086,0.67494899,-0.084355988,0.76907146,0.607016265,-0.110567771,0.811656058,0.555675387,-0.134527713,0.711425304,0.521470606,-0.067599125,0.692071021,0.414447099,-0.103844255,0.680841148,0.347976446,-0.125929475,0.674832821,0.277359664,-0.141697273,0.758614421,0.477822244,-0.064068273,0.769114971,0.344344854,-0.103183828,0.789089262,0.258500874,-0.124442071,0.804520071,0.179246873,-0.136398733,0.801044822,0.48259154,-0.064448662,0.829358459,0.417109072,-0.117766462,0.841561854,0.525897145,-0.124624133,0.843107939,0.609454989,-0.116557799,0.839642644,0.51851511,-0.068432406,0.866520226,0.498688906,-0.117888562,0.867592454,0.579909086,-0.124682538,0.859853745,0.654132009,-0.119374298 +Right,0.789684594,0.729151547,8.38E-07,0.744463921,0.714194834,-0.046280295,0.722648323,0.649209142,-0.074227758,0.761212409,0.581151962,-0.09817376,0.801933765,0.53259027,-0.120221086,0.712605298,0.498319507,-0.057773985,0.692563415,0.393044412,-0.09125042,0.680432618,0.328491867,-0.112645172,0.672969401,0.259323835,-0.128746614,0.760602474,0.46046719,-0.056678001,0.768612504,0.330082715,-0.093300201,0.784993708,0.24687992,-0.11446435,0.797674417,0.165548682,-0.127130657,0.80282104,0.468321532,-0.059149388,0.826872408,0.396824121,-0.109195702,0.833520889,0.505057693,-0.114204071,0.8328017,0.58694303,-0.106119514,0.841744483,0.505921304,-0.064980879,0.864884853,0.487271458,-0.112801999,0.86248368,0.570444345,-0.119188294,0.853586137,0.640111983,-0.114256963 +Right,0.790810227,0.744382143,7.44E-07,0.744211435,0.718375027,-0.040237691,0.718423009,0.651339889,-0.066349134,0.75233078,0.585309446,-0.090526596,0.790910482,0.534479797,-0.113012046,0.718807697,0.489656925,-0.046665609,0.694111109,0.385962248,-0.076766513,0.680081308,0.321751177,-0.095737003,0.671187043,0.255230457,-0.109940991,0.768592477,0.461558759,-0.048488762,0.776631057,0.331395626,-0.081787027,0.790283442,0.249545008,-0.101255186,0.801341534,0.172616929,-0.112721793,0.811928093,0.479492188,-0.05393143,0.827891111,0.409363806,-0.099496529,0.825108945,0.509575307,-0.102440163,0.820020974,0.583875775,-0.09368407,0.851517737,0.525318205,-0.062357165,0.863361359,0.494047135,-0.10253635,0.853845954,0.570739985,-0.104207739,0.84264946,0.632622004,-0.097197726 +Right,0.786345363,0.778131366,6.88E-07,0.739009082,0.738207579,-0.035786651,0.715724766,0.659408271,-0.05874674,0.754278362,0.59506762,-0.080693424,0.795241952,0.551532328,-0.101167358,0.726972818,0.501320958,-0.040668342,0.706322312,0.393037796,-0.069741189,0.694293797,0.326258957,-0.089717656,0.687610745,0.258039087,-0.105302408,0.777446508,0.483613372,-0.04437222,0.791562021,0.350573957,-0.0757844,0.808115542,0.270674467,-0.096242093,0.823239923,0.195026129,-0.109609142,0.819524586,0.510008693,-0.051390439,0.838662207,0.431165099,-0.094321318,0.826651514,0.530139923,-0.097024933,0.816290498,0.603906751,-0.089462504,0.85658288,0.563972294,-0.061234396,0.866893172,0.526869893,-0.099035926,0.851753712,0.600068152,-0.099818662,0.839029729,0.658240557,-0.093159944 +Right,0.766681075,0.795038581,5.89E-07,0.717858255,0.743530452,-0.026839336,0.691343307,0.652012587,-0.0452119,0.722779512,0.592564762,-0.065084435,0.768450618,0.571314335,-0.084808409,0.721378684,0.502710164,-0.030469932,0.700770855,0.397707999,-0.056813259,0.688515544,0.33287549,-0.074063189,0.680783033,0.270578593,-0.087240465,0.769209564,0.49953723,-0.038774244,0.788530469,0.366840422,-0.067408778,0.800752163,0.28812319,-0.085665613,0.811986268,0.214464843,-0.09676113,0.808858395,0.537990034,-0.050036613,0.824551523,0.453310579,-0.090039536,0.800384045,0.542479873,-0.092415243,0.783020854,0.606600583,-0.084448159,0.842337489,0.601240396,-0.063331679,0.841947913,0.559008658,-0.096329637,0.818024337,0.622001767,-0.09467034,0.801277578,0.670925021,-0.086824611 +Right,0.752535641,0.805915713,5.06E-07,0.706739545,0.756026149,-0.024322949,0.673750162,0.669217527,-0.042263571,0.688023388,0.607249439,-0.062232975,0.728745401,0.584657669,-0.081624411,0.71150279,0.51240766,-0.027757706,0.691489935,0.406967908,-0.053053647,0.67790544,0.345072269,-0.069217764,0.668911934,0.284814447,-0.081272483,0.757811844,0.511218488,-0.036814805,0.773626685,0.380256057,-0.063316762,0.782713056,0.304293245,-0.079584524,0.792862415,0.232827663,-0.088980973,0.796386719,0.550220966,-0.048640009,0.797133625,0.474497676,-0.087107033,0.767007291,0.565620482,-0.08920604,0.749654114,0.632141113,-0.080895431,0.82836467,0.613860846,-0.062302016,0.810571671,0.584787309,-0.093573235,0.782295763,0.648302138,-0.091922954,0.766708195,0.696815372,-0.084089868 +Right,0.728069425,0.826296329,5.23E-07,0.68283242,0.761580169,-0.023478843,0.655078709,0.672170281,-0.041411024,0.662116885,0.604333758,-0.061824128,0.698342562,0.581786633,-0.081361428,0.707540452,0.514002919,-0.023854818,0.694315434,0.405139357,-0.048628882,0.685187042,0.337777972,-0.065233663,0.6791538,0.27375713,-0.077487186,0.750312686,0.523578465,-0.033330031,0.77191323,0.394027144,-0.059562199,0.781166255,0.317406297,-0.075591512,0.789956629,0.249227315,-0.084448159,0.784410536,0.570435524,-0.045753937,0.777135789,0.487563789,-0.083567306,0.741488099,0.56786567,-0.085936643,0.721614301,0.631921768,-0.077689946,0.810594559,0.64125514,-0.060055897,0.78532654,0.601295531,-0.090049341,0.752103269,0.656004012,-0.088044733,0.734141409,0.702281713,-0.079951778 +Right,0.674789369,0.878672719,5.00E-07,0.640928507,0.799731433,-0.022974767,0.626799703,0.699599981,-0.039560426,0.64660269,0.6447137,-0.058572862,0.685586929,0.633607805,-0.076864652,0.697311878,0.563894451,-0.024013603,0.70576936,0.449260175,-0.049824424,0.712361932,0.37827909,-0.067783944,0.721662164,0.311857551,-0.080870986,0.738863587,0.593159854,-0.032963701,0.777481139,0.474178582,-0.059337631,0.799234033,0.404634923,-0.076096103,0.820920289,0.342028081,-0.085892692,0.766121149,0.653258264,-0.044793382,0.774149477,0.5760445,-0.083447784,0.726332486,0.646705806,-0.085584424,0.696612418,0.705195248,-0.076905124,0.782183886,0.731035292,-0.058414605,0.766172886,0.685521305,-0.089807682,0.724987388,0.730414093,-0.087931156,0.699188352,0.771181703,-0.079628848 +Right,0.671889305,0.893590987,5.05E-07,0.639418066,0.813095927,-0.022411982,0.623153985,0.712312698,-0.038704928,0.633808136,0.661796391,-0.056854445,0.667848468,0.661524773,-0.07406567,0.695663154,0.583705783,-0.027320623,0.703273237,0.468790472,-0.052415989,0.706608891,0.397814214,-0.068765357,0.714690864,0.331849337,-0.080533706,0.737128973,0.616408408,-0.035760719,0.774374306,0.501588762,-0.060906339,0.795066893,0.431294382,-0.076922826,0.816352248,0.368842304,-0.086236015,0.764072835,0.677486718,-0.046609558,0.765740752,0.606518388,-0.083223723,0.715302467,0.664320707,-0.087628275,0.682706356,0.714037418,-0.081371084,0.777820408,0.752659976,-0.059131611,0.74934715,0.721308827,-0.089255132,0.704655349,0.75771296,-0.089771099,0.677272737,0.790697873,-0.083637297 +Right,0.688722134,0.870036006,4.81E-07,0.652854145,0.780493319,-0.016816987,0.63180995,0.678823948,-0.032332018,0.627408385,0.615969658,-0.050514609,0.646093965,0.626681924,-0.067572072,0.697880685,0.564426363,-0.022730488,0.698600948,0.447062731,-0.045363665,0.695365608,0.373246372,-0.059661038,0.695464551,0.306844532,-0.070535086,0.736374199,0.592907488,-0.033044446,0.760965526,0.474709153,-0.057766307,0.771201551,0.39951694,-0.073694333,0.780070424,0.333905309,-0.082729109,0.761381805,0.645672679,-0.045025434,0.736604452,0.566581249,-0.079430111,0.689326048,0.620036125,-0.084011398,0.660589039,0.670333028,-0.078127205,0.770161688,0.708649278,-0.058253668,0.713969827,0.67446655,-0.085062079,0.670571029,0.70584774,-0.086620748,0.646439493,0.739227831,-0.081852421 +Right,0.705541253,0.818919599,4.74E-07,0.662347317,0.74461925,-0.019815376,0.637027264,0.653369606,-0.035838686,0.628460824,0.594832778,-0.053620521,0.648063302,0.58050257,-0.070229046,0.699876189,0.521658778,-0.025823539,0.696937919,0.40512538,-0.049096052,0.68985045,0.334350049,-0.063801788,0.686793506,0.269139379,-0.074642256,0.739362001,0.54330349,-0.034348842,0.757149458,0.424075902,-0.059476756,0.76391834,0.348533034,-0.075827971,0.770105779,0.279374719,-0.085284524,0.766399443,0.59015882,-0.044761382,0.736985207,0.516297698,-0.081152059,0.69148612,0.57558912,-0.087376989,0.664211154,0.627942681,-0.082844868,0.776736915,0.650629759,-0.056394458,0.722508192,0.631462038,-0.086187087,0.68115437,0.671335459,-0.089126907,0.659680128,0.706558228,-0.085178435 +Right,0.729285002,0.784629226,4.55E-07,0.686617374,0.728195488,-0.020046907,0.652159572,0.64810133,-0.035633218,0.646909416,0.593467116,-0.053217944,0.678234696,0.572746336,-0.069763146,0.697339833,0.487102717,-0.024773575,0.680610001,0.381446391,-0.048415225,0.667731881,0.317310154,-0.062463202,0.660278618,0.254788548,-0.072156996,0.74149102,0.488743603,-0.033194434,0.752705574,0.366378129,-0.055835541,0.757296741,0.295521915,-0.068486527,0.764147222,0.229545027,-0.074701637,0.777995646,0.527667224,-0.044053897,0.7579059,0.474801779,-0.076905064,0.724045336,0.554298937,-0.080477431,0.70759809,0.615153551,-0.073770739,0.804816544,0.589240968,-0.056530021,0.764695525,0.590137362,-0.081717886,0.733048022,0.64346993,-0.081933074,0.719964147,0.683736444,-0.076106861 +Right,0.75766468,0.713295043,5.81E-07,0.710450351,0.666097164,-0.023519009,0.675004661,0.584594667,-0.042047046,0.693383098,0.540650845,-0.061948955,0.735482275,0.527543068,-0.081269711,0.714045405,0.428764135,-0.035568263,0.695799887,0.324159741,-0.064296611,0.684361339,0.260724068,-0.082106456,0.676496744,0.19776091,-0.094450958,0.762426615,0.427051246,-0.044382788,0.779713154,0.301222533,-0.072402529,0.791921258,0.227403715,-0.088168561,0.804470778,0.156754196,-0.096511409,0.801677883,0.464513004,-0.055405684,0.806942165,0.418306649,-0.090956524,0.774760664,0.507006288,-0.091920048,0.753019035,0.567591548,-0.08327996,0.833540738,0.523552597,-0.068394333,0.820626378,0.522993505,-0.094821922,0.78925401,0.581420779,-0.09170448,0.767722011,0.618952513,-0.083459653 +Right,0.767729461,0.694915295,7.12E-07,0.718649328,0.655445337,-0.032065853,0.6866045,0.573354244,-0.055054393,0.71570313,0.531026185,-0.077574372,0.760300994,0.513569713,-0.098959468,0.717648566,0.418797851,-0.045371283,0.702658772,0.313898146,-0.077462085,0.692105174,0.247293845,-0.098313242,0.686113954,0.182205707,-0.113384657,0.767806828,0.413329303,-0.051505115,0.788999557,0.290760845,-0.084921293,0.80808419,0.215759486,-0.103866197,0.827108562,0.14240092,-0.114402778,0.808463693,0.448735207,-0.060136184,0.824632943,0.404057622,-0.100383371,0.798247814,0.501638293,-0.097602785,0.778786063,0.56816864,-0.085688084,0.841724873,0.507302821,-0.071630508,0.844809234,0.492076635,-0.103006169,0.819954872,0.559012175,-0.096974909,0.800688863,0.605654478,-0.085505433 +Right,0.77605778,0.71721065,8.37E-07,0.725644648,0.685022652,-0.038643055,0.698340714,0.609414816,-0.063586339,0.735760212,0.563801885,-0.086791888,0.778564811,0.534443617,-0.108618237,0.713299394,0.446706831,-0.050967138,0.696359813,0.33848533,-0.084872097,0.686414957,0.26860714,-0.107234962,0.681869566,0.200339407,-0.124016061,0.766381919,0.431599081,-0.055020504,0.784923851,0.3002626,-0.091959059,0.806940556,0.219854027,-0.114170954,0.826104939,0.146706998,-0.127383187,0.809130132,0.461598307,-0.062119093,0.83257091,0.401796341,-0.108832203,0.819502413,0.508734763,-0.109963015,0.805540979,0.585825205,-0.100119583,0.844529212,0.516965985,-0.072375178,0.859899819,0.506482482,-0.114624731,0.842299044,0.585699558,-0.115368739,0.822672546,0.645166516,-0.107340239 +Right,0.781453311,0.789453149,9.24E-07,0.732666314,0.760448456,-0.045543108,0.709490418,0.691823065,-0.073816851,0.749333739,0.630451024,-0.098933473,0.792236269,0.591234446,-0.121918611,0.71325326,0.525447071,-0.056973573,0.698349118,0.407022417,-0.091676407,0.69157666,0.336354613,-0.11397852,0.690488994,0.263262451,-0.130255178,0.767032921,0.500314534,-0.057489563,0.786759734,0.363572836,-0.095985785,0.812530637,0.283043414,-0.117549762,0.834153652,0.207469314,-0.129542604,0.811615407,0.523268461,-0.061367556,0.838009357,0.459641635,-0.111379959,0.831100643,0.5778929,-0.111678094,0.820440948,0.663993418,-0.099528916,0.848325074,0.577308178,-0.068824857,0.868934393,0.559000134,-0.113231212,0.856406868,0.643101692,-0.113190293,0.840108633,0.711797655,-0.103335261 +Right,0.767144263,0.801639199,9.53E-07,0.721078515,0.774626315,-0.052063521,0.702937782,0.708655834,-0.083853431,0.74864018,0.640997171,-0.110866576,0.79412657,0.595129609,-0.135296047,0.703238964,0.533192098,-0.063582905,0.692343771,0.407798827,-0.099951454,0.689102948,0.334468991,-0.123296097,0.69211483,0.25882408,-0.140381739,0.75670439,0.505863547,-0.061032478,0.778209269,0.366418302,-0.101116844,0.805717826,0.285587639,-0.124508336,0.829193473,0.2088902,-0.138249531,0.801368475,0.527124405,-0.062220804,0.834295571,0.458825201,-0.113877021,0.829936624,0.57435143,-0.116459943,0.820107937,0.659945369,-0.106240399,0.83884269,0.58033365,-0.067487769,0.864545226,0.558606744,-0.114886604,0.856235385,0.642769158,-0.118081078,0.842119575,0.712720633,-0.110485479 +Right,0.767909884,0.80341357,9.56E-07,0.725096524,0.77335006,-0.054018058,0.709816992,0.710298896,-0.085895777,0.756879807,0.635211349,-0.112391599,0.801000237,0.583022952,-0.135779679,0.702356756,0.530936182,-0.063258171,0.69189173,0.401546866,-0.099142052,0.689204276,0.328334212,-0.124064296,0.69237113,0.25094679,-0.142844066,0.756095648,0.501787841,-0.05923276,0.776694596,0.357934535,-0.097298801,0.804014981,0.273577452,-0.122014284,0.826884985,0.190632343,-0.138209984,0.800758302,0.522954762,-0.059151169,0.833644211,0.447053134,-0.108565524,0.834746838,0.563771129,-0.112169534,0.828564346,0.650826514,-0.103650883,0.837192118,0.577687263,-0.063360475,0.863589108,0.54486376,-0.109292671,0.859022141,0.626011312,-0.11283239,0.847762704,0.69707489,-0.106211826 +Right,0.757938147,0.769485474,9.31E-07,0.716730118,0.747803569,-0.050825339,0.699717104,0.685069561,-0.081115052,0.743849874,0.610768318,-0.106233299,0.789348125,0.562985301,-0.128513396,0.688443065,0.509136558,-0.062617585,0.676433265,0.385448992,-0.097860962,0.67331773,0.31332171,-0.122430049,0.675343394,0.238547415,-0.141030982,0.740234852,0.477497339,-0.060145281,0.757626951,0.335462213,-0.096850358,0.783088863,0.248806298,-0.120996557,0.804694533,0.164129376,-0.137121782,0.784025788,0.494927257,-0.061307825,0.817707956,0.416910172,-0.10972482,0.822595179,0.528383315,-0.114442885,0.819104254,0.613336682,-0.107164383,0.821742475,0.545312762,-0.066475056,0.84992671,0.514841497,-0.113229603,0.847819448,0.595953465,-0.118467011,0.837754369,0.668714106,-0.113117673 +Right,0.743363976,0.798554778,9.08E-07,0.704311132,0.770380497,-0.051340353,0.688746393,0.708048344,-0.08134234,0.737138927,0.634907842,-0.105680868,0.782859504,0.587198496,-0.126940563,0.683908165,0.534752011,-0.066054203,0.675230503,0.405795038,-0.103009596,0.673377633,0.332989722,-0.130321637,0.676900744,0.254641533,-0.15162091,0.736023188,0.50668782,-0.062847324,0.757170379,0.363309711,-0.100621074,0.784847081,0.279310524,-0.126737118,0.808520854,0.194360912,-0.145803407,0.778165221,0.526763558,-0.062968396,0.812903225,0.443443805,-0.110538043,0.815778255,0.56121552,-0.113871098,0.811353862,0.64988482,-0.106826767,0.811514795,0.581346989,-0.067254812,0.838404179,0.539976656,-0.113063477,0.835870743,0.619160056,-0.11720448,0.826360524,0.691771746,-0.112014815 +Right,0.730077684,0.792055428,9.45E-07,0.689629316,0.771468282,-0.054189693,0.676610172,0.707944393,-0.086705491,0.726332486,0.643995762,-0.113540649,0.773550391,0.600737691,-0.137907133,0.675306678,0.52650547,-0.065659478,0.670559585,0.404709071,-0.100522056,0.67108047,0.333316803,-0.123741239,0.676493526,0.25937447,-0.141178012,0.727665544,0.501333952,-0.061457053,0.75348109,0.366582155,-0.098668806,0.78329891,0.288221508,-0.121398874,0.808778465,0.21121043,-0.135938361,0.769257784,0.525647819,-0.061190441,0.80745399,0.458230436,-0.111356869,0.80836314,0.569607437,-0.116238728,0.802742958,0.652879834,-0.108378351,0.80308342,0.580670714,-0.064895444,0.830558002,0.556745529,-0.112317562,0.825913429,0.636980891,-0.117583297,0.815396786,0.705725193,-0.112058051 +Right,0.711616874,0.796196461,8.86E-07,0.66778779,0.754064202,-0.045861233,0.652534544,0.679812491,-0.074921943,0.701042235,0.618027091,-0.100671008,0.747840405,0.579527855,-0.123941772,0.665026903,0.507888556,-0.05706143,0.660613239,0.383034825,-0.092845574,0.659933567,0.308502138,-0.117976338,0.664888084,0.232198715,-0.137453258,0.718373001,0.491176575,-0.057547752,0.746108711,0.35411185,-0.096593045,0.77436018,0.275214225,-0.121125482,0.799625576,0.194604784,-0.137338296,0.759807289,0.522480249,-0.061386254,0.793485284,0.450126052,-0.109666839,0.77931869,0.563687801,-0.109609924,0.763934195,0.643888593,-0.099127233,0.792642832,0.584977031,-0.069114029,0.813672662,0.549214244,-0.111674823,0.797782302,0.624375105,-0.111803629,0.779158115,0.6843189,-0.103657074 +Right,0.716332495,0.821057796,7.97E-07,0.669787407,0.77134794,-0.041219242,0.649594784,0.689595103,-0.068338536,0.692466974,0.629124105,-0.093618937,0.739521325,0.594805002,-0.116885044,0.67310977,0.523873031,-0.050165758,0.663767993,0.40121147,-0.083910964,0.659259915,0.325615376,-0.107051864,0.660938323,0.249817342,-0.124759383,0.727366507,0.515222907,-0.052526493,0.753892243,0.378165483,-0.088834696,0.77946794,0.297471464,-0.110853776,0.803488076,0.220367968,-0.124710232,0.769400001,0.551277637,-0.058228351,0.795731306,0.473098218,-0.105236553,0.777638674,0.578869879,-0.104360476,0.762791514,0.658091843,-0.09284208,0.804146051,0.616320014,-0.06730669,0.81923759,0.570405424,-0.108072259,0.799691617,0.643704236,-0.106249057,0.782463372,0.704584837,-0.09643209 +Right,0.736754715,0.830024838,7.52E-07,0.688703477,0.783379495,-0.039105237,0.663384676,0.697794318,-0.065046869,0.704742014,0.639779985,-0.089821607,0.753448844,0.608618975,-0.113388158,0.689675927,0.529666662,-0.046492435,0.673125267,0.412056446,-0.078319855,0.664302588,0.338264525,-0.099719755,0.661961675,0.264582127,-0.115951702,0.743531704,0.521748304,-0.049924951,0.766149044,0.382522315,-0.08368665,0.787309289,0.300247431,-0.103920035,0.807472765,0.223344028,-0.116332568,0.786126971,0.558093905,-0.056856822,0.810363233,0.474141717,-0.102317855,0.791437685,0.576814473,-0.10201066,0.776791692,0.654687226,-0.090922028,0.822147071,0.622446835,-0.066867828,0.83462733,0.572811902,-0.105985045,0.81588012,0.647472799,-0.103584319,0.800926208,0.70972842,-0.093584947 +Right,0.775730312,0.847887278,6.99E-07,0.72477746,0.795405746,-0.034742408,0.696217358,0.704511523,-0.057364009,0.733754873,0.639961958,-0.079956777,0.781315565,0.605947018,-0.101562195,0.72143656,0.534160495,-0.038046788,0.701152205,0.413443208,-0.066570148,0.69084841,0.337687016,-0.085293576,0.687321544,0.264564574,-0.099414229,0.775849521,0.524806321,-0.043641288,0.794546902,0.380984485,-0.073876299,0.813389778,0.294719189,-0.092519388,0.83189714,0.21888271,-0.103740759,0.820281804,0.560844064,-0.052807085,0.840616643,0.474278629,-0.096593596,0.82272929,0.571484685,-0.099359609,0.809924722,0.649224818,-0.090674259,0.858281016,0.624907851,-0.064605877,0.866730809,0.579710364,-0.102807969,0.847719312,0.654158473,-0.102148183,0.834191859,0.717614412,-0.093740441 +Right,0.783309698,0.889040709,6.25E-07,0.730112553,0.824555516,-0.029942257,0.704651117,0.722954035,-0.048903219,0.74282676,0.655755579,-0.069141351,0.789618015,0.626117945,-0.088637948,0.733508468,0.558612466,-0.02953265,0.715360165,0.436603844,-0.056767803,0.705087543,0.362485856,-0.076413624,0.698889375,0.289984286,-0.091403857,0.787480593,0.551862061,-0.037098877,0.808464527,0.40308091,-0.064287499,0.826687753,0.316937506,-0.082762815,0.845390081,0.239067256,-0.0946614,0.831537068,0.591092706,-0.048151623,0.850420237,0.497779071,-0.088514961,0.830123365,0.598940611,-0.089493111,0.818479717,0.678524554,-0.080154307,0.869326234,0.659374535,-0.061817188,0.875668705,0.605916023,-0.096312068,0.854863465,0.678987086,-0.093057528,0.842608452,0.741663814,-0.083372369 +Right,0.784564018,0.904135883,6.67E-07,0.73203516,0.844505787,-0.032360531,0.702579081,0.754253149,-0.055013407,0.733531833,0.682634711,-0.078413919,0.782111287,0.653649747,-0.100932844,0.732626796,0.580576479,-0.034793012,0.712783515,0.460077643,-0.064102851,0.701702416,0.387266815,-0.085148878,0.696476519,0.315703124,-0.101288989,0.786042869,0.574841857,-0.042599753,0.805060208,0.426596791,-0.071209319,0.820767999,0.342740625,-0.090189919,0.837973356,0.263984382,-0.102717616,0.829647839,0.616094589,-0.053867053,0.848623276,0.522518277,-0.094750047,0.823981702,0.623434365,-0.094333112,0.808940411,0.701191664,-0.084469236,0.866259694,0.687204421,-0.068004578,0.870615959,0.633131742,-0.102885127,0.849109709,0.705688596,-0.098624885,0.836194158,0.766296268,-0.088351712 +Right,0.7609272,0.872800827,5.04E-07,0.714261532,0.810876012,-0.024220273,0.682443261,0.712496519,-0.040622916,0.695965707,0.647577286,-0.059062503,0.736850441,0.623746514,-0.076933436,0.725125074,0.549999416,-0.02437789,0.707488358,0.436053932,-0.048982888,0.696611464,0.368766934,-0.065055482,0.690591574,0.303544909,-0.0768371,0.773503482,0.552345216,-0.033363398,0.793017864,0.412399054,-0.059159707,0.801419616,0.331925452,-0.076417305,0.811220407,0.257291704,-0.086218379,0.814546287,0.59573245,-0.045134339,0.814171076,0.512339413,-0.084847763,0.780656815,0.606879711,-0.08813332,0.763136804,0.676677406,-0.079703197,0.848349571,0.663881421,-0.058490273,0.82677269,0.624642551,-0.091032282,0.796600819,0.696840346,-0.089005135,0.783602953,0.753750145,-0.08013311 +Right,0.751533031,0.867470503,5.21E-07,0.704625845,0.80486846,-0.024730679,0.673920751,0.70794493,-0.042116288,0.689260006,0.642992973,-0.06189514,0.73139143,0.616668224,-0.081056863,0.718378961,0.543162107,-0.024236204,0.700867236,0.429605782,-0.049457666,0.690510631,0.360219538,-0.066394404,0.685169339,0.293312401,-0.079300947,0.767028034,0.546105504,-0.034134351,0.786291659,0.409047067,-0.060999904,0.797770381,0.3288607,-0.078782983,0.810349464,0.254900187,-0.089444906,0.806647658,0.590515435,-0.047086466,0.809390068,0.502588749,-0.08794795,0.776747763,0.601676881,-0.089813687,0.757830083,0.675449193,-0.080663092,0.839565337,0.66126889,-0.061867535,0.822050035,0.617795229,-0.096089303,0.792859614,0.690249264,-0.093670614,0.776799738,0.747907281,-0.084552564 +Right,0.737036228,0.863396585,5.32E-07,0.694029927,0.798807085,-0.027407452,0.667242229,0.702017188,-0.045875516,0.683632016,0.642849982,-0.065954179,0.726120174,0.623438895,-0.085237533,0.717512131,0.543446124,-0.028017826,0.705250382,0.427855134,-0.053517669,0.698320866,0.358448833,-0.070177071,0.696589351,0.290474862,-0.082857408,0.765419841,0.551992714,-0.03590687,0.791339755,0.420987368,-0.062729023,0.806426942,0.345087826,-0.079895489,0.822536111,0.273985058,-0.090213329,0.802179098,0.599891186,-0.046950582,0.810704827,0.521214068,-0.087154001,0.773670197,0.613250196,-0.089648455,0.751520574,0.681795001,-0.08131744,0.83113271,0.671906471,-0.060112186,0.818118751,0.637073636,-0.094201416,0.785393655,0.704025805,-0.093272954,0.76627928,0.756479561,-0.085483342 +Right,0.713970304,0.866597176,5.88E-07,0.668769002,0.802030683,-0.029635651,0.642293155,0.712120891,-0.050789986,0.665063262,0.651022434,-0.073414154,0.709714711,0.630354226,-0.094938941,0.687251568,0.554351449,-0.029448058,0.674972773,0.44192034,-0.056526907,0.667685986,0.372471154,-0.074682131,0.666201115,0.305182695,-0.088086233,0.735817611,0.558672726,-0.037113748,0.760381758,0.429025054,-0.065117672,0.777996004,0.350901693,-0.082195409,0.796283722,0.280288428,-0.092082366,0.774128973,0.603593111,-0.04824907,0.791324914,0.526769221,-0.088296928,0.759804189,0.619577527,-0.087965757,0.738496184,0.691781938,-0.077288345,0.805959821,0.674439251,-0.061979644,0.806994975,0.635188699,-0.094700389,0.780229509,0.700077176,-0.090683118,0.761907518,0.754122972,-0.080323271 +Right,0.680350304,0.858457088,5.85E-07,0.637129188,0.788209438,-0.027478343,0.615401566,0.691051424,-0.046891265,0.643591642,0.634941876,-0.067890048,0.687866271,0.620375514,-0.08820574,0.666252077,0.539138496,-0.03011184,0.661668658,0.424898893,-0.05813938,0.658403873,0.353352606,-0.077470221,0.658348382,0.283894122,-0.091733523,0.714425802,0.550932884,-0.038502425,0.747151017,0.419596374,-0.066479526,0.767739177,0.344822645,-0.084262364,0.787389457,0.277030647,-0.094844013,0.750373542,0.601104438,-0.049936824,0.772198141,0.52498126,-0.089994512,0.736015379,0.613905907,-0.090404578,0.710625947,0.682911754,-0.080340922,0.778441846,0.674875677,-0.06363108,0.781347811,0.636017978,-0.09613432,0.751422882,0.69799608,-0.092037655,0.73034811,0.748753905,-0.08175429 +Right,0.65601927,0.877228498,6.09E-07,0.608183503,0.8137362,-0.030182082,0.586307824,0.70777142,-0.047783922,0.623777449,0.654224992,-0.066082068,0.671303213,0.636400342,-0.083882436,0.628365099,0.549713075,-0.028297773,0.617212713,0.431521088,-0.052582249,0.610750914,0.358038813,-0.068948947,0.610048473,0.288429886,-0.081756353,0.678936899,0.555698633,-0.034514561,0.707326651,0.423544526,-0.061167695,0.726620078,0.343314588,-0.079187855,0.746086538,0.270546168,-0.090217434,0.717096269,0.601447582,-0.044155996,0.740648866,0.520273328,-0.085832767,0.711527169,0.612324178,-0.089458145,0.691099823,0.683172047,-0.081449769,0.747414708,0.671656787,-0.055963971,0.751995087,0.630491138,-0.092939422,0.727766693,0.701514304,-0.092543177,0.711696386,0.759385705,-0.084361434 +Right,0.643891811,0.863551915,6.45E-07,0.59711802,0.800352454,-0.031371187,0.576452613,0.699787974,-0.050781406,0.614813924,0.645832121,-0.070708819,0.661971748,0.623663664,-0.089881867,0.617060125,0.53825134,-0.03003221,0.605179012,0.416179717,-0.055246968,0.598548532,0.339268208,-0.071713954,0.597937524,0.266942203,-0.084272616,0.667615294,0.542713046,-0.036124852,0.6967026,0.407059282,-0.063700937,0.71860218,0.327229232,-0.081095889,0.740054607,0.255903065,-0.091192521,0.70532316,0.588001847,-0.045776237,0.731903672,0.504961908,-0.08883623,0.704535425,0.59980315,-0.091559045,0.684687912,0.673018277,-0.08227922,0.734965682,0.658749998,-0.057650052,0.744146287,0.6131078,-0.09586022,0.720834196,0.685542464,-0.094808109,0.704127133,0.745100677,-0.085633941 +Right,0.648604691,0.853655934,6.64E-07,0.600876331,0.791959941,-0.033144314,0.58269906,0.691405654,-0.052531492,0.625885665,0.639941692,-0.071877353,0.673365653,0.617279172,-0.090439394,0.61926049,0.531329632,-0.032876253,0.608033299,0.408251464,-0.058248498,0.602226555,0.331559449,-0.074346311,0.601967096,0.258179337,-0.086622663,0.671424806,0.532244623,-0.037650261,0.700061023,0.393535554,-0.065666303,0.7243011,0.313830346,-0.083017521,0.747011185,0.243439138,-0.09303312,0.710269451,0.574806154,-0.045908723,0.73576957,0.490780711,-0.089695111,0.712670267,0.589150727,-0.093066148,0.695470273,0.66601932,-0.08409299,0.741805971,0.643306315,-0.056503706,0.751107454,0.603206694,-0.095636591,0.728828132,0.679521799,-0.09572465,0.712372661,0.742771506,-0.087306269 +Right,0.660502672,0.820251822,7.33E-07,0.611497402,0.766210437,-0.038235858,0.59157747,0.672537267,-0.061793763,0.634143353,0.61510098,-0.084629923,0.680289865,0.584272265,-0.105910331,0.620945513,0.506527066,-0.040986042,0.606676698,0.382907748,-0.071190737,0.600289106,0.304414123,-0.089754455,0.599848926,0.229236454,-0.103168607,0.674215376,0.503270745,-0.044763561,0.701235592,0.362259001,-0.078433245,0.725019038,0.281098932,-0.097325392,0.746941328,0.206305623,-0.107228734,0.715039492,0.543295324,-0.052344847,0.740464032,0.459143937,-0.101242624,0.719531178,0.567952454,-0.102121361,0.703739285,0.647473812,-0.089520507,0.749048531,0.611586511,-0.0626036,0.760781348,0.564586937,-0.10369581,0.740136564,0.641782522,-0.101471335,0.723430216,0.703548074,-0.090271264 +Right,0.680341542,0.770479679,7.24E-07,0.629086673,0.73095727,-0.040611178,0.604487836,0.644927621,-0.065355621,0.643188238,0.581507385,-0.088731408,0.687253475,0.539237261,-0.110126562,0.623058498,0.475117922,-0.043909717,0.602064729,0.353876948,-0.074546613,0.592419326,0.277375013,-0.093002655,0.58970058,0.20204559,-0.106559604,0.676761985,0.459920019,-0.046495579,0.694576442,0.321243882,-0.080541991,0.713955045,0.23763141,-0.099252909,0.73233372,0.158348709,-0.109456688,0.719251454,0.490300119,-0.053100202,0.740202367,0.408334315,-0.102033325,0.726239145,0.519517362,-0.102650441,0.715091228,0.599394083,-0.090498738,0.755713582,0.550753951,-0.062711194,0.766496778,0.510747969,-0.104787216,0.750350356,0.590269804,-0.104040101,0.736837864,0.652440786,-0.094225943 +Right,0.705207109,0.755523205,8.36E-07,0.654254436,0.726470113,-0.045371469,0.626380444,0.64876914,-0.074159026,0.664954782,0.589018166,-0.099737205,0.709904432,0.547908545,-0.123565115,0.633766174,0.480088025,-0.058368627,0.614081979,0.362935185,-0.094504543,0.602996349,0.288607299,-0.116451956,0.597885847,0.214419335,-0.132080317,0.687381685,0.455973089,-0.059380982,0.70271033,0.317062259,-0.099330828,0.722939849,0.234705061,-0.120538451,0.741597891,0.156152576,-0.131594673,0.732438803,0.477640361,-0.063890889,0.756976187,0.413685441,-0.114802442,0.747471452,0.525018394,-0.116298139,0.736741722,0.601956785,-0.105157375,0.772882342,0.527189195,-0.071819723,0.787840426,0.512455344,-0.115708113,0.773571134,0.596812785,-0.115849614,0.757932603,0.65719533,-0.106638528 +Right,0.728237748,0.764217734,8.79E-07,0.678201497,0.743062019,-0.045876555,0.652090073,0.661688447,-0.073017687,0.695113719,0.60059309,-0.096775055,0.742720544,0.561429679,-0.119039379,0.654412031,0.496273458,-0.058312386,0.636823535,0.378607333,-0.093668304,0.628021598,0.304698348,-0.116266124,0.624237776,0.229329467,-0.132938743,0.708082139,0.468052119,-0.05852142,0.724753797,0.326140553,-0.097020909,0.747479618,0.241125196,-0.118553884,0.767205596,0.161988765,-0.130710065,0.753054261,0.488178372,-0.062221322,0.780189514,0.410967469,-0.11463128,0.778260291,0.528045237,-0.118228376,0.772347569,0.615486205,-0.108328797,0.792700648,0.536978304,-0.069195218,0.812522233,0.521459341,-0.118482754,0.804190814,0.610860527,-0.122553311,0.792363942,0.681347966,-0.115314692 +Right,0.75287044,0.80978018,8.92E-07,0.705814958,0.78061825,-0.048988514,0.683015168,0.712022185,-0.078115202,0.727571309,0.644627333,-0.102427214,0.774747252,0.60523653,-0.124267839,0.686099648,0.539095104,-0.064222611,0.671950579,0.415931523,-0.100366063,0.666858733,0.343972832,-0.126359433,0.668052673,0.268110842,-0.146534592,0.74174881,0.511444151,-0.062921651,0.761625528,0.370605946,-0.100263454,0.788119853,0.287525475,-0.125250712,0.811563969,0.206379533,-0.142650604,0.786749363,0.533234775,-0.064736918,0.815416396,0.451494396,-0.112717271,0.813814044,0.565626383,-0.116360448,0.80728972,0.652779102,-0.109273359,0.823807359,0.589654207,-0.070483595,0.846336126,0.555114508,-0.116377622,0.840359211,0.636838138,-0.120142512,0.829237521,0.709019065,-0.114373706 +Left,0.200871468,0.811489582,6.95E-07,0.260350287,0.779911816,-0.030203409,0.301339656,0.694435596,-0.044658955,0.26483205,0.627272785,-0.059790067,0.220333308,0.57598722,-0.07337898,0.308190107,0.521472037,-0.018534837,0.343966365,0.411140293,-0.045132492,0.365003049,0.338796794,-0.061697233,0.379210889,0.272560239,-0.071101531,0.258038044,0.495636642,-0.023948247,0.263394624,0.355459183,-0.057272386,0.264372349,0.265800983,-0.078176275,0.261512548,0.184556305,-0.086060755,0.211133182,0.511048615,-0.033012938,0.211506814,0.477686465,-0.084575504,0.223332703,0.583585501,-0.095993318,0.227135554,0.652266204,-0.087003693,0.168987781,0.553166509,-0.043653578,0.180472851,0.56494993,-0.086281925,0.195221573,0.651801884,-0.089597017,0.203469187,0.708458543,-0.079976626 +Left,0.209961683,0.797504067,7.16E-07,0.2673949,0.769215822,-0.032931238,0.309318304,0.681631804,-0.04808462,0.273639977,0.613398254,-0.063175097,0.225706205,0.5641343,-0.075949736,0.312775612,0.505852461,-0.022201493,0.344621658,0.3920784,-0.049745493,0.363338441,0.322465241,-0.065277301,0.37531662,0.255189419,-0.073885001,0.261833251,0.473220825,-0.02644453,0.266129613,0.334335178,-0.061656691,0.269583374,0.246137947,-0.081860751,0.26890853,0.163310409,-0.088412568,0.215293825,0.484230191,-0.034582496,0.217200398,0.464163005,-0.086127639,0.229454741,0.573149085,-0.096656449,0.234016329,0.636930883,-0.086888053,0.174038231,0.522819757,-0.044900086,0.188716084,0.563582659,-0.086119972,0.204651952,0.648922086,-0.090863869,0.2141954,0.694545686,-0.082701482 +Left,0.231979892,0.813594341,6.81E-07,0.28715536,0.769950688,-0.02811927,0.3251926,0.676572978,-0.043155499,0.301710963,0.606500089,-0.058676969,0.253281862,0.567659736,-0.072241165,0.309373081,0.493579596,-0.024923993,0.333539188,0.374997139,-0.051043488,0.347017586,0.301432073,-0.066277914,0.356090188,0.231342554,-0.074955247,0.256383955,0.472820908,-0.030546395,0.254715264,0.340181053,-0.06369061,0.256582677,0.250849009,-0.082857877,0.255255044,0.17028144,-0.090127684,0.208877265,0.492633969,-0.03875149,0.224404708,0.468227506,-0.087098233,0.243378162,0.566440284,-0.096649326,0.249315888,0.634813905,-0.088044889,0.170203656,0.540088117,-0.048914388,0.202375114,0.578280091,-0.089852348,0.227171108,0.660844862,-0.095645413,0.239615053,0.716817141,-0.088555627 +Left,0.239031315,0.820058465,7.12E-07,0.296595126,0.771484613,-0.025351759,0.336394012,0.67613554,-0.039492372,0.317219079,0.603001833,-0.054413605,0.268864363,0.567474723,-0.067601852,0.311678171,0.49546355,-0.022823198,0.336846143,0.377877057,-0.048003901,0.349967778,0.304547608,-0.062588498,0.359077871,0.235998273,-0.070497185,0.259762168,0.476121783,-0.02927427,0.261480033,0.341205925,-0.06029534,0.264451444,0.24928084,-0.078754574,0.263673902,0.168120682,-0.085848771,0.213075563,0.498861909,-0.038010117,0.235449165,0.480555683,-0.083641693,0.253183573,0.571945131,-0.093524911,0.257134467,0.637710869,-0.086007982,0.175667703,0.549377799,-0.048393432,0.213749677,0.585879683,-0.085984908,0.239793837,0.66437161,-0.090565845,0.252062052,0.719830513,-0.083463013 +Left,0.264123678,0.809522748,6.54E-07,0.317398727,0.74337554,-0.021384519,0.356277198,0.639387667,-0.03553199,0.349078834,0.562268376,-0.051700689,0.309429079,0.537330091,-0.065116502,0.313605487,0.467795759,-0.01945168,0.332538217,0.35282439,-0.043902878,0.342388272,0.28235054,-0.058682501,0.349512726,0.213031948,-0.067496389,0.266820431,0.458641738,-0.028745601,0.270385027,0.32126379,-0.059399903,0.279930949,0.234633148,-0.075084597,0.283552945,0.159784019,-0.08065962,0.226417765,0.485437512,-0.040446468,0.26748234,0.451967627,-0.083235629,0.288842142,0.549493432,-0.086783417,0.290645599,0.615533233,-0.075516641,0.199424312,0.539400518,-0.054213095,0.255083412,0.555121183,-0.085397534,0.278355598,0.628456354,-0.085206933,0.282147944,0.677963614,-0.076166227 +Left,0.280868113,0.807642221,6.58E-07,0.333959401,0.734374523,-0.019159546,0.371917963,0.634427786,-0.033919282,0.36953938,0.556040883,-0.051403649,0.333329916,0.526005328,-0.066030599,0.320616364,0.467024803,-0.015370009,0.338825911,0.349845648,-0.041279498,0.351061255,0.278769106,-0.057072528,0.359376073,0.21085459,-0.065580137,0.276567221,0.458790928,-0.025848392,0.283329129,0.3149333,-0.055926144,0.295111656,0.228849202,-0.070885517,0.300660282,0.158953518,-0.075346246,0.239904135,0.484332919,-0.039096758,0.291561872,0.455189764,-0.079664521,0.313771039,0.546955168,-0.082037382,0.31580773,0.609529018,-0.07009238,0.217015818,0.535410583,-0.054443222,0.278589398,0.547837853,-0.081370376,0.298974633,0.617727697,-0.078584433,0.299682081,0.664882243,-0.068172678 +Left,0.301420063,0.801722407,6.47E-07,0.354459643,0.734422088,-0.019064754,0.394574434,0.636132061,-0.033556662,0.395309776,0.555017471,-0.050511308,0.359133899,0.526181698,-0.064743988,0.348941863,0.463229686,-0.015817175,0.369219542,0.350700885,-0.040848613,0.382024765,0.282992542,-0.056165319,0.390568554,0.216145128,-0.06505987,0.305244595,0.451778561,-0.026282798,0.315089166,0.310204566,-0.055822741,0.331017405,0.228553176,-0.070311874,0.33981657,0.158096403,-0.075061448,0.26771304,0.47656858,-0.039330132,0.319600046,0.449425846,-0.079773448,0.339533001,0.545883894,-0.081153765,0.339168161,0.609135687,-0.069099545,0.243540704,0.528220415,-0.054453861,0.305154651,0.543862224,-0.082406372,0.323645115,0.618970394,-0.079583548,0.322077334,0.667734146,-0.069434434 +Left,0.305909067,0.800172865,6.47E-07,0.36150822,0.743861616,-0.021955986,0.401880115,0.651134729,-0.035648059,0.397557497,0.571168005,-0.05144991,0.360067755,0.530163348,-0.065045103,0.376888126,0.482426375,-0.017601822,0.403915912,0.371572554,-0.04343139,0.420037001,0.301326931,-0.059312534,0.43278569,0.233617753,-0.068131045,0.33109799,0.459097773,-0.025345543,0.341817528,0.323810756,-0.056178432,0.354227155,0.239613086,-0.072214864,0.363625675,0.170420617,-0.077691115,0.289752901,0.47310859,-0.035825096,0.328262508,0.449078172,-0.078078978,0.342002213,0.548626721,-0.081540234,0.343081534,0.620179296,-0.070093721,0.258651823,0.514344215,-0.048535109,0.304986626,0.543292999,-0.080480404,0.323573351,0.620870471,-0.080936655,0.329589397,0.675368369,-0.071786813 +Left,0.291667134,0.802579343,6.33E-07,0.350325733,0.757637441,-0.02211792,0.388513207,0.668537736,-0.032961424,0.37203902,0.598614037,-0.044908974,0.332038611,0.558027864,-0.055234414,0.37756902,0.502577007,-0.017455596,0.406145453,0.39577499,-0.039669886,0.420995414,0.326358736,-0.052931592,0.432544351,0.260934204,-0.060273238,0.331096917,0.47587648,-0.023613207,0.33929193,0.351124704,-0.050995912,0.347517014,0.265283495,-0.067315862,0.353462726,0.1922701,-0.07345248,0.286935717,0.489317477,-0.032092586,0.307521254,0.478612334,-0.071550116,0.318435758,0.563634872,-0.079692818,0.318889618,0.624769628,-0.072402798,0.250259519,0.529889762,-0.042327255,0.280097395,0.570153296,-0.073775023,0.297613174,0.643326581,-0.076933309,0.304542392,0.693892062,-0.070124693 +Left,0.273568511,0.796247721,6.34E-07,0.328038931,0.755901039,-0.024769679,0.362990558,0.669245481,-0.037314031,0.330999523,0.599631846,-0.050554227,0.287982851,0.55423677,-0.06198201,0.363978177,0.515457869,-0.019188957,0.39316833,0.410404742,-0.044858158,0.407948613,0.342859447,-0.059789974,0.417826205,0.279820651,-0.068032816,0.315688342,0.486189902,-0.025086399,0.32089448,0.359834671,-0.056427754,0.32471621,0.278095275,-0.074571647,0.326136321,0.203867346,-0.080749139,0.27092135,0.49717319,-0.033727325,0.277950794,0.485271007,-0.076784253,0.290286154,0.574507952,-0.084830984,0.294429928,0.631265342,-0.076236583,0.232366234,0.534825385,-0.044202454,0.250174522,0.574031651,-0.077654049,0.266375124,0.644525409,-0.080049209,0.274822444,0.685170054,-0.071902789 +Left,0.269715607,0.777124107,6.00E-07,0.323300928,0.744079947,-0.031617418,0.348286778,0.652906597,-0.04628823,0.305686623,0.582030773,-0.06035652,0.263850212,0.53146559,-0.07302741,0.358586311,0.510127485,-0.023254851,0.383592725,0.401644826,-0.049099002,0.39521113,0.3306624,-0.065642565,0.40279156,0.264318943,-0.075948007,0.311341166,0.488835603,-0.026592104,0.311318785,0.354388416,-0.058584057,0.307566911,0.269059807,-0.078517891,0.302413791,0.193011194,-0.08678779,0.267989725,0.505654156,-0.033301678,0.260410488,0.447718322,-0.082221076,0.271828473,0.543074131,-0.09120059,0.278387487,0.608306944,-0.082306355,0.230443835,0.546556532,-0.041576918,0.23535046,0.528342903,-0.083596684,0.249578744,0.604758799,-0.085754313,0.258589476,0.657702923,-0.076128125 +Left,0.27105552,0.771748364,5.70E-07,0.319515467,0.732941031,-0.033770464,0.338526338,0.644512415,-0.050396629,0.295418978,0.577437341,-0.065882824,0.253498793,0.531635404,-0.079810441,0.352252871,0.501003206,-0.027576037,0.371640921,0.394239157,-0.055259768,0.38020283,0.323951066,-0.073312707,0.385544211,0.2580024,-0.084703147,0.306245595,0.480371177,-0.0300426,0.300160617,0.347070515,-0.062916219,0.29212445,0.265059501,-0.083064139,0.284415603,0.192055255,-0.091510512,0.264575034,0.499096721,-0.036065713,0.250167519,0.445059419,-0.083953619,0.260703325,0.533162653,-0.094079688,0.26890403,0.594743073,-0.086729899,0.22963056,0.541941226,-0.044045169,0.227753818,0.531241834,-0.085172288,0.242472202,0.601842582,-0.08905749,0.254694581,0.651217937,-0.081226781 +Left,0.281214982,0.776771665,5.12E-07,0.327413708,0.732276559,-0.035090633,0.341045648,0.643362701,-0.052123208,0.293065727,0.576853812,-0.067598484,0.250467539,0.532147586,-0.081365898,0.35613516,0.500149131,-0.027205585,0.369533598,0.391340315,-0.054551508,0.372860461,0.318630278,-0.072987273,0.373310119,0.25211513,-0.084883034,0.309208244,0.485006362,-0.02923736,0.296786159,0.35021621,-0.061535485,0.283364087,0.268068254,-0.082046509,0.271379709,0.195188671,-0.091097616,0.268573821,0.508850634,-0.035021026,0.248293325,0.4513399,-0.08295615,0.260460168,0.535125017,-0.093547866,0.271035969,0.594046474,-0.086644128,0.234681547,0.556106508,-0.042758089,0.225609466,0.528366029,-0.083757132,0.24047865,0.594037056,-0.086791687,0.254378051,0.643743575,-0.078483842 +Left,0.278741002,0.782499969,5.93E-07,0.325132102,0.74601388,-0.037143458,0.341458529,0.664741993,-0.056715641,0.298544556,0.596462488,-0.074473649,0.256929487,0.545388579,-0.090448484,0.359042943,0.509838343,-0.033135302,0.384532273,0.403155953,-0.062771961,0.397263467,0.333877921,-0.082134493,0.405764222,0.268909365,-0.09427204,0.31218937,0.48866877,-0.034454018,0.302332789,0.349357069,-0.068976849,0.288968712,0.266382337,-0.089917101,0.276058108,0.191598594,-0.098789066,0.270415753,0.510148883,-0.039133936,0.252282441,0.453433573,-0.089099772,0.263493359,0.547918022,-0.097776517,0.273055434,0.612472892,-0.088877656,0.235949934,0.557066262,-0.04588509,0.226674497,0.537432671,-0.088854052,0.240039513,0.610109746,-0.090958051,0.253108829,0.661733508,-0.081142753 +Left,0.273766905,0.789606273,6.39E-07,0.319997996,0.757645726,-0.042538561,0.339000821,0.678969026,-0.065993249,0.291927695,0.615778565,-0.087018602,0.245845079,0.56484127,-0.106213048,0.349598557,0.50995928,-0.039100744,0.376806825,0.408988893,-0.072961405,0.392640144,0.340250492,-0.094624326,0.403328478,0.274718285,-0.107970364,0.300220042,0.488993078,-0.039858717,0.286451638,0.346358776,-0.080376476,0.269133449,0.263738394,-0.10406179,0.252156377,0.189945489,-0.113340393,0.258159697,0.514128149,-0.04445193,0.238983631,0.468811989,-0.101832591,0.25254336,0.570968807,-0.112364911,0.264124483,0.636685371,-0.102364384,0.224472076,0.565894902,-0.051171847,0.215100408,0.552645206,-0.098422043,0.231407732,0.629738152,-0.100945719,0.247817844,0.6811409,-0.090308778 +Left,0.279681206,0.781793475,6.28E-07,0.326865613,0.739286244,-0.038929529,0.342494547,0.65249151,-0.060030017,0.293774456,0.592994988,-0.079323478,0.247603148,0.548941791,-0.096791431,0.346804768,0.494255185,-0.035356551,0.371716022,0.385970712,-0.067254379,0.386803865,0.31698662,-0.087581269,0.396735728,0.250527292,-0.100065358,0.296194106,0.482243419,-0.037004109,0.275537372,0.337953627,-0.075562268,0.254145563,0.256597102,-0.098366879,0.232757822,0.183691204,-0.107450992,0.254681945,0.514149308,-0.042116221,0.237725914,0.464521229,-0.097170301,0.256967574,0.56356442,-0.106131054,0.27026853,0.626582384,-0.095528185,0.222854987,0.569657385,-0.04908191,0.218370706,0.545773566,-0.093595594,0.237257808,0.618541658,-0.093859173,0.252417237,0.667525172,-0.082145855 +Left,0.27079007,0.797176719,6.13E-07,0.316603094,0.741089523,-0.038179833,0.326307029,0.644573212,-0.057475176,0.273556292,0.592611074,-0.075362206,0.223426014,0.557370007,-0.091773599,0.3212789,0.484743297,-0.03232735,0.339035451,0.363179445,-0.061767165,0.348610789,0.287285715,-0.08002796,0.354227006,0.218513757,-0.091208689,0.268238544,0.486812055,-0.033781487,0.235402957,0.348866642,-0.070937753,0.207391754,0.268996775,-0.093794793,0.182440296,0.198962867,-0.103060253,0.227744356,0.529051721,-0.038803145,0.204978317,0.483924478,-0.093265399,0.228336662,0.577517331,-0.104648679,0.245235518,0.639042377,-0.095808074,0.199103087,0.592825353,-0.04557433,0.193451852,0.572287917,-0.09094435,0.218142956,0.639531553,-0.093887903,0.238081262,0.686456919,-0.083894983 +Left,0.26613453,0.817907929,6.22E-07,0.30990383,0.746408999,-0.038426626,0.313538313,0.64302814,-0.057602283,0.254384786,0.595295548,-0.075260863,0.201021791,0.566813409,-0.091070779,0.296949357,0.48863402,-0.032551944,0.305546761,0.36505273,-0.063126355,0.311884314,0.290134341,-0.082751669,0.314754456,0.221221149,-0.094859682,0.243165851,0.499851704,-0.033535253,0.20172596,0.364966989,-0.070385955,0.170957237,0.287065089,-0.093406327,0.143068492,0.219713867,-0.103473082,0.205358088,0.550769985,-0.038145725,0.182195589,0.506575823,-0.091311365,0.21075739,0.58745712,-0.102968208,0.22988449,0.644181967,-0.094978176,0.180574164,0.620666146,-0.044695213,0.176018015,0.602346063,-0.088508755,0.203862816,0.658236742,-0.092236042,0.224911049,0.698369384,-0.083399177 +Left,0.255910397,0.857356548,6.41E-07,0.303150117,0.781448424,-0.039207745,0.303729445,0.671166122,-0.057772636,0.241441384,0.624067605,-0.074559204,0.186159313,0.597727537,-0.089165501,0.279716283,0.519161165,-0.029409507,0.283893585,0.393284947,-0.059510373,0.286175132,0.314805657,-0.079427384,0.284937859,0.242458701,-0.092250362,0.224220768,0.536044955,-0.030894788,0.178122029,0.40175578,-0.068879567,0.145784706,0.32319212,-0.092632689,0.114965424,0.253686994,-0.102840051,0.186332718,0.593343019,-0.036208369,0.162569761,0.537703753,-0.09366063,0.20021078,0.622664213,-0.103894874,0.223113388,0.681947649,-0.093616471,0.162450731,0.670140862,-0.043317769,0.161315888,0.64019227,-0.09232033,0.194986075,0.69878304,-0.095217787,0.216706365,0.740922868,-0.084704958 +Left,0.241863176,0.868907392,6.30E-07,0.290062129,0.792734504,-0.034079053,0.295751333,0.681511521,-0.050565962,0.233843759,0.632412016,-0.066140004,0.179959312,0.608629346,-0.079743832,0.276489854,0.542340517,-0.028164301,0.283277512,0.415612847,-0.056281488,0.28588897,0.337391227,-0.0746959,0.285061777,0.266238153,-0.086393498,0.220944375,0.553558111,-0.031288926,0.183471411,0.41425094,-0.06481982,0.155946612,0.328670144,-0.086150199,0.129505306,0.253721893,-0.096057519,0.180622727,0.605487466,-0.037573505,0.160754621,0.548846841,-0.087813482,0.195503414,0.625285625,-0.09619794,0.216869622,0.681822598,-0.086964794,0.153377399,0.676890314,-0.045567546,0.155011445,0.642860413,-0.086348444,0.186370045,0.695737481,-0.086235225,0.206519857,0.737303317,-0.075611904 +Left,0.212124392,0.897765279,6.67E-07,0.262359351,0.815653026,-0.033255614,0.267727405,0.698279679,-0.048255842,0.203325361,0.640867054,-0.062980041,0.148061186,0.611888111,-0.076042488,0.250849664,0.566354632,-0.020522069,0.257497966,0.438487709,-0.04681924,0.257173955,0.360726923,-0.064176634,0.254481077,0.287676364,-0.075565025,0.195175588,0.57838136,-0.025082426,0.165107593,0.433064222,-0.059161969,0.140636891,0.342362881,-0.080781028,0.117058471,0.262459368,-0.090137437,0.15279749,0.628918767,-0.033326432,0.131474987,0.566115916,-0.089528039,0.167227134,0.657604873,-0.099237151,0.190545738,0.721560657,-0.088696383,0.122214653,0.700594127,-0.042877205,0.12288785,0.664656579,-0.09212102,0.156658754,0.731871545,-0.094302811,0.179671764,0.782142937,-0.083359823 +Left,0.19761771,0.917175412,7.00E-07,0.254143298,0.841803312,-0.025183158,0.280985564,0.720182598,-0.036586035,0.23349911,0.644788504,-0.048668224,0.18075648,0.608969688,-0.059473202,0.268568397,0.589918137,-0.017905869,0.292145878,0.466030717,-0.042911701,0.304706991,0.391708195,-0.05833612,0.31338346,0.318851471,-0.067784086,0.212824553,0.57298404,-0.02484454,0.204930007,0.425985217,-0.056433097,0.196847975,0.332869142,-0.07503432,0.18651934,0.244070232,-0.082072482,0.163055822,0.595994294,-0.034390029,0.160535216,0.544864595,-0.085206613,0.185115755,0.654384077,-0.092679702,0.198032126,0.725937188,-0.081816651,0.121216953,0.646965802,-0.045116346,0.138793066,0.658270895,-0.090556428,0.167094111,0.74339807,-0.093968414,0.18372108,0.796114922,-0.084252112 +Left,0.177030072,0.885351717,6.83E-07,0.236314267,0.824827194,-0.025512708,0.276854217,0.714104533,-0.038102888,0.244491518,0.629165828,-0.051788021,0.192662865,0.581905842,-0.063933179,0.266063392,0.565726399,-0.018805072,0.300290972,0.448568493,-0.04599506,0.319806665,0.379473537,-0.062047865,0.334160566,0.311159313,-0.071333714,0.211839765,0.53863281,-0.025932273,0.213784292,0.394280255,-0.061028998,0.213096127,0.301790506,-0.081208758,0.208155423,0.211675376,-0.088485621,0.161309078,0.555188119,-0.035726927,0.168559954,0.520627618,-0.088339135,0.187822372,0.632170856,-0.097157709,0.195512176,0.700294375,-0.086579062,0.118237272,0.601441324,-0.046836857,0.14214319,0.633363187,-0.090633176,0.166365623,0.719514072,-0.094711326,0.17964004,0.768575788,-0.085789688 +Left,0.176960632,0.85150826,6.78E-07,0.239455745,0.806302309,-0.023517976,0.28807041,0.71238029,-0.036229543,0.265218526,0.623344958,-0.050102539,0.217571035,0.56894666,-0.062091298,0.283504248,0.54904741,-0.019288419,0.323382795,0.44357118,-0.047781561,0.348863274,0.382710189,-0.064470507,0.367278278,0.322059661,-0.073343307,0.232118428,0.509041429,-0.027005382,0.244044855,0.370270729,-0.060916606,0.251359105,0.285026163,-0.080274574,0.252484858,0.201913089,-0.086637408,0.182038069,0.516476691,-0.037213974,0.19494383,0.514519453,-0.083974987,0.208585903,0.616820991,-0.091598153,0.211650506,0.675088942,-0.081327222,0.137120843,0.555777967,-0.049006145,0.159772992,0.608720481,-0.084050506,0.180106699,0.689362526,-0.084898449,0.190254807,0.732032776,-0.074931242 +Left,0.193731606,0.834209323,6.78E-07,0.256217897,0.794648945,-0.019809291,0.306690633,0.709443152,-0.030622806,0.29336974,0.623606741,-0.043318983,0.250900298,0.565430582,-0.054164365,0.314055979,0.546321392,-0.014173289,0.359211326,0.45238322,-0.040971078,0.386435866,0.39407596,-0.056597516,0.406809628,0.334762096,-0.064836584,0.26585412,0.497977674,-0.023388095,0.285032034,0.370137572,-0.055700768,0.298605114,0.291691869,-0.07380902,0.306607634,0.213605613,-0.079073504,0.216800645,0.497498363,-0.035135295,0.230981246,0.52121067,-0.079676315,0.238628805,0.620261073,-0.087691851,0.238159493,0.671786249,-0.078042157,0.172194555,0.530502558,-0.048380159,0.193237126,0.601876974,-0.080583446,0.207995608,0.683845699,-0.081323139,0.214804769,0.723539233,-0.071847185 +Left,0.228246406,0.824910641,6.82E-07,0.291752726,0.788018942,-0.018100264,0.344407111,0.703471243,-0.028326346,0.336643666,0.614447773,-0.040741045,0.29945761,0.555491507,-0.051270723,0.35174787,0.550147831,-0.011567677,0.402080685,0.464379847,-0.039876267,0.436131239,0.415593117,-0.057024989,0.462850392,0.368501067,-0.065564647,0.307397455,0.497645617,-0.021468023,0.335579574,0.366968036,-0.052616268,0.35573861,0.289589465,-0.069867946,0.367957383,0.217701823,-0.074600495,0.259498149,0.492890418,-0.03419812,0.281950563,0.510945797,-0.077512152,0.285085231,0.606701791,-0.08539176,0.278709978,0.656811535,-0.076128475,0.214788765,0.523130715,-0.04822097,0.239696801,0.595187724,-0.078663692,0.249494106,0.673121452,-0.07875035,0.249154299,0.707612157,-0.069367722 +Left,0.267766207,0.857808471,6.81E-07,0.332496107,0.814443052,-0.015518297,0.381430209,0.721472025,-0.023760175,0.376276135,0.638461351,-0.035547089,0.341953903,0.578678787,-0.045194425,0.386216074,0.56549269,-0.004994445,0.435990989,0.476592183,-0.029333277,0.467491388,0.424540043,-0.043408412,0.494043708,0.372943461,-0.050905015,0.341130406,0.513962567,-0.015583531,0.364919335,0.384476483,-0.04695949,0.385373354,0.304245502,-0.063679799,0.401117504,0.229617298,-0.068366691,0.292519808,0.506819785,-0.028999465,0.321145058,0.501395524,-0.074222848,0.324070573,0.611659348,-0.081263818,0.319800168,0.676795483,-0.070955224,0.248096347,0.535342634,-0.043695994,0.27585125,0.60951364,-0.078390218,0.286731631,0.693981767,-0.082148008,0.290941864,0.734644294,-0.074728541 +Left,0.309675395,0.877842844,6.64E-07,0.371522784,0.822990179,-0.018247161,0.412845612,0.71961987,-0.02683983,0.39675343,0.638168275,-0.038256153,0.356015295,0.588488042,-0.048243135,0.408018887,0.565251172,-0.007824681,0.449699163,0.467899889,-0.031954601,0.477150798,0.407216072,-0.047145486,0.500475705,0.349873841,-0.05542719,0.359365553,0.528941989,-0.017086312,0.371644586,0.390832067,-0.047225792,0.383305192,0.301983774,-0.064564072,0.391658604,0.220620275,-0.070243046,0.310178041,0.53773278,-0.029104341,0.32877472,0.507105529,-0.076151103,0.342105478,0.618323505,-0.084603988,0.345816344,0.690648973,-0.074718915,0.265528947,0.579782546,-0.04211672,0.291606575,0.618616521,-0.080403574,0.312481821,0.705436826,-0.08357849,0.323890209,0.757973731,-0.074880123 +Left,0.340281904,0.893650532,6.64E-07,0.396483809,0.827665329,-0.020194974,0.426288486,0.710322678,-0.02837795,0.399873823,0.629033208,-0.038866449,0.354145199,0.581977189,-0.048254907,0.408268064,0.563431144,-0.008283981,0.441359967,0.452038288,-0.030153526,0.461490154,0.38239336,-0.044201549,0.476943433,0.316495895,-0.052456606,0.358623177,0.54658097,-0.016311884,0.357489794,0.400642514,-0.045649827,0.35894224,0.307848781,-0.063434064,0.357196599,0.222404182,-0.070155427,0.312076867,0.570020616,-0.026863012,0.319613963,0.509058535,-0.075752027,0.341193974,0.614683568,-0.084306017,0.350626081,0.689167261,-0.074558519,0.273555219,0.621411622,-0.038148593,0.297116697,0.631678164,-0.081684671,0.324372917,0.717731893,-0.085621431,0.339537114,0.778258324,-0.0766683 +Left,0.358376771,0.892912328,6.97E-07,0.408553541,0.819324732,-0.026679294,0.431496084,0.706713021,-0.040609103,0.393919259,0.644686222,-0.0557287,0.343588114,0.614023566,-0.069443859,0.402076244,0.550361812,-0.020868063,0.424889147,0.422452927,-0.047222804,0.43912968,0.345501482,-0.064387158,0.448210299,0.273668379,-0.074528113,0.350104779,0.55242002,-0.026729738,0.326429248,0.40636462,-0.060850631,0.307478547,0.310989887,-0.083553761,0.287538737,0.22368741,-0.093801796,0.306791216,0.595004976,-0.034676358,0.301888824,0.536546707,-0.084681295,0.333516508,0.628261685,-0.09288124,0.351726264,0.693421543,-0.082870901,0.27418679,0.660006404,-0.043809272,0.288152397,0.647386193,-0.085645318,0.321506232,0.715904772,-0.086283997,0.343545139,0.765523255,-0.07496725 +Left,0.342895985,0.854025602,7.03E-07,0.392322212,0.776876748,-0.031363256,0.405437738,0.663077474,-0.047314234,0.352835208,0.611302733,-0.063732728,0.298979372,0.584816039,-0.078344628,0.375964224,0.509768307,-0.024612591,0.39116922,0.378454417,-0.054677676,0.400072455,0.297875345,-0.073562123,0.402338684,0.222704411,-0.084810369,0.32053557,0.518361866,-0.030314043,0.284911722,0.370155215,-0.068079874,0.257215917,0.278676182,-0.091560982,0.228560209,0.196219951,-0.101603806,0.278143883,0.569304824,-0.038948547,0.262513518,0.513139307,-0.094486468,0.301191747,0.60447228,-0.103178725,0.325090379,0.667032301,-0.091992572,0.248054415,0.642511845,-0.048936967,0.254360199,0.623066366,-0.094675638,0.290313244,0.689363241,-0.09495049,0.313784093,0.735842943,-0.082726173 +Left,0.33056125,0.85619837,7.08E-07,0.377977908,0.77449739,-0.034656163,0.385614276,0.655564964,-0.052547935,0.326728046,0.60800451,-0.070217945,0.269024402,0.591937125,-0.085848525,0.349629939,0.502164185,-0.027847385,0.358954787,0.369254887,-0.058966525,0.364062369,0.286731005,-0.079299785,0.364591599,0.211958468,-0.09170831,0.293215662,0.517513752,-0.03251509,0.253569722,0.372208595,-0.070402108,0.225923598,0.278402418,-0.094090924,0.198087916,0.195290595,-0.104857057,0.253251731,0.575391173,-0.040471371,0.235330686,0.513974667,-0.095397726,0.277740628,0.60059613,-0.102811418,0.30319798,0.663403392,-0.091136947,0.226999849,0.655078411,-0.05011598,0.228146076,0.616674483,-0.092871711,0.262743384,0.67585218,-0.090456627,0.284231573,0.722897112,-0.077240117 +Left,0.319661498,0.859994948,7.20E-07,0.36519146,0.770644724,-0.035554308,0.367316693,0.64809525,-0.052451212,0.302891761,0.605991006,-0.068451732,0.245976031,0.590133667,-0.082386084,0.329680055,0.502162337,-0.026494753,0.334864736,0.368743539,-0.05609994,0.337747127,0.284016252,-0.07579086,0.337485194,0.207595706,-0.087935075,0.27334711,0.523156166,-0.03025768,0.229133174,0.378825665,-0.066232264,0.197892383,0.289696872,-0.089280508,0.167172879,0.211527765,-0.099574871,0.234099254,0.584982216,-0.037287746,0.211031094,0.521304548,-0.09238413,0.25381723,0.605698466,-0.099789292,0.279747963,0.666608095,-0.087936893,0.209501058,0.667669535,-0.045911182,0.207155883,0.626877666,-0.091621377,0.244221583,0.687590599,-0.089742236,0.267849475,0.735328555,-0.076052845 +Left,0.305002779,0.861969888,7.30E-07,0.351599962,0.772668004,-0.03720976,0.352339506,0.649441421,-0.054500554,0.284532905,0.610624433,-0.070667431,0.226187378,0.596743464,-0.084474705,0.313337684,0.505681872,-0.027710492,0.315406621,0.368244588,-0.057561729,0.315666437,0.282356411,-0.076327913,0.312312067,0.205818325,-0.087817289,0.256533533,0.527706325,-0.030468112,0.21050477,0.385012835,-0.067422546,0.177889973,0.295335591,-0.090312034,0.14615874,0.218785137,-0.099982992,0.218029007,0.588797033,-0.036808785,0.194384381,0.530738413,-0.092979267,0.238555014,0.613765717,-0.102207676,0.266067207,0.673709989,-0.091143608,0.194740325,0.668722868,-0.044915386,0.195866019,0.642864883,-0.092168212,0.234029979,0.700974107,-0.093707353,0.258569568,0.743966043,-0.082243226 +Left,0.310922295,0.882390141,7.12E-07,0.358016282,0.794715583,-0.037726026,0.360011756,0.672276855,-0.055239271,0.292503953,0.634202003,-0.071544304,0.233371764,0.621172905,-0.085589558,0.318915397,0.525394082,-0.027759245,0.320971549,0.389780343,-0.057395224,0.321400285,0.304769784,-0.076274239,0.318107128,0.227987289,-0.088063546,0.261648059,0.547017932,-0.030147437,0.213912815,0.406834245,-0.067618363,0.180104539,0.320732564,-0.090779044,0.147531807,0.246029377,-0.10066577,0.223184764,0.608786702,-0.036038645,0.199508324,0.54927367,-0.092886917,0.245040074,0.634993672,-0.101293832,0.273347586,0.696255326,-0.089564681,0.200204954,0.689836323,-0.043688297,0.19923234,0.659317911,-0.091586158,0.237875283,0.720015883,-0.092324868,0.26305452,0.764467537,-0.080118977 +Left,0.312257856,0.886333346,7.02E-07,0.360843867,0.802291989,-0.039607745,0.364176124,0.683516622,-0.05887251,0.297640115,0.645583808,-0.076306753,0.238907114,0.629644752,-0.091475628,0.3238886,0.532978058,-0.031166287,0.32712692,0.398730934,-0.061492298,0.328235269,0.314628482,-0.081087761,0.325699925,0.237451404,-0.093554154,0.265443861,0.55563581,-0.032953292,0.215202123,0.418310046,-0.071330376,0.177565604,0.33743003,-0.095451206,0.141529858,0.266999513,-0.105964519,0.225902766,0.618331909,-0.038113181,0.204629868,0.556114793,-0.096937366,0.250512272,0.64258939,-0.105694644,0.278252572,0.704565883,-0.093867317,0.201942921,0.699764192,-0.044954475,0.203064471,0.664531946,-0.095368423,0.242821336,0.728221953,-0.096184887,0.26788789,0.775850415,-0.083495855 +Left,0.320656538,0.882005453,7.01E-07,0.366107345,0.801665008,-0.037530642,0.375393957,0.687434554,-0.056108057,0.314511687,0.642882705,-0.073152632,0.259304404,0.626745343,-0.088455483,0.338565916,0.537695944,-0.030225342,0.348469853,0.405886948,-0.060413517,0.352734774,0.319086283,-0.081298098,0.354344547,0.24203077,-0.094111815,0.281894684,0.552372277,-0.03212788,0.241400376,0.411271214,-0.067245707,0.210925341,0.321364969,-0.090393297,0.181656167,0.241508037,-0.101313211,0.2413394,0.608966827,-0.03709485,0.22454533,0.542084932,-0.089434847,0.260438502,0.625782251,-0.096200608,0.281011581,0.689156473,-0.084945403,0.21412307,0.686733127,-0.043939602,0.213197842,0.644821584,-0.087003849,0.245954767,0.705344915,-0.084084913,0.266806901,0.755558729,-0.070092902 +Left,0.321370363,0.891689718,6.84E-07,0.37248534,0.819075763,-0.034566797,0.387857795,0.704069734,-0.05157084,0.331291765,0.653260946,-0.067692451,0.275046945,0.63263607,-0.082401425,0.355763942,0.551041305,-0.026216816,0.367354989,0.425553292,-0.055046257,0.374994695,0.347384185,-0.074817836,0.379592687,0.273364395,-0.087255254,0.30011487,0.557481766,-0.02961592,0.268568873,0.41561228,-0.064553544,0.245074153,0.324315935,-0.088115953,0.221579134,0.240152299,-0.099362843,0.257768124,0.607319117,-0.035917979,0.241257623,0.541887581,-0.08961527,0.276446313,0.635227561,-0.097890764,0.297599435,0.701643348,-0.087462135,0.227501959,0.68169874,-0.043719545,0.229282171,0.653178751,-0.090553455,0.261527508,0.72507447,-0.09065225,0.281592071,0.779401004,-0.078341067 +Left,0.318480909,0.890168071,6.75E-07,0.369481921,0.825499177,-0.033283774,0.389478862,0.717466056,-0.050333705,0.339505255,0.664126813,-0.066921189,0.286202878,0.638554037,-0.082164928,0.361818552,0.560170352,-0.026264478,0.378427505,0.44013375,-0.054999623,0.389765799,0.364054501,-0.074603073,0.397179544,0.291989118,-0.086760834,0.307614326,0.561055362,-0.030325515,0.281756729,0.419137448,-0.065038323,0.261300206,0.32744655,-0.088246755,0.240197048,0.241356283,-0.099312767,0.264967889,0.606541932,-0.0371405,0.253072917,0.542833149,-0.089164019,0.284612954,0.638730049,-0.096286856,0.302390099,0.704444289,-0.085358083,0.232606351,0.677401304,-0.045438576,0.235420465,0.643988132,-0.088262998,0.264573723,0.713711202,-0.086053558,0.282377005,0.765462041,-0.072871566 +Left,0.318882674,0.891152143,6.64E-07,0.370722979,0.833705664,-0.030056989,0.397616953,0.733315527,-0.046253148,0.358639896,0.676621616,-0.062551051,0.309250534,0.645622909,-0.07750614,0.377417594,0.57074374,-0.025013715,0.401514888,0.454498708,-0.052904882,0.417685479,0.382224917,-0.07132756,0.429561913,0.314593196,-0.082324542,0.324596792,0.562456548,-0.029956261,0.305848241,0.421452343,-0.063835949,0.291890621,0.330126822,-0.085963167,0.276784033,0.244327426,-0.095920183,0.280526131,0.598303258,-0.037283029,0.275103778,0.545612156,-0.087016031,0.30183512,0.641555011,-0.094906464,0.315995336,0.707917988,-0.08513844,0.245172888,0.660101593,-0.046083942,0.254997343,0.655011892,-0.087660894,0.28184998,0.728182852,-0.087826081,0.298667252,0.779487073,-0.076508328 +Left,0.314765245,0.876794398,6.68E-07,0.368578345,0.825063229,-0.027287291,0.400413573,0.727896631,-0.042221598,0.36748156,0.66587168,-0.058176655,0.320497215,0.625746489,-0.072876319,0.384508312,0.559052944,-0.019371184,0.415353507,0.451346636,-0.045556311,0.43601495,0.384307832,-0.063756607,0.451489419,0.320832878,-0.074966647,0.334301651,0.54663378,-0.025483137,0.324501276,0.40899092,-0.058200285,0.315952957,0.319707066,-0.080347851,0.305177808,0.233647287,-0.090842769,0.289983809,0.577736437,-0.034082934,0.288131088,0.523373127,-0.082582764,0.311194241,0.623332918,-0.089834772,0.322482079,0.690046072,-0.080201812,0.252301723,0.635658443,-0.044007216,0.263973892,0.621984482,-0.084268048,0.289549738,0.698180139,-0.0835445,0.305474043,0.751987219,-0.07209076 +Left,0.30572325,0.878720164,6.68E-07,0.362543941,0.834703207,-0.025213657,0.402710676,0.743703425,-0.038403913,0.379672468,0.672945559,-0.053017769,0.333751678,0.630229235,-0.066504143,0.395852029,0.570763826,-0.014748872,0.432539582,0.469585359,-0.040191643,0.45907855,0.406137288,-0.057664257,0.481157243,0.346672505,-0.067584932,0.347540557,0.543535113,-0.021020325,0.349557012,0.406107843,-0.051535666,0.350904167,0.314397514,-0.071284115,0.348899633,0.232417107,-0.079279669,0.301296771,0.561753511,-0.030021694,0.305214822,0.520843506,-0.076868206,0.321486413,0.625281334,-0.084866993,0.327499628,0.698226392,-0.075075775,0.259345353,0.611248493,-0.040351722,0.274860203,0.620988846,-0.079006709,0.296166271,0.706311762,-0.079014294,0.308090389,0.768461227,-0.067691483 +Left,0.293828905,0.889682174,6.61E-07,0.351552367,0.849008739,-0.023515714,0.39141795,0.760675251,-0.036146712,0.371438146,0.693220377,-0.050604906,0.328552991,0.647084236,-0.06366998,0.389491409,0.588408351,-0.014606334,0.428492397,0.490921855,-0.040272776,0.456294298,0.431869596,-0.057651497,0.478904009,0.376447856,-0.06756068,0.341741204,0.559091806,-0.02138301,0.346092582,0.426046789,-0.052268568,0.3507379,0.338254064,-0.072352223,0.35195291,0.25564453,-0.080992624,0.294486225,0.573663056,-0.030792117,0.300622106,0.540220082,-0.075377174,0.315651745,0.641929746,-0.082853198,0.320225835,0.708993673,-0.073742792,0.251630545,0.61798948,-0.041690316,0.269332111,0.633215845,-0.076624423,0.288915932,0.712825418,-0.076446943,0.299410313,0.76653111,-0.066234767 +Left,0.289969474,0.889130771,6.64E-07,0.345841229,0.847145617,-0.023547519,0.38401252,0.757794857,-0.036222752,0.36054045,0.692395747,-0.050513845,0.315829217,0.645775318,-0.063885532,0.380405158,0.587155461,-0.013836714,0.416981459,0.490776598,-0.037863255,0.443302989,0.433408737,-0.054411225,0.464790821,0.377689779,-0.063923493,0.332980961,0.560880363,-0.020246537,0.334634274,0.429766655,-0.050530326,0.33562535,0.341074526,-0.071255945,0.33352676,0.256706268,-0.080060966,0.286766887,0.576917887,-0.02897132,0.28818956,0.543094218,-0.075774021,0.303670943,0.649013638,-0.085110366,0.309810698,0.718629479,-0.076461121,0.244540572,0.621127844,-0.038736902,0.257320166,0.636902869,-0.0787668,0.277179122,0.727066994,-0.080310337,0.289567947,0.789573729,-0.069958769 +Left,0.294350296,0.890841901,6.52E-07,0.347107917,0.842695355,-0.024985049,0.379926503,0.751672149,-0.038952548,0.352611303,0.689178646,-0.054197196,0.306837797,0.649942458,-0.068120636,0.370546103,0.583126724,-0.017135946,0.402048081,0.484346092,-0.044336043,0.426119566,0.425567269,-0.062800832,0.445679098,0.370972276,-0.073222734,0.321206957,0.55994314,-0.02344501,0.314608097,0.426961869,-0.055684552,0.311676592,0.338256598,-0.076922409,0.306727141,0.256499112,-0.085907921,0.275412202,0.582217753,-0.032322049,0.274418086,0.55172199,-0.078591458,0.29632777,0.64900589,-0.087226443,0.307390302,0.715325296,-0.078424692,0.235709876,0.633279681,-0.042621922,0.248483732,0.65194881,-0.079751439,0.27181682,0.728686631,-0.080408938,0.286699027,0.780327439,-0.070135728 +Left,0.295633018,0.891746402,6.65E-07,0.347273082,0.837998748,-0.027867373,0.375213295,0.739151776,-0.042683624,0.336958855,0.679206014,-0.057975281,0.288589895,0.644184947,-0.071810573,0.355558306,0.581823885,-0.021854479,0.382075846,0.476171702,-0.049781334,0.402771503,0.416027784,-0.068361938,0.417262167,0.357247263,-0.079415604,0.304307342,0.569458425,-0.027977653,0.289564252,0.428202927,-0.061464652,0.277617335,0.338727653,-0.083307803,0.261660278,0.253441215,-0.093147941,0.26006645,0.603296578,-0.036626797,0.252915204,0.555367708,-0.085982658,0.280940324,0.652195811,-0.093562588,0.296636462,0.715048909,-0.083818421,0.22320348,0.664610147,-0.046563704,0.233512074,0.65995723,-0.087143756,0.261037469,0.734441519,-0.086419955,0.277868688,0.78285867,-0.07500039 +Left,0.294353038,0.873081446,6.60E-07,0.345273674,0.815164208,-0.030522658,0.370921403,0.711862028,-0.046585355,0.327352136,0.65478909,-0.062241577,0.27577281,0.625386834,-0.076693341,0.345244348,0.55882287,-0.025799155,0.368169188,0.449621856,-0.054297909,0.385966837,0.384199679,-0.073397517,0.398219526,0.320211351,-0.084898695,0.292079926,0.548855782,-0.030347094,0.271881402,0.406434953,-0.063723326,0.257331818,0.318110704,-0.085000403,0.239457116,0.235918075,-0.094361447,0.248815492,0.585081816,-0.037333731,0.240915939,0.530630946,-0.087380223,0.271315634,0.62611109,-0.095176719,0.287429005,0.69128716,-0.08541932,0.214596152,0.648785949,-0.045696188,0.22474876,0.645465672,-0.08859925,0.25412336,0.721344948,-0.088961847,0.272014916,0.773802996,-0.077693075 +Left,0.28733936,0.882663667,6.68E-07,0.337222755,0.820729434,-0.030086998,0.358696252,0.714807451,-0.045294672,0.311656117,0.661149621,-0.060114235,0.2598221,0.634453833,-0.073721431,0.332118213,0.56737113,-0.024602629,0.351907343,0.457201123,-0.052717902,0.367507398,0.389567256,-0.071418211,0.378623813,0.325598598,-0.082318187,0.278209507,0.56071353,-0.029054698,0.255626291,0.417995244,-0.061630405,0.239811048,0.327870846,-0.082394995,0.221318468,0.245651901,-0.091265596,0.234656811,0.599317789,-0.036067758,0.224590793,0.548322558,-0.085281938,0.256649345,0.638341486,-0.093613736,0.274175018,0.700870097,-0.08414273,0.200499088,0.664114177,-0.044386223,0.210550129,0.657069266,-0.085780285,0.241471961,0.729279816,-0.085749499,0.259918123,0.779647946,-0.074437976 +Left,0.273590297,0.879623055,6.88E-07,0.324429005,0.814084649,-0.030064637,0.344511449,0.703620255,-0.045531452,0.296071917,0.649060011,-0.060685109,0.244249925,0.621085763,-0.074501842,0.318215132,0.564825475,-0.024756182,0.33796221,0.45490697,-0.053689212,0.354255944,0.388066113,-0.073036134,0.366233498,0.324441701,-0.084542803,0.264816016,0.560802698,-0.029705593,0.243180409,0.418138266,-0.064008452,0.228518561,0.327053279,-0.085788012,0.21067965,0.242987871,-0.095359027,0.221469328,0.600431621,-0.037299059,0.210744739,0.548259735,-0.088582464,0.2444731,0.638007402,-0.096689954,0.262925088,0.698153377,-0.08675722,0.187300965,0.665352643,-0.046107244,0.197920457,0.649961174,-0.088675313,0.229865894,0.720205903,-0.088144258,0.248325706,0.767993569,-0.076536685 +Left,0.262346625,0.891051531,6.63E-07,0.311929435,0.822221577,-0.029062308,0.334217399,0.710419416,-0.043675359,0.286792606,0.654427171,-0.058153648,0.233535454,0.630268455,-0.071320012,0.305723727,0.572499037,-0.022974223,0.325782657,0.462358087,-0.050939571,0.34156242,0.396823108,-0.069267131,0.353047729,0.335925311,-0.079703793,0.252018183,0.56808567,-0.027819002,0.229782373,0.425907105,-0.060962521,0.215006143,0.335909307,-0.081996605,0.197331205,0.253176779,-0.090705059,0.208532661,0.606736064,-0.035261951,0.20195213,0.560403824,-0.084546693,0.235566303,0.648311973,-0.093138807,0.253207326,0.706456184,-0.083657332,0.174407423,0.669399142,-0.043929059,0.187946483,0.663487971,-0.083691895,0.219166607,0.732009053,-0.083309628,0.236715883,0.77627337,-0.072147146 +Left,0.238464981,0.908229947,6.65E-07,0.288780719,0.840946555,-0.033839032,0.304602474,0.724017024,-0.04959859,0.246244967,0.669125915,-0.064386927,0.189297751,0.643647015,-0.07717742,0.276770949,0.579488814,-0.024450969,0.288643867,0.462081313,-0.052986715,0.297658473,0.393838882,-0.071420111,0.302008271,0.327893943,-0.082723051,0.22024326,0.582007945,-0.028226683,0.19087413,0.44013688,-0.063379131,0.169605732,0.352324784,-0.0854977,0.145954221,0.272352964,-0.094944492,0.17679441,0.626918912,-0.035328999,0.162870526,0.576152742,-0.089963846,0.201255441,0.668964028,-0.099522211,0.22341679,0.731467783,-0.089400597,0.144387245,0.694369853,-0.04393306,0.154975235,0.68286711,-0.091481224,0.190581173,0.754740357,-0.094046116,0.211359635,0.802759886,-0.083528645 +Left,0.233037263,0.920955777,6.69E-07,0.283864766,0.852027535,-0.035731435,0.295277059,0.732202768,-0.052595783,0.232705057,0.681695998,-0.068019181,0.173592389,0.659335732,-0.081171744,0.263169914,0.58750695,-0.025845977,0.272006601,0.471000135,-0.054329909,0.279232144,0.401122808,-0.072967708,0.282687604,0.334417671,-0.084926598,0.205144599,0.594760656,-0.029111648,0.170103505,0.455342084,-0.064596258,0.144867271,0.368687063,-0.08706525,0.117824852,0.291591853,-0.097024731,0.162678778,0.645353436,-0.035842333,0.146489471,0.586148798,-0.091659397,0.18841821,0.678545654,-0.100772135,0.212461203,0.742716134,-0.09034282,0.133449569,0.718745172,-0.044126906,0.143687427,0.696380854,-0.093279943,0.181985795,0.76521796,-0.095961839,0.204198152,0.812715769,-0.085458346 +Left,0.230740964,0.924275696,6.53E-07,0.282182157,0.85389626,-0.038294412,0.291208982,0.738352537,-0.056834269,0.225658178,0.692635357,-0.073393166,0.166356742,0.670839727,-0.087844126,0.259008378,0.59179759,-0.030097637,0.265444875,0.474905968,-0.060044143,0.268758088,0.402031332,-0.079534411,0.268507689,0.332807779,-0.091984086,0.199836865,0.601687789,-0.032362275,0.160250843,0.464901745,-0.068783186,0.130064502,0.380794257,-0.091342553,0.09931545,0.307468742,-0.101216108,0.157888234,0.654624939,-0.038143303,0.136318073,0.598792255,-0.094380178,0.178776905,0.68697387,-0.103512034,0.204577446,0.74794215,-0.093019225,0.129689664,0.730159044,-0.045588352,0.132288009,0.703123927,-0.094309114,0.170387402,0.769052863,-0.096070245,0.19443877,0.816325307,-0.084924012 +Left,0.247159928,0.903427362,6.28E-07,0.295961499,0.829526305,-0.035691973,0.308732569,0.717951059,-0.05257709,0.24724023,0.672021747,-0.067661181,0.192215115,0.650196433,-0.081041358,0.279207587,0.577276409,-0.029169124,0.287728369,0.461872756,-0.058091186,0.290749907,0.387881756,-0.077513777,0.2900455,0.319408298,-0.089549482,0.221715242,0.583004057,-0.031424236,0.187057555,0.445014477,-0.064676352,0.161692753,0.359030455,-0.085941754,0.136346579,0.280651569,-0.095450461,0.17921567,0.631349385,-0.036866225,0.163187087,0.576664805,-0.08603102,0.19856061,0.655524671,-0.094559968,0.219072849,0.710337639,-0.085658073,0.148421764,0.701913595,-0.044097472,0.153438792,0.679164767,-0.084025599,0.185953692,0.735204101,-0.083668269,0.205948532,0.774223924,-0.072836138 +Left,0.287599236,0.881038904,6.38E-07,0.337159187,0.813837588,-0.031915288,0.35582006,0.705385566,-0.047809333,0.30477348,0.653428078,-0.06272158,0.252424896,0.630351305,-0.076427482,0.326405466,0.564121485,-0.028327603,0.338220716,0.45108676,-0.057093028,0.345882714,0.378960073,-0.075796433,0.350124002,0.311953604,-0.086563624,0.273433179,0.565014362,-0.031608138,0.249377429,0.427943617,-0.064269498,0.232899487,0.338604569,-0.084609054,0.215273634,0.255685985,-0.093389049,0.23122865,0.608352244,-0.037553791,0.221666589,0.5590083,-0.085953899,0.253075689,0.645302832,-0.093953393,0.270604253,0.707388878,-0.084572487,0.199739218,0.676021636,-0.044989601,0.207874089,0.665297925,-0.084595188,0.238634065,0.728819609,-0.084421836,0.256539285,0.775033295,-0.073509552 +Left,0.302257717,0.864158571,6.37E-07,0.351261407,0.798111677,-0.030733,0.370565325,0.689985991,-0.046135549,0.321384072,0.636238575,-0.06074417,0.26903367,0.610802412,-0.07407324,0.340276748,0.546751142,-0.027184477,0.353521377,0.432710409,-0.054751243,0.361548156,0.362478465,-0.072886288,0.365902483,0.295399725,-0.083839282,0.28762275,0.546081305,-0.030636551,0.264582425,0.413751841,-0.062693305,0.24774915,0.328824431,-0.083382621,0.228992015,0.249179482,-0.092870727,0.245778263,0.587339818,-0.036489256,0.236653417,0.53977865,-0.082962103,0.270612895,0.624654353,-0.090053484,0.289610475,0.683256626,-0.081041835,0.214678347,0.652756751,-0.043947134,0.224962562,0.643232167,-0.082581304,0.255800426,0.707315385,-0.08233697,0.273895741,0.751418948,-0.071832649 +Left,0.319698781,0.858635783,6.56E-07,0.36771673,0.793099284,-0.031431135,0.384831548,0.688125968,-0.048121512,0.337097824,0.637119412,-0.064067595,0.285618931,0.61000675,-0.07881923,0.354925066,0.543774247,-0.029576993,0.36689651,0.430852354,-0.057914779,0.37571466,0.36298722,-0.076609053,0.38073343,0.295046985,-0.088046737,0.302966237,0.544643342,-0.032925501,0.280308068,0.414168477,-0.066295162,0.262113154,0.328650922,-0.087638289,0.242093429,0.24823603,-0.097664289,0.261495113,0.585873663,-0.038551282,0.250599474,0.535342038,-0.087460108,0.284493119,0.623896122,-0.094843581,0.304538339,0.686634421,-0.085556336,0.230747715,0.651260912,-0.045730021,0.240160435,0.643286228,-0.088632472,0.273097336,0.712406337,-0.08983504,0.294144034,0.762444496,-0.079457693 +Left,0.316362441,0.849305749,6.50E-07,0.364790261,0.785871863,-0.032655742,0.383288622,0.679846406,-0.049856924,0.33472389,0.626371264,-0.066080377,0.281754941,0.598421097,-0.080931768,0.352917343,0.535412788,-0.030494969,0.36520651,0.42207858,-0.059975334,0.375133872,0.35428673,-0.079506293,0.3803837,0.285454869,-0.091631964,0.299714446,0.535423636,-0.034082383,0.272999763,0.40213865,-0.068801135,0.251047343,0.319447666,-0.090698414,0.227123648,0.240611583,-0.100896038,0.257964015,0.578139424,-0.040077671,0.246743724,0.526738286,-0.091577441,0.282143623,0.61927247,-0.09862756,0.30356282,0.682297587,-0.088460058,0.22682336,0.645702541,-0.047637161,0.234785572,0.635423899,-0.092826389,0.269477695,0.707042217,-0.093629226,0.292046636,0.756981015,-0.08251521 +Left,0.304190248,0.859342813,6.42E-07,0.353709221,0.796046793,-0.032232191,0.373269677,0.691499174,-0.049787499,0.325222969,0.636342347,-0.066393793,0.272515416,0.6080755,-0.081545025,0.346186161,0.545366347,-0.030350454,0.359951377,0.432875335,-0.059676304,0.371441722,0.366928369,-0.079249807,0.378273368,0.299496591,-0.091699786,0.292224109,0.541789532,-0.034331869,0.26628083,0.407323062,-0.068686977,0.246391624,0.324735016,-0.090224884,0.223746389,0.245273054,-0.100404844,0.250132591,0.583047152,-0.040679794,0.239139125,0.527619183,-0.091739379,0.273882359,0.622724771,-0.09853515,0.293867588,0.686176062,-0.088577688,0.218590826,0.651194215,-0.048594508,0.228510857,0.642726541,-0.09362828,0.261808455,0.714748263,-0.094788618,0.282537609,0.76338625,-0.08423233 +Left,0.282280505,0.88584137,6.61E-07,0.335242867,0.830139577,-0.032840062,0.362375855,0.724758208,-0.049477726,0.317568094,0.66375798,-0.065131925,0.265817493,0.633081377,-0.079203248,0.337778211,0.579592288,-0.026632199,0.360871434,0.471149474,-0.055617619,0.378233522,0.408015043,-0.074871831,0.391050577,0.344983578,-0.086537473,0.285138845,0.569585145,-0.030344,0.265412778,0.429941356,-0.064634606,0.248687953,0.342328519,-0.086350746,0.229000643,0.260174811,-0.095895275,0.241980344,0.605188549,-0.036904421,0.235816345,0.550941288,-0.088425428,0.265751749,0.648259878,-0.09529151,0.28194648,0.712494195,-0.084364213,0.207110047,0.666263938,-0.045027163,0.217296004,0.657493711,-0.088227242,0.245065525,0.730820596,-0.08785408,0.260486305,0.777566612,-0.076100327 +Left,0.272582382,0.896153331,6.27E-07,0.324402601,0.843662262,-0.029397439,0.353121072,0.747334123,-0.045414619,0.315316796,0.690418124,-0.061282489,0.265118182,0.657203019,-0.076026693,0.334286749,0.593793452,-0.026348904,0.358325839,0.485582829,-0.053493533,0.376491994,0.424066067,-0.070853204,0.390095204,0.363324195,-0.081161238,0.281814814,0.581877232,-0.030748149,0.263104469,0.44535619,-0.063827738,0.247939125,0.360204548,-0.084799364,0.230250239,0.282093525,-0.09390486,0.23807025,0.612737119,-0.03737013,0.232170597,0.566844821,-0.0866291,0.260256886,0.661574423,-0.095429488,0.275544524,0.726060033,-0.086692788,0.203450292,0.669429302,-0.045309052,0.214408457,0.676093936,-0.087806702,0.243787497,0.753030837,-0.090064183,0.262815356,0.805031419,-0.08039166 +Left,0.264747471,0.917351007,6.49E-07,0.315074444,0.861745954,-0.027649861,0.344787717,0.760794461,-0.042320218,0.311918139,0.701159179,-0.057174865,0.26297015,0.670122802,-0.070704415,0.323075026,0.606055081,-0.023639755,0.346127331,0.495011091,-0.049442407,0.365343094,0.432459593,-0.065660149,0.379822463,0.370840907,-0.075167805,0.270064235,0.594097972,-0.028391188,0.251897454,0.458107501,-0.060747229,0.239655897,0.37350589,-0.080925882,0.223623246,0.296172857,-0.089338988,0.224993393,0.624243975,-0.035212219,0.224983692,0.581197202,-0.084359892,0.254005432,0.678318501,-0.093229651,0.267721653,0.745952547,-0.084408671,0.189205587,0.68069452,-0.043394472,0.21093899,0.701301396,-0.087543689,0.241861954,0.784138501,-0.091798343,0.259052992,0.839811802,-0.083114728 +Left,0.253522545,0.918582201,6.50E-07,0.305885375,0.861286104,-0.026268428,0.336529374,0.76178205,-0.04054926,0.304076612,0.699961066,-0.055483285,0.25428459,0.669132233,-0.069152668,0.31831637,0.610714614,-0.021185772,0.343655884,0.500662446,-0.046843562,0.363113701,0.437904119,-0.063330106,0.37744236,0.376499832,-0.073170766,0.266562849,0.597585261,-0.026553651,0.250937253,0.462625593,-0.059073724,0.239131197,0.377110094,-0.079655468,0.223612994,0.298448741,-0.08832743,0.221605971,0.626594126,-0.034041472,0.22012046,0.58445394,-0.08201465,0.24702251,0.679840744,-0.090251967,0.259771645,0.74363035,-0.081160411,0.184540749,0.681996405,-0.042814083,0.203370854,0.696765959,-0.083912775,0.231729552,0.773180187,-0.086452514,0.247672826,0.822529256,-0.077141881 +Left,0.24285385,0.92807579,6.39E-07,0.297333539,0.873590231,-0.026182793,0.330021888,0.77554965,-0.040357269,0.295830488,0.711625814,-0.055477906,0.246427968,0.67665863,-0.069359891,0.316030592,0.623702884,-0.019973017,0.343329847,0.51636672,-0.046317391,0.363461494,0.45429486,-0.063306421,0.378314584,0.393107593,-0.073383674,0.264702499,0.607456744,-0.02568626,0.252104998,0.47098577,-0.059207506,0.240768969,0.383449882,-0.080390707,0.225863963,0.301826894,-0.089269951,0.218984634,0.634030759,-0.033730041,0.216146216,0.590543926,-0.082331471,0.239549965,0.688426316,-0.090407737,0.250577748,0.752897918,-0.080874793,0.180154696,0.687443435,-0.04301716,0.194873244,0.695747137,-0.082907915,0.219871148,0.772655904,-0.084060043,0.234080702,0.822425246,-0.073942415 +Left,0.242141739,0.931378663,6.39E-07,0.293894142,0.876382113,-0.028620912,0.318687737,0.775429726,-0.044103906,0.27404049,0.71402669,-0.059744343,0.223551467,0.679495931,-0.073828623,0.305880517,0.624373019,-0.023985898,0.330605984,0.512714267,-0.051493771,0.346748501,0.446126461,-0.069002412,0.357503533,0.380691051,-0.079654545,0.25180015,0.613304496,-0.029298311,0.234079301,0.473669827,-0.063737571,0.217671186,0.386724442,-0.085274726,0.198245183,0.305394173,-0.094368309,0.206185639,0.645420372,-0.037054278,0.200140268,0.596247911,-0.087265149,0.227927104,0.694157183,-0.095322333,0.242023736,0.75985539,-0.085408799,0.170271873,0.703508198,-0.046136208,0.183561683,0.704219103,-0.087729849,0.212182954,0.778486669,-0.089092664,0.228473708,0.826246381,-0.0788569 +Left,0.257616103,0.934424996,6.11E-07,0.307963043,0.870872617,-0.032077558,0.326202691,0.765322566,-0.048536714,0.273868084,0.710586965,-0.064404637,0.221498832,0.683250725,-0.078794412,0.308571905,0.616852462,-0.024861569,0.326696992,0.502731562,-0.05186756,0.3378748,0.430065095,-0.069731139,0.344429582,0.362976044,-0.080774523,0.253024191,0.615099907,-0.028725456,0.224641696,0.475727409,-0.063200839,0.200175777,0.390922725,-0.085302807,0.175142139,0.314436138,-0.094572246,0.208875075,0.656092346,-0.035312932,0.197159544,0.601995885,-0.087555878,0.228647396,0.697502196,-0.095991686,0.24604857,0.762236655,-0.085412838,0.175270408,0.720928252,-0.043103285,0.180578411,0.694265366,-0.085777111,0.210915446,0.765843391,-0.084763691,0.229091227,0.817267656,-0.072297268 +Left,0.285290033,0.934309363,6.02E-07,0.33288765,0.869525313,-0.035934795,0.346060187,0.766801536,-0.05412484,0.290421635,0.719809771,-0.07113903,0.237032399,0.696420312,-0.086196505,0.323169559,0.61420089,-0.026833907,0.333759606,0.500626326,-0.056257304,0.340443879,0.427535981,-0.07564085,0.343308717,0.360553831,-0.087675609,0.266059816,0.619482458,-0.029756509,0.228521734,0.484224916,-0.067175552,0.19828102,0.406861454,-0.090484187,0.168635517,0.33747977,-0.099761941,0.223685026,0.666721821,-0.035968225,0.205953568,0.6123873,-0.09040425,0.241106421,0.705701709,-0.098606922,0.262595385,0.766854167,-0.087297596,0.194080263,0.73678267,-0.043876696,0.195218086,0.716608047,-0.087986037,0.226842165,0.782075107,-0.087844394,0.247349307,0.824534953,-0.075717904 +Left,0.326744735,0.929042339,5.85E-07,0.373315811,0.854505837,-0.03162564,0.383300841,0.747640789,-0.046139885,0.327037513,0.703090072,-0.059824675,0.278026879,0.68440634,-0.072138697,0.356925428,0.610785782,-0.022165628,0.369440019,0.49780345,-0.049793728,0.376286,0.420675099,-0.068880327,0.380075812,0.353024215,-0.080087192,0.302030176,0.618279934,-0.024984455,0.265655994,0.483904928,-0.057918634,0.237859532,0.400007546,-0.07990025,0.211749852,0.327174604,-0.089214042,0.262081742,0.665617645,-0.03073916,0.24429214,0.613344312,-0.079971157,0.275736123,0.694828451,-0.088533498,0.295271099,0.755615294,-0.078337833,0.23484543,0.733568072,-0.037819449,0.231120124,0.69926548,-0.076269917,0.258513033,0.754775167,-0.073950365,0.276891828,0.800007343,-0.06099401 +Left,0.366423815,0.896361947,5.88E-07,0.411799967,0.818322599,-0.030617202,0.416749299,0.714184284,-0.045489807,0.359454066,0.676806092,-0.060093377,0.308700651,0.660272896,-0.07360924,0.384672433,0.584681571,-0.02378078,0.387304962,0.466252208,-0.050558716,0.387934715,0.390737921,-0.068498254,0.386732996,0.321515441,-0.079525545,0.331654966,0.600334704,-0.026930602,0.291499823,0.471238643,-0.059004027,0.259361118,0.389751822,-0.080061004,0.230407655,0.317644387,-0.089527532,0.294451475,0.651735008,-0.032979775,0.274269521,0.594892144,-0.080847293,0.309143066,0.670396149,-0.08894524,0.332477391,0.726445913,-0.079416066,0.270390809,0.721346855,-0.040278014,0.26568374,0.684917331,-0.077765778,0.296051383,0.736569405,-0.075844906,0.317525476,0.778381944,-0.064061306 +Left,0.39018485,0.890124142,6.02E-07,0.433631003,0.810222983,-0.03384823,0.433856487,0.697964668,-0.049088039,0.373930126,0.663162589,-0.063005179,0.31949845,0.649854362,-0.075149782,0.393965542,0.561485708,-0.025842682,0.388994485,0.441698074,-0.052885707,0.386698753,0.369103879,-0.070263118,0.380681753,0.300504446,-0.081264704,0.340311527,0.584540009,-0.027689546,0.292870164,0.46295917,-0.061215673,0.257252604,0.391208827,-0.082688048,0.223044127,0.329873532,-0.091914393,0.30441159,0.64104861,-0.032546468,0.281115711,0.585104048,-0.084422432,0.321792901,0.662365496,-0.094404384,0.348621935,0.721891403,-0.085549399,0.28425312,0.71398437,-0.038988255,0.29071632,0.708732188,-0.086911157,0.329937994,0.767025709,-0.092750594,0.35658288,0.810088634,-0.084457949 +Left,0.386534393,0.875845432,6.17E-07,0.430084676,0.794413209,-0.035574514,0.428473502,0.683462143,-0.051027197,0.365774065,0.651699781,-0.065156743,0.311072499,0.638256907,-0.077471316,0.387488931,0.54518944,-0.024862949,0.383080304,0.423616678,-0.051808406,0.3795937,0.349817127,-0.068814613,0.372350395,0.282043099,-0.079333298,0.334144026,0.571926296,-0.026435681,0.284048408,0.450833201,-0.060756728,0.246772945,0.379434466,-0.082559273,0.211525679,0.317567766,-0.091564707,0.300203234,0.63349396,-0.031485923,0.275077254,0.586176753,-0.08657869,0.316735119,0.662454903,-0.097995169,0.34433639,0.719347239,-0.088692635,0.281583279,0.711087048,-0.037863884,0.282465726,0.692770004,-0.086732224,0.322135925,0.746829629,-0.091425002,0.350260496,0.787987828,-0.081896164 +Left,0.368599236,0.881531179,6.27E-07,0.407737553,0.795792341,-0.038842689,0.401485115,0.689736307,-0.056963649,0.338035434,0.664368212,-0.073209956,0.283031464,0.653747141,-0.087889738,0.360884041,0.546408713,-0.03077581,0.352782577,0.420523524,-0.06121796,0.346260995,0.34300977,-0.080581531,0.335742474,0.27401185,-0.092101291,0.307815909,0.577641726,-0.030960439,0.251153231,0.459937423,-0.069162637,0.209236652,0.393358797,-0.092806652,0.170401126,0.336789042,-0.102080129,0.275461525,0.641677678,-0.034767039,0.247788817,0.60503751,-0.090685293,0.286678314,0.676741838,-0.102326579,0.312940717,0.728363156,-0.092657357,0.258692682,0.719407022,-0.040233385,0.252767771,0.701290965,-0.086705931,0.288945258,0.751515985,-0.0896369,0.315775603,0.788953125,-0.078884996 +Left,0.346477985,0.880974352,6.09E-07,0.38425833,0.79317683,-0.043152802,0.374371648,0.689677835,-0.064077973,0.307391882,0.671608925,-0.082231142,0.248781547,0.661863863,-0.098809227,0.327704102,0.537359893,-0.036454093,0.311961472,0.416529894,-0.067328095,0.298897922,0.342786431,-0.087540865,0.283238888,0.271882981,-0.100816347,0.273521513,0.573864937,-0.035597034,0.211471602,0.465833783,-0.074638881,0.163748175,0.407803476,-0.099018686,0.12156345,0.354033917,-0.109749347,0.241511509,0.64130944,-0.038455248,0.206185475,0.601027012,-0.096926615,0.245320275,0.676700175,-0.109888382,0.274188042,0.731288314,-0.101713695,0.227571383,0.722658277,-0.043244869,0.219058841,0.715265036,-0.096088395,0.260206044,0.768916607,-0.103208728,0.293631077,0.805436969,-0.094960302 +Left,0.328501552,0.881656945,6.14E-07,0.368910611,0.790250301,-0.043592691,0.358484685,0.68049854,-0.064222358,0.285759896,0.663706064,-0.081798263,0.224485666,0.653710783,-0.097258642,0.312155277,0.532379508,-0.034395516,0.296393305,0.410146475,-0.065936781,0.284546435,0.336773813,-0.086595304,0.268495321,0.266320974,-0.100239858,0.255253106,0.569896102,-0.033499319,0.18932271,0.456957608,-0.073611937,0.140295997,0.401912689,-0.098001242,0.094995379,0.35325253,-0.1081843,0.221671537,0.637952983,-0.036542341,0.184871256,0.595008135,-0.097201295,0.230594128,0.670699537,-0.10948538,0.262565315,0.724236786,-0.100138493,0.206458047,0.71982336,-0.041529402,0.201398849,0.713385165,-0.097384907,0.246425614,0.770890176,-0.104975246,0.280809045,0.807653964,-0.096444868 +Left,0.311946541,0.887106657,6.29E-07,0.357521474,0.80757618,-0.039156578,0.357724279,0.693719983,-0.0570683,0.290208608,0.658415616,-0.072297886,0.23214981,0.642545164,-0.085622795,0.319952041,0.548110306,-0.033342786,0.315192103,0.421690762,-0.06170563,0.312481254,0.346453071,-0.079715446,0.305993259,0.273524165,-0.091483578,0.262019843,0.567896664,-0.033636563,0.211008608,0.436044276,-0.068403691,0.171355784,0.362043142,-0.090372913,0.13288486,0.295820147,-0.100272447,0.223029047,0.626229405,-0.036854357,0.19399935,0.566044807,-0.09238001,0.23488006,0.65225035,-0.10288617,0.262888193,0.715363741,-0.094205648,0.200510532,0.704647839,-0.041817401,0.201214254,0.700640678,-0.095648713,0.242872894,0.771226525,-0.102520309,0.273608327,0.820397258,-0.09415739 +Left,0.281186938,0.902809262,6.26E-07,0.332820833,0.834783435,-0.029957704,0.354127407,0.727790534,-0.04553429,0.307148784,0.663106024,-0.060580812,0.257005215,0.623479247,-0.074405581,0.333827198,0.577527285,-0.028898686,0.351168334,0.459354579,-0.056864437,0.363252103,0.390192151,-0.074773639,0.370941579,0.320344746,-0.085694551,0.278775722,0.568882704,-0.033419743,0.255847454,0.420352787,-0.066884205,0.234339908,0.331479967,-0.088137008,0.211163074,0.251029968,-0.097474635,0.232718915,0.60438478,-0.039926242,0.222568572,0.543474555,-0.091291077,0.251114398,0.641803026,-0.100318603,0.267884314,0.714241326,-0.091404662,0.197292715,0.667858422,-0.047746096,0.208417296,0.67145592,-0.095150776,0.240253568,0.753859639,-0.099287815,0.261897862,0.813309789,-0.089926161 +Left,0.255367249,0.917197466,6.91E-07,0.312794864,0.866898537,-0.02689256,0.354567707,0.756524026,-0.040085603,0.332381815,0.673331678,-0.053747687,0.285709083,0.623349965,-0.06635689,0.334194094,0.60106051,-0.021165064,0.367996961,0.492135882,-0.048011839,0.390893221,0.428136021,-0.065198116,0.408958554,0.362644613,-0.075649977,0.281872809,0.580845118,-0.026871657,0.280051708,0.436968982,-0.061727677,0.278529674,0.344649225,-0.08265876,0.272028238,0.257217288,-0.091462061,0.232701465,0.603272021,-0.034816675,0.240855142,0.543799043,-0.089759879,0.267228037,0.660051405,-0.098366663,0.279765636,0.740236342,-0.087900847,0.190183759,0.655564427,-0.043727484,0.217321798,0.67201376,-0.094312161,0.246064276,0.769182026,-0.099671692,0.261787713,0.835427403,-0.090585314 +Left,0.263261855,0.896196127,6.78E-07,0.320302665,0.846362233,-0.025695408,0.362330258,0.742284358,-0.038382445,0.346393943,0.661042631,-0.05156894,0.305541396,0.609199047,-0.063433051,0.337446809,0.579920292,-0.020059425,0.37235862,0.477716833,-0.045793388,0.396231949,0.417687327,-0.062468678,0.41616112,0.356412172,-0.072512478,0.286554128,0.558691025,-0.025464009,0.285737634,0.421648085,-0.057894643,0.289081186,0.333240092,-0.077259183,0.288054109,0.251513898,-0.085538387,0.238616154,0.580558956,-0.03322627,0.255065799,0.526448131,-0.084611632,0.281636536,0.63355571,-0.093708478,0.293022722,0.712105632,-0.084911317,0.199027807,0.632592082,-0.042121697,0.233574226,0.659477115,-0.089363128,0.260718882,0.751574516,-0.095987394,0.273557425,0.815960228,-0.088853277 +Left,0.284326792,0.877613068,6.57E-07,0.338543326,0.8162058,-0.021663269,0.373604953,0.715374708,-0.034392636,0.36085251,0.637352586,-0.048416052,0.322271287,0.593634188,-0.06072839,0.344473064,0.56172514,-0.020350128,0.376155674,0.454296887,-0.045809899,0.396894455,0.390587628,-0.06209255,0.412527651,0.326504737,-0.071559608,0.294149816,0.542678654,-0.027178407,0.28874746,0.403400153,-0.058438886,0.288318694,0.312700093,-0.076320462,0.283239782,0.231794864,-0.083493233,0.248965055,0.565498352,-0.035793651,0.267064005,0.514707029,-0.081859723,0.297503591,0.607869267,-0.089646481,0.312469542,0.679266751,-0.080928199,0.213622794,0.617180169,-0.045610592,0.249120295,0.64349395,-0.084823072,0.278686225,0.718450606,-0.089259461,0.295408636,0.772623181,-0.081854932 +Left,0.29528752,0.885984361,7.37E-07,0.346725106,0.8212834,-0.021915875,0.378040612,0.712733626,-0.034141488,0.361946791,0.636607766,-0.047859229,0.320526123,0.598668218,-0.060464852,0.343529642,0.563189864,-0.021778794,0.372329473,0.451013029,-0.050216071,0.391343743,0.38436985,-0.067843065,0.405338585,0.315819502,-0.077797778,0.292353243,0.546074271,-0.02934012,0.298249781,0.408117563,-0.062403355,0.307084709,0.315972,-0.080029942,0.310474098,0.238326162,-0.08664456,0.245039493,0.570247173,-0.039289046,0.264708519,0.523243308,-0.087330081,0.298301309,0.617362857,-0.095870622,0.31654194,0.691771448,-0.087449633,0.209148958,0.624258578,-0.050664943,0.251949787,0.66277957,-0.092489488,0.284993023,0.742471457,-0.099200673,0.303174078,0.799304008,-0.093244806 +Left,0.313368261,0.88591361,6.93E-07,0.364175111,0.820593417,-0.022619678,0.393504858,0.715865374,-0.035730287,0.375688344,0.641284227,-0.050298262,0.333388716,0.604254782,-0.063354731,0.355228782,0.569392741,-0.020545127,0.383652985,0.456267476,-0.047883965,0.403198063,0.391854346,-0.064964987,0.417980373,0.32769078,-0.074203178,0.303790808,0.556687295,-0.0269564,0.29483065,0.415109277,-0.059714708,0.291734189,0.318189323,-0.07805866,0.284539759,0.235776156,-0.084919162,0.259344131,0.586434603,-0.03554232,0.272899032,0.540423036,-0.082721837,0.308546036,0.625543773,-0.09142784,0.328213751,0.694146335,-0.082710542,0.226344079,0.64408952,-0.045390896,0.263181269,0.66829282,-0.0844393,0.29773289,0.738003492,-0.088606454,0.31816864,0.789815068,-0.080846116 +Left,0.315586478,0.896306276,6.84E-07,0.364638209,0.833323717,-0.02528088,0.393729985,0.726307333,-0.038969968,0.372281849,0.647183061,-0.053446393,0.329126358,0.606471717,-0.066278666,0.361953288,0.579149544,-0.021459298,0.388120711,0.46704787,-0.048282299,0.406950146,0.403969288,-0.065066084,0.422107339,0.341332555,-0.074736647,0.309678257,0.567975998,-0.026916241,0.295146823,0.430170894,-0.060689222,0.287897468,0.336940825,-0.080248281,0.278020263,0.255163789,-0.088186987,0.264683604,0.600699723,-0.034628525,0.27432546,0.550505757,-0.084171481,0.309487134,0.638260961,-0.093325369,0.329227567,0.707285762,-0.084806353,0.231451631,0.659825146,-0.043685015,0.267778605,0.683846474,-0.086815268,0.302025616,0.755640507,-0.09287113,0.32178238,0.806375563,-0.085995764 +Left,0.32089588,0.889998138,6.78E-07,0.369842559,0.827812016,-0.024544312,0.398178905,0.723210573,-0.03798439,0.377613723,0.645857275,-0.051930763,0.336689174,0.605237246,-0.064348437,0.365735948,0.580535293,-0.022945225,0.39335826,0.470655143,-0.049011525,0.412573636,0.409350306,-0.065103829,0.427404135,0.347902387,-0.074376263,0.31366539,0.568466663,-0.027985491,0.300494134,0.431324869,-0.060607351,0.29319185,0.339556277,-0.079577796,0.283165604,0.259691983,-0.08747334,0.26934126,0.598832846,-0.035013784,0.277684152,0.547484457,-0.083206967,0.314188451,0.628795028,-0.093509875,0.336257994,0.695178986,-0.086416423,0.237108842,0.654650092,-0.043197952,0.272634596,0.67993933,-0.085580662,0.307045162,0.749662519,-0.092712291,0.328350335,0.800256371,-0.087027162 +Left,0.318766356,0.887850642,6.67E-07,0.364248633,0.815480411,-0.020524638,0.388549507,0.706716478,-0.032198772,0.371344209,0.632725537,-0.045226559,0.331918836,0.602656305,-0.056490026,0.347185642,0.575996637,-0.020639988,0.371852785,0.460691273,-0.046128795,0.390354335,0.397845507,-0.061708052,0.403722346,0.336653322,-0.070244297,0.295846611,0.568475485,-0.0274106,0.278335303,0.428782403,-0.058561411,0.271302253,0.336478531,-0.076208219,0.2608428,0.261319935,-0.082856856,0.254087776,0.601870716,-0.035838936,0.271166563,0.551118731,-0.080810092,0.310832888,0.625408173,-0.089827731,0.332982093,0.690195501,-0.082168885,0.227579206,0.659113824,-0.045454644,0.271488011,0.685918033,-0.083670445,0.30559358,0.749381483,-0.089493066,0.324332058,0.797772288,-0.083377987 +Left,0.312912881,0.907514334,6.88E-07,0.36042583,0.8354249,-0.022143628,0.384195924,0.725043774,-0.034987275,0.366069943,0.652023315,-0.049187493,0.321605265,0.62944901,-0.062006757,0.338712066,0.587818503,-0.021733459,0.359383285,0.468181252,-0.048824091,0.375778198,0.402530193,-0.065973945,0.387488246,0.337441206,-0.075759597,0.286597937,0.584219635,-0.028504321,0.269731849,0.447435141,-0.061311632,0.26283893,0.353132278,-0.080657922,0.252312541,0.274205625,-0.088915758,0.243610919,0.622085869,-0.037200581,0.258412093,0.567290366,-0.084156275,0.300233752,0.64196229,-0.094054289,0.324164093,0.706707895,-0.087021858,0.21537444,0.684085488,-0.04721529,0.260016531,0.707193732,-0.087973453,0.296574444,0.769581854,-0.094952367,0.316722244,0.817644954,-0.08955425 +Left,0.306101531,0.913314402,7.05E-07,0.354091495,0.842721224,-0.023503326,0.379387319,0.732266247,-0.036637753,0.361150891,0.661089122,-0.050799415,0.317314267,0.636008024,-0.063694753,0.332072288,0.589813352,-0.022682801,0.353227884,0.470289022,-0.050865039,0.370320261,0.403167069,-0.068671301,0.381620646,0.336352766,-0.078740358,0.279707968,0.587270021,-0.028987451,0.264514953,0.451501518,-0.062364794,0.257200241,0.359959453,-0.08185152,0.245282218,0.282439619,-0.090107068,0.236855596,0.626161397,-0.0375004,0.248901978,0.575561404,-0.085548453,0.29105559,0.651693225,-0.096180938,0.315958947,0.715824127,-0.089463621,0.208297461,0.690045714,-0.047407087,0.251726836,0.714955151,-0.089102171,0.289654553,0.779817641,-0.096741803,0.31151396,0.828052163,-0.091697223 +Left,0.304698497,0.913185954,7.12E-07,0.353098989,0.841660261,-0.023325879,0.380893409,0.731653273,-0.036745053,0.362597555,0.659301877,-0.051192701,0.318032622,0.633704543,-0.064310946,0.333848774,0.585152447,-0.022714665,0.357098073,0.4674474,-0.051090799,0.374192744,0.400164485,-0.069143184,0.3859272,0.333446771,-0.079186149,0.280675143,0.581385016,-0.029092556,0.26805827,0.447734207,-0.062618092,0.26125139,0.355055273,-0.082562447,0.250275433,0.276579738,-0.090905257,0.23691079,0.618536472,-0.037571866,0.252702534,0.575455725,-0.084967919,0.293389261,0.651503086,-0.095836729,0.317667931,0.714946091,-0.089208193,0.207120284,0.681216061,-0.047481835,0.2516357,0.711700737,-0.087808616,0.288651675,0.777732015,-0.095032871,0.310908377,0.825921893,-0.089653976 +Left,0.305122733,0.889630198,7.12E-07,0.35403955,0.81664896,-0.022405874,0.381938845,0.705391407,-0.035012078,0.362365901,0.632344365,-0.048547868,0.32027775,0.601181865,-0.060303785,0.337195873,0.559776723,-0.021075968,0.360974997,0.444713116,-0.047678787,0.378111601,0.378541261,-0.063709714,0.38943693,0.31332472,-0.072476447,0.283687383,0.553436875,-0.027568016,0.270778507,0.417206168,-0.059864577,0.265823245,0.32659927,-0.077704132,0.256526232,0.249152273,-0.084212564,0.239874795,0.588334024,-0.036165405,0.258928835,0.545211077,-0.082745649,0.298082799,0.624798119,-0.092639096,0.32027173,0.688354731,-0.085204884,0.209831715,0.64947021,-0.046096828,0.255922139,0.68547225,-0.085954882,0.291776836,0.752621531,-0.093306631,0.312335581,0.797893822,-0.087963738 +Left,0.305439115,0.879475117,7.05E-07,0.355141312,0.812511563,-0.024965681,0.385564476,0.702325225,-0.038987614,0.367303461,0.625973582,-0.053612929,0.323663265,0.594822407,-0.066489719,0.342117012,0.55333513,-0.023543743,0.36607179,0.437645644,-0.051471211,0.383744001,0.372258306,-0.068403699,0.395699471,0.306882888,-0.077874035,0.288845539,0.54394567,-0.029398777,0.277999222,0.40723449,-0.063222624,0.274623036,0.316034287,-0.081828043,0.266266912,0.237649471,-0.088904731,0.244685128,0.577477038,-0.037643272,0.262178481,0.533858776,-0.086334065,0.301280111,0.617012858,-0.096468672,0.32320106,0.682772279,-0.08894676,0.213628829,0.638232052,-0.047369361,0.258379072,0.672964156,-0.089070812,0.293280512,0.743001521,-0.096654959,0.312594056,0.791383326,-0.091423862 +Left,0.304099977,0.876063049,6.98E-07,0.355291814,0.809737563,-0.024189444,0.38700521,0.70146209,-0.037808865,0.369722217,0.626817167,-0.051970482,0.326577306,0.595759928,-0.064446174,0.343082815,0.552897871,-0.023208994,0.368673176,0.437424719,-0.05019806,0.387190998,0.372872591,-0.066557258,0.400106251,0.308407485,-0.07567247,0.290461361,0.542076886,-0.028944444,0.280282021,0.404986978,-0.061224118,0.277815998,0.314039826,-0.079336703,0.270373166,0.236528695,-0.08637879,0.246855155,0.573932052,-0.036891863,0.265001655,0.528286934,-0.084110953,0.302759886,0.610337853,-0.094453558,0.323585331,0.676674068,-0.087561294,0.216719612,0.632980585,-0.046239648,0.262091309,0.670386195,-0.087642238,0.296269298,0.741084516,-0.095839992,0.314720243,0.790327013,-0.091153882 +Left,0.307678729,0.869995356,6.83E-07,0.358815402,0.802779317,-0.021798477,0.389052451,0.697764277,-0.035043996,0.377389461,0.625295103,-0.049745195,0.338021398,0.593180478,-0.062524728,0.348744184,0.552704096,-0.021633383,0.374792427,0.43745631,-0.048907079,0.394497275,0.373845518,-0.065612487,0.40860796,0.310441166,-0.075100243,0.297694623,0.540185094,-0.028869484,0.286838144,0.40292418,-0.061658118,0.285670072,0.312068403,-0.079929784,0.27885139,0.233663291,-0.087063111,0.254891992,0.570846915,-0.03814083,0.275319427,0.522742689,-0.084974051,0.312034875,0.608395994,-0.0938133,0.330495983,0.675787151,-0.085942671,0.22654745,0.629008293,-0.048792094,0.272604972,0.668024063,-0.089039974,0.304192185,0.736355186,-0.096079677,0.31930244,0.783116579,-0.090748705 +Left,0.315901905,0.86860466,7.16E-07,0.365374118,0.807645559,-0.022415308,0.398255438,0.70471251,-0.037217043,0.393932164,0.628241181,-0.053491957,0.356886446,0.595337451,-0.067350179,0.35929963,0.559420347,-0.024664182,0.386607975,0.439446151,-0.053243157,0.406817555,0.374404848,-0.069828995,0.421348035,0.309563547,-0.079231814,0.309396535,0.545869172,-0.032441966,0.3021833,0.402963042,-0.067856498,0.305867046,0.313502729,-0.085792497,0.302920043,0.235378444,-0.092161328,0.266782403,0.572511137,-0.04222564,0.296890765,0.520891905,-0.091317952,0.330490798,0.614937484,-0.097641513,0.344034553,0.683932066,-0.087543741,0.238142356,0.62510103,-0.053552918,0.292249948,0.664211631,-0.095003046,0.321425498,0.737263203,-0.10087885,0.331918776,0.783344626,-0.09453363 +Left,0.321736217,0.865082443,7.06E-07,0.370810032,0.80336988,-0.020463953,0.403399467,0.701791644,-0.034530316,0.400058925,0.62760371,-0.050338477,0.364238083,0.597538054,-0.063703351,0.365050703,0.555555165,-0.02281774,0.393160999,0.437943161,-0.050729498,0.414019763,0.373778999,-0.067520492,0.429924041,0.311104596,-0.077378087,0.31612578,0.54364872,-0.031441115,0.310253143,0.402717352,-0.065633319,0.316061139,0.313802451,-0.083611086,0.316019624,0.236957788,-0.090704679,0.274710149,0.571278274,-0.041915033,0.306877136,0.518281221,-0.088625565,0.339311749,0.610652447,-0.09392368,0.352119952,0.67946279,-0.084118977,0.247846916,0.624922633,-0.053977966,0.302692741,0.661173522,-0.093677811,0.331172943,0.733463407,-0.098746121,0.34114334,0.780016243,-0.092387691 +Left,0.327421725,0.865143061,7.18E-07,0.375810742,0.805082917,-0.021159446,0.409410655,0.701263785,-0.035277054,0.407232165,0.622302711,-0.051133994,0.371094525,0.591579318,-0.064229228,0.369322211,0.55886662,-0.022761518,0.3979581,0.443089664,-0.051244877,0.418633461,0.378457546,-0.06857907,0.434084058,0.315876722,-0.079141527,0.321822047,0.545870543,-0.03134115,0.319933772,0.40750435,-0.067003049,0.328562498,0.318794161,-0.085879244,0.331419557,0.244042933,-0.093639098,0.281309932,0.570562184,-0.041876264,0.316820621,0.5158059,-0.088579491,0.346736223,0.61422956,-0.091568321,0.356809884,0.685022891,-0.080367111,0.255544335,0.620398581,-0.05434835,0.312291473,0.655619204,-0.094314694,0.339740127,0.731783628,-0.098551802,0.347967088,0.780207336,-0.091558099 +Left,0.317859381,0.873309851,7.01E-07,0.369503498,0.813613057,-0.021910097,0.40424028,0.708889842,-0.034961127,0.399329931,0.632549465,-0.04915268,0.363193274,0.595894635,-0.061365567,0.366842389,0.569687307,-0.023261033,0.396107525,0.453230113,-0.050150078,0.416689575,0.387647927,-0.065972187,0.432377666,0.322169334,-0.07525368,0.318393111,0.551989019,-0.030440407,0.316545904,0.414027631,-0.063139379,0.324030012,0.326004863,-0.080242261,0.32600683,0.249554485,-0.086975098,0.276064217,0.573534191,-0.039651152,0.30672735,0.519420028,-0.085878357,0.337197512,0.609503329,-0.092999883,0.350314528,0.677174568,-0.085010417,0.247698382,0.621834278,-0.050446104,0.300393522,0.665604651,-0.091385849,0.325837612,0.74246347,-0.099268876,0.335546434,0.790987253,-0.095220692 +Left,0.294242561,0.885558844,7.23E-07,0.346808285,0.818651199,-0.025242465,0.378655195,0.708991051,-0.038930837,0.353309333,0.63496381,-0.052962847,0.303542882,0.608240366,-0.065318078,0.338671774,0.567548096,-0.023854142,0.361244977,0.449235409,-0.052059822,0.379157513,0.382259279,-0.068967506,0.392404348,0.316449612,-0.078185074,0.285071313,0.557161033,-0.029608974,0.272068292,0.419043511,-0.061888762,0.268679857,0.332136244,-0.07983239,0.261208504,0.254207641,-0.086395569,0.24014768,0.590001285,-0.037603755,0.258115619,0.557169437,-0.084163234,0.291628718,0.647694945,-0.091125645,0.30622226,0.714472294,-0.08146777,0.207369655,0.651554823,-0.047268249,0.246806502,0.689583898,-0.08682254,0.278317213,0.759884,-0.091041215,0.291526973,0.805252492,-0.083320267 +Left,0.285938382,0.890863419,7.10E-07,0.33669427,0.824675143,-0.028169829,0.365079135,0.714901149,-0.043153293,0.336058974,0.645371616,-0.05850314,0.285036266,0.613063157,-0.072707191,0.328203976,0.56785661,-0.025065612,0.347889215,0.448221326,-0.053008262,0.363687605,0.379646063,-0.070287719,0.375909448,0.31199947,-0.079976402,0.274991572,0.564774454,-0.029482506,0.254490316,0.427295715,-0.063116364,0.24286665,0.34058696,-0.082951948,0.228387296,0.2604644,-0.090927668,0.230153993,0.603093266,-0.036111377,0.232603177,0.556621194,-0.087234482,0.268093646,0.65247637,-0.095648512,0.287050247,0.723120272,-0.085777357,0.19672206,0.666807473,-0.04412356,0.224578351,0.687190115,-0.089464605,0.261652797,0.762730479,-0.094334759,0.282895923,0.815779984,-0.085726403 +Left,0.280596346,0.903338134,6.83E-07,0.333620965,0.83280468,-0.030211791,0.358453989,0.723613501,-0.046551045,0.317628413,0.660322249,-0.063020803,0.264918894,0.626512706,-0.078354038,0.32797581,0.578527451,-0.027954675,0.34651649,0.456654757,-0.056591224,0.359299421,0.385742247,-0.07423076,0.368345499,0.314588994,-0.084649198,0.274371803,0.575035632,-0.031960443,0.25331077,0.436468393,-0.067868061,0.235013276,0.347925663,-0.089018419,0.214908108,0.26637584,-0.097630084,0.230519339,0.612544,-0.038176849,0.223567188,0.559643209,-0.091149971,0.255454093,0.66042012,-0.098330423,0.274279326,0.731262803,-0.087010615,0.197416037,0.676162183,-0.045700271,0.211749643,0.676669836,-0.091554061,0.24428317,0.754195929,-0.093775995,0.265118182,0.807575166,-0.082957245 +Left,0.290287316,0.9104774,6.68E-07,0.341767609,0.840588272,-0.030623581,0.362378597,0.728985131,-0.045780279,0.312606543,0.669133246,-0.060723294,0.259025633,0.636029065,-0.074480988,0.33701086,0.588432133,-0.026424771,0.351134062,0.464683592,-0.054276776,0.358966947,0.390594363,-0.071180351,0.364166319,0.318241179,-0.081133701,0.281736612,0.586489797,-0.03051102,0.25873363,0.444304913,-0.065307528,0.240129232,0.355814636,-0.085823826,0.220621943,0.275322616,-0.093730249,0.236533597,0.62439996,-0.037097849,0.227698594,0.572177052,-0.090905622,0.25970462,0.673355758,-0.09944541,0.278456867,0.744547963,-0.088582195,0.202581763,0.687500715,-0.044917956,0.215961009,0.68980372,-0.092866294,0.249023527,0.769156992,-0.096542098,0.269818813,0.823451996,-0.086330339 +Left,0.324376166,0.93590492,6.15E-07,0.376980215,0.858721972,-0.026083369,0.398103654,0.736197293,-0.035816509,0.346107572,0.673215806,-0.045851938,0.293475598,0.652994573,-0.05477947,0.366376728,0.612727106,-0.013412747,0.380086601,0.486790657,-0.036728263,0.389201403,0.411000609,-0.051598925,0.395397335,0.343164802,-0.059301112,0.314873338,0.611911714,-0.017124409,0.291875988,0.462591708,-0.045325883,0.27409479,0.367352664,-0.06427782,0.256573826,0.288026661,-0.071309365,0.272932947,0.650148809,-0.023469541,0.26075682,0.595609665,-0.070199892,0.287620842,0.684947968,-0.079588711,0.304455906,0.756050289,-0.069801748,0.239347443,0.712825537,-0.030573595,0.244256467,0.69451946,-0.069264777,0.273442686,0.763176978,-0.06868618,0.292626917,0.820306718,-0.056480564 +Left,0.379494727,0.936528563,6.13E-07,0.434110433,0.866238117,-0.024370404,0.464411318,0.747184694,-0.033492826,0.424686849,0.678414524,-0.043823026,0.37480709,0.650915444,-0.05293202,0.429506212,0.616062462,-0.005844506,0.451466024,0.500974715,-0.028093804,0.46756801,0.431840032,-0.043759316,0.481068701,0.371907949,-0.052672964,0.382959366,0.609903514,-0.010749251,0.371633202,0.468589813,-0.037729893,0.365191609,0.379510969,-0.056511231,0.356291115,0.303730309,-0.064275108,0.343098462,0.642302811,-0.019035077,0.345199019,0.573837459,-0.062627487,0.373433352,0.656960428,-0.070091397,0.387933075,0.720643044,-0.061020054,0.308975369,0.700799227,-0.028457085,0.322592229,0.679825306,-0.064364947,0.348889917,0.746068001,-0.063493446,0.361271948,0.795530736,-0.052663401 +Left,0.425090998,0.929184854,5.84E-07,0.487764299,0.872682631,-0.024743404,0.523255348,0.756840348,-0.032676343,0.49224931,0.677262366,-0.041090921,0.44338423,0.635713995,-0.048421606,0.495737374,0.614122391,-0.011757991,0.519453764,0.502503514,-0.031779394,0.533442318,0.436197817,-0.044879392,0.545208395,0.370621622,-0.053218517,0.447780639,0.599657416,-0.016184488,0.444509,0.459031492,-0.041151021,0.443175256,0.371721298,-0.057756055,0.439413488,0.292071968,-0.065265298,0.404238135,0.626579165,-0.02338621,0.406639934,0.557644606,-0.068367273,0.429055959,0.657211006,-0.076373145,0.439445943,0.733167708,-0.067973495,0.368688285,0.683407784,-0.031750109,0.384973645,0.679986537,-0.073926911,0.412371188,0.759560287,-0.078344472,0.427197695,0.821013391,-0.070694573 +Left,0.449701756,0.938997984,6.89E-07,0.510230482,0.891732514,-0.025518321,0.549790323,0.781177938,-0.03689098,0.529439509,0.695617676,-0.049069058,0.482528657,0.647088289,-0.059113532,0.52577579,0.617435277,-0.015963659,0.556839943,0.506332755,-0.040635929,0.578621686,0.441515982,-0.055232823,0.59592396,0.375026494,-0.064156801,0.472658128,0.593821347,-0.021733496,0.47202915,0.460468829,-0.055033926,0.477697283,0.373768896,-0.072539538,0.478541076,0.294754177,-0.078940719,0.426253498,0.611925185,-0.030583179,0.44432959,0.565859497,-0.082835756,0.466502994,0.683669746,-0.08989761,0.474161059,0.765440583,-0.078897603,0.389623463,0.662136436,-0.040998038,0.428782761,0.696218371,-0.088845968,0.453966081,0.793199658,-0.096417181,0.464914143,0.857824147,-0.089828476 +Left,0.441550076,0.923117101,6.79E-07,0.500333846,0.878072441,-0.0267075,0.541799903,0.775881112,-0.040271111,0.525195122,0.692445219,-0.054442052,0.480325043,0.642260492,-0.066311531,0.522057056,0.609875739,-0.019667257,0.557398081,0.501926541,-0.045443412,0.581938744,0.440446913,-0.060904041,0.602018118,0.377231747,-0.069990516,0.469917595,0.582442284,-0.024487955,0.466902614,0.450612485,-0.058268771,0.468232751,0.362763435,-0.076885633,0.465705991,0.2822676,-0.084001653,0.423796028,0.59896183,-0.03196406,0.442541122,0.566950679,-0.082051598,0.46384719,0.677586913,-0.089148112,0.471319199,0.754944563,-0.078685313,0.387356937,0.645786881,-0.041255057,0.423713148,0.689874172,-0.085313529,0.447306365,0.780521274,-0.091400683,0.458481312,0.840762973,-0.084178738 +Left,0.421865463,0.918023527,6.80E-07,0.482737482,0.870795369,-0.025268421,0.524470329,0.763478875,-0.036154062,0.502645731,0.684413314,-0.047663528,0.456169099,0.640775859,-0.057170361,0.500746906,0.602100611,-0.019317601,0.533505917,0.489302665,-0.043916915,0.554588795,0.42638582,-0.058039356,0.570208073,0.360671222,-0.066312455,0.448930651,0.576889277,-0.02516127,0.450045526,0.434509099,-0.056847472,0.455179989,0.345565021,-0.074960373,0.45487839,0.262284815,-0.081869081,0.402756453,0.596216381,-0.033464644,0.418883264,0.55860883,-0.082023717,0.442319423,0.666087389,-0.090276234,0.450399727,0.740689993,-0.080778353,0.366104573,0.647301018,-0.04337889,0.400450855,0.690289736,-0.085900992,0.426059395,0.775771737,-0.092161715,0.436835378,0.830485165,-0.085471034 +Left,0.400841355,0.904285014,6.81E-07,0.461055964,0.85318327,-0.027417295,0.498741418,0.746211767,-0.04018677,0.475644141,0.666057825,-0.053661145,0.429451853,0.617760003,-0.065689355,0.473051608,0.586350799,-0.020507235,0.504140854,0.473129272,-0.046094801,0.523562074,0.403828204,-0.062059432,0.538884699,0.333859652,-0.071546465,0.423241645,0.570328593,-0.025332404,0.420649588,0.429198712,-0.057370536,0.420579016,0.335290223,-0.076494418,0.417042315,0.248314679,-0.084653802,0.378155589,0.596344829,-0.032704096,0.387091875,0.542829275,-0.08286728,0.413442552,0.649390817,-0.090791754,0.425597131,0.727432013,-0.080871366,0.340980351,0.651403546,-0.041577797,0.367215395,0.666199625,-0.086019628,0.396915942,0.750550747,-0.09039814,0.412543654,0.812483132,-0.081823833 +Left,0.374918699,0.86934042,7.14E-07,0.431249887,0.810720623,-0.026132263,0.46284014,0.697514594,-0.037855577,0.433428943,0.617026389,-0.049839199,0.38584426,0.573249459,-0.060304359,0.437423199,0.544672787,-0.022216028,0.465399414,0.426481694,-0.047584705,0.482945055,0.358078003,-0.062422551,0.495605856,0.290197402,-0.070711002,0.385297656,0.528548837,-0.027248047,0.380884826,0.383192122,-0.059030876,0.378706515,0.287053406,-0.077883415,0.372562945,0.199413657,-0.085236773,0.338513911,0.554081142,-0.034365792,0.346352011,0.505758047,-0.083505243,0.372713089,0.607640743,-0.091816314,0.385319263,0.683239102,-0.082181983,0.301583827,0.608874023,-0.042895302,0.330369592,0.637536287,-0.087663226,0.360145688,0.722434938,-0.09322758,0.376433223,0.781402111,-0.085137576 +Left,0.351716787,0.862152815,6.91E-07,0.404793322,0.795087636,-0.024461588,0.430330098,0.68937397,-0.037356071,0.399667054,0.617181361,-0.051364116,0.354603022,0.577832341,-0.0644238,0.406728506,0.540784121,-0.022559438,0.435491741,0.424010038,-0.049077723,0.454291373,0.355166078,-0.066381671,0.467875004,0.289358407,-0.076549336,0.355255634,0.532836914,-0.029504552,0.342773438,0.379189491,-0.060664266,0.33257696,0.282320082,-0.08067134,0.319727898,0.197791487,-0.089959383,0.309790343,0.568509758,-0.03833105,0.305082858,0.499828309,-0.086753197,0.336196274,0.591864347,-0.095093228,0.355099738,0.664863944,-0.08625564,0.273668915,0.631439447,-0.048129093,0.288190901,0.619854391,-0.091119222,0.321448624,0.69316572,-0.09303534,0.342620045,0.752580643,-0.082973287 +Left,0.315043598,0.870921493,6.59E-07,0.367676377,0.791762531,-0.02569958,0.391475379,0.67790097,-0.038170379,0.345928997,0.612157285,-0.051531155,0.294615537,0.584377408,-0.063893922,0.35929364,0.539530456,-0.018761829,0.381164759,0.415393353,-0.044481367,0.393799305,0.339307368,-0.06245571,0.402738094,0.27043128,-0.073070861,0.306062549,0.538894117,-0.024854932,0.28472501,0.38455978,-0.053660594,0.267772406,0.286037058,-0.073745683,0.250411451,0.203138143,-0.083271682,0.263208449,0.581082404,-0.03323241,0.255685031,0.508282721,-0.077617683,0.285334736,0.588723719,-0.084506616,0.303231001,0.656305134,-0.07539808,0.230651379,0.649139762,-0.042845491,0.236629963,0.622588873,-0.079900362,0.265173286,0.683737278,-0.077776752,0.282844335,0.73808831,-0.065730125 +Left,0.277047962,0.921472311,6.71E-07,0.322589219,0.834921598,-0.031500578,0.331090569,0.706507027,-0.045693893,0.271253765,0.649125993,-0.05962164,0.212205067,0.626889348,-0.071785882,0.298490942,0.568933368,-0.023094587,0.303916723,0.437611222,-0.050207209,0.306886286,0.361333638,-0.067624636,0.305608362,0.288361728,-0.078197502,0.240125015,0.582030892,-0.027563991,0.200764105,0.436240643,-0.061443754,0.172434181,0.345526308,-0.083034657,0.144747525,0.265506327,-0.092194438,0.195945367,0.633217037,-0.03495913,0.183671147,0.576367855,-0.088048108,0.224641174,0.666145861,-0.097814046,0.249506772,0.733128488,-0.08815828,0.164406925,0.705346763,-0.043824106,0.177523851,0.696869254,-0.090969093,0.219133541,0.764588714,-0.094754271,0.246424302,0.81445986,-0.084907845 +Left,0.248027235,0.921516895,6.71E-07,0.291168779,0.830054283,-0.034684684,0.291688502,0.697597861,-0.050104827,0.224639401,0.643558621,-0.064707249,0.162460476,0.62369591,-0.077212855,0.258694172,0.567765355,-0.026599772,0.255119979,0.426932931,-0.055252232,0.252492368,0.347222805,-0.072523758,0.245353058,0.270748883,-0.082962625,0.199033737,0.590424359,-0.030306652,0.14977634,0.445840538,-0.066985182,0.113651752,0.359836578,-0.088916071,0.078398347,0.282673299,-0.09760993,0.155458733,0.648280859,-0.0372166,0.137272626,0.592940927,-0.095313497,0.183635905,0.684924901,-0.104452342,0.21184957,0.748333156,-0.092600495,0.125825018,0.723876178,-0.045553785,0.134879023,0.70807749,-0.096889228,0.179817528,0.772921562,-0.100091703,0.209057152,0.818162501,-0.088715211 +Left,0.216105536,0.965600491,6.96E-07,0.263508201,0.872282207,-0.037879035,0.265556872,0.74030757,-0.054917436,0.195243418,0.68451184,-0.070133261,0.131354868,0.661499619,-0.083555117,0.228637174,0.605000734,-0.031050917,0.225659698,0.464974642,-0.058532368,0.220135123,0.383777648,-0.07537239,0.212101296,0.304328442,-0.086640388,0.167505354,0.624794602,-0.033374496,0.120489284,0.476029813,-0.068685681,0.085083559,0.386938572,-0.090238757,0.050696328,0.309207499,-0.099764228,0.124434821,0.68422085,-0.038670056,0.096500866,0.615001082,-0.097184628,0.141218483,0.704943717,-0.106644303,0.170533344,0.773867369,-0.095874265,0.097745799,0.764929652,-0.045464177,0.101612441,0.742780924,-0.100527793,0.146673948,0.811365426,-0.105452172,0.177957833,0.865017354,-0.095196396 +Left,0.18261756,0.968729079,7.52E-07,0.242630586,0.897149026,-0.032924857,0.278921723,0.771080077,-0.049036577,0.232410342,0.688283563,-0.064498745,0.171678364,0.649025857,-0.078727655,0.252452195,0.606656432,-0.026237413,0.278611064,0.48156476,-0.055214666,0.29459703,0.408867627,-0.073256485,0.305376858,0.334950417,-0.083770774,0.191478029,0.589678943,-0.030807551,0.177093849,0.435111344,-0.066165879,0.162700683,0.338348597,-0.087572761,0.144279748,0.246433705,-0.095560893,0.139774054,0.622730613,-0.03798398,0.140749454,0.585371435,-0.09360148,0.168812126,0.697527051,-0.103702396,0.182536036,0.771325171,-0.093121722,0.098322093,0.686809659,-0.046580624,0.117961802,0.718105197,-0.095951974,0.150972813,0.809074998,-0.100126199,0.17160435,0.866103828,-0.089512661 +Left,0.178865075,0.946507215,7.56E-07,0.240683764,0.881519318,-0.028911816,0.278362751,0.764142334,-0.043927766,0.237756044,0.676080227,-0.05968485,0.179964051,0.627987683,-0.074055165,0.258912951,0.60330981,-0.023679154,0.28934744,0.477428198,-0.053604618,0.309118509,0.407204479,-0.071419738,0.32345432,0.335010499,-0.081500962,0.198214471,0.579820275,-0.030085713,0.190295622,0.421854854,-0.068077728,0.182129592,0.322307169,-0.089834988,0.169058263,0.228182763,-0.097459808,0.14475432,0.604196966,-0.038856842,0.1459371,0.561534405,-0.09666805,0.17345576,0.680947125,-0.105914816,0.187078461,0.75993526,-0.09391553,0.100181609,0.661123753,-0.048880007,0.12404681,0.696537614,-0.09954676,0.155221939,0.793648481,-0.104294136,0.174499393,0.853880167,-0.093760982 +Left,0.186400995,0.944235981,7.44E-07,0.247866377,0.883113444,-0.02884952,0.286263585,0.765770733,-0.043448318,0.253018439,0.678998828,-0.058804233,0.197375342,0.631075144,-0.073173858,0.264349073,0.613370895,-0.023266736,0.29793328,0.49099797,-0.052129,0.320103735,0.421511531,-0.069869377,0.337944329,0.351227492,-0.080041893,0.206587434,0.589508653,-0.029236853,0.202627108,0.432419002,-0.065942712,0.198458925,0.331312478,-0.087454103,0.189325824,0.235792398,-0.095645323,0.153594553,0.612029195,-0.037552994,0.159145623,0.554092407,-0.095173836,0.186156154,0.674706161,-0.104557537,0.198746547,0.757161736,-0.093086801,0.107956238,0.66673398,-0.046950322,0.133846045,0.689810574,-0.098529138,0.165936589,0.78756547,-0.103536464,0.184591517,0.853179634,-0.093378253 +Left,0.199556187,0.931178331,7.48E-07,0.258164734,0.869677782,-0.026846785,0.297966599,0.749463618,-0.0391775,0.272367686,0.662918627,-0.052036665,0.223110199,0.611460745,-0.063812241,0.272246212,0.594057083,-0.019605001,0.306053907,0.474524021,-0.045124896,0.328528732,0.407753408,-0.060209092,0.347333968,0.342046678,-0.068655074,0.214337155,0.575376213,-0.024900669,0.206355199,0.421707988,-0.058688201,0.204324052,0.322691292,-0.078204051,0.198153242,0.232641399,-0.085242629,0.161879927,0.600411296,-0.032582663,0.171227261,0.545991302,-0.087847754,0.202929318,0.660451531,-0.099217668,0.218160227,0.742582142,-0.089995541,0.118540518,0.655623138,-0.04117389,0.150114536,0.692047775,-0.093546189,0.184138849,0.792369723,-0.102588087,0.202949986,0.859430015,-0.095481448 +Left,0.218902826,0.927710593,7.44E-07,0.277659029,0.866441131,-0.026141137,0.318198711,0.747900367,-0.038129468,0.297933102,0.656061769,-0.050949525,0.250342846,0.604200006,-0.062332336,0.294400513,0.585523725,-0.016996108,0.332170814,0.468406081,-0.043321293,0.356512904,0.400065243,-0.059427172,0.376137555,0.332651526,-0.06826026,0.237437904,0.561233997,-0.022347622,0.234722957,0.408976793,-0.056076199,0.234507978,0.308777183,-0.075332955,0.230071738,0.219925314,-0.08173871,0.185630053,0.582252264,-0.030395333,0.201354116,0.533349097,-0.083943352,0.230650082,0.646264076,-0.095014289,0.244545266,0.728819072,-0.0854396,0.143972293,0.634252429,-0.039583385,0.178449824,0.677876115,-0.088606879,0.210393742,0.774247169,-0.097252987,0.228941798,0.837342322,-0.090030409 +Left,0.249738723,0.932714581,7.48E-07,0.307097435,0.866095245,-0.026359305,0.344914228,0.743522286,-0.039650183,0.319251776,0.657188892,-0.054188211,0.268666685,0.607688308,-0.067495547,0.317260057,0.581505477,-0.019688215,0.350565612,0.459743351,-0.048704363,0.373218894,0.388318837,-0.067023814,0.391485691,0.317248881,-0.077706657,0.258637935,0.564311862,-0.026740573,0.250387251,0.409032732,-0.064291239,0.248705432,0.30894348,-0.086205468,0.242820695,0.217075258,-0.094660908,0.206292182,0.592360318,-0.036257081,0.214885578,0.532636523,-0.094633862,0.248499423,0.64839071,-0.10588488,0.265790552,0.732064605,-0.096109614,0.163979158,0.652026653,-0.046742346,0.197264493,0.686644793,-0.100374527,0.232873067,0.786938131,-0.108646013,0.253508031,0.85340035,-0.100817665 +Left,0.292495549,0.987636387,7.54E-07,0.346853822,0.915415823,-0.029217325,0.377233207,0.793605387,-0.044907212,0.34557417,0.715237916,-0.061268494,0.289578795,0.680694044,-0.076546989,0.33838883,0.63087523,-0.024909355,0.36460048,0.505506217,-0.055527501,0.386186808,0.43293947,-0.076158904,0.404284954,0.360976964,-0.088090844,0.281099558,0.620618284,-0.030835239,0.268525153,0.464526176,-0.0669147,0.260837525,0.359581053,-0.089795098,0.249967307,0.264301538,-0.099993475,0.230465695,0.657246828,-0.039188046,0.232899517,0.593341827,-0.094805539,0.268816799,0.702861309,-0.105110914,0.28927049,0.786199868,-0.095451362,0.19033137,0.725289464,-0.048828792,0.21759662,0.738186419,-0.098957531,0.258199543,0.827510953,-0.103817157,0.283134252,0.893491328,-0.094082668 +Left,0.301515847,0.987507701,7.68E-07,0.356707871,0.917325377,-0.03126961,0.38489598,0.796299577,-0.047704633,0.346111,0.726597667,-0.06433136,0.288462162,0.69187814,-0.080113918,0.349161476,0.63852936,-0.026378267,0.372190058,0.514374673,-0.055640433,0.389674783,0.441753447,-0.074069165,0.404368103,0.369912028,-0.084677197,0.291661561,0.634777546,-0.031720728,0.272614509,0.48270002,-0.068065688,0.259809107,0.383928388,-0.090117492,0.244107664,0.291233033,-0.099219464,0.242790043,0.676430464,-0.039509997,0.239221275,0.62036258,-0.098045535,0.27531752,0.732487977,-0.108206034,0.295459569,0.811281741,-0.097404718,0.203942627,0.747406125,-0.04833189,0.22429058,0.757542193,-0.101570822,0.263481408,0.849290967,-0.105974846,0.288181931,0.914457917,-0.095217869 diff --git a/data/pointing.csv b/data/pointing.csv new file mode 100644 index 0000000..30035fc --- /dev/null +++ b/data/pointing.csv @@ -0,0 +1,241 @@ +handedness,0_x,0_y,0_z,1_x,1_y,1_z,2_x,2_y,2_z,3_x,3_y,3_z,4_x,4_y,4_z,5_x,5_y,5_z,6_x,6_y,6_z,7_x,7_y,7_z,8_x,8_y,8_z,9_x,9_y,9_z,10_x,10_y,10_z,11_x,11_y,11_z,12_x,12_y,12_z,13_x,13_y,13_z,14_x,14_y,14_z,15_x,15_y,15_z,16_x,16_y,16_z,17_x,17_y,17_z,18_x,18_y,18_z,19_x,19_y,19_z,20_x,20_y,20_z +Right,0.77898705,0.677761316,-4.04E-08,0.730218709,0.643785298,-0.03294732,0.698117435,0.575387537,-0.054957293,0.71934557,0.509938359,-0.075314626,0.75461787,0.462029517,-0.094117209,0.712208152,0.412392616,-0.033831112,0.704208314,0.31046617,-0.063732669,0.702455521,0.248375669,-0.083553828,0.703772843,0.18707034,-0.097951792,0.760269046,0.407358348,-0.036017559,0.773465097,0.35063526,-0.080727659,0.770597398,0.453068763,-0.091581538,0.765812755,0.52246356,-0.088219635,0.802847028,0.428771108,-0.04216281,0.816551685,0.391444027,-0.084458664,0.804252088,0.492800236,-0.075899817,0.793766797,0.555096269,-0.0586798,0.839634657,0.469039142,-0.05123686,0.849389255,0.441538513,-0.079528384,0.833657265,0.510842323,-0.071477458,0.820117176,0.555642724,-0.058009878 +Right,0.787029743,0.667423606,1.46E-08,0.738558948,0.630096436,-0.033559438,0.708662987,0.559317291,-0.055514209,0.735294878,0.49726218,-0.075601719,0.772456348,0.453798473,-0.094225995,0.723020315,0.402261436,-0.034816448,0.715234637,0.301492751,-0.06740246,0.715610862,0.237219959,-0.090479538,0.718762934,0.173901409,-0.107100412,0.771701694,0.40054819,-0.036477525,0.787611544,0.337395847,-0.082933389,0.786073327,0.437150806,-0.095708057,0.780399859,0.506612301,-0.093804292,0.814584017,0.423315883,-0.042190075,0.82954061,0.381141573,-0.086305507,0.818911493,0.479887694,-0.078444883,0.808621466,0.543106914,-0.061211925,0.850676417,0.464001656,-0.050818302,0.864520073,0.427189082,-0.0804957,0.849924684,0.49445346,-0.072354324,0.835967779,0.54115212,-0.058416583 +Right,0.788588166,0.651808083,1.93E-08,0.739703894,0.61377573,-0.031808656,0.708679736,0.540820718,-0.052753039,0.733101726,0.480258167,-0.072213054,0.772039235,0.44692415,-0.090537667,0.728855729,0.387599736,-0.032473739,0.724692047,0.285276115,-0.061999466,0.725121439,0.223294929,-0.082281724,0.727444351,0.162913293,-0.097023249,0.776839077,0.391078562,-0.034846742,0.791122794,0.326253355,-0.079267323,0.785979807,0.426724672,-0.090613797,0.779571474,0.494709551,-0.087524451,0.818597972,0.417032361,-0.040982284,0.831827998,0.368577808,-0.083911091,0.817836046,0.468687862,-0.075904787,0.806952894,0.53042233,-0.058328893,0.854098201,0.45942083,-0.049687661,0.864064157,0.417787731,-0.077867456,0.84845531,0.483414114,-0.068760417,0.836196065,0.527660429,-0.054210857 +Right,0.7801162,0.628094673,-7.11E-08,0.734335423,0.589370251,-0.028443368,0.700848699,0.51379168,-0.046973675,0.711968243,0.446220577,-0.064727858,0.749302149,0.411611676,-0.081081398,0.731836498,0.361048937,-0.025753617,0.728034616,0.259413719,-0.054135963,0.726596594,0.197004795,-0.072769649,0.727930486,0.136387646,-0.086273484,0.776106179,0.369524091,-0.029511211,0.784162283,0.293138683,-0.071613722,0.770547032,0.389890105,-0.080338337,0.761452913,0.455952317,-0.075161777,0.814925253,0.399358749,-0.037187185,0.82012701,0.345845997,-0.078002937,0.799184918,0.444354445,-0.068045154,0.788580656,0.502281129,-0.049125016,0.848808587,0.44588387,-0.047350626,0.849473715,0.402555287,-0.072947599,0.828233838,0.466748804,-0.062812477,0.816727102,0.507907271,-0.048048619 +Right,0.778961301,0.626699328,-1.45E-07,0.73386699,0.584062457,-0.027821042,0.699243128,0.508580446,-0.047552768,0.70269376,0.438239127,-0.066984802,0.737342656,0.398431987,-0.084857985,0.7376073,0.350138336,-0.023299288,0.731359065,0.252213657,-0.051066302,0.726171196,0.191044614,-0.068299234,0.725847006,0.134900779,-0.080640964,0.779206336,0.359712362,-0.027680958,0.778667569,0.28587091,-0.068951316,0.759246767,0.384507686,-0.075636595,0.749916434,0.450985163,-0.068957373,0.816258252,0.392189741,-0.036413588,0.811563909,0.342532367,-0.077548139,0.788516939,0.440565377,-0.066881604,0.780345917,0.499815583,-0.047416966,0.84877336,0.442474842,-0.047650039,0.840149641,0.399909735,-0.074657634,0.816087008,0.464430511,-0.065438345,0.805412292,0.509132922,-0.051122289 +Right,0.782322943,0.640629113,-2.09E-07,0.738336623,0.594195843,-0.028093994,0.702890813,0.51981461,-0.050046582,0.69526583,0.452945232,-0.072319403,0.724655032,0.40934813,-0.093403757,0.750517905,0.354175121,-0.022225004,0.742707849,0.259665042,-0.050930381,0.734976709,0.197571471,-0.068645664,0.733122468,0.143524468,-0.081150986,0.791857123,0.361560464,-0.02663647,0.776227951,0.297921598,-0.06734962,0.748925209,0.396696448,-0.072596706,0.737471581,0.464211345,-0.065264881,0.828245997,0.395143479,-0.035961032,0.804799616,0.358673692,-0.076266415,0.777211905,0.454146117,-0.06497854,0.768692851,0.515588462,-0.045765102,0.859032035,0.448282689,-0.048087198,0.831589818,0.422762722,-0.075030491,0.803792596,0.485911191,-0.066904731,0.794238925,0.531671822,-0.05352062 +Right,0.779940367,0.64734441,-2.98E-07,0.739203215,0.595086217,-0.023295537,0.705620944,0.512905896,-0.042349711,0.694340289,0.44591549,-0.062405139,0.722197473,0.409105897,-0.081397891,0.766972244,0.35368979,-0.016571447,0.756910443,0.262331009,-0.044202521,0.74737829,0.200520337,-0.061585825,0.742700696,0.146010816,-0.073937729,0.806030691,0.363395005,-0.021916118,0.778224289,0.304632813,-0.059864793,0.747969091,0.397344768,-0.064321324,0.737982213,0.458844751,-0.057179507,0.838123381,0.398432016,-0.031913966,0.798633575,0.368941009,-0.068338796,0.770262241,0.458631039,-0.056542035,0.763838649,0.514495492,-0.038180981,0.862265527,0.452061236,-0.044730373,0.821183026,0.438032776,-0.068309724,0.793932617,0.497245163,-0.060540315,0.788461506,0.536422908,-0.048170533 +Right,0.784862518,0.646452129,-2.92E-07,0.744162977,0.593140066,-0.022290332,0.711263478,0.512487769,-0.040781815,0.703964651,0.445483416,-0.060376167,0.731467247,0.412355572,-0.079046935,0.773497999,0.356918454,-0.016362874,0.763663411,0.264071465,-0.043005381,0.755455256,0.201493859,-0.059739303,0.751946807,0.146355659,-0.071854658,0.812290609,0.366061181,-0.021931905,0.785945296,0.305644423,-0.05946615,0.755425513,0.39567402,-0.064269677,0.744322658,0.457316428,-0.057494998,0.844399691,0.400029093,-0.03188663,0.80725199,0.36965391,-0.067718931,0.779724002,0.457090706,-0.056693118,0.773185194,0.513932168,-0.039055634,0.869166553,0.452801794,-0.044549044,0.828821778,0.438748032,-0.067708559,0.802544415,0.497211099,-0.060467537,0.798135698,0.537288547,-0.048628848 +Right,0.800435901,0.655562103,-1.29E-07,0.754885018,0.611362278,-0.029548755,0.719081998,0.540804982,-0.050822031,0.720494688,0.471102297,-0.071491033,0.755675197,0.426962614,-0.090671577,0.751614273,0.384269357,-0.026191164,0.745468199,0.284380257,-0.057030044,0.741500437,0.223163128,-0.076559819,0.742610335,0.164968252,-0.090258546,0.795610964,0.390854001,-0.02997669,0.796517551,0.311834306,-0.072636142,0.780106843,0.411062032,-0.080032349,0.772341073,0.477163255,-0.07387659,0.834990323,0.42269969,-0.038331084,0.832685113,0.368170857,-0.081030138,0.809528708,0.466880262,-0.070286304,0.800101221,0.526382506,-0.050407488,0.869068503,0.473539531,-0.049224105,0.862435341,0.428264827,-0.077521965,0.838107467,0.493264973,-0.068156108,0.825772345,0.539093494,-0.053392384 +Right,0.802301168,0.660411954,-7.39E-08,0.754474103,0.619656801,-0.028412163,0.718690932,0.549298346,-0.04844185,0.730219364,0.483532488,-0.067675158,0.76994288,0.445494622,-0.085715935,0.750386119,0.398483515,-0.027663747,0.744436562,0.298276246,-0.057969134,0.741239846,0.236326918,-0.079089336,0.741658926,0.175983012,-0.094660088,0.795399547,0.404583752,-0.031833339,0.800335824,0.324837387,-0.073925048,0.788695037,0.419243366,-0.083983116,0.781072676,0.487255007,-0.080754168,0.835395873,0.43414107,-0.039943483,0.839760125,0.371818721,-0.080582686,0.819610834,0.469252765,-0.070876651,0.809218347,0.53260237,-0.052879546,0.869966388,0.48150298,-0.050601907,0.868860602,0.437299937,-0.077752307,0.847232759,0.501263857,-0.068782173,0.835579693,0.547002077,-0.054988164 +Right,0.802927971,0.658989429,-4.04E-08,0.755949259,0.621204495,-0.030201362,0.721078396,0.553943634,-0.050892606,0.736689091,0.491131902,-0.070405193,0.775752008,0.453421056,-0.088501781,0.747172654,0.399361223,-0.029132694,0.7407974,0.30132556,-0.058832552,0.738692999,0.240133733,-0.079482965,0.739774346,0.180303246,-0.094702244,0.793660462,0.402734011,-0.03220797,0.800778806,0.332508415,-0.074305542,0.79161793,0.428355485,-0.084787063,0.784959435,0.495472252,-0.081898578,0.834555387,0.429971069,-0.039247468,0.842745185,0.376768768,-0.080123335,0.824097693,0.474730372,-0.071406133,0.812646151,0.536953747,-0.054127969,0.869706452,0.474644929,-0.048906818,0.873204112,0.436786532,-0.076140799,0.852579415,0.500969172,-0.06770502,0.83926481,0.544441879,-0.054240257 +Right,0.803743362,0.654984593,-8.42E-09,0.756366014,0.621978521,-0.03175899,0.725352824,0.557536304,-0.052994911,0.749166787,0.498565257,-0.072226837,0.784420073,0.456676006,-0.090123817,0.739370346,0.402522922,-0.033974465,0.732532322,0.306647182,-0.064885303,0.733355284,0.247097492,-0.086477548,0.736507058,0.188667744,-0.10200455,0.787349343,0.400014162,-0.036027789,0.80205816,0.338416815,-0.079971626,0.800827503,0.438420415,-0.091381982,0.795606256,0.506408155,-0.088930622,0.829732537,0.422126889,-0.041840024,0.844338298,0.379276603,-0.084164113,0.832890749,0.47884053,-0.075925834,0.821744442,0.541297078,-0.058938324,0.865959167,0.4614802,-0.050240189,0.876362979,0.429531395,-0.079177707,0.861485183,0.498767048,-0.070872255,0.847773075,0.544051528,-0.057052441 +Right,0.802350581,0.645615458,6.71E-08,0.757011592,0.615688503,-0.03480956,0.731323838,0.557610512,-0.057785667,0.758243084,0.499962121,-0.078233361,0.791024983,0.45325762,-0.097058363,0.736528039,0.40121603,-0.037352305,0.728846669,0.308751762,-0.069809422,0.729329884,0.247583598,-0.092394829,0.732090652,0.189675078,-0.108279221,0.783611178,0.393656671,-0.038185034,0.799170315,0.332486957,-0.084006004,0.801746428,0.424427271,-0.096529722,0.797701836,0.491469771,-0.094467141,0.825649261,0.412377894,-0.043058384,0.841626346,0.378180534,-0.086191706,0.834959745,0.470267534,-0.079255179,0.824809611,0.530695915,-0.062943846,0.860960126,0.450609446,-0.050989464,0.875318527,0.421086609,-0.080339782,0.863356829,0.485724866,-0.073493034,0.848689914,0.531781137,-0.060593247 +Right,0.797266483,0.623754561,9.94E-08,0.75283426,0.597035289,-0.03671648,0.730132163,0.538776159,-0.060003884,0.758686304,0.478244483,-0.080279864,0.789667249,0.430850178,-0.098692589,0.73112011,0.388365299,-0.03875665,0.723527193,0.293153763,-0.07015539,0.724194348,0.231820896,-0.091649532,0.727126539,0.172380194,-0.106901571,0.777431667,0.379672945,-0.038175847,0.795106649,0.313443244,-0.083735473,0.800204456,0.403121114,-0.095958672,0.797121108,0.470852494,-0.093659021,0.818950236,0.395800173,-0.041612558,0.836637974,0.352105409,-0.084954344,0.832433701,0.444396794,-0.077735037,0.823011577,0.507310152,-0.060982268,0.853985429,0.430910558,-0.048194833,0.870105863,0.394149274,-0.078077346,0.860013127,0.458068401,-0.071575709,0.845399618,0.50623852,-0.058770526 +Right,0.794056594,0.622226954,5.86E-08,0.748177469,0.592812479,-0.033988103,0.720900655,0.530702055,-0.055709079,0.746636629,0.468004078,-0.074939646,0.779341161,0.419921041,-0.092484675,0.726516843,0.378849447,-0.035036031,0.720345318,0.28246057,-0.065380782,0.721642077,0.222538635,-0.08688949,0.724449754,0.164029345,-0.102306336,0.772784054,0.373663992,-0.035393652,0.78938657,0.310972571,-0.079026721,0.791456878,0.400453061,-0.091070116,0.786819041,0.464765519,-0.089327917,0.814109147,0.392103791,-0.039655406,0.829018056,0.34948945,-0.08087372,0.822602153,0.440376401,-0.073442318,0.813608348,0.499732077,-0.057234984,0.849060953,0.428907543,-0.04691264,0.862572372,0.388028055,-0.075002111,0.851593494,0.451254129,-0.067542695,0.838454723,0.49785769,-0.054446615 +Right,0.79346776,0.624703228,-2.83E-09,0.746889472,0.59028846,-0.030159947,0.715903401,0.520851254,-0.049947102,0.737559617,0.459361523,-0.06850566,0.773768485,0.4191643,-0.086038247,0.731616735,0.368906885,-0.030215962,0.72875917,0.270499408,-0.058410197,0.730318546,0.209211141,-0.077892371,0.732833028,0.1491822,-0.092144765,0.777751684,0.368184924,-0.032716226,0.790527344,0.306964606,-0.074809052,0.785952985,0.403473735,-0.085637823,0.779396534,0.469373792,-0.082890272,0.818395853,0.391099989,-0.038877949,0.829970598,0.344813824,-0.079317048,0.81774509,0.441719413,-0.071511626,0.807566583,0.501605511,-0.054941129,0.853515685,0.431197912,-0.047563929,0.861190915,0.390290529,-0.07439363,0.84694618,0.45448038,-0.065874629,0.835386455,0.497895628,-0.052228779 +Right,0.791543901,0.625270188,-3.57E-08,0.744116008,0.589772522,-0.030210193,0.712078452,0.518111467,-0.049611136,0.732026339,0.453412056,-0.067812413,0.769385338,0.411260724,-0.084835477,0.733032525,0.365213186,-0.028009839,0.731479287,0.267044246,-0.055310607,0.732551932,0.206512988,-0.074517652,0.73514992,0.146783859,-0.089011975,0.779110134,0.367671013,-0.030447375,0.790159881,0.304354012,-0.0712393,0.782851338,0.398306608,-0.081853606,0.775603354,0.465028107,-0.079430625,0.819472432,0.393211782,-0.03667254,0.829637229,0.340872884,-0.076291367,0.8135432,0.438482523,-0.067991398,0.80253607,0.501286209,-0.051503561,0.8543275,0.435769886,-0.045490786,0.85835129,0.396737635,-0.072551332,0.840860009,0.462315857,-0.064487509,0.82907033,0.507079184,-0.051381428 +Right,0.78887862,0.638491929,-5.38E-08,0.741283476,0.602954805,-0.028715624,0.705490768,0.530238628,-0.047115903,0.721798539,0.463479578,-0.064553171,0.760293365,0.422155231,-0.080686145,0.730776846,0.375993222,-0.025650673,0.72680378,0.276740283,-0.052387349,0.725611329,0.214852437,-0.07109341,0.726707399,0.154052049,-0.085296936,0.775542974,0.380188733,-0.029149963,0.781299233,0.30484271,-0.069622427,0.770782888,0.396427929,-0.07989233,0.763495922,0.465512872,-0.076802447,0.815326333,0.407010704,-0.03642289,0.820578039,0.346710116,-0.0755243,0.803250492,0.44436866,-0.066866517,0.794368565,0.507902205,-0.049778841,0.850679517,0.450903177,-0.046235796,0.850952387,0.405208319,-0.072042331,0.832546413,0.470329165,-0.063312165,0.823107481,0.515659213,-0.049893413 +Right,0.786983788,0.657296956,-1.34E-07,0.739142656,0.611090004,-0.027761647,0.702542007,0.534532249,-0.047480594,0.702326715,0.459941626,-0.067166805,0.736178219,0.4143188,-0.085452095,0.740387678,0.386132419,-0.021156708,0.73037684,0.285533607,-0.048509564,0.723103702,0.221806794,-0.065610029,0.720630288,0.164443851,-0.077947818,0.780821204,0.391997695,-0.025824323,0.774802089,0.310408771,-0.067596987,0.754972577,0.404424667,-0.075284451,0.745711148,0.475267351,-0.069121748,0.817874193,0.421676248,-0.034958895,0.808176219,0.358552456,-0.076855637,0.785295963,0.452890575,-0.067754999,0.77787751,0.51764369,-0.048998028,0.852021694,0.469868511,-0.046499949,0.837565362,0.421269745,-0.074375384,0.814759076,0.483355701,-0.066227593,0.806249857,0.532990217,-0.0524491 +Right,0.783027589,0.653911591,-2.03E-07,0.737829387,0.608839691,-0.026970092,0.700470269,0.530084848,-0.046726547,0.693227232,0.454731852,-0.066719241,0.722399414,0.406486183,-0.085322917,0.742441654,0.376409322,-0.020197639,0.73242563,0.276908576,-0.048208244,0.723009229,0.214004338,-0.065123849,0.719887078,0.1574817,-0.077218518,0.781461895,0.380858183,-0.024464715,0.770072401,0.304189891,-0.065082759,0.746755004,0.399862528,-0.070895009,0.737532198,0.465526491,-0.06385576,0.817463517,0.409089148,-0.03344303,0.800337553,0.35692209,-0.073903292,0.77619791,0.452314347,-0.063211411,0.77017498,0.513492286,-0.044081945,0.849989295,0.456397593,-0.045025609,0.82660538,0.419425666,-0.071992889,0.802564621,0.48351258,-0.06420517,0.796292007,0.530290186,-0.051093016 +Right,0.78013587,0.647483826,-2.48E-07,0.735508144,0.597943962,-0.022983843,0.700587988,0.515992165,-0.040840339,0.69011122,0.444738269,-0.060010239,0.714864194,0.394820482,-0.077994987,0.749298036,0.360947102,-0.013218211,0.739446402,0.264357656,-0.039064638,0.729411364,0.202279404,-0.055185296,0.726139188,0.147155046,-0.066957764,0.785542488,0.367184639,-0.019004555,0.765678406,0.293071359,-0.057765797,0.739663303,0.382764101,-0.06361597,0.730897546,0.446344525,-0.057220522,0.818979383,0.395412773,-0.029506708,0.791996181,0.347453296,-0.069060422,0.766222954,0.439322144,-0.05926897,0.760338128,0.500451148,-0.041183092,0.848466456,0.442013502,-0.042333666,0.816629708,0.404222161,-0.069118761,0.791552663,0.46860975,-0.062037118,0.786068559,0.517645955,-0.049646951 +Right,0.780010998,0.646617353,-2.87E-07,0.736772597,0.594690025,-0.021839892,0.702319205,0.51092881,-0.038779289,0.692361474,0.440645784,-0.057314571,0.715687215,0.391465783,-0.074506842,0.753594398,0.356344372,-0.010782694,0.744543493,0.261689007,-0.035675559,0.733933508,0.201270953,-0.050644878,0.728821576,0.14847365,-0.061412897,0.789201021,0.362621307,-0.016829269,0.76613754,0.2922616,-0.054308731,0.739911914,0.383892775,-0.058898337,0.731982231,0.447116077,-0.051659748,0.821485996,0.390541941,-0.027680254,0.790234387,0.346771181,-0.06595923,0.764406919,0.439010799,-0.055510864,0.759053051,0.500265062,-0.037294392,0.849103749,0.436857283,-0.040936764,0.813467205,0.406829149,-0.066702284,0.787818313,0.470306933,-0.059700895,0.782686234,0.517553091,-0.047523823 +Right,0.771121621,0.644642949,-3.35E-07,0.730421901,0.58800602,-0.017117441,0.699600101,0.505018115,-0.031909391,0.689135194,0.442351282,-0.048997808,0.707816064,0.39574185,-0.064927541,0.760652721,0.350767463,-0.007537934,0.750753641,0.257932454,-0.031099884,0.739598691,0.1968548,-0.045241959,0.734058917,0.145017058,-0.055346701,0.795326173,0.359703451,-0.01504566,0.762500405,0.29417187,-0.050379131,0.731113732,0.381259948,-0.054741398,0.723658502,0.441414326,-0.047714934,0.823803544,0.389801174,-0.026811147,0.778289676,0.353838295,-0.061895516,0.750481129,0.439975262,-0.051018305,0.747435749,0.495133311,-0.033399951,0.844484687,0.438050121,-0.040804926,0.79760015,0.414489299,-0.063396335,0.770684779,0.472112179,-0.055480711,0.767144203,0.513790071,-0.043091957 +Right,0.771690428,0.648369193,-3.46E-07,0.729501605,0.586253643,-0.015550854,0.701051295,0.506825328,-0.030654768,0.689733863,0.447598547,-0.048039202,0.70287466,0.402309209,-0.064481854,0.76560396,0.350460291,-0.00987783,0.755581856,0.260245413,-0.033929113,0.743243158,0.198695734,-0.04919979,0.735325277,0.146563262,-0.060149454,0.799793422,0.361738443,-0.018144287,0.757489741,0.30573231,-0.052560866,0.723838747,0.39038834,-0.05711725,0.717470586,0.44522503,-0.051225323,0.825179875,0.395007551,-0.030144896,0.770193875,0.364338815,-0.06303063,0.743154466,0.448433608,-0.051326782,0.743742764,0.499313474,-0.03449548,0.840212464,0.445652336,-0.044410322,0.786038041,0.429254025,-0.065882623,0.762138486,0.485987246,-0.057326533,0.764600754,0.524274468,-0.044775859 +Right,0.777715802,0.646517754,-3.43E-07,0.733844161,0.579333305,-0.015877116,0.706936598,0.506709218,-0.033247892,0.692718983,0.450030237,-0.05294941,0.703064322,0.401812047,-0.071670704,0.774981618,0.347651899,-0.011284897,0.761241674,0.259085834,-0.035398055,0.747443974,0.197193459,-0.050648496,0.738606393,0.145076841,-0.061701186,0.807503223,0.359946489,-0.01963672,0.758377194,0.310147554,-0.053847931,0.725609481,0.396393895,-0.05859692,0.720280528,0.451502502,-0.053260259,0.829730272,0.39402017,-0.031569924,0.767936587,0.370931864,-0.064150155,0.742322206,0.455138087,-0.052466031,0.743633628,0.505858779,-0.036098402,0.839666307,0.444632143,-0.045811836,0.781552911,0.434257329,-0.067668997,0.758410811,0.492504805,-0.059632588,0.761016548,0.531665564,-0.04751448 +Right,0.780567825,0.643811166,-3.25E-07,0.735262632,0.574539423,-0.016472595,0.708872974,0.505172253,-0.03467162,0.694356859,0.451362818,-0.054873623,0.701137185,0.405308902,-0.074277736,0.778251767,0.345236063,-0.013720753,0.762296855,0.259431005,-0.038768612,0.748562455,0.197456017,-0.055348814,0.73950392,0.145316273,-0.067238115,0.809458077,0.359963357,-0.021916728,0.757366955,0.311054826,-0.056329738,0.72281158,0.389856309,-0.062070172,0.71429801,0.442497939,-0.05784072,0.829102755,0.395179033,-0.033562742,0.763919413,0.376383334,-0.065725967,0.739318013,0.455913782,-0.0549335,0.739759207,0.505791962,-0.03955121,0.835852742,0.445666522,-0.047594197,0.774923503,0.439452529,-0.069120824,0.753854394,0.495511949,-0.061429862,0.756999433,0.533183217,-0.049746249 +Right,0.779955566,0.646977782,-3.24E-07,0.731841981,0.576279283,-0.014490467,0.708067358,0.512321055,-0.033195194,0.69370532,0.464653552,-0.05433109,0.690823615,0.411931306,-0.074896932,0.778509915,0.351838499,-0.015675446,0.758505225,0.265483379,-0.040482849,0.742550015,0.201024666,-0.056604709,0.731605351,0.148703843,-0.068117127,0.807749569,0.367511332,-0.024893254,0.74659884,0.319036484,-0.057730254,0.712296009,0.397915184,-0.061869729,0.707023323,0.449308842,-0.05727911,0.823585272,0.404162109,-0.037261669,0.750921249,0.381875694,-0.067493908,0.728269517,0.458161026,-0.055053994,0.73242414,0.506188512,-0.039635971,0.825355411,0.455084026,-0.052030168,0.760896802,0.445220649,-0.073226668,0.738194823,0.496342927,-0.065259986,0.740009546,0.533312857,-0.053748447 +Right,0.781781614,0.640500724,-3.28E-07,0.730065644,0.572073936,-0.012791586,0.706173241,0.509089351,-0.030363876,0.690901935,0.462753057,-0.050311666,0.68624121,0.408867061,-0.069818482,0.778957784,0.350804687,-0.015617847,0.756437123,0.26260227,-0.039341748,0.739392519,0.199389085,-0.055898611,0.727977991,0.147355288,-0.068065375,0.804558039,0.365016222,-0.025047719,0.740107596,0.3179048,-0.056317754,0.706663966,0.390362293,-0.061908033,0.701179385,0.44107154,-0.059499212,0.816465557,0.399727255,-0.037152622,0.740831971,0.380581677,-0.065430269,0.72026062,0.45409742,-0.054237261,0.724812448,0.502564728,-0.040571749,0.815480232,0.448362321,-0.051458716,0.751310587,0.436007708,-0.071235865,0.731310248,0.487224042,-0.063349903,0.734241605,0.526250362,-0.052436043 +Right,0.785009742,0.633695483,-3.16E-07,0.7293244,0.563832343,-0.011993489,0.705236971,0.498024255,-0.028380321,0.691421688,0.449615687,-0.04672616,0.685189247,0.396013528,-0.064674601,0.784871101,0.349894792,-0.016505927,0.760630488,0.26254034,-0.03946308,0.74374944,0.1996108,-0.055392295,0.731768787,0.14828077,-0.067240752,0.806640625,0.365675509,-0.025882911,0.738492131,0.315228343,-0.055883802,0.704681337,0.386333078,-0.060107496,0.699724138,0.43558225,-0.057355214,0.812908649,0.400406241,-0.037881583,0.734583259,0.376616806,-0.064801008,0.713015735,0.445803672,-0.053355765,0.717768967,0.490081757,-0.040303517,0.806898594,0.447457343,-0.051999751,0.741474926,0.435371906,-0.071053565,0.723271489,0.483074129,-0.063730814,0.727974653,0.517586827,-0.053787678 +Right,0.790637553,0.629591346,-2.79E-07,0.733262956,0.554539919,-0.009424759,0.711689591,0.4906376,-0.025344476,0.698708653,0.438426137,-0.043084849,0.686085284,0.385797411,-0.060739744,0.791350663,0.351896524,-0.018884273,0.765779674,0.262522697,-0.042318977,0.749584317,0.198908776,-0.058740497,0.737788737,0.145907581,-0.070953548,0.809042454,0.368441969,-0.02871535,0.736878097,0.311353683,-0.05775132,0.706908703,0.382300258,-0.060736172,0.704406023,0.431812137,-0.057894703,0.809568584,0.402195632,-0.040699013,0.729130447,0.377875,-0.06554614,0.710801482,0.442698687,-0.053958904,0.71756947,0.485125482,-0.041906416,0.79801029,0.446464121,-0.05456512,0.730325818,0.436228961,-0.07260108,0.712744057,0.482849896,-0.06607803,0.71739614,0.516962349,-0.057365008 +Right,0.793607712,0.622535586,-2.63E-07,0.732164085,0.549428463,-0.008845613,0.710293293,0.48617515,-0.0240811,0.69681704,0.432853639,-0.040969126,0.683274508,0.380983084,-0.057824083,0.79203862,0.348771065,-0.018285507,0.765696764,0.258430004,-0.040806808,0.749335229,0.194734424,-0.056485452,0.736893654,0.142127305,-0.068404734,0.809062898,0.364373147,-0.0271683,0.732502759,0.312370598,-0.053885419,0.707711637,0.383320063,-0.055424169,0.710425138,0.428614974,-0.052477553,0.808241248,0.397017717,-0.038182445,0.725218296,0.375857323,-0.061192289,0.710049093,0.438683301,-0.049047999,0.719067991,0.476906806,-0.037510086,0.795164824,0.439918429,-0.051073067,0.726741374,0.43762663,-0.068491474,0.712646961,0.484166324,-0.06259162,0.719513953,0.514690518,-0.054739766 +Right,0.802956402,0.623114645,-2.47E-07,0.742505312,0.548784077,-0.0088287,0.721269846,0.484236568,-0.023628486,0.708771408,0.428832769,-0.039698511,0.695039749,0.379325747,-0.055582795,0.805341899,0.351212949,-0.018959746,0.781633556,0.257614195,-0.041443948,0.768124938,0.191102996,-0.057698656,0.758825958,0.133815378,-0.070858829,0.821000397,0.36859411,-0.027626308,0.738843918,0.319468826,-0.054415606,0.71736747,0.389029682,-0.056152701,0.725059211,0.430135459,-0.054191314,0.817519426,0.401432037,-0.038394403,0.730585337,0.385131806,-0.06058592,0.720494807,0.445720077,-0.048361801,0.73511976,0.476749927,-0.037818626,0.802549183,0.44248721,-0.051190902,0.731421888,0.445071399,-0.068367146,0.723091841,0.491441667,-0.063351415,0.735962033,0.515019059,-0.056826115 +Right,0.778564632,0.629943192,-2.58E-07,0.731584907,0.556247473,-0.014213412,0.711581349,0.493003547,-0.032910168,0.70080936,0.443186939,-0.05390073,0.703374922,0.394817054,-0.074352495,0.787171662,0.353807122,-0.017048465,0.779378474,0.261528611,-0.041348919,0.773373485,0.195210695,-0.057130679,0.770753562,0.14141053,-0.069223791,0.815213323,0.37056917,-0.025908811,0.7547943,0.326065719,-0.058796864,0.726178765,0.397808224,-0.063464671,0.725037754,0.44416818,-0.06026559,0.828719139,0.405916423,-0.037756532,0.756319642,0.390106499,-0.066995203,0.738652706,0.45659405,-0.055726986,0.745593905,0.496456891,-0.042490516,0.828873158,0.453868866,-0.05204539,0.764026463,0.450527638,-0.073397584,0.745231509,0.498749942,-0.067474216,0.749836504,0.529848099,-0.058179915 +Right,0.760703206,0.651780427,-2.71E-07,0.721889079,0.590461731,-0.020795034,0.699336827,0.517216861,-0.039502326,0.689710379,0.456782609,-0.059565198,0.708754778,0.411653906,-0.078670941,0.766376138,0.373774469,-0.017718354,0.766784966,0.277022064,-0.04407559,0.764267683,0.212364405,-0.059234917,0.76618582,0.159686953,-0.069667183,0.799665451,0.390153408,-0.022916827,0.762672901,0.334769011,-0.060670059,0.731412172,0.416530281,-0.065421522,0.724966288,0.470150471,-0.058650691,0.824727237,0.426201254,-0.031976026,0.772930741,0.40193373,-0.067123532,0.748846114,0.485110551,-0.055488367,0.750342369,0.531727433,-0.037926938,0.840342581,0.477074325,-0.043609694,0.789205074,0.464261919,-0.065356418,0.766878366,0.519552052,-0.057088733,0.769553065,0.552098513,-0.044477794 +Right,0.746881902,0.676019669,-2.30E-07,0.708965063,0.618835807,-0.026276147,0.68424052,0.540188789,-0.046234764,0.680341542,0.474986583,-0.066205062,0.704389751,0.430555165,-0.084874086,0.744270444,0.393199861,-0.021777285,0.743687987,0.295856088,-0.048961207,0.744244933,0.235014215,-0.065495744,0.750201941,0.181889862,-0.076932274,0.780300498,0.410244346,-0.025049474,0.755338848,0.347771138,-0.065098688,0.72616291,0.431637526,-0.071498506,0.715950787,0.49217847,-0.065247983,0.809745908,0.446532905,-0.032560043,0.7709198,0.418122023,-0.071138345,0.745857775,0.505799055,-0.061028387,0.740912199,0.561769962,-0.043175042,0.832609355,0.49725461,-0.042861193,0.791765511,0.480906993,-0.067734502,0.766704261,0.539310217,-0.060681853,0.761384666,0.577707827,-0.048335519 +Right,0.725370526,0.677700818,-2.54E-07,0.688823581,0.612143397,-0.019851509,0.665796041,0.524950087,-0.036074605,0.663866639,0.453070939,-0.053686809,0.692410469,0.417285651,-0.070416294,0.731066525,0.397767097,-0.012913709,0.733556509,0.301261365,-0.037211046,0.733003736,0.239471182,-0.051806726,0.738013804,0.187222451,-0.062258948,0.764500737,0.416576505,-0.01889145,0.744066954,0.344564706,-0.056466274,0.711718023,0.42130664,-0.062356696,0.699363053,0.480659693,-0.055899937,0.791968286,0.452777505,-0.028759025,0.756660104,0.412896484,-0.064916633,0.730742037,0.495154887,-0.054920696,0.726322174,0.55107528,-0.037478883,0.813231945,0.504537761,-0.040852819,0.772580802,0.473408759,-0.063480645,0.747278512,0.529344559,-0.05562266,0.74386704,0.57092154,-0.043234661 +Right,0.695743382,0.688607037,-2.85E-07,0.661098123,0.617136359,-0.015991731,0.642457545,0.529380262,-0.030545548,0.638774693,0.459573925,-0.047560889,0.661587,0.418331474,-0.06353955,0.716239512,0.408712327,-0.008079265,0.719376743,0.308569223,-0.031283986,0.717482507,0.243720695,-0.044489708,0.720873952,0.191260457,-0.053977285,0.745491564,0.428298593,-0.01555145,0.718579769,0.352172136,-0.051768769,0.682535291,0.420399547,-0.056940638,0.671606719,0.47190997,-0.050337773,0.768309295,0.463894129,-0.026753888,0.722307742,0.420876682,-0.061058797,0.69454509,0.497826874,-0.050674886,0.693942785,0.54690057,-0.033824641,0.783090055,0.514118195,-0.040163785,0.734331727,0.483291924,-0.061775718,0.708641708,0.536720991,-0.054273341,0.708749175,0.575088739,-0.042398948 +Right,0.71207726,0.695878625,-3.02E-07,0.666590095,0.618248463,-0.010770936,0.643735051,0.542416692,-0.025052551,0.631584704,0.485076457,-0.042509664,0.63329792,0.429914981,-0.059105542,0.715106726,0.400838822,-0.007221414,0.709744096,0.304912567,-0.029241323,0.702267885,0.238530204,-0.041824091,0.698640049,0.18519789,-0.050995387,0.74323684,0.415860891,-0.016910056,0.690235913,0.359525293,-0.050412163,0.659002781,0.438411266,-0.054220483,0.656833053,0.491020709,-0.048449382,0.760585308,0.448757023,-0.029693581,0.693763733,0.425647914,-0.059813824,0.675696611,0.502897382,-0.048081785,0.683321357,0.547769189,-0.032738157,0.766479671,0.495597661,-0.044483922,0.704348743,0.485551387,-0.063208342,0.68820864,0.539579034,-0.055236973,0.696781635,0.573075175,-0.044161685 +Right,0.738428771,0.674239159,-2.69E-07,0.676582813,0.596314132,-0.006777752,0.653884172,0.528233528,-0.020626098,0.636934638,0.47032994,-0.03688528,0.61986649,0.416447043,-0.052986,0.735952377,0.392872453,-0.01419231,0.714707077,0.294367492,-0.036125664,0.699710846,0.227650851,-0.0505362,0.688716352,0.172429681,-0.061544921,0.75262177,0.40869689,-0.024292326,0.675498605,0.349983275,-0.053711813,0.649753511,0.420504361,-0.056416813,0.652605534,0.468402624,-0.053194929,0.752517343,0.441479027,-0.03633827,0.66720438,0.420123845,-0.061477598,0.654848814,0.484555334,-0.049812011,0.666352987,0.523099065,-0.037695892,0.740325153,0.483616263,-0.050045118,0.669294953,0.483253986,-0.067393027,0.657228112,0.530886829,-0.061288647,0.66674459,0.559392512,-0.053088702 +Right,0.754426837,0.650043428,-2.24E-07,0.691442966,0.578518748,-0.007706874,0.663623393,0.515565932,-0.023910493,0.642434895,0.456221223,-0.041301221,0.628715396,0.408539534,-0.058335852,0.753132463,0.38271901,-0.021525836,0.72572881,0.282806903,-0.045225699,0.708009064,0.214974552,-0.061451588,0.695754051,0.157874644,-0.074182227,0.76229316,0.400535554,-0.029887477,0.67326951,0.347709954,-0.057469957,0.655005097,0.413114429,-0.058963053,0.666296959,0.452496558,-0.056995619,0.753730357,0.433186501,-0.039851047,0.663393378,0.418206275,-0.062325593,0.654962659,0.474399418,-0.050002966,0.671494842,0.498509467,-0.039494358,0.734013855,0.474563569,-0.051585026,0.661920846,0.483245313,-0.068739548,0.655063689,0.528121114,-0.063913442,0.669520855,0.546540022,-0.057540014 +Right,0.773993134,0.643118739,-2.22E-07,0.71252948,0.577914596,-0.007612439,0.67831701,0.515248299,-0.023217008,0.649517059,0.463992208,-0.039795082,0.63278532,0.424879104,-0.056130663,0.754672468,0.371210843,-0.022139931,0.723284721,0.278184414,-0.046987079,0.701964676,0.215633512,-0.064397857,0.685553372,0.160820723,-0.077960432,0.763685167,0.392015904,-0.031158306,0.671406627,0.363099009,-0.059574153,0.658146918,0.427873313,-0.062431738,0.673116505,0.460657179,-0.061927423,0.755697131,0.431571841,-0.041731548,0.6645509,0.4341515,-0.065177657,0.659769356,0.489421457,-0.053589303,0.678739369,0.506128728,-0.043548144,0.738082409,0.48220697,-0.053941526,0.665746927,0.50018996,-0.071480982,0.664253592,0.542835951,-0.065993249,0.683331311,0.554942787,-0.059088401 +Right,0.791034877,0.632919371,-2.32E-07,0.725900114,0.579787791,-0.006019276,0.689173162,0.525187135,-0.021017974,0.659831285,0.481216341,-0.038025204,0.637815952,0.441029817,-0.054642908,0.750484049,0.361421078,-0.017866345,0.713353693,0.277838707,-0.042479299,0.688085973,0.220758125,-0.058709376,0.668835402,0.17154181,-0.071137428,0.763946891,0.380473375,-0.028544754,0.672954023,0.370497912,-0.058432426,0.662470758,0.441342384,-0.061600711,0.677788317,0.473582357,-0.060128894,0.763197362,0.421424598,-0.040991519,0.675598621,0.445659995,-0.066900238,0.674356103,0.502982318,-0.055812333,0.693416476,0.516559005,-0.04488989,0.754379332,0.475276917,-0.054838464,0.685435355,0.50997746,-0.073734768,0.684268594,0.553801715,-0.068203919,0.701604068,0.562750101,-0.060626157 +Right,0.814521492,0.640196323,-2.31E-07,0.753698945,0.587888181,-0.004174286,0.709364474,0.53325063,-0.018506652,0.670787215,0.500145733,-0.035672396,0.645699263,0.480589688,-0.052642904,0.745951772,0.366981149,-0.014757511,0.702632725,0.292721391,-0.038838536,0.672519684,0.241585851,-0.05396371,0.648462296,0.197779089,-0.065784387,0.762364745,0.383414388,-0.027025558,0.672881901,0.407520413,-0.057041898,0.671889544,0.477485418,-0.059343535,0.690945983,0.499283642,-0.057301842,0.767459333,0.427748322,-0.041107688,0.682363212,0.480026484,-0.066877559,0.689067304,0.533938944,-0.055096008,0.710090518,0.538048446,-0.04381654,0.765569866,0.487472087,-0.05655295,0.699239612,0.541426837,-0.074516065,0.703516483,0.580702305,-0.068400413,0.722060323,0.580355406,-0.060738266 +Right,0.774825275,0.634430766,-2.00E-07,0.719172239,0.589869022,-0.013376871,0.685726821,0.538069427,-0.032788057,0.661112666,0.49649483,-0.055051327,0.666674197,0.480415761,-0.07690949,0.723111928,0.368237138,-0.016950943,0.701965213,0.289600134,-0.042303443,0.681375027,0.237513483,-0.055826478,0.668941975,0.192568213,-0.06576363,0.759159207,0.369525909,-0.026538117,0.700864792,0.383293808,-0.055743042,0.692707956,0.468775004,-0.053435713,0.706397414,0.491151869,-0.045630135,0.785824895,0.401127309,-0.039669678,0.720034957,0.455375284,-0.064397953,0.716960609,0.522287488,-0.048240125,0.733591735,0.530712664,-0.032394826,0.802317142,0.453110039,-0.05567278,0.743588865,0.509240627,-0.069046691,0.738093734,0.558194876,-0.057985596,0.75194782,0.566257596,-0.046431527 +Right,0.750472486,0.648902118,-1.92E-07,0.708925724,0.619547427,-0.025413981,0.672872424,0.566286206,-0.045601919,0.656886816,0.516213834,-0.065524369,0.682863832,0.486530721,-0.084667742,0.700781703,0.403664649,-0.028226426,0.682629287,0.310707569,-0.05914912,0.671089292,0.25080514,-0.077529021,0.665023208,0.195460647,-0.090095624,0.742054701,0.395481348,-0.03072658,0.711370945,0.37679261,-0.069517933,0.702974319,0.474543095,-0.073712684,0.705593944,0.526540697,-0.066821069,0.778824806,0.41579923,-0.037204098,0.741116405,0.43873626,-0.071161233,0.732333422,0.524513185,-0.058644481,0.736509681,0.559172153,-0.040998716,0.808858693,0.456562251,-0.046864934,0.772929907,0.490947902,-0.066749573,0.761288881,0.551864326,-0.057881493,0.764935374,0.572564423,-0.045389656 +Right,0.740470529,0.659055591,-1.84E-07,0.70009625,0.631877184,-0.023900518,0.660296977,0.576803684,-0.041785356,0.654455364,0.523101568,-0.059266321,0.681680262,0.48573643,-0.076079354,0.678307533,0.418452561,-0.02780606,0.660956562,0.323669314,-0.056559812,0.651941538,0.2640872,-0.074672587,0.646803916,0.206399143,-0.087888248,0.722348154,0.407332093,-0.03136608,0.703751326,0.379944026,-0.069502525,0.697313488,0.481875002,-0.074757814,0.697232008,0.538404226,-0.069408342,0.762754083,0.424734652,-0.038464639,0.739653409,0.433432937,-0.073689312,0.728627622,0.527879834,-0.062128954,0.72670728,0.57271713,-0.045190487,0.797808766,0.460999995,-0.04820323,0.773246944,0.483353764,-0.070863627,0.758632362,0.549498856,-0.062717006,0.755592108,0.576393485,-0.050700519 +Right,0.730015755,0.67275244,-1.48E-07,0.68701309,0.641991854,-0.024788929,0.65124464,0.578732312,-0.0420288,0.658944964,0.513409078,-0.05905002,0.690202534,0.472905517,-0.075219236,0.665830493,0.43073678,-0.025627736,0.649172187,0.333117366,-0.053185064,0.641168833,0.271375984,-0.071604066,0.636122108,0.212370977,-0.085065745,0.708678782,0.423426151,-0.028950129,0.702840626,0.382108241,-0.068813093,0.698142469,0.476339221,-0.077026792,0.696143448,0.540913165,-0.072902963,0.74797821,0.440715462,-0.035680797,0.743058622,0.427349091,-0.073099561,0.7300089,0.521948159,-0.0642092,0.722640157,0.579287112,-0.047780059,0.782141864,0.475706786,-0.04490203,0.776226699,0.472878575,-0.069612987,0.759406924,0.539092779,-0.062582828,0.749632239,0.577795148,-0.05049314 +Right,0.731547594,0.686141253,-2.14E-07,0.691318274,0.654105246,-0.022660742,0.653784215,0.591870308,-0.039490305,0.651414692,0.529557586,-0.056132521,0.679255426,0.487165898,-0.072171442,0.670547485,0.440897942,-0.025575621,0.65179348,0.345071763,-0.053226992,0.6419819,0.284328997,-0.071377702,0.635372221,0.225797653,-0.084670454,0.713732362,0.431687057,-0.029416909,0.699196637,0.397890389,-0.066919126,0.691897511,0.495009929,-0.073007941,0.68952322,0.554275513,-0.0682569,0.753472626,0.449688256,-0.036580067,0.735376298,0.448837191,-0.071422607,0.723026931,0.541928232,-0.060712084,0.719721794,0.591364264,-0.044175558,0.788599312,0.486119092,-0.046151474,0.767318964,0.495617092,-0.068613909,0.751444459,0.563903093,-0.060293727,0.747189879,0.598667026,-0.048061639 +Right,0.743860722,0.695484996,-2.04E-07,0.703732669,0.657849789,-0.026102886,0.66742146,0.597053409,-0.045232624,0.657870591,0.543014884,-0.063779667,0.685679793,0.507370174,-0.081168808,0.693056941,0.439010471,-0.026152726,0.675489306,0.346150517,-0.056063872,0.6645329,0.287291437,-0.073987879,0.659331322,0.230406463,-0.086669303,0.737233758,0.432077914,-0.028893987,0.713767052,0.401579797,-0.068059243,0.702729046,0.502577484,-0.073449187,0.702200949,0.558713853,-0.067355163,0.776497841,0.454680979,-0.035795156,0.745155454,0.464726597,-0.071009941,0.731451631,0.555151224,-0.059497863,0.731609285,0.594468951,-0.042220321,0.808497131,0.497608334,-0.04576236,0.775639594,0.523697793,-0.066797301,0.759988248,0.585553527,-0.058736067,0.76029861,0.607493341,-0.046867572 +Right,0.749316692,0.697233737,-2.43E-07,0.709393919,0.655504584,-0.024137925,0.67505455,0.590266824,-0.042809892,0.657711387,0.538664818,-0.061549231,0.678278506,0.505901456,-0.079113543,0.709504545,0.43010506,-0.022438187,0.689213455,0.338642567,-0.052328814,0.676018059,0.278599024,-0.070411615,0.669084311,0.223203003,-0.083213791,0.749332607,0.427463859,-0.026413191,0.713862956,0.398386329,-0.067589954,0.700453281,0.496233851,-0.073977545,0.700870991,0.552996695,-0.067823976,0.783881187,0.452880323,-0.034561984,0.737839282,0.464206457,-0.070516661,0.727399409,0.552559972,-0.059569415,0.732368171,0.59019196,-0.04258842,0.810961962,0.498328537,-0.045809072,0.766341746,0.52763474,-0.067150615,0.753448606,0.588578939,-0.05980511,0.758629084,0.608956039,-0.048434332 +Right,0.755162299,0.693509102,-3.00E-07,0.713759542,0.648545384,-0.020302508,0.679981649,0.578186989,-0.037418727,0.658970773,0.522839129,-0.055475317,0.675058722,0.493338585,-0.072549276,0.721395969,0.416690201,-0.018358435,0.700731099,0.327225029,-0.047637019,0.684816599,0.268248677,-0.065262116,0.675145209,0.215628654,-0.077587806,0.758892298,0.417350799,-0.023960069,0.716060758,0.392981648,-0.063329332,0.700094283,0.489912927,-0.068169482,0.701824844,0.543749571,-0.061342139,0.790686667,0.445698202,-0.033608746,0.738564193,0.4543266,-0.067725122,0.727855146,0.542787552,-0.055099774,0.735377789,0.580569744,-0.037443299,0.814021468,0.494642287,-0.046243221,0.76444447,0.521096468,-0.066621788,0.752223492,0.581300974,-0.058419991,0.76030463,0.602097154,-0.046435319 +Right,0.761241734,0.683823466,-3.08E-07,0.714225709,0.627179623,-0.016789863,0.681417108,0.557645857,-0.03400816,0.659540057,0.502419651,-0.053196251,0.672721922,0.469611734,-0.071352638,0.732751369,0.39881289,-0.013265249,0.710780203,0.31341809,-0.039915722,0.693602741,0.254615158,-0.055565812,0.682590306,0.204039931,-0.066925615,0.768194675,0.40396598,-0.021003833,0.715712488,0.377873331,-0.056456521,0.697746277,0.471102446,-0.059567548,0.702348292,0.518211246,-0.052808341,0.796287537,0.435383707,-0.032686159,0.733618259,0.441641927,-0.064127393,0.723816633,0.526319027,-0.0504645,0.735697031,0.559239388,-0.033405364,0.814150214,0.486827463,-0.047163978,0.75607866,0.506766856,-0.066294387,0.745557427,0.564204752,-0.057309773,0.757507086,0.58409977,-0.045418404 +Right,0.769256294,0.676526427,-2.94E-07,0.719969869,0.61662817,-0.016972629,0.689055622,0.55264926,-0.036145788,0.668178022,0.503430903,-0.057272721,0.67597568,0.459630996,-0.077259474,0.744651794,0.389897346,-0.016121617,0.722330034,0.303765297,-0.043974351,0.704451263,0.243258685,-0.060734991,0.692054987,0.192383409,-0.072802387,0.778812051,0.397071272,-0.02430206,0.720231712,0.373449028,-0.060607869,0.701898515,0.464007884,-0.064778499,0.708365738,0.507542431,-0.059201621,0.803501189,0.429855376,-0.036294442,0.734089077,0.439693779,-0.06819132,0.725455701,0.520511925,-0.054846678,0.740017593,0.549178004,-0.038595147,0.816608429,0.48179099,-0.051066518,0.754645109,0.501661718,-0.071460329,0.745513499,0.557909787,-0.062654197,0.759513021,0.576769769,-0.05082275 +Right,0.788418055,0.672773182,-2.73E-07,0.73318851,0.606854081,-0.013514472,0.70405376,0.54151243,-0.032597698,0.685864925,0.490597874,-0.054107446,0.687528789,0.460219949,-0.074907601,0.766877353,0.382433474,-0.01775129,0.742807627,0.295977473,-0.04547694,0.723897874,0.233427167,-0.06262695,0.710326612,0.183023185,-0.075514667,0.799194992,0.395099819,-0.028037187,0.730105937,0.378336519,-0.06087992,0.714221418,0.464104205,-0.062164895,0.72472924,0.500067234,-0.05663969,0.818422258,0.433384299,-0.041844442,0.740059614,0.447993815,-0.069447733,0.73333919,0.521037459,-0.053721711,0.749964595,0.544071078,-0.038193464,0.824724078,0.490087926,-0.058489006,0.75850302,0.512022734,-0.076642595,0.750941396,0.562529325,-0.067130633,0.766291022,0.577383757,-0.056042414 +Right,0.810426831,0.670611918,-2.96E-07,0.752208173,0.595871568,-0.013720906,0.724752665,0.526930928,-0.031273115,0.709023356,0.475086302,-0.049961973,0.703721046,0.440002471,-0.067656793,0.797411203,0.374953032,-0.02117015,0.769718885,0.28551212,-0.047996987,0.750976861,0.222957745,-0.065511949,0.73734808,0.168205231,-0.079263456,0.825168312,0.391830385,-0.031546313,0.745743871,0.366302997,-0.064281628,0.729054749,0.447215289,-0.066959433,0.738372326,0.488318354,-0.063648574,0.835504055,0.431711882,-0.045121275,0.748889089,0.443011969,-0.072736993,0.743216395,0.512168288,-0.059105136,0.759829819,0.536188781,-0.045958262,0.832606673,0.487487614,-0.06134278,0.760899365,0.509579062,-0.079845063,0.755749822,0.560559988,-0.071828775,0.771081626,0.57652247,-0.062574014 +Right,0.822517633,0.69279772,-2.63E-07,0.763255537,0.60527432,-0.009908821,0.739530265,0.533062696,-0.029519361,0.718972087,0.470552921,-0.051285338,0.703712106,0.435350925,-0.072953306,0.822882771,0.392535686,-0.020690762,0.787144125,0.295456409,-0.048191611,0.766790032,0.226392642,-0.067851283,0.752915263,0.16632697,-0.082958095,0.836463153,0.41373387,-0.031326227,0.743558049,0.380983353,-0.062539093,0.728924751,0.454155147,-0.065519392,0.742158473,0.491410524,-0.064034693,0.832175732,0.453473747,-0.044368967,0.736670554,0.44731763,-0.070094764,0.732178986,0.515009344,-0.0575394,0.751793504,0.544331491,-0.04618644,0.816217899,0.504053235,-0.059708513,0.739019513,0.511917651,-0.079372384,0.735531151,0.563059092,-0.073956028,0.754162252,0.58711946,-0.066513374 +Right,0.838377953,0.701201558,-2.52E-07,0.823536992,0.59967351,0.003163087,0.795838952,0.508760929,-0.00944566,0.749149263,0.45557341,-0.025257025,0.71132654,0.438991487,-0.042005848,0.840254366,0.404009879,-0.015832862,0.801216006,0.298954427,-0.036298968,0.779060483,0.231511995,-0.049550753,0.762684405,0.171722472,-0.061098196,0.83900255,0.42806837,-0.030282911,0.741484463,0.394216985,-0.054838743,0.734737337,0.456506193,-0.055182882,0.753356993,0.485509753,-0.054418564,0.823726714,0.472044259,-0.045005217,0.730754375,0.461264998,-0.064348012,0.733371079,0.517296195,-0.05299665,0.756236494,0.5344733,-0.045189261,0.80196476,0.523450851,-0.060342092,0.730649352,0.527142107,-0.075635567,0.734622061,0.573426008,-0.07059098,0.755651116,0.589873016,-0.065555096 +Right,0.834627926,0.670383394,-1.97E-07,0.837048113,0.565629959,0.002985443,0.812866151,0.474666357,-0.010545285,0.761719346,0.423971206,-0.026695373,0.721590459,0.419182152,-0.044644561,0.848639488,0.393176645,-0.02198639,0.811564147,0.287226737,-0.040901475,0.789463818,0.221127257,-0.052071504,0.773539126,0.16372779,-0.061957873,0.842927575,0.421871305,-0.035400558,0.749719143,0.379004449,-0.057776913,0.742475748,0.436465532,-0.056371104,0.76084578,0.464617252,-0.054900985,0.824378848,0.466604531,-0.048357051,0.73528558,0.443526089,-0.065589592,0.737501621,0.494038075,-0.05382435,0.759660244,0.512335181,-0.046078976,0.80007267,0.51532805,-0.061549217,0.730986476,0.505392969,-0.07462211,0.73489207,0.546673,-0.068508029,0.755041301,0.563887358,-0.06319806 +Right,0.829120874,0.661339045,-1.59E-07,0.840307653,0.5601089,0.001271126,0.822307706,0.466416001,-0.011443751,0.774549007,0.416228861,-0.025850054,0.734284401,0.408340961,-0.042443067,0.849581838,0.400444955,-0.02732067,0.813803852,0.292036504,-0.047554832,0.793412089,0.223357067,-0.059353456,0.779271603,0.163661301,-0.069092281,0.838049054,0.43208468,-0.039988089,0.749870718,0.375820339,-0.062465876,0.742805481,0.42914772,-0.061131649,0.761112213,0.458844036,-0.059535459,0.815196693,0.476181477,-0.052034833,0.729920983,0.441685051,-0.069421187,0.732743084,0.490006387,-0.057063039,0.755209506,0.509322107,-0.048566874,0.788765013,0.524207234,-0.064336933,0.722641408,0.499808222,-0.076958917,0.728189647,0.539316714,-0.068676196,0.748691857,0.559114575,-0.061637733 +Right,0.826541901,0.659694195,-1.63E-07,0.830854475,0.561439991,0.00106533,0.811087847,0.474535048,-0.012832831,0.764522135,0.427542537,-0.028486677,0.72581166,0.419042468,-0.046057545,0.845083714,0.398722738,-0.026873482,0.810303092,0.29396084,-0.047868147,0.789815485,0.227050707,-0.060869418,0.774089456,0.169075668,-0.071584806,0.837002277,0.430646747,-0.039749511,0.748409569,0.376589924,-0.062833332,0.742246091,0.432697266,-0.062076699,0.759966493,0.462678552,-0.060783293,0.816175103,0.475144506,-0.052099317,0.729811728,0.444040954,-0.069854863,0.732744396,0.493588537,-0.057539262,0.754566491,0.512877345,-0.049090046,0.790107191,0.522867084,-0.064741708,0.723107755,0.5049721,-0.078372933,0.728778899,0.545511246,-0.070764005,0.749446809,0.563944399,-0.064023346 +Right,0.821883559,0.679104567,-2.51E-07,0.780338585,0.591305137,-0.004830447,0.757826269,0.515850782,-0.020854698,0.731203794,0.456272274,-0.0392115,0.71031034,0.432231784,-0.05779665,0.829987288,0.400740206,-0.017606271,0.798435807,0.302441776,-0.040883303,0.779465854,0.23464857,-0.056968883,0.765693903,0.175839424,-0.070030764,0.836350203,0.421539813,-0.029378865,0.746332049,0.384354591,-0.05593114,0.733459771,0.447796315,-0.056858823,0.747653127,0.479454041,-0.055312969,0.826260984,0.459247261,-0.042868812,0.736889303,0.447009444,-0.064610571,0.73407352,0.505263507,-0.052823156,0.754235625,0.526757956,-0.043490145,0.807916999,0.506126821,-0.058109615,0.736135364,0.510548651,-0.07538522,0.734134436,0.556277096,-0.070616834,0.752917886,0.57509172,-0.064784184 +Right,0.81575489,0.685196519,-2.95E-07,0.760356843,0.60019803,-0.014049507,0.740730345,0.532528996,-0.033025876,0.727935851,0.477190167,-0.053227436,0.719770789,0.436254144,-0.073067673,0.829411864,0.405396342,-0.021320134,0.80234009,0.313353956,-0.04705764,0.785936534,0.24734427,-0.065503113,0.775202572,0.190975636,-0.079910681,0.847324073,0.425557733,-0.030336287,0.765316904,0.378170729,-0.061559606,0.740200639,0.447415531,-0.065390237,0.744798183,0.490311593,-0.063849382,0.846901059,0.461566657,-0.042208958,0.756760061,0.446366996,-0.069054328,0.745420814,0.513469458,-0.057161406,0.758324921,0.550707996,-0.045569256,0.833762705,0.508222997,-0.056676012,0.759761214,0.506266356,-0.077216305,0.751558185,0.557286322,-0.071830742,0.764879346,0.585981607,-0.064213805 +Right,0.792523146,0.685902596,-3.16E-07,0.74437207,0.61064142,-0.013164271,0.722818136,0.537794352,-0.029146399,0.711762905,0.48200196,-0.047412761,0.718920648,0.451023817,-0.064688653,0.799534917,0.401488364,-0.010511595,0.782375932,0.313671112,-0.035469405,0.76859951,0.25209555,-0.051552415,0.758450687,0.20172444,-0.063712016,0.82811588,0.418074995,-0.019832373,0.768275142,0.379622877,-0.053447649,0.745167494,0.458160162,-0.05835849,0.749179363,0.501708567,-0.054330736,0.843989849,0.454396099,-0.032595821,0.770363748,0.447867423,-0.061684009,0.757333517,0.520463705,-0.050681528,0.770409524,0.550418615,-0.037316125,0.846394897,0.505196571,-0.04790901,0.779914081,0.514844656,-0.067724153,0.769660175,0.56788373,-0.06124993,0.784709811,0.588644922,-0.051770497 +Right,0.782631993,0.69832921,-3.32E-07,0.739273131,0.633474708,-0.015738741,0.713781834,0.561718822,-0.032558687,0.698365927,0.504088163,-0.051308721,0.714698434,0.463909119,-0.068867281,0.776649833,0.413864136,-0.012370372,0.760024011,0.327819824,-0.038882665,0.746933401,0.269396067,-0.055287316,0.738439918,0.218013197,-0.067261331,0.809717774,0.423670143,-0.020215942,0.757924438,0.387665808,-0.054858159,0.737007082,0.476034403,-0.058933742,0.739206612,0.524323225,-0.053189151,0.833503544,0.457737654,-0.031815805,0.768759191,0.457488328,-0.061734769,0.756301939,0.538807631,-0.049017195,0.766568601,0.572726011,-0.033211689,0.845601916,0.509198964,-0.046160344,0.786394775,0.521646082,-0.064901762,0.774578512,0.577690482,-0.056765132,0.785940886,0.599583805,-0.045645297 +Right,0.785341918,0.696130574,-3.08E-07,0.74441725,0.642902255,-0.020394428,0.714767218,0.570652902,-0.036926925,0.700482905,0.510128975,-0.054229151,0.721213877,0.472097903,-0.070047177,0.770122707,0.421522886,-0.015280119,0.754185498,0.333075345,-0.042458091,0.742467284,0.273858368,-0.059518963,0.735917509,0.221072525,-0.071636252,0.804768682,0.427738756,-0.020365972,0.764582217,0.388327092,-0.058266934,0.74272579,0.47493574,-0.064357162,0.73919785,0.530198514,-0.058658551,0.832668245,0.45795244,-0.0294932,0.780382693,0.457485527,-0.062453192,0.766590416,0.539860427,-0.051841423,0.771671832,0.580570102,-0.035771053,0.85259366,0.506310403,-0.04154399,0.802850246,0.520501077,-0.061053529,0.789019644,0.577194214,-0.053889997,0.796011806,0.601659656,-0.042899366 +Right,0.780083597,0.686193705,-2.61E-07,0.74015069,0.639339924,-0.02374539,0.709409297,0.569265425,-0.042909056,0.697738051,0.509861112,-0.062343232,0.722490013,0.470429212,-0.080381595,0.758756638,0.415598005,-0.020412156,0.745104551,0.325223386,-0.049984258,0.735081375,0.264763653,-0.068453394,0.731117606,0.21100387,-0.081471033,0.796033025,0.42002058,-0.024685949,0.761265397,0.381090194,-0.063809484,0.742267847,0.475191534,-0.069119163,0.740978897,0.531017661,-0.062729202,0.827217162,0.450572222,-0.033364106,0.781638324,0.449307829,-0.067530341,0.766973674,0.535258889,-0.055123821,0.771833241,0.574304461,-0.037609991,0.850913465,0.499975741,-0.045208573,0.806659937,0.510141194,-0.06543424,0.790896952,0.568875313,-0.05676607,0.796330929,0.593096316,-0.044607375 +Right,0.776376128,0.678532004,-1.93E-07,0.739798307,0.636286736,-0.026116498,0.708483219,0.562837958,-0.046257567,0.707187951,0.49913463,-0.065870136,0.741082072,0.468560815,-0.084362857,0.753498673,0.417372614,-0.02708628,0.74968344,0.317743897,-0.055645544,0.747275472,0.257106841,-0.072147183,0.74943316,0.202761799,-0.083610803,0.794973135,0.425705791,-0.030347006,0.78127557,0.377285749,-0.069302566,0.759657204,0.472648233,-0.073084362,0.752040625,0.533358693,-0.065450117,0.829451919,0.460265607,-0.037676778,0.804593563,0.449007243,-0.074204266,0.782580793,0.5356704,-0.062004101,0.777965426,0.583043754,-0.043473735,0.857076705,0.51127845,-0.047734015,0.829415202,0.506476283,-0.070283286,0.806471944,0.565584123,-0.061114375,0.800495565,0.598240435,-0.047950778 +Right,0.779849887,0.691224992,-1.96E-07,0.739988089,0.641407251,-0.024012653,0.710493565,0.557781935,-0.040725891,0.724138021,0.496524245,-0.056969862,0.76377368,0.476846308,-0.07230863,0.755742431,0.422104239,-0.02426276,0.755262852,0.324807703,-0.049781606,0.755501688,0.26586628,-0.065813579,0.759119809,0.210956186,-0.077893689,0.798483372,0.436083317,-0.027939392,0.795874655,0.382743239,-0.064789057,0.775199354,0.475703925,-0.069906488,0.765403569,0.540549576,-0.063991368,0.833871543,0.474109173,-0.035254057,0.824530482,0.448187858,-0.070810549,0.799423873,0.534737706,-0.060413022,0.789660096,0.588035285,-0.043280907,0.862761557,0.527599752,-0.0449064,0.849347174,0.506351531,-0.067973055,0.823235691,0.562908053,-0.05986131,0.81181109,0.599795759,-0.047647543 +Right,0.781861544,0.695703924,-1.43E-07,0.740497649,0.648468316,-0.027330007,0.711479723,0.5685637,-0.045047145,0.729396284,0.508894086,-0.061922427,0.767985284,0.482538849,-0.077608243,0.746633291,0.422974676,-0.025510551,0.743283749,0.326872468,-0.052822828,0.742121518,0.266902059,-0.07130646,0.743911386,0.209744543,-0.085235029,0.790781975,0.435646832,-0.028338004,0.791959822,0.383592695,-0.067617752,0.775736272,0.479645789,-0.075383186,0.767394662,0.543427289,-0.071187519,0.828162611,0.472043395,-0.035157192,0.827176213,0.441127807,-0.073333718,0.803076923,0.533028722,-0.064034469,0.791481197,0.58658427,-0.047232751,0.858983517,0.52390945,-0.044519994,0.854305029,0.499923915,-0.069713324,0.828792453,0.560162306,-0.06187271,0.8153795,0.596454978,-0.049527675 +Right,0.781872869,0.69783318,-1.23E-07,0.737680137,0.651288986,-0.026599314,0.709294975,0.569248796,-0.043330017,0.734080493,0.50752914,-0.059229553,0.774342239,0.476915926,-0.073849164,0.737776518,0.425149411,-0.02472089,0.734783351,0.329783022,-0.052296557,0.735219121,0.268594027,-0.072364874,0.737343669,0.208827794,-0.087807581,0.783770204,0.434782326,-0.027831925,0.789483726,0.387539446,-0.067220643,0.776361465,0.483053505,-0.077647805,0.76732403,0.543616056,-0.075999171,0.822415471,0.46666187,-0.034560028,0.827480376,0.435872823,-0.072822765,0.80451113,0.531399071,-0.064240031,0.791675389,0.58574754,-0.0484601,0.854184806,0.513918281,-0.043764994,0.85511142,0.492157638,-0.06951946,0.831443787,0.556773007,-0.061472084,0.817781329,0.592684567,-0.049022596 +Right,0.784912586,0.719446003,-5.44E-08,0.741285324,0.671298087,-0.030845387,0.722621202,0.591756701,-0.050330248,0.756653249,0.536518157,-0.068286382,0.794171512,0.503337383,-0.084734246,0.745672941,0.448517591,-0.033045031,0.745250821,0.347058117,-0.063764714,0.748914599,0.282066047,-0.084831908,0.754452646,0.219540983,-0.099910632,0.789238155,0.454701602,-0.034189638,0.80709374,0.416396499,-0.079508185,0.796976447,0.508679986,-0.09188468,0.786258042,0.571320772,-0.089762978,0.825915158,0.483378768,-0.038910896,0.842586756,0.472069561,-0.080820866,0.821398437,0.561129272,-0.074741133,0.804346085,0.613551855,-0.059337951,0.855591118,0.52821362,-0.046495475,0.868916154,0.52137804,-0.074137501,0.846510053,0.583233953,-0.068358295,0.827110946,0.618835092,-0.05658599 +Right,0.786313057,0.745084643,1.90E-08,0.743654728,0.690777659,-0.036622878,0.730033636,0.610035837,-0.060106963,0.77020371,0.56335938,-0.081191041,0.811415672,0.536610305,-0.100483656,0.757799447,0.458972543,-0.040014729,0.771689773,0.354730308,-0.071070187,0.784381628,0.290312648,-0.091730125,0.797864854,0.22925207,-0.106829993,0.803062379,0.474615037,-0.039647426,0.830514729,0.443961501,-0.0887312,0.815247953,0.537076712,-0.102134407,0.797904372,0.59980917,-0.100142404,0.83942908,0.512133896,-0.043056149,0.8628667,0.5048455,-0.087872565,0.83785671,0.5918051,-0.082376137,0.815481305,0.642185807,-0.066920318,0.867230833,0.564331532,-0.049779627,0.885766983,0.559211195,-0.079547748,0.861804664,0.616227627,-0.074638799,0.838304937,0.649307728,-0.063177638 +Right,0.798781514,0.741778016,8.70E-08,0.758506,0.691039622,-0.042692803,0.746924579,0.6069206,-0.06891676,0.793377161,0.560872793,-0.091172546,0.838530481,0.53775388,-0.111501776,0.773045123,0.469151914,-0.051112596,0.792674899,0.35481745,-0.087729253,0.810398996,0.287314534,-0.111650303,0.829009533,0.22277528,-0.128387436,0.817806482,0.483593404,-0.049188558,0.854907691,0.444610447,-0.103809319,0.834181368,0.536642253,-0.117741607,0.811641991,0.593285382,-0.114901617,0.853323936,0.51861912,-0.051469829,0.88403976,0.507865965,-0.100153312,0.855885744,0.59467572,-0.093735345,0.83181411,0.634443998,-0.076867469,0.880712926,0.568771839,-0.057588909,0.90500778,0.560692549,-0.089312054,0.879639208,0.618993521,-0.083164252,0.854870975,0.64758116,-0.070484787 +Right,0.81093055,0.741809785,1.05E-07,0.773093343,0.689215899,-0.049513921,0.76759547,0.607097149,-0.077508733,0.820132077,0.56127435,-0.099779814,0.866981268,0.533712447,-0.119061768,0.791381478,0.457695156,-0.054883342,0.810956776,0.344128907,-0.09581019,0.829068959,0.27392,-0.124004655,0.849809945,0.207045108,-0.14357172,0.837600648,0.472276092,-0.050018083,0.880777299,0.44068262,-0.108174779,0.857568681,0.537544429,-0.123322606,0.832701862,0.593802094,-0.120833777,0.873874784,0.507301271,-0.050608959,0.908046961,0.505064666,-0.101307757,0.877067745,0.591163814,-0.094810307,0.851065457,0.626383662,-0.077591754,0.900529325,0.559013009,-0.056009118,0.929040968,0.55601573,-0.08941175,0.901347876,0.612170875,-0.084233165,0.873155594,0.635808647,-0.071858004 +Right,0.824348748,0.753433526,1.60E-07,0.791344702,0.704714894,-0.057388242,0.791481137,0.629570127,-0.089096598,0.847433627,0.584772229,-0.113705091,0.897774398,0.556247294,-0.13481009,0.80407536,0.463414848,-0.060022064,0.822127283,0.343311548,-0.09981849,0.836967885,0.270056874,-0.125809014,0.855012536,0.201044887,-0.143856958,0.851965845,0.475536555,-0.051632687,0.90163219,0.437800884,-0.10910318,0.88052696,0.532492638,-0.123557359,0.854729235,0.585215271,-0.120191842,0.890100718,0.511145413,-0.049239628,0.927299261,0.508648634,-0.100876771,0.897129834,0.594233274,-0.094829544,0.870528102,0.621037185,-0.07730855,0.917397857,0.563372314,-0.052087724,0.951502323,0.557265103,-0.085384756,0.926066279,0.612236738,-0.079861552,0.897250414,0.631231368,-0.067176521 +Right,0.836810946,0.778887331,8.31E-08,0.797395885,0.731889307,-0.051831365,0.789343774,0.653647244,-0.08240208,0.84075433,0.603264868,-0.10716828,0.887968183,0.57180953,-0.129015625,0.807179987,0.497503728,-0.061215501,0.815257072,0.377948552,-0.103780851,0.822474778,0.301875621,-0.131255582,0.832295656,0.228778005,-0.150386378,0.856659889,0.503154576,-0.056176748,0.899733245,0.463308185,-0.117306307,0.878203154,0.568736732,-0.131682172,0.853629887,0.627323925,-0.127767965,0.896475792,0.534962416,-0.056472708,0.930931747,0.534926116,-0.110424131,0.899613202,0.627164662,-0.102696531,0.873780012,0.66257745,-0.083620429,0.926396787,0.584969401,-0.061497886,0.957423568,0.581891358,-0.096262969,0.930661559,0.640477896,-0.090131216,0.904003084,0.663798809,-0.076662503 +Right,0.843128681,0.798667431,-6.23E-08,0.800113797,0.748329997,-0.037277006,0.77928853,0.673886418,-0.062550582,0.813565254,0.627275705,-0.085105471,0.855974019,0.596832871,-0.105770938,0.806810498,0.515144885,-0.044084385,0.799924254,0.402687788,-0.081661068,0.799334347,0.33397907,-0.10719458,0.802787781,0.266696543,-0.125602379,0.856807232,0.526550293,-0.044856191,0.877464354,0.489250124,-0.096134208,0.858801723,0.593742788,-0.109069243,0.842885196,0.648394585,-0.107572377,0.898535848,0.56247592,-0.050007705,0.916786611,0.553989351,-0.098120674,0.886806905,0.649511814,-0.090007521,0.866318822,0.69170475,-0.073322408,0.932540238,0.612282574,-0.058477119,0.946673691,0.611007988,-0.091218844,0.916328669,0.677791238,-0.084140629,0.892558753,0.705205381,-0.071286879 +Right,0.847422779,0.799536347,-2.01E-07,0.80395478,0.742862225,-0.030279981,0.773276746,0.664661586,-0.052038431,0.79008013,0.613724589,-0.07242322,0.832082808,0.59763068,-0.091424473,0.818272114,0.503561974,-0.035098318,0.808073044,0.400091231,-0.06742499,0.801758587,0.333308041,-0.088587575,0.800071359,0.271477908,-0.104400396,0.872105479,0.510207295,-0.038788408,0.867818356,0.486534178,-0.08248993,0.844818592,0.588054061,-0.091361627,0.833757341,0.647050798,-0.087841064,0.915738881,0.551265657,-0.046614662,0.902785063,0.566379786,-0.086592793,0.871710479,0.65322113,-0.077429026,0.859316766,0.691276073,-0.061599158,0.950230479,0.610119164,-0.057655796,0.934573531,0.629439712,-0.081980474,0.902878523,0.686290741,-0.07385087,0.888866901,0.707709849,-0.061902113 +Right,0.83943969,0.765774429,-2.52E-07,0.800291359,0.709411681,-0.027702045,0.768743157,0.635059357,-0.049989752,0.754921019,0.574767232,-0.071775414,0.784045577,0.556618929,-0.092391506,0.824617863,0.471347988,-0.028655017,0.808947265,0.37048611,-0.062555306,0.796489716,0.304357171,-0.083016329,0.791939497,0.245059341,-0.097304471,0.871051311,0.481424838,-0.032839961,0.836875498,0.44765237,-0.077563427,0.812069774,0.549010396,-0.08413747,0.808167696,0.6071738,-0.076957166,0.90752238,0.524175644,-0.041598096,0.856206477,0.537996709,-0.079390645,0.83442229,0.623510063,-0.067069359,0.838412106,0.656894803,-0.048484813,0.933492899,0.586673558,-0.053875312,0.882800639,0.610008121,-0.074513227,0.860859573,0.667075157,-0.064844638,0.866047502,0.685719252,-0.05161994 +Right,0.847274363,0.753920317,-2.64E-07,0.804272771,0.68315196,-0.022967983,0.777448118,0.610170543,-0.046183944,0.759201944,0.551559508,-0.07045126,0.774902523,0.52515769,-0.093439773,0.846735895,0.452758968,-0.023665203,0.829840004,0.354548275,-0.057621375,0.814918339,0.284150183,-0.077117272,0.806679368,0.226200372,-0.09065336,0.886769116,0.470549643,-0.030518632,0.831834674,0.430452853,-0.072090991,0.802584946,0.525593221,-0.075202316,0.804996073,0.572851241,-0.066860884,0.912965834,0.516243339,-0.042053644,0.84033823,0.519054353,-0.07700821,0.82182318,0.599559426,-0.061850764,0.835000694,0.626261711,-0.043170623,0.924055994,0.579489708,-0.057157815,0.856469274,0.600476146,-0.079033621,0.841623545,0.654626012,-0.069929652,0.856648624,0.670026064,-0.057232365 +Right,0.850065887,0.743612885,-2.35E-07,0.806113899,0.663477719,-0.018349443,0.782506287,0.595406055,-0.042967845,0.76369375,0.539663315,-0.070028566,0.76748687,0.512017608,-0.096633457,0.852404535,0.444895148,-0.023272336,0.836167037,0.349374503,-0.056611624,0.823166609,0.276574612,-0.075598031,0.8159253,0.219815016,-0.088746503,0.888432145,0.467450052,-0.032837696,0.82851845,0.424895763,-0.070682839,0.799983382,0.518262804,-0.070735164,0.806168675,0.561344028,-0.061693411,0.910065413,0.514530301,-0.046649355,0.833567262,0.512025058,-0.077771254,0.816369414,0.588642597,-0.059757892,0.83221674,0.614887714,-0.040803038,0.915652275,0.577309728,-0.063789591,0.846128523,0.588128388,-0.082938649,0.832739055,0.64015907,-0.071435064,0.84982115,0.659119666,-0.057960186 +Right,0.851267636,0.742577732,-2.73E-07,0.799008012,0.648637056,-0.013541576,0.777332067,0.573464215,-0.034691561,0.762104809,0.51701355,-0.058440045,0.756906092,0.485572577,-0.081836984,0.863286376,0.435194075,-0.020884853,0.843053699,0.336722374,-0.049427427,0.828177333,0.263360232,-0.067193359,0.818496943,0.20649153,-0.080595069,0.889048874,0.463715255,-0.031903885,0.811819553,0.420140982,-0.065122865,0.78512013,0.496359646,-0.065857068,0.792150795,0.535263419,-0.060722772,0.897454619,0.510231733,-0.046275299,0.80599606,0.503100038,-0.072597988,0.793116212,0.570045054,-0.055911016,0.809541821,0.597519815,-0.041007493,0.891096592,0.56896013,-0.06369824,0.813066065,0.575261056,-0.080862261,0.804882944,0.623149753,-0.071056895,0.823579311,0.642184973,-0.06048812 +Right,0.844758153,0.738590896,-2.17E-07,0.8029356,0.638750851,-0.012557332,0.780319929,0.556158185,-0.034307484,0.752837181,0.491865933,-0.057811532,0.736241281,0.467467755,-0.081178054,0.861518562,0.434921712,-0.025586532,0.834238112,0.326780498,-0.053134754,0.818027914,0.251363933,-0.070103355,0.809061468,0.190428674,-0.083261333,0.873687625,0.464751363,-0.035951782,0.782461166,0.412451208,-0.070777044,0.761226237,0.476786464,-0.073519439,0.770532489,0.512153327,-0.070288628,0.868192136,0.511311471,-0.048637003,0.768600821,0.496984303,-0.076480001,0.763290405,0.555843174,-0.064889967,0.784056306,0.577472925,-0.053158596,0.851490974,0.565536141,-0.063610896,0.768683851,0.564381242,-0.082170218,0.764763951,0.609574497,-0.076264083,0.785561144,0.626113534,-0.068529002 +Right,0.836955309,0.714916289,-1.72E-07,0.822311342,0.612884998,-0.001441537,0.79808265,0.524173915,-0.018670501,0.754222393,0.470476806,-0.038306411,0.718907952,0.455559224,-0.059223529,0.853461146,0.426248103,-0.026074436,0.824531794,0.315716028,-0.050274886,0.806982934,0.244149938,-0.065822043,0.794453859,0.181263357,-0.078869574,0.854667664,0.462202042,-0.040287152,0.762032151,0.405160934,-0.068919294,0.750023723,0.461437404,-0.070685022,0.76472491,0.489293456,-0.070467308,0.839395761,0.512107849,-0.05469612,0.745336056,0.482498884,-0.07677342,0.745841742,0.532357991,-0.064429112,0.768271446,0.548794389,-0.055386145,0.816332042,0.564625263,-0.069915257,0.741621196,0.549979746,-0.086124808,0.744466543,0.59059757,-0.079009824,0.76630801,0.60691607,-0.072277322 +Right,0.833602667,0.691276431,-7.65E-08,0.844578385,0.588032901,-0.001680664,0.820492864,0.490044981,-0.01771016,0.765518606,0.441223353,-0.034473561,0.720486045,0.430482566,-0.053645279,0.853174329,0.42370683,-0.036132537,0.823601246,0.308228254,-0.059724744,0.806830347,0.232418507,-0.074140571,0.795926332,0.168345511,-0.08592011,0.839789331,0.460220158,-0.048459455,0.749648333,0.391638458,-0.073615052,0.741268277,0.446536273,-0.072944574,0.760362923,0.477870554,-0.071792394,0.814454794,0.50981462,-0.05993738,0.727431297,0.462452054,-0.079610147,0.730805278,0.509336591,-0.06577269,0.754667819,0.528921843,-0.055948116,0.78528595,0.562062681,-0.071641028,0.718634665,0.525371909,-0.086359106,0.725980282,0.56203723,-0.076982424,0.748110533,0.580476165,-0.068782337 +Right,0.827596664,0.690613449,-1.76E-07,0.814848542,0.591443419,-0.002609046,0.791520715,0.504210413,-0.019899065,0.748173833,0.451550484,-0.038912438,0.712252021,0.434203982,-0.059208754,0.848997474,0.412010789,-0.027093016,0.818934679,0.302205443,-0.05075134,0.801088691,0.230446652,-0.065834902,0.790391207,0.168897063,-0.078262568,0.847411513,0.443366379,-0.040111925,0.757786155,0.381482929,-0.068511106,0.741821766,0.437063962,-0.071085528,0.754226148,0.469445288,-0.07081382,0.829899728,0.489483893,-0.053113181,0.738641798,0.458412409,-0.075585559,0.735711992,0.509182513,-0.064777754,0.756117284,0.528791189,-0.056259084,0.804914117,0.539209545,-0.066757187,0.731978059,0.527161002,-0.084036618,0.733078957,0.569187939,-0.078214891,0.753832519,0.586068511,-0.07202436 +Right,0.813494027,0.706760943,-2.77E-07,0.76361841,0.605825424,-0.010738729,0.750231266,0.53112781,-0.029223988,0.741656899,0.46918416,-0.04968141,0.73473835,0.422913462,-0.070020765,0.85108,0.421765089,-0.020492133,0.835025966,0.313712984,-0.046604525,0.825867176,0.238864914,-0.064651579,0.821459293,0.175503999,-0.078816421,0.865658164,0.444678724,-0.030742522,0.78329432,0.372346818,-0.063381962,0.75559473,0.439118683,-0.067019179,0.75982064,0.487035334,-0.065085031,0.859822631,0.481449604,-0.043336429,0.767282605,0.446824759,-0.070018925,0.752550662,0.510875165,-0.057672884,0.765383959,0.550119698,-0.045960966,0.840801001,0.525961399,-0.058277775,0.762005687,0.514140368,-0.078687087,0.749670565,0.562019765,-0.07389497,0.762254119,0.591533005,-0.066722453 +Right,0.784392178,0.706112981,-3.07E-07,0.742007613,0.630310416,-0.015895223,0.721123636,0.55466634,-0.032508556,0.711389363,0.495785087,-0.051084161,0.728254974,0.459713638,-0.068386182,0.795801222,0.424003392,-0.013781507,0.788597047,0.330455482,-0.040889151,0.781131923,0.266309679,-0.057801683,0.77804333,0.210781068,-0.070152201,0.827578485,0.441770613,-0.022044165,0.780314982,0.392243981,-0.058959067,0.750868082,0.467078984,-0.064674743,0.747985542,0.514618099,-0.05984753,0.847419024,0.480750382,-0.033925451,0.782932758,0.466550261,-0.065809019,0.7649405,0.540412664,-0.054544557,0.773338914,0.575968504,-0.039322931,0.854723811,0.534576058,-0.0484634,0.794766307,0.535189867,-0.067756079,0.780130088,0.585645318,-0.059965629,0.790937781,0.608230889,-0.048989214 +Right,0.791669726,0.707698166,-2.77E-07,0.754371345,0.640316725,-0.019424144,0.73206526,0.56000632,-0.035963301,0.723012865,0.497851491,-0.053706888,0.745740891,0.4734689,-0.070042215,0.803000152,0.431029826,-0.014914501,0.796790957,0.333565265,-0.041246522,0.790333211,0.269574761,-0.056660779,0.789886236,0.214811921,-0.067744844,0.837910533,0.449955076,-0.021371607,0.803909779,0.396948963,-0.059743982,0.771880805,0.47325325,-0.06605415,0.763991535,0.525958896,-0.060004927,0.861525476,0.491064489,-0.031605724,0.807254672,0.474108428,-0.064979732,0.783722281,0.548406661,-0.054861948,0.786777735,0.587538302,-0.038830955,0.873568177,0.547114611,-0.044602424,0.819025695,0.549944401,-0.063681982,0.799706936,0.59910351,-0.056366354,0.80645442,0.622350037,-0.045279451 +Right,0.787957549,0.703190804,-2.24E-07,0.752071977,0.647163928,-0.024891062,0.726615191,0.571352243,-0.044137616,0.718487978,0.511740148,-0.063371114,0.74624449,0.486575097,-0.081172712,0.787598193,0.432309389,-0.023143919,0.783599079,0.331505239,-0.052225932,0.779401124,0.267760932,-0.069465779,0.781537116,0.211677432,-0.081604362,0.826629698,0.446699262,-0.027011648,0.799550116,0.397474885,-0.068244651,0.769800544,0.476845533,-0.075537011,0.759976625,0.530501783,-0.069545127,0.85501945,0.485874593,-0.034895014,0.807887316,0.479450047,-0.07059563,0.784757733,0.554419994,-0.061159227,0.785033405,0.591730654,-0.044720482,0.872873545,0.540807366,-0.045853764,0.824410975,0.549452245,-0.06642396,0.80359453,0.600107551,-0.059379432,0.806585848,0.622805774,-0.047959711 +Right,0.77763021,0.679543734,-2.13E-07,0.742031693,0.630093694,-0.025988428,0.714464307,0.553834617,-0.045968074,0.714547634,0.490264028,-0.065566808,0.746763885,0.459184796,-0.084044844,0.766397357,0.414281398,-0.026033629,0.763668537,0.313472211,-0.054519847,0.762367547,0.250691831,-0.07150162,0.766324461,0.194514871,-0.083531313,0.807177722,0.425958544,-0.029149165,0.791076779,0.372748166,-0.068909153,0.765492141,0.460974246,-0.074489847,0.754364967,0.522715211,-0.068120733,0.839915097,0.462659776,-0.036306176,0.810125947,0.446281672,-0.072779864,0.785729587,0.527813673,-0.062298428,0.779295325,0.575875223,-0.045072287,0.865081787,0.515432954,-0.046239212,0.83279258,0.509382129,-0.068544783,0.808964014,0.563070297,-0.061174884,0.803835392,0.593635678,-0.049514662 +Right,0.768647313,0.703463256,-1.92E-07,0.731840134,0.651402771,-0.025649088,0.704052746,0.570278347,-0.043621544,0.716390431,0.50715822,-0.060998473,0.755577087,0.483528763,-0.077232696,0.751063943,0.428493619,-0.024481425,0.750743091,0.331633389,-0.051122848,0.752495527,0.271443516,-0.067849554,0.757848024,0.214975029,-0.080145597,0.793667018,0.4422566,-0.027687866,0.790344954,0.391818017,-0.065691113,0.767562211,0.481937587,-0.071566515,0.756109238,0.544224858,-0.065727502,0.828548133,0.480571419,-0.034834571,0.815800309,0.466369838,-0.071054816,0.789057016,0.549200833,-0.061769567,0.778527141,0.596951127,-0.045073193,0.856378317,0.53382957,-0.044607759,0.840070724,0.523811877,-0.066984497,0.81387651,0.5786497,-0.059558988,0.803126156,0.611031532,-0.047805253 +Right,0.763188899,0.709294617,-1.25E-07,0.723090172,0.656509578,-0.028376985,0.69839257,0.572097659,-0.046584159,0.720673084,0.515640795,-0.064004943,0.760179996,0.49159804,-0.079890102,0.739452064,0.427505672,-0.024663521,0.740254343,0.330462366,-0.051869106,0.743230581,0.270747811,-0.070224151,0.748639822,0.214535922,-0.083905384,0.782277465,0.445767105,-0.027415643,0.787860453,0.395343423,-0.06827727,0.766973138,0.483637333,-0.078012012,0.753879428,0.543708384,-0.074628033,0.817328513,0.485209554,-0.034219991,0.818619668,0.461915106,-0.073844895,0.789424062,0.548730671,-0.066620119,0.772871375,0.598095059,-0.050749298,0.845021963,0.538770139,-0.043651037,0.841293991,0.522486508,-0.069342181,0.812848389,0.579404116,-0.06252443,0.796044588,0.611450434,-0.050697625 +Right,0.762373686,0.707864165,-1.05E-07,0.72234726,0.653692126,-0.028060278,0.703874707,0.564099789,-0.044654895,0.734974205,0.506479025,-0.06032655,0.773276389,0.478445709,-0.074723788,0.738023758,0.42718792,-0.02497139,0.740303874,0.329426259,-0.050986018,0.743674219,0.270102859,-0.067938842,0.749456823,0.213245332,-0.080392823,0.780459344,0.448398352,-0.027603885,0.795631111,0.391467899,-0.06858208,0.776227891,0.481418759,-0.078305326,0.762229741,0.541930079,-0.074201986,0.814760327,0.488244951,-0.033926509,0.826651037,0.457634211,-0.074102849,0.797245204,0.548166454,-0.066716172,0.779104233,0.598567367,-0.050042856,0.841798782,0.540824175,-0.042608555,0.849117279,0.515081465,-0.068121918,0.822323859,0.573994756,-0.060223348,0.804651678,0.606488705,-0.047377784 +Right,0.774200141,0.724370122,-1.61E-08,0.734492004,0.664171755,-0.030529454,0.723789752,0.577192664,-0.048802152,0.762724459,0.523952723,-0.065756351,0.801855743,0.493210912,-0.081539303,0.750302553,0.443911016,-0.027824415,0.754766226,0.345848799,-0.05648762,0.761377394,0.283645183,-0.075759076,0.770407796,0.224128813,-0.089479752,0.793150544,0.463188559,-0.029418007,0.817777574,0.404755473,-0.073294416,0.801702917,0.490135342,-0.085535489,0.785760403,0.550311565,-0.082518697,0.827941597,0.501201987,-0.034791857,0.848416865,0.476245821,-0.077258542,0.821401715,0.560437858,-0.071946613,0.801000535,0.609009862,-0.055933841,0.854371011,0.552331209,-0.042666294,0.871079147,0.526204348,-0.069971927,0.847292185,0.583659112,-0.063108362,0.827773511,0.618643701,-0.050323371 +Right,0.774568021,0.715262711,-1.03E-07,0.735121369,0.656940162,-0.02592049,0.715210259,0.565415978,-0.041935947,0.746032834,0.51323545,-0.057326853,0.787302494,0.502869666,-0.07186228,0.756859601,0.433932096,-0.025721053,0.763670087,0.336078137,-0.051678527,0.769578755,0.277009755,-0.069439016,0.776335001,0.219679475,-0.082860321,0.800073326,0.456748188,-0.028881831,0.812194884,0.413607985,-0.069631577,0.789001703,0.500944734,-0.080184661,0.771534741,0.556549966,-0.07724572,0.834935069,0.496922195,-0.035222393,0.842052579,0.479688883,-0.07416597,0.811468959,0.564877212,-0.067774564,0.791831732,0.611524343,-0.052380599,0.861991525,0.548995376,-0.0438352,0.863774538,0.535452664,-0.068577625,0.83564961,0.592426062,-0.0610625,0.817596555,0.622672915,-0.048549917 +Right,0.773136258,0.705666363,-2.08E-07,0.737336755,0.649327159,-0.023751928,0.71265471,0.566765726,-0.041313682,0.725566149,0.505959511,-0.058669657,0.763563454,0.487483174,-0.074991532,0.767049015,0.429607689,-0.024770483,0.770276785,0.330531657,-0.050912447,0.7732687,0.269494295,-0.066916369,0.779606342,0.214080781,-0.078615658,0.809248865,0.446971774,-0.028719597,0.807216644,0.399138957,-0.066978186,0.778648555,0.484909713,-0.072960041,0.761650562,0.547771156,-0.066919409,0.841939926,0.489471197,-0.036165796,0.82494539,0.480072528,-0.071864501,0.794158995,0.557406306,-0.063153625,0.780637145,0.606594622,-0.046891138,0.866536081,0.547027051,-0.046035279,0.844179392,0.543283463,-0.06809254,0.815082729,0.593683064,-0.061337154,0.802543342,0.625987887,-0.049991034 +Right,0.772334993,0.702248991,-1.86E-07,0.737849653,0.644317865,-0.025796019,0.713832498,0.56825459,-0.045134544,0.709684312,0.507937789,-0.064086519,0.740501046,0.492276847,-0.081748798,0.771516681,0.435072809,-0.025211649,0.770438015,0.334460914,-0.05482091,0.769400239,0.269603312,-0.072965965,0.773698032,0.212358683,-0.085880697,0.811916649,0.44871217,-0.028074004,0.789662898,0.401913166,-0.068345308,0.762235284,0.477504224,-0.075875185,0.750319719,0.530034959,-0.070599429,0.841871142,0.488207251,-0.034873124,0.798686504,0.486137152,-0.06897153,0.777141213,0.556963027,-0.060362026,0.775212705,0.593562782,-0.045186486,0.861474931,0.543750465,-0.044909053,0.815504432,0.559101999,-0.064658098,0.794777989,0.606513977,-0.058752861,0.795421243,0.627614796,-0.048581805 +Right,0.768008947,0.702311099,-2.70E-07,0.727920234,0.631853104,-0.0181129,0.70635128,0.564918101,-0.037078448,0.693184733,0.5109905,-0.057258364,0.705548286,0.486572117,-0.076383956,0.776301801,0.429883331,-0.020562179,0.767981172,0.337066412,-0.048404407,0.758479059,0.274454474,-0.064869158,0.752631545,0.221634209,-0.076695658,0.811339319,0.450079769,-0.027466396,0.759739757,0.416704804,-0.063402399,0.731798291,0.493607521,-0.067779101,0.731476426,0.536648154,-0.062488884,0.831447423,0.493475527,-0.03785906,0.763590515,0.49516955,-0.068037763,0.746604145,0.563853443,-0.05630241,0.756809533,0.591615915,-0.041551325,0.836884141,0.550049305,-0.051139235,0.774215817,0.562791228,-0.069884703,0.760510027,0.609375954,-0.06224627,0.772584319,0.626869798,-0.051548213 +Right,0.78518796,0.710323453,-2.47E-07,0.733359694,0.626435399,-0.013291443,0.714003682,0.564683259,-0.031831294,0.700555503,0.51550734,-0.052079443,0.68582499,0.480548471,-0.07200098,0.79188329,0.43595764,-0.022180608,0.771581948,0.342874348,-0.048559442,0.757476509,0.274737,-0.06594152,0.747871518,0.221466035,-0.078981631,0.812538564,0.461663723,-0.032084037,0.736462533,0.425354034,-0.062591366,0.71061641,0.485120237,-0.065671042,0.714840889,0.518562257,-0.063274108,0.816007972,0.506018877,-0.044820759,0.728547275,0.503009617,-0.068070196,0.719343603,0.55780673,-0.055331927,0.735284984,0.580228925,-0.044124961,0.806098878,0.560379922,-0.060520366,0.7328403,0.568336844,-0.075682051,0.725928843,0.607580364,-0.067800857,0.742141426,0.622868478,-0.059227869 +Right,0.791629612,0.694311798,-1.73E-07,0.762521565,0.606289744,-0.006855842,0.738857269,0.529304028,-0.024073917,0.705950975,0.475645244,-0.042517949,0.680684507,0.456621051,-0.061317794,0.801307201,0.42635411,-0.025377925,0.7726776,0.327348232,-0.048629072,0.753518701,0.260956198,-0.062968411,0.739488721,0.205149949,-0.074453898,0.804077864,0.458448142,-0.036076494,0.717290044,0.413731217,-0.064120539,0.7068187,0.469049782,-0.065871112,0.722011328,0.494704425,-0.064609341,0.791448951,0.502443016,-0.04772247,0.703877091,0.487161189,-0.070219606,0.705022454,0.536044598,-0.058716271,0.726736426,0.549060285,-0.049267337,0.771309674,0.550649524,-0.060781002,0.701137066,0.546592653,-0.077197798,0.703433633,0.58586216,-0.070637211,0.724049866,0.598589897,-0.063602835 +Right,0.790243387,0.681430936,-6.61E-08,0.799868107,0.584534109,-0.001408488,0.778592348,0.496509224,-0.016877364,0.728300154,0.454046875,-0.033034962,0.688650846,0.450639665,-0.051442072,0.808921993,0.438468009,-0.034793362,0.780676782,0.333781362,-0.056615762,0.763401151,0.264612973,-0.06962122,0.750926793,0.206257612,-0.080219693,0.796402395,0.475381732,-0.046739615,0.710759401,0.414060533,-0.06963218,0.706984997,0.464857161,-0.068233564,0.726909041,0.490932018,-0.066713423,0.773043036,0.522485137,-0.057778388,0.691931665,0.481567472,-0.075046301,0.698776662,0.522857606,-0.061241459,0.722320259,0.537725329,-0.051710639,0.746049702,0.570959568,-0.069097042,0.683701634,0.535657644,-0.081081957,0.692389965,0.568496883,-0.07089147,0.713213921,0.585111856,-0.062532946 +Right,0.793790102,0.682092547,-4.14E-08,0.808833003,0.582125485,0.001402379,0.793094873,0.486207664,-0.011637711,0.748133361,0.439578444,-0.025336407,0.710181057,0.43797192,-0.041881271,0.815972865,0.443418384,-0.03619241,0.78730011,0.332868397,-0.057073679,0.770647705,0.263509542,-0.06838911,0.759320557,0.205637097,-0.077524357,0.79778254,0.477396995,-0.048398316,0.716694176,0.406371385,-0.071491942,0.712319672,0.45574376,-0.069639407,0.731955647,0.485267937,-0.067245804,0.770530224,0.522279501,-0.058981378,0.694106698,0.469712526,-0.077733025,0.699453235,0.511356056,-0.064895518,0.72274816,0.529390693,-0.054945134,0.741184711,0.568682075,-0.069090009,0.682814181,0.527270019,-0.081683919,0.69110173,0.559737921,-0.071804971,0.711770833,0.576592684,-0.063258581 +Right,0.791055501,0.667116046,-3.78E-08,0.81058991,0.571054816,0.002173934,0.800491452,0.475976169,-0.009317906,0.763778269,0.426275015,-0.021159891,0.727893531,0.418008924,-0.036196377,0.816895723,0.435536623,-0.037469648,0.791158795,0.323004007,-0.058043089,0.776155949,0.251929402,-0.069243886,0.765847147,0.193365753,-0.077966549,0.795050979,0.466690242,-0.04869324,0.718332589,0.391894221,-0.06935171,0.712703824,0.439536035,-0.066057034,0.730641425,0.470923424,-0.063167214,0.765328765,0.508693397,-0.058110446,0.694664121,0.451764643,-0.074546732,0.699240386,0.492822468,-0.060828324,0.721156955,0.513676941,-0.050896291,0.734860063,0.553139865,-0.067004137,0.682913065,0.510320544,-0.078333274,0.691264629,0.542711854,-0.067862555,0.710612178,0.56155467,-0.059030607 +Right,0.783673048,0.667287827,-6.06E-08,0.802160919,0.570257485,0.006303335,0.792759359,0.475652635,-0.002562898,0.759201407,0.42676428,-0.01209255,0.724932492,0.415510416,-0.024858711,0.808163404,0.437864482,-0.03453923,0.782180786,0.324751616,-0.053120289,0.766310215,0.255069256,-0.062915727,0.754374444,0.197360963,-0.070692919,0.783695698,0.465060264,-0.046027724,0.710493982,0.389981776,-0.062797487,0.707095385,0.438631147,-0.057369109,0.725273252,0.469991267,-0.05374651,0.752934635,0.503880978,-0.055215109,0.686687291,0.446498811,-0.066901885,0.691509962,0.487399459,-0.051601175,0.71232897,0.508287251,-0.041888766,0.722172618,0.546321392,-0.063678861,0.67462635,0.504199445,-0.071639039,0.682230115,0.536138415,-0.060215831,0.699793398,0.55497843,-0.051362168 +Right,0.771966875,0.645906508,-2.60E-08,0.795085073,0.554063141,0.007027461,0.789224982,0.462917596,0.001955843,0.760629475,0.411893874,-0.003429726,0.728681266,0.400389194,-0.012082205,0.797647476,0.425495744,-0.030903004,0.778857529,0.312499285,-0.047035284,0.765622318,0.244212851,-0.055626325,0.754834592,0.187719911,-0.062148195,0.769371092,0.442832559,-0.039590098,0.710127294,0.372855067,-0.050534103,0.706700504,0.415770203,-0.043219164,0.72094667,0.446480095,-0.038926817,0.73633033,0.472852439,-0.045986611,0.686057508,0.424553931,-0.05124861,0.689224362,0.461050272,-0.035471924,0.704644978,0.484532088,-0.026380017,0.704638779,0.509285927,-0.051840272,0.670195758,0.470239967,-0.054633271,0.675875425,0.501898825,-0.042273439,0.688674867,0.52475816,-0.033163093 +Right,0.763375282,0.627124727,-3.18E-08,0.787868142,0.537518382,0.006019203,0.783097506,0.448765486,0.001300119,0.757122695,0.391408384,-0.003722383,0.726012051,0.370966345,-0.011621444,0.792217255,0.408401281,-0.029616453,0.774494708,0.292246997,-0.044411078,0.763433278,0.223090231,-0.051634546,0.754683673,0.165788412,-0.057042424,0.762769699,0.423528194,-0.037166867,0.705919027,0.355789691,-0.047753163,0.701304257,0.397581011,-0.04059954,0.714950502,0.42797336,-0.035966191,0.729582369,0.450133801,-0.042603213,0.682960927,0.412364095,-0.047300167,0.684662521,0.447451502,-0.033152141,0.698708832,0.469465017,-0.024942184,0.698467255,0.482646555,-0.047686588,0.668349445,0.453456998,-0.049147896,0.671543241,0.485157996,-0.038094305,0.681714833,0.506770134,-0.029847965 +Right,0.764784694,0.627542496,-5.12E-08,0.785617113,0.534384012,0.00723485,0.778137863,0.446199596,0.001659167,0.747464061,0.39254415,-0.005417774,0.71483475,0.373247743,-0.015429867,0.790325224,0.401301414,-0.024825331,0.769908249,0.28864488,-0.038997605,0.757104933,0.220957175,-0.045119829,0.747527897,0.165478379,-0.049761962,0.762876153,0.418534279,-0.03452618,0.70254302,0.355778396,-0.048021853,0.697945714,0.399561733,-0.042846944,0.712650597,0.43062067,-0.038657676,0.731264889,0.448150754,-0.042116906,0.678888798,0.413965702,-0.050376769,0.680932283,0.451757073,-0.037471,0.696558177,0.471713364,-0.029166361,0.700446725,0.482978642,-0.049124971,0.664768696,0.458631039,-0.052678812,0.669210434,0.491551369,-0.041933816,0.682090759,0.509304762,-0.033512291 +Right,0.772729456,0.63673842,-5.93E-08,0.791184723,0.54199338,0.008653355,0.781571507,0.452081025,0.003511069,0.750053704,0.39914611,-0.003011613,0.716872215,0.383529395,-0.012731517,0.789803505,0.404617727,-0.026646614,0.764658332,0.295030206,-0.041373413,0.750122547,0.229137436,-0.047989152,0.738709152,0.175470084,-0.053002346,0.763194978,0.425343663,-0.03680376,0.700216174,0.365334779,-0.049463887,0.697359324,0.409506977,-0.043039657,0.712665021,0.438830882,-0.038379375,0.73245126,0.459583879,-0.044578034,0.67810607,0.425621152,-0.052066728,0.682211578,0.46388635,-0.037732687,0.698998809,0.483591676,-0.028739182,0.702385604,0.499691516,-0.051575415,0.665687025,0.472340196,-0.055406861,0.672472775,0.505091488,-0.044027418,0.68675679,0.522605479,-0.03512571 +Right,0.771653891,0.625683784,-7.51E-08,0.788651407,0.53265518,0.006786735,0.779819727,0.444748461,0.001140045,0.749610543,0.39112404,-0.005612269,0.718203902,0.373299569,-0.015222287,0.788869619,0.398370624,-0.026141617,0.76157999,0.292177618,-0.041133091,0.745723665,0.228044972,-0.047588587,0.734524965,0.174739838,-0.052489154,0.763775229,0.418590635,-0.035618231,0.69793427,0.361387163,-0.050123617,0.695061743,0.407750368,-0.044610355,0.711424708,0.437965542,-0.039838117,0.734481037,0.452103674,-0.043058176,0.677502751,0.422343105,-0.052773666,0.681424201,0.461736381,-0.039738502,0.699067056,0.480092973,-0.030829603,0.705550253,0.491233349,-0.049847558,0.666651368,0.472565919,-0.055383436,0.673434198,0.505440116,-0.045586172,0.688460827,0.520923138,-0.037438508 +Right,0.766346991,0.620561004,-1.14E-07,0.781814873,0.529701352,0.006651575,0.773585677,0.445458233,0.000413265,0.743318498,0.394277692,-0.007418753,0.712109387,0.378041834,-0.017985208,0.785674989,0.395490408,-0.023035971,0.7586568,0.291873276,-0.038288184,0.741779864,0.229479253,-0.045127463,0.730614364,0.177554414,-0.050448738,0.766304016,0.416163862,-0.033235304,0.695789933,0.360150337,-0.049243357,0.688802958,0.407437861,-0.044814933,0.704303801,0.43693012,-0.040730778,0.739749014,0.449116111,-0.041811425,0.675483763,0.418130487,-0.053497922,0.676216841,0.460004091,-0.041141123,0.694420755,0.478784353,-0.032543682,0.711708605,0.486433119,-0.049845535,0.664690077,0.470211387,-0.057642329,0.668304384,0.505503118,-0.049088318,0.684042811,0.52230072,-0.041699138 +Right,0.766475141,0.624713242,-1.17E-07,0.78055352,0.534253359,0.006259636,0.771230996,0.450582296,-0.000471859,0.739773571,0.400924265,-0.008870884,0.708438158,0.384896964,-0.020005872,0.783988059,0.39963764,-0.023108656,0.755976081,0.295257926,-0.038364965,0.738708973,0.232632533,-0.045437172,0.727672637,0.179642186,-0.051061396,0.765125215,0.419948727,-0.033204325,0.694624364,0.365159422,-0.049455401,0.68669188,0.413187355,-0.045480635,0.701475203,0.442559361,-0.041799169,0.739120901,0.453308731,-0.0416396,0.673540294,0.421490669,-0.053573117,0.673182964,0.464839488,-0.041182611,0.690788209,0.4845559,-0.032649271,0.711524963,0.491322845,-0.04956932,0.662881494,0.475035936,-0.0577497,0.66539973,0.511242032,-0.049193919,0.680661619,0.528885543,-0.041798707 +Right,0.763497949,0.627645731,-1.42E-07,0.778130591,0.535292864,0.004925273,0.770089865,0.445874274,-0.002030788,0.740991354,0.385377109,-0.010551368,0.711654246,0.357877761,-0.021492265,0.781635404,0.398016155,-0.023409961,0.753023267,0.295909703,-0.04051581,0.736067772,0.232618451,-0.048392989,0.725122511,0.179694965,-0.054413922,0.764650464,0.418980867,-0.033693697,0.689740479,0.365314424,-0.052724175,0.681715906,0.414574891,-0.048949946,0.696696997,0.444115013,-0.044839345,0.739593685,0.453670979,-0.042860281,0.670117021,0.423674315,-0.058429651,0.670316279,0.467959642,-0.046297427,0.688994884,0.486995906,-0.037010089,0.712859333,0.492918551,-0.051606115,0.661079168,0.478989899,-0.062929817,0.662818134,0.515600801,-0.055722289,0.678108633,0.532178581,-0.048748862 +Right,0.764861465,0.631482244,-1.27E-07,0.779048145,0.540091395,0.005165955,0.770445526,0.455324531,-0.002413783,0.739218295,0.403623849,-0.011776268,0.707801282,0.387571037,-0.023700222,0.783109307,0.402902812,-0.023867436,0.753744602,0.300744951,-0.040815201,0.736424565,0.237205729,-0.04890107,0.725004673,0.184466749,-0.055231459,0.766391635,0.424999356,-0.034571696,0.690398932,0.373388827,-0.053069863,0.684049249,0.421872914,-0.04950083,0.700336456,0.450196296,-0.045846939,0.741775274,0.460436136,-0.044057865,0.671846032,0.43288219,-0.05831762,0.673461854,0.475721031,-0.046350583,0.692926645,0.49245736,-0.037715435,0.715161502,0.500324667,-0.053245679,0.663042307,0.48898375,-0.063435301,0.665916741,0.523790538,-0.056080628,0.68183428,0.537956715,-0.049365256 +Right,0.767474651,0.637080073,-1.23E-07,0.781559825,0.54496026,0.003908648,0.772555351,0.459994555,-0.003944812,0.740607738,0.409068704,-0.013435928,0.708908796,0.396654546,-0.025210885,0.785722375,0.406626165,-0.022900591,0.755916417,0.305524558,-0.040434208,0.739016116,0.242175207,-0.049444813,0.727699161,0.188553393,-0.05656429,0.771424472,0.428117871,-0.033819359,0.694755018,0.375304878,-0.053558789,0.688900054,0.425290495,-0.051164571,0.705476344,0.454500377,-0.047893461,0.748286188,0.463211894,-0.043803804,0.677016497,0.43765378,-0.059301913,0.679541051,0.482477814,-0.048433509,0.699451685,0.49990806,-0.040169939,0.722337186,0.502954483,-0.053675883,0.669294953,0.497299165,-0.065217413,0.675041378,0.533909559,-0.058921255,0.693080485,0.547594309,-0.052757386 +Right,0.772078991,0.643073142,-1.26E-07,0.78375119,0.552359164,0.001822299,0.771515012,0.469734341,-0.007047178,0.735030413,0.422410399,-0.01717215,0.701327682,0.414621264,-0.029214427,0.788281858,0.410524398,-0.023484135,0.758311272,0.310069084,-0.040999968,0.741082191,0.24725312,-0.050320651,0.729500592,0.19335942,-0.057986498,0.776406646,0.432296365,-0.033681277,0.698232591,0.380586833,-0.053294383,0.692270041,0.432353735,-0.050894517,0.708970845,0.461037874,-0.047869567,0.754891217,0.468041867,-0.043233048,0.680577874,0.445027649,-0.057987642,0.682947457,0.489909589,-0.046979509,0.703023851,0.505574286,-0.039199799,0.729916632,0.50858748,-0.053048126,0.674225986,0.50541842,-0.06417159,0.680124462,0.541531384,-0.05815715,0.698445499,0.554102361,-0.052614998 +Right,0.776625037,0.650638163,-1.63E-07,0.786282361,0.56066972,0.001665434,0.77379936,0.477640092,-0.006242537,0.739672005,0.427567393,-0.015729096,0.707029402,0.418018103,-0.026789166,0.791412115,0.412964404,-0.019809669,0.761855066,0.313919246,-0.037398469,0.745240033,0.251503348,-0.047026377,0.733634889,0.197417215,-0.055058155,0.782853186,0.43319869,-0.03056697,0.703423202,0.38251245,-0.051838849,0.695796072,0.436273336,-0.050679751,0.711067557,0.467855245,-0.048011944,0.764145434,0.468501329,-0.041086063,0.687480867,0.45112884,-0.057462122,0.689622939,0.498389095,-0.047996666,0.70968616,0.514847338,-0.040998433,0.741910934,0.509493351,-0.052015286,0.683073044,0.513457179,-0.06461253,0.688075185,0.551629901,-0.060272045,0.70673579,0.563740671,-0.055863921 +Right,0.778939724,0.656929433,-1.65E-07,0.783700705,0.568871737,0.001708801,0.766661465,0.490516096,-0.008110111,0.727164984,0.443997055,-0.019960176,0.693500757,0.436981201,-0.033083878,0.792851865,0.417124122,-0.019266244,0.761677802,0.318426758,-0.03707318,0.743443131,0.256878883,-0.04688222,0.730365038,0.203077674,-0.055241685,0.785538733,0.438501865,-0.030910498,0.704943538,0.389620125,-0.053804129,0.698589444,0.445000052,-0.053668749,0.714596272,0.477425277,-0.051470447,0.76752007,0.474466622,-0.042322461,0.689267814,0.461558253,-0.059335764,0.692178369,0.508984625,-0.050233316,0.712720811,0.523721457,-0.04355935,0.745573282,0.514833093,-0.054238044,0.686282933,0.521380186,-0.066574074,0.690724313,0.559781492,-0.062328491,0.709226131,0.570816994,-0.05823537 +Right,0.784820855,0.665409207,-2.09E-07,0.760036051,0.58724308,-0.002367845,0.73783344,0.516781807,-0.014829829,0.706220686,0.466294229,-0.028999053,0.680186391,0.444221467,-0.043667402,0.793968737,0.418593317,-0.018150153,0.762126386,0.321159214,-0.038152754,0.743947923,0.259337068,-0.05119697,0.731018603,0.204415813,-0.062066339,0.793989778,0.437155813,-0.028457757,0.710465789,0.3920632,-0.053153224,0.700842083,0.44975549,-0.054863133,0.715591669,0.481871426,-0.053970397,0.779472888,0.468967825,-0.039470896,0.697481394,0.459553123,-0.058670368,0.697510362,0.512357831,-0.049587648,0.717569947,0.530446351,-0.042602789,0.758607507,0.506696343,-0.051594663,0.695027828,0.516925454,-0.067117833,0.69602704,0.560423613,-0.064084277,0.714290679,0.574933469,-0.060048126 +Right,0.78379643,0.669169903,-2.02E-07,0.734863698,0.59899044,-0.007971126,0.712440789,0.534500659,-0.022593612,0.693562686,0.479332924,-0.038214538,0.680124819,0.442187458,-0.053782828,0.787063718,0.41440779,-0.020199176,0.759846687,0.323929995,-0.041381691,0.742483556,0.261299551,-0.055765703,0.729410887,0.207853377,-0.067409113,0.792929351,0.433315158,-0.028535759,0.710806131,0.389199466,-0.05392867,0.697908342,0.449072689,-0.05568498,0.710711837,0.483293563,-0.054299682,0.783288121,0.466085494,-0.038360767,0.701133668,0.455723226,-0.059301913,0.698100805,0.509512961,-0.048806742,0.715881526,0.531208336,-0.040015105,0.765236318,0.507417023,-0.049951285,0.700797081,0.518271565,-0.067243718,0.699643016,0.560950637,-0.063578874,0.71687597,0.577706814,-0.058170777 +Left,0.296212316,0.796162605,3.21E-07,0.348552436,0.732763112,-0.006339038,0.387135386,0.65377754,-0.026214192,0.40604037,0.589663327,-0.051397514,0.387118012,0.588512301,-0.077665307,0.314973712,0.454845637,-0.020050252,0.340149283,0.350970864,-0.052455135,0.362971485,0.27290228,-0.07382188,0.379326582,0.205569655,-0.088366754,0.274102837,0.463918507,-0.038305636,0.356929839,0.434948653,-0.077147223,0.371177614,0.526424825,-0.085005343,0.351985902,0.571022213,-0.083404489,0.24924238,0.513302207,-0.058231886,0.33879298,0.537273645,-0.093813494,0.345452368,0.616752207,-0.087636873,0.32315731,0.640989661,-0.077240542,0.238048732,0.585977495,-0.07950978,0.315265328,0.613118231,-0.098440595,0.322365582,0.677577555,-0.08945974,0.302273422,0.702017367,-0.079635113 +Left,0.301661938,0.764691234,1.60E-07,0.362285376,0.685551584,-0.005617095,0.403700858,0.606012166,-0.024543306,0.425497055,0.536578238,-0.04989247,0.409775585,0.519791365,-0.075527228,0.335297495,0.395789474,-0.013629457,0.362851381,0.283075631,-0.041341405,0.385093242,0.209834188,-0.057394728,0.401051939,0.148442596,-0.068181321,0.295242965,0.401968062,-0.032249924,0.376394451,0.372811437,-0.069087274,0.389382005,0.475408852,-0.074711196,0.372609228,0.527983963,-0.070307553,0.271566391,0.446217954,-0.05253699,0.361026168,0.482892931,-0.087462574,0.362461179,0.571010649,-0.080021359,0.339967042,0.601991951,-0.067181461,0.25955236,0.51201582,-0.074318491,0.336651057,0.546419621,-0.091587238,0.344384909,0.614288867,-0.081422262,0.326500624,0.64281714,-0.069798671 +Left,0.307403266,0.704385757,1.33E-07,0.367357701,0.630685687,-0.005925674,0.407443851,0.550672352,-0.025509521,0.429359078,0.482493609,-0.05134638,0.40923658,0.464779705,-0.076840349,0.340127289,0.34628886,-0.015329651,0.369247079,0.234527856,-0.044003084,0.390187085,0.156799138,-0.059610266,0.404916257,0.093020469,-0.070359498,0.300658077,0.346105486,-0.033937376,0.38229382,0.321574837,-0.073541805,0.39442423,0.429916769,-0.077735312,0.378448814,0.479241759,-0.071622163,0.278254449,0.381801635,-0.054288037,0.3658382,0.418416709,-0.089461833,0.365876883,0.50781101,-0.079167075,0.343476236,0.533369124,-0.064859383,0.267863095,0.439634979,-0.076528735,0.342110217,0.485372841,-0.094401464,0.346749336,0.551217914,-0.084720947,0.328101188,0.570964277,-0.073699206 +Left,0.313558459,0.702419639,1.43E-07,0.372405618,0.628555894,-0.006158409,0.412926674,0.550273061,-0.025924692,0.432628363,0.482349187,-0.05194556,0.413140029,0.467718571,-0.07786531,0.34559989,0.346531808,-0.014969122,0.373420119,0.237291723,-0.042541463,0.394799292,0.163903713,-0.057512458,0.410375625,0.102984309,-0.067715801,0.305752128,0.348048598,-0.033438276,0.384641707,0.316891611,-0.071636915,0.396838367,0.42147103,-0.076013185,0.380211562,0.472849995,-0.070016704,0.282793403,0.384678125,-0.053640485,0.370625228,0.41639936,-0.089544691,0.372034311,0.50767076,-0.080860309,0.349578172,0.538198054,-0.066912912,0.271833748,0.443559676,-0.075419396,0.347490042,0.482715219,-0.094423883,0.354067236,0.551565528,-0.085305579,0.336199284,0.577211618,-0.074148133 +Left,0.322937161,0.698409081,1.62E-07,0.382121116,0.629292846,-0.008422119,0.422597289,0.551815867,-0.028688399,0.44174844,0.484569073,-0.05471516,0.422933578,0.47221899,-0.080592498,0.360186905,0.355838627,-0.018294973,0.385518044,0.242234915,-0.048010819,0.409120739,0.17020914,-0.064483434,0.425521731,0.108740777,-0.075564399,0.320987195,0.358707428,-0.035686903,0.39481011,0.323217988,-0.077032432,0.408920169,0.423151553,-0.083834313,0.392748237,0.47209096,-0.079013638,0.297987729,0.393187106,-0.054852579,0.38197723,0.4260571,-0.093780287,0.385531783,0.517691195,-0.086658329,0.363833427,0.54671669,-0.072813049,0.287446052,0.447750449,-0.075593188,0.360022247,0.490646929,-0.09643212,0.365586311,0.559783876,-0.088265479,0.346335202,0.582880855,-0.077353366 +Left,0.311708152,0.709957361,1.76E-07,0.377016693,0.635566294,-0.006659577,0.412744015,0.562707841,-0.026085135,0.433516234,0.501872122,-0.051510528,0.424990088,0.482316852,-0.076290138,0.348034948,0.366256475,-0.016943309,0.377768129,0.253756523,-0.047196046,0.402897775,0.180339456,-0.065508112,0.420364767,0.118347615,-0.078242883,0.312872738,0.373400807,-0.035558473,0.393984914,0.342294395,-0.077164516,0.407994449,0.436787874,-0.085104041,0.392433286,0.483067811,-0.081919044,0.296672821,0.414395124,-0.05598041,0.385736942,0.444777042,-0.093667813,0.387791157,0.528403223,-0.087230362,0.365678132,0.552481711,-0.075168975,0.29437393,0.473789334,-0.078084297,0.371690869,0.519985676,-0.097980209,0.373556018,0.582974195,-0.090787053,0.352865249,0.599153042,-0.081445202 +Left,0.308081865,0.726955116,1.76E-07,0.37335366,0.647582889,-0.006190253,0.409721851,0.570296824,-0.025465438,0.431726635,0.506040096,-0.050692242,0.419912279,0.496659189,-0.075264715,0.341418087,0.377123207,-0.016929567,0.370290607,0.26858598,-0.047528584,0.395338327,0.195871741,-0.066189721,0.412857324,0.136264324,-0.079336494,0.306552052,0.385614932,-0.035981555,0.389068604,0.359871298,-0.078460321,0.403898865,0.455440849,-0.08674562,0.388515621,0.501520932,-0.083791696,0.291695416,0.428722203,-0.056799199,0.381919265,0.463338256,-0.095156617,0.384157926,0.546121478,-0.089441121,0.361968398,0.568572938,-0.077858232,0.290724874,0.490470886,-0.079272792,0.368943423,0.540039897,-0.099623546,0.370532781,0.601462603,-0.093384452,0.349752516,0.615980566,-0.084849082 +Left,0.30681929,0.733049929,1.53E-07,0.373538703,0.654973984,-0.004819751,0.409227908,0.577472866,-0.022779604,0.429555237,0.51398313,-0.04670231,0.418621659,0.493767351,-0.069899954,0.337535501,0.380786091,-0.016114669,0.368320644,0.273845911,-0.044799268,0.3925111,0.202189595,-0.062112994,0.409812242,0.142953187,-0.074394964,0.303651601,0.389084756,-0.034853205,0.388414979,0.363414198,-0.07400129,0.401954383,0.45539695,-0.081081368,0.386638254,0.50076586,-0.078137085,0.290008783,0.43393603,-0.05507629,0.38223049,0.465277791,-0.09087339,0.384505302,0.546490312,-0.084607959,0.362671763,0.570495844,-0.073313981,0.290685177,0.497268617,-0.076756403,0.369399548,0.541012049,-0.095583759,0.372263819,0.601762235,-0.08865115,0.352584541,0.618220806,-0.079895578 +Left,0.312848598,0.731689692,1.88E-07,0.369758934,0.657946587,-0.010682471,0.410639465,0.579251766,-0.030643819,0.426989436,0.509842336,-0.055663582,0.405349344,0.498635828,-0.080418281,0.348454118,0.383638233,-0.016670482,0.376365602,0.277263522,-0.045186959,0.397675306,0.20776619,-0.061595969,0.413200974,0.146078527,-0.072934017,0.307955235,0.384426355,-0.032694787,0.380886763,0.353029698,-0.073496573,0.393784195,0.454155564,-0.081472464,0.37891227,0.505560815,-0.077351637,0.282417297,0.419159889,-0.050757576,0.36271584,0.454389453,-0.089079902,0.366040438,0.542201579,-0.084181555,0.346689314,0.571677744,-0.071888424,0.268554777,0.475632966,-0.070610523,0.339763165,0.521186888,-0.091610163,0.34767434,0.589275897,-0.085369013,0.332409173,0.614171267,-0.075773098 +Left,0.312693894,0.730661809,1.65E-07,0.366737783,0.661482692,-0.011637934,0.409206271,0.585232496,-0.033343412,0.423792303,0.518266678,-0.06013437,0.396499604,0.507737577,-0.086909607,0.350534409,0.386258721,-0.019308567,0.378462583,0.282215238,-0.048464231,0.398895442,0.211890489,-0.063767992,0.414567381,0.150525361,-0.073639281,0.307044744,0.385065258,-0.03481812,0.375704229,0.356844008,-0.076185554,0.386088073,0.469967693,-0.081553347,0.37204206,0.524115562,-0.074583985,0.277989686,0.417535782,-0.05236087,0.35571456,0.450947911,-0.091566533,0.358024269,0.547355294,-0.08330591,0.339421034,0.581862032,-0.067737758,0.259610295,0.471867561,-0.071673356,0.328641683,0.511744261,-0.092729039,0.336839646,0.583382964,-0.083790153,0.322315693,0.61231482,-0.071598411 +Left,0.312501907,0.736636698,1.59E-07,0.365204573,0.668138802,-0.014294434,0.408433527,0.588633955,-0.035860524,0.419700563,0.51636976,-0.062072597,0.387938172,0.503182054,-0.088341929,0.352011472,0.391767502,-0.019482017,0.380543411,0.289887309,-0.048838157,0.39973411,0.220303372,-0.064372964,0.414961159,0.157885045,-0.074105546,0.307264626,0.389202058,-0.033135839,0.370180309,0.36172688,-0.076026067,0.377740622,0.477690786,-0.082366444,0.364249021,0.535878778,-0.075154141,0.275413245,0.417755395,-0.049053203,0.347865224,0.448049009,-0.090078913,0.349575043,0.548900485,-0.082306787,0.332798272,0.590792477,-0.06583748,0.253338367,0.467748523,-0.066885561,0.319300801,0.508486688,-0.08950723,0.328028411,0.58426559,-0.081270382,0.316055745,0.619689465,-0.068650879 +Left,0.299154758,0.738740563,1.48E-07,0.352276832,0.677874029,-0.017502019,0.399756402,0.594517052,-0.036482897,0.404643625,0.517324507,-0.058605507,0.367716491,0.493397713,-0.080510639,0.355697244,0.404569447,-0.017907316,0.380793035,0.298690796,-0.04618071,0.398162842,0.226646453,-0.06034831,0.410314053,0.159518063,-0.069224909,0.309319824,0.393404603,-0.028611848,0.358892918,0.356299549,-0.072429195,0.363943011,0.473500669,-0.080249988,0.349561244,0.533370256,-0.072998643,0.27266559,0.41254133,-0.041799333,0.326531172,0.43762055,-0.085412882,0.32869333,0.542948127,-0.080214828,0.312997431,0.583701134,-0.06439212,0.242281824,0.4544155,-0.056728415,0.294107318,0.5078457,-0.083121054,0.305283874,0.588534892,-0.077987678,0.297357768,0.619120479,-0.066657826 +Left,0.295147091,0.724220872,1.52E-07,0.346429914,0.668815732,-0.020479163,0.394117773,0.590198755,-0.03976097,0.393692255,0.513088167,-0.060927361,0.355331957,0.482536316,-0.081706345,0.354125172,0.40207538,-0.021219106,0.377488285,0.295754015,-0.048948787,0.393357664,0.224386171,-0.062220346,0.403063893,0.158316404,-0.070247501,0.307408512,0.389169842,-0.029491939,0.350034803,0.347279847,-0.072387993,0.354385138,0.464637548,-0.079164766,0.341560215,0.52518189,-0.070999868,0.268909216,0.40572384,-0.040187236,0.315376312,0.428945154,-0.084552243,0.318675786,0.537055731,-0.078062832,0.305494726,0.581283271,-0.060621895,0.234558702,0.444115222,-0.052545715,0.279371768,0.491454512,-0.080073543,0.293085456,0.574664056,-0.073382355,0.288613647,0.609136403,-0.060123257 +Left,0.29158622,0.717611969,1.65E-07,0.341414988,0.660178423,-0.02190965,0.387731671,0.577615559,-0.040822159,0.383339971,0.499954879,-0.061399065,0.342959732,0.477938443,-0.081587844,0.343332589,0.391960889,-0.019784993,0.365022242,0.285898358,-0.047033105,0.378053129,0.214538172,-0.06064111,0.385001242,0.1477516,-0.069163002,0.296330065,0.383507073,-0.027446844,0.336737096,0.337202966,-0.071353637,0.344293833,0.451775402,-0.079726018,0.333888441,0.515282094,-0.072340742,0.258113682,0.402991205,-0.037672769,0.304151952,0.421754479,-0.082985029,0.310547113,0.530509531,-0.077618644,0.299214691,0.57876575,-0.06032379,0.224845171,0.444024503,-0.049695861,0.27006793,0.488118201,-0.078346975,0.285122126,0.570550084,-0.072694175,0.280931711,0.607008338,-0.05976411 +Left,0.29537484,0.718947768,1.79E-07,0.344285548,0.658145547,-0.01899372,0.387143701,0.57479769,-0.038654469,0.386888981,0.499112427,-0.060768824,0.349845111,0.480605155,-0.082525924,0.337602079,0.396214813,-0.022613266,0.356872261,0.287026852,-0.051175904,0.371326894,0.214641839,-0.065185122,0.379576534,0.148477316,-0.073818602,0.290759653,0.391280144,-0.032359656,0.334345549,0.345513016,-0.076638035,0.34527427,0.454544365,-0.084537551,0.334855258,0.514064312,-0.077410616,0.254849881,0.413976401,-0.044359386,0.308090299,0.436123461,-0.0885242,0.315067977,0.536203384,-0.083903424,0.301718682,0.577719033,-0.068361051,0.226097152,0.457047164,-0.05805755,0.280916899,0.503760815,-0.085016072,0.296392441,0.580660343,-0.080294192,0.290454894,0.613012552,-0.069120869 +Left,0.292152971,0.712535501,1.89E-07,0.340727389,0.640721798,-0.013683199,0.378890991,0.559637308,-0.034882054,0.388634086,0.491991997,-0.060468797,0.358320057,0.490640581,-0.085995644,0.313478202,0.377000213,-0.020294879,0.334679604,0.271231651,-0.049134266,0.350850701,0.199034631,-0.064781383,0.362103164,0.136086226,-0.075024769,0.269579172,0.379987121,-0.034205541,0.331573606,0.349160105,-0.07776013,0.348182052,0.458688974,-0.085193641,0.33864665,0.520065784,-0.078895181,0.240398765,0.414004505,-0.050192803,0.312806934,0.441386461,-0.090093099,0.321489006,0.533970892,-0.084016949,0.307229102,0.574417114,-0.069481656,0.22238031,0.468429118,-0.068210579,0.29036501,0.510777295,-0.090789676,0.302744478,0.580164075,-0.084979892,0.291250259,0.612160444,-0.074611239 +Left,0.292221487,0.702524185,1.83E-07,0.340234995,0.628124237,-0.012664426,0.376604229,0.546781301,-0.034048945,0.386794508,0.479980379,-0.060087048,0.359229147,0.483976722,-0.086073339,0.308130503,0.362438887,-0.019449126,0.329524755,0.259116262,-0.047779091,0.34624818,0.189167351,-0.064238675,0.358627945,0.12812072,-0.075654037,0.265417546,0.36827907,-0.034217708,0.331482559,0.342299819,-0.074942082,0.348305166,0.443196326,-0.082756855,0.337955207,0.4971793,-0.078670345,0.239033565,0.40607217,-0.051045742,0.315852374,0.433349192,-0.088515677,0.324637115,0.520466447,-0.083065808,0.309390038,0.556631446,-0.070680715,0.225110531,0.463711232,-0.069986507,0.295513809,0.503807306,-0.091478914,0.307363242,0.56908232,-0.086242445,0.294796616,0.597755909,-0.077258863 +Left,0.290372759,0.681645632,2.05E-07,0.339193791,0.603623092,-0.011383609,0.374869764,0.528373837,-0.03482708,0.390116304,0.463070154,-0.063294068,0.370369047,0.461199671,-0.091613598,0.302692384,0.345873475,-0.019935116,0.324995041,0.244478017,-0.048032902,0.343195736,0.175042048,-0.064261012,0.356158525,0.11582157,-0.075409614,0.264248937,0.35652402,-0.035694808,0.334800839,0.316039324,-0.073968001,0.353436321,0.413077503,-0.079485737,0.342395276,0.464304507,-0.074499547,0.243460149,0.395625859,-0.053459875,0.325705826,0.412862182,-0.088051021,0.333845556,0.496329695,-0.080300756,0.316377163,0.530070543,-0.067311347,0.235883877,0.452937305,-0.073367916,0.30889371,0.478116065,-0.091515534,0.319440067,0.540529609,-0.083649032,0.304478467,0.569840908,-0.073669955 +Left,0.286639363,0.664013624,1.57E-07,0.340706348,0.58460629,-0.004966977,0.375012279,0.512324393,-0.024687434,0.392392278,0.450659245,-0.050634023,0.3781299,0.442285657,-0.076521084,0.301143497,0.333286345,-0.013018907,0.324786574,0.233545229,-0.038719483,0.344860703,0.167449176,-0.054169584,0.360191077,0.112267494,-0.06533052,0.266941935,0.341099828,-0.031120574,0.341782451,0.307845891,-0.066078961,0.35855186,0.399567723,-0.071522482,0.346322745,0.447567821,-0.067928985,0.251556158,0.380529583,-0.050793625,0.33648333,0.397473305,-0.082562149,0.342691451,0.478990585,-0.074990012,0.323956192,0.509683073,-0.063477635,0.249638453,0.438761234,-0.072078027,0.32294631,0.464207947,-0.088808745,0.331524014,0.52475214,-0.080993138,0.316243947,0.550818622,-0.071832478 +Left,0.278635263,0.659277856,1.31E-07,0.338636816,0.5787642,0.001854712,0.371549666,0.504840016,-0.011521512,0.39039439,0.44740954,-0.031866163,0.380145967,0.43245849,-0.051786952,0.298575461,0.333768636,-0.005606295,0.324069083,0.234003946,-0.028720751,0.344600916,0.167632401,-0.043568585,0.360430777,0.111040175,-0.05487607,0.270035356,0.341014028,-0.025548996,0.348828673,0.3076967,-0.059210397,0.363494456,0.389412224,-0.066077664,0.3506594,0.437546015,-0.064213887,0.260413349,0.379995912,-0.046569403,0.346923828,0.394293875,-0.076046072,0.351329505,0.467489243,-0.070402712,0.331897765,0.495459974,-0.061237812,0.263745487,0.435691297,-0.068688035,0.340354234,0.464473605,-0.0834295,0.343110919,0.523470163,-0.077125579,0.323839813,0.546850622,-0.070079371 +Left,0.271023452,0.665185571,1.66E-07,0.333763361,0.585078716,-0.000837493,0.364566952,0.507598281,-0.015833439,0.3858549,0.451371193,-0.036950856,0.388798833,0.429475814,-0.057279527,0.292333484,0.33232227,-0.010290205,0.32263124,0.232426524,-0.034745738,0.344286442,0.163430572,-0.049739912,0.361314893,0.107102096,-0.06049186,0.266712815,0.34038192,-0.028214123,0.35290128,0.307242632,-0.063490652,0.368761957,0.39119485,-0.069711104,0.356973052,0.443271577,-0.066369385,0.260980815,0.380475491,-0.047245279,0.352510482,0.391270906,-0.077756338,0.357666612,0.466782123,-0.071364969,0.339822382,0.498697132,-0.060737662,0.268454373,0.437591761,-0.067401871,0.349338055,0.463500738,-0.081300914,0.351679206,0.524775982,-0.073913075,0.333079219,0.550973475,-0.065658614 +Left,0.271068037,0.661658883,1.86E-07,0.331087857,0.581557512,-0.00159639,0.358978122,0.502113819,-0.015748959,0.381087601,0.444734603,-0.035444301,0.392294466,0.42565906,-0.054331414,0.289678723,0.333892912,-0.011428155,0.322181016,0.23291868,-0.034449596,0.344821095,0.164592817,-0.04808246,0.363153636,0.107866108,-0.05787909,0.26692754,0.3423388,-0.028179981,0.354508519,0.305470645,-0.062629089,0.370339721,0.386119783,-0.068152994,0.360523522,0.441174686,-0.064057656,0.263756841,0.381917715,-0.045903184,0.355242997,0.391430557,-0.07594391,0.35993433,0.464899808,-0.070049934,0.344731867,0.500847161,-0.059281208,0.273064554,0.437541008,-0.064738572,0.35350278,0.460976362,-0.078722976,0.357429117,0.523251414,-0.071818173,0.343062103,0.554691553,-0.063507758 +Left,0.268770099,0.653035164,2.13E-07,0.327957034,0.566917658,-0.004147165,0.353349775,0.483785897,-0.019661665,0.376655132,0.4295322,-0.039600689,0.395540774,0.41929704,-0.058865562,0.27998361,0.338503867,-0.016049467,0.317498147,0.236241654,-0.037767962,0.341037929,0.16738221,-0.051012788,0.359094948,0.109090239,-0.061246097,0.263034165,0.347703159,-0.030509233,0.353435457,0.314126134,-0.063315146,0.371619344,0.3916668,-0.068763621,0.363478214,0.442196578,-0.065722026,0.266523868,0.386899799,-0.045580961,0.360057712,0.394627273,-0.073504038,0.363861769,0.465199351,-0.068093114,0.347818315,0.498919368,-0.058714423,0.282164127,0.438252449,-0.061924409,0.360832065,0.46707499,-0.074410118,0.363997519,0.52514559,-0.068332188,0.350491315,0.552563608,-0.061375909 +Left,0.265265703,0.653689146,2.18E-07,0.318965763,0.559438705,-0.004312053,0.345945567,0.469890833,-0.0197942,0.371112674,0.414322376,-0.039421219,0.389098614,0.402763873,-0.057895459,0.271714777,0.34147805,-0.016356599,0.310177535,0.235358372,-0.038735416,0.3348611,0.167491287,-0.051911987,0.354036927,0.110411167,-0.061774857,0.259374261,0.352992058,-0.03017582,0.350874811,0.315955758,-0.062825903,0.368790895,0.390813679,-0.067803793,0.361696362,0.437232584,-0.064777598,0.267229587,0.391900271,-0.044700131,0.363431156,0.394459814,-0.070953384,0.36540097,0.46384874,-0.064479709,0.349064797,0.495133817,-0.054993864,0.287743777,0.441659272,-0.060710218,0.366134912,0.469999552,-0.071516216,0.365488261,0.524101377,-0.065543391,0.349942505,0.545100093,-0.059121307 +Left,0.265949696,0.664744496,2.34E-07,0.314140648,0.568403065,-0.00348727,0.343020886,0.474997163,-0.018927755,0.374323398,0.419050336,-0.038770366,0.397107005,0.408640742,-0.057777375,0.270457357,0.348703802,-0.016609423,0.313072115,0.244121447,-0.039137423,0.338299513,0.177241519,-0.05140366,0.358599722,0.121595919,-0.060542803,0.260908514,0.36261186,-0.030914452,0.356353998,0.326738268,-0.063636847,0.373464853,0.401403248,-0.06750641,0.366942406,0.443489134,-0.063773647,0.270439208,0.402934879,-0.045972209,0.369632483,0.40917033,-0.072898902,0.368614256,0.479578674,-0.066823527,0.350408852,0.506179631,-0.057799373,0.29184863,0.453012705,-0.06235544,0.371248752,0.483450264,-0.073901922,0.368182153,0.541252971,-0.068448909,0.35101068,0.561112881,-0.06255655 +Left,0.273872644,0.675525963,1.98E-07,0.337538332,0.585157216,-0.005843401,0.365034044,0.502942681,-0.021873353,0.387318611,0.44624427,-0.04231498,0.403873861,0.429710925,-0.061772034,0.282893002,0.350314945,-0.015146093,0.323073894,0.251183629,-0.037922002,0.347698897,0.18449834,-0.051254161,0.366929173,0.128294557,-0.06112127,0.266772836,0.363433331,-0.029085824,0.359701663,0.333711684,-0.062492546,0.373119712,0.41393283,-0.067517161,0.362376094,0.459517002,-0.064057931,0.271389008,0.405619055,-0.044198729,0.370436281,0.416830599,-0.073481649,0.369964063,0.488756359,-0.068199366,0.351739854,0.518625677,-0.058615893,0.288364381,0.459596872,-0.060761672,0.369257867,0.490005344,-0.074154951,0.369417369,0.548631847,-0.068618961,0.354242027,0.572566748,-0.061899535 +Left,0.292446166,0.673033476,1.28E-07,0.349277943,0.596658111,0.001012374,0.38117981,0.520576417,-0.012821944,0.401825517,0.462412,-0.03336478,0.392405629,0.454889208,-0.053314969,0.312375128,0.352257848,-0.006897304,0.338474542,0.253705919,-0.03022271,0.358929127,0.192247361,-0.044703394,0.375314355,0.141063154,-0.055451207,0.283673614,0.361105025,-0.026187133,0.361468643,0.328955501,-0.061557546,0.375723392,0.413211405,-0.068919651,0.363258898,0.46241352,-0.066502094,0.273719221,0.399151474,-0.046453707,0.358584732,0.411524206,-0.077318609,0.36316222,0.487086028,-0.072130024,0.344844967,0.515649498,-0.062322032,0.276908189,0.452160597,-0.067687474,0.352864802,0.480444133,-0.082200095,0.355017185,0.538740933,-0.075726382,0.335957855,0.560426354,-0.068274416 +Left,0.306196988,0.669629455,1.56E-07,0.35645467,0.604962349,-0.008320768,0.391224623,0.537555575,-0.027099583,0.407766819,0.478037775,-0.050921351,0.391210824,0.467286825,-0.074624889,0.330904841,0.362752259,-0.014745466,0.358347237,0.269212306,-0.040025819,0.378745019,0.207450986,-0.054283481,0.394131333,0.155196965,-0.063862592,0.296122283,0.365405858,-0.029786095,0.364683717,0.336831599,-0.065220229,0.375803858,0.430228829,-0.069960676,0.362671435,0.476499528,-0.064775221,0.276215494,0.396332324,-0.046660349,0.352940083,0.418127626,-0.079144023,0.354938865,0.498329759,-0.071532302,0.336660475,0.528006136,-0.058874536,0.267171174,0.446065605,-0.065255925,0.334263295,0.476511151,-0.082532026,0.339782834,0.537718892,-0.074738562,0.324226439,0.56415242,-0.064859122 +Left,0.310839772,0.672668457,1.63E-07,0.358453929,0.608487487,-0.009862178,0.395705938,0.537099004,-0.027520608,0.408008933,0.472869247,-0.049802311,0.381417751,0.464675397,-0.072149947,0.340225577,0.364704192,-0.013831366,0.3641164,0.271797001,-0.038922038,0.382121056,0.209148481,-0.052724682,0.395989537,0.153311074,-0.061564427,0.302467823,0.362247705,-0.027244855,0.362590432,0.336824417,-0.064570852,0.372839302,0.435801446,-0.07067433,0.361568481,0.490025222,-0.064931206,0.276263118,0.387734562,-0.04257286,0.344804913,0.415706635,-0.077652805,0.347211897,0.502593338,-0.071840316,0.331584007,0.541313529,-0.058554288,0.258915335,0.432896227,-0.059509907,0.322119027,0.471173227,-0.078470722,0.329068601,0.538567007,-0.072082877,0.316116482,0.571854413,-0.06208653 +Left,0.307266891,0.677350044,1.69E-07,0.353516549,0.61344099,-0.009370508,0.391717345,0.537051797,-0.0267526,0.404135793,0.467870981,-0.048961096,0.374812782,0.456841916,-0.071367703,0.342212319,0.367132396,-0.011796912,0.363680035,0.274083138,-0.036423106,0.381096184,0.210005373,-0.049325604,0.394272685,0.154456913,-0.057262495,0.302920997,0.365848035,-0.025162309,0.356946647,0.332926184,-0.062645219,0.367830247,0.4358235,-0.068124309,0.356959969,0.490234643,-0.061225757,0.273816317,0.389618099,-0.040484041,0.3357898,0.410016626,-0.076566488,0.339917898,0.500709951,-0.069775172,0.324205726,0.540338039,-0.055069026,0.252613068,0.432436049,-0.057214789,0.313823581,0.463104606,-0.076546639,0.3222619,0.531770945,-0.069034278,0.308690578,0.565218568,-0.057853244 +Left,0.304246366,0.675566971,1.57E-07,0.349266768,0.617329359,-0.014334626,0.389152139,0.541518569,-0.031570934,0.394496888,0.471238077,-0.051741518,0.361511499,0.448178053,-0.072053418,0.346199065,0.373385698,-0.016677933,0.368470967,0.280654758,-0.041918427,0.384144843,0.217733636,-0.054628644,0.395832539,0.15952009,-0.062050089,0.304784387,0.367941141,-0.026354855,0.350291193,0.330863059,-0.064901218,0.355809152,0.438154936,-0.070676848,0.344293743,0.494426727,-0.063103341,0.271607429,0.386843026,-0.038007502,0.323116094,0.404934466,-0.076928273,0.325915575,0.500584483,-0.07081677,0.31218031,0.541935563,-0.055145726,0.243471429,0.424402118,-0.050897997,0.293882757,0.455141008,-0.073629372,0.307017714,0.529838562,-0.066236869,0.301481307,0.566756606,-0.053694922 +Left,0.298430055,0.678877175,1.37E-07,0.34619534,0.624997497,-0.017738065,0.388250262,0.548895419,-0.033590756,0.386471778,0.475568146,-0.051195417,0.350865096,0.44621402,-0.068563327,0.350869238,0.383889616,-0.016791604,0.373180121,0.287851244,-0.040834837,0.386344969,0.224672601,-0.052465465,0.394863576,0.163939118,-0.059303492,0.308651835,0.37376532,-0.023726406,0.346120507,0.330217123,-0.061600842,0.350440502,0.433628112,-0.068113372,0.340501487,0.491191089,-0.061010879,0.273251951,0.388199925,-0.032812711,0.316397578,0.402248055,-0.072724588,0.319320858,0.50185746,-0.067160226,0.307743341,0.547806263,-0.051137675,0.240736365,0.421369702,-0.043187693,0.283558935,0.449254304,-0.067573592,0.297064811,0.526096106,-0.060659856,0.294116944,0.564228415,-0.047785677 +Left,0.291097075,0.679162204,1.60E-07,0.340158284,0.62832582,-0.020837905,0.384363711,0.54800725,-0.035127819,0.37422654,0.471508652,-0.049669214,0.33527264,0.442837149,-0.063927636,0.347821683,0.385230333,-0.018328484,0.368836582,0.289645672,-0.040336907,0.380182058,0.227384701,-0.051524639,0.387100875,0.165299296,-0.058462534,0.305005938,0.373533487,-0.022642303,0.337594181,0.325104088,-0.059183963,0.34450981,0.422781974,-0.067704655,0.337900221,0.484828413,-0.062161535,0.268131763,0.387909681,-0.0288228,0.302149951,0.402706981,-0.068683609,0.307702422,0.502553403,-0.065776944,0.299885362,0.553007483,-0.051119294,0.233077779,0.420359015,-0.036201891,0.267540008,0.443455487,-0.061287705,0.283214629,0.521728754,-0.055329278,0.283421695,0.564847469,-0.042740501 +Left,0.291616708,0.675614774,1.41E-07,0.336750358,0.618934572,-0.019045908,0.376075506,0.538955927,-0.035261475,0.37161994,0.465758711,-0.052840386,0.334714353,0.439658344,-0.070145376,0.334198117,0.371051461,-0.018069057,0.351564974,0.272839099,-0.041576859,0.361647099,0.208449751,-0.053080097,0.367997229,0.147755921,-0.059862286,0.292235404,0.36550051,-0.024520367,0.328264624,0.320022821,-0.061198149,0.33665815,0.422251582,-0.067252435,0.330063283,0.480981976,-0.060110539,0.257270873,0.385063469,-0.033131823,0.299118876,0.398425609,-0.071872272,0.304694176,0.497312635,-0.066188544,0.294991702,0.544375181,-0.050448257,0.225051045,0.423249513,-0.043212455,0.265245616,0.448458016,-0.066889338,0.281773269,0.523500741,-0.059617557,0.281217784,0.562056601,-0.04662485 +Left,0.288475454,0.654127181,2.07E-07,0.331666797,0.585455954,-0.011501048,0.366316289,0.507678509,-0.03075934,0.376698911,0.436740845,-0.054019459,0.347008586,0.435268074,-0.077131227,0.307398051,0.344099432,-0.01839561,0.323849678,0.249697432,-0.043622583,0.339548349,0.185543284,-0.057843767,0.349918634,0.128872752,-0.067138031,0.26829499,0.348189741,-0.031212034,0.320456177,0.314868063,-0.067770459,0.33641085,0.409258187,-0.073121034,0.327820778,0.460241973,-0.067286491,0.241200089,0.377985746,-0.045768987,0.304911375,0.400995225,-0.079252385,0.313779384,0.483207762,-0.072448879,0.300425053,0.518575549,-0.05909216,0.223762453,0.426023871,-0.062155396,0.286188692,0.45495823,-0.079815082,0.299757272,0.516037285,-0.072693907,0.289703161,0.545811117,-0.062524907 +Left,0.277506649,0.64248848,1.29E-07,0.329465926,0.567079306,-0.001600433,0.35932678,0.497569621,-0.016893856,0.374911666,0.440930486,-0.038060319,0.366075486,0.429108918,-0.05915698,0.287063479,0.333013296,-0.010968967,0.309700221,0.236507401,-0.034217913,0.329575211,0.17398411,-0.048742943,0.345357895,0.121412635,-0.059387028,0.257566929,0.342236668,-0.028819446,0.330991209,0.304339498,-0.060922876,0.346605003,0.384548247,-0.066623092,0.335402936,0.430114478,-0.064209417,0.246856049,0.382495791,-0.0477328,0.330500901,0.392675698,-0.076752663,0.335865378,0.465756088,-0.070389278,0.318170398,0.493743926,-0.060575668,0.248594388,0.438312113,-0.067818426,0.31994912,0.457361877,-0.082281761,0.326795995,0.513179183,-0.074740984,0.311559051,0.536818624,-0.06657324 +Left,0.263460934,0.656588435,1.65E-07,0.323576957,0.576411128,-0.002230597,0.350377083,0.500703454,-0.017268972,0.368219018,0.444047987,-0.037771095,0.375301987,0.417871475,-0.057378765,0.277780026,0.331678927,-0.012013496,0.309286654,0.23446919,-0.035724029,0.331317216,0.168955475,-0.05031329,0.349497914,0.114784777,-0.060809035,0.25420779,0.341297388,-0.028420577,0.338778108,0.305047512,-0.061673783,0.354212761,0.383229852,-0.067253903,0.343930602,0.43204087,-0.064255774,0.250629902,0.381444126,-0.045947179,0.340713054,0.388246894,-0.074696258,0.345793188,0.460544109,-0.068191387,0.329145163,0.493012071,-0.05805219,0.25920561,0.437608153,-0.064714544,0.337508261,0.456993222,-0.0778405,0.341240883,0.515613377,-0.070580572,0.324904442,0.542387903,-0.062608235 +Left,0.262008548,0.651154637,2.27E-07,0.314530224,0.54810971,-0.004942502,0.342537671,0.458530545,-0.020527083,0.368594766,0.407087237,-0.040500134,0.388121128,0.393322259,-0.059487857,0.271674663,0.334472358,-0.014220338,0.312351912,0.237084612,-0.036915325,0.337699503,0.17269212,-0.050551899,0.35831666,0.118228406,-0.060479462,0.259549469,0.34707427,-0.02740274,0.35180819,0.323428035,-0.05946501,0.368305892,0.396865219,-0.065280601,0.361972511,0.439133316,-0.063180745,0.266156107,0.3877469,-0.041660808,0.362251014,0.4033176,-0.067922413,0.361325204,0.470214605,-0.063057005,0.344431549,0.498129517,-0.054740328,0.284443885,0.439393044,-0.057476584,0.362176776,0.473395646,-0.06798134,0.361051977,0.526707351,-0.062682644,0.346012503,0.547330379,-0.056761749 +Left,0.2689493,0.65495491,2.05E-07,0.313758761,0.563388586,-0.002990419,0.344115347,0.473480761,-0.018144937,0.379963994,0.421779752,-0.03767585,0.406203806,0.41092661,-0.056455519,0.282653809,0.347926795,-0.016629392,0.327048421,0.247351408,-0.03863905,0.354394436,0.187070757,-0.050161205,0.377140433,0.137510061,-0.05870764,0.274519324,0.361736834,-0.030795662,0.368994683,0.334183782,-0.062610514,0.381060719,0.40979442,-0.066337511,0.371684641,0.449381173,-0.062870085,0.283398718,0.402365327,-0.045683388,0.379174381,0.414722383,-0.071739152,0.374238014,0.482317179,-0.065947875,0.354489386,0.503706098,-0.0575765,0.303731441,0.453720301,-0.061749939,0.378852636,0.48994875,-0.073059037,0.372087002,0.544956446,-0.06803336,0.352669746,0.559890985,-0.062643334 +Left,0.280184984,0.666282058,1.70E-07,0.300634712,0.556331456,0.001086933,0.32283321,0.456843674,-0.010163434,0.355653375,0.394720465,-0.025484949,0.384186924,0.362362295,-0.039952733,0.287153631,0.367053628,-0.017239444,0.334510565,0.264440835,-0.038500212,0.361913323,0.202366441,-0.048722927,0.383935004,0.150467396,-0.05574318,0.287272096,0.382996678,-0.031484008,0.382473528,0.348454833,-0.062057398,0.396308839,0.418432057,-0.064709254,0.388610929,0.459644675,-0.060127247,0.302149594,0.423588336,-0.045624215,0.394777179,0.431330681,-0.067968309,0.392710358,0.493000805,-0.059658226,0.375565767,0.515481174,-0.049777053,0.324897319,0.474144608,-0.06068309,0.394580185,0.502393842,-0.067870446,0.387005538,0.550953686,-0.059961472,0.36852634,0.566197991,-0.052475043 +Left,0.2877056,0.685089707,1.21E-07,0.283024549,0.570704341,0.010499801,0.29855901,0.466433436,0.001367149,0.334482253,0.40872857,-0.012937215,0.368225455,0.387160242,-0.027600853,0.288675696,0.396459639,-0.020711208,0.331820667,0.277390659,-0.040462088,0.359735757,0.212742478,-0.048570342,0.381771684,0.159240276,-0.053914923,0.298425078,0.412109435,-0.038146324,0.390746862,0.363330066,-0.063014105,0.394923866,0.428766489,-0.061395995,0.377020836,0.461564094,-0.055411227,0.319923013,0.451191276,-0.053881019,0.407696098,0.443631411,-0.069042824,0.399958402,0.499308258,-0.05661029,0.377506822,0.516031146,-0.046070639,0.346818775,0.502471089,-0.069662653,0.41476965,0.514349699,-0.07120005,0.40450117,0.556650877,-0.059508771,0.382644057,0.568097174,-0.050358299 +Left,0.296979874,0.685928524,1.01E-07,0.286088377,0.57171309,0.01053764,0.299494117,0.461368024,0.001463052,0.334327847,0.392531335,-0.011635602,0.368119299,0.35810554,-0.025163241,0.28970325,0.402952641,-0.026017092,0.332446516,0.279263616,-0.044158582,0.360188574,0.213248193,-0.050329994,0.381818265,0.159212232,-0.054328252,0.306494534,0.42445153,-0.042365894,0.395011604,0.363555819,-0.063326508,0.398578912,0.425648302,-0.058234453,0.380497634,0.458033472,-0.051206827,0.333658308,0.465874076,-0.056499042,0.414297432,0.444598913,-0.066992901,0.407094061,0.493982136,-0.050756872,0.385718614,0.511726618,-0.039169211,0.362856507,0.516388595,-0.070600413,0.422830075,0.510164917,-0.068345286,0.412837088,0.547560275,-0.053752363,0.39186424,0.559197307,-0.043465305 +Left,0.303917855,0.686103284,6.74E-08,0.292490005,0.569910645,0.010758305,0.308250934,0.456752479,0.002597653,0.344313294,0.384832978,-0.009365129,0.377803087,0.345971018,-0.021747448,0.295805603,0.399405241,-0.023971844,0.337619752,0.275680482,-0.040315419,0.365198702,0.209471926,-0.045647137,0.386699796,0.154693127,-0.049147394,0.316717505,0.422533333,-0.039915111,0.399462044,0.361738414,-0.058246292,0.401070327,0.422214031,-0.052647904,0.382086426,0.454040855,-0.045766655,0.346689403,0.465103,-0.053553008,0.421130061,0.439642161,-0.061991598,0.413371295,0.488231242,-0.045015983,0.391992271,0.50715369,-0.033322699,0.377114862,0.516074121,-0.067155972,0.43286705,0.503988743,-0.063492663,0.422291547,0.541666985,-0.047763921,0.401340902,0.555057168,-0.036749717 +Left,0.30843702,0.686904311,6.04E-08,0.293354124,0.567342818,0.010160601,0.308013409,0.453130782,0.002791377,0.344264776,0.381025285,-0.007197235,0.378651917,0.343624651,-0.017595377,0.298543215,0.401354492,-0.027778219,0.340854734,0.272305846,-0.042691976,0.367417753,0.204228327,-0.047341969,0.387097895,0.14772743,-0.050548084,0.32713148,0.428196311,-0.042212419,0.403038234,0.354101807,-0.058359332,0.402819484,0.409537822,-0.051802419,0.382567137,0.444135487,-0.044857156,0.361529797,0.47194773,-0.05374977,0.425671339,0.428545415,-0.059497006,0.41846174,0.473829001,-0.04006267,0.39795965,0.49816516,-0.027253632,0.39304617,0.521989882,-0.065175697,0.439243019,0.493610173,-0.059344567,0.429582179,0.529523194,-0.040769875,0.410741925,0.548247755,-0.02786818 +Left,0.308983654,0.682052732,3.53E-08,0.291486233,0.564174771,0.01068831,0.306897819,0.450723946,0.004283391,0.344931245,0.379501581,-0.004192332,0.381501168,0.348749816,-0.013185696,0.300085694,0.398557484,-0.027964368,0.340309829,0.267000884,-0.040286705,0.366385132,0.199850261,-0.043414023,0.385325223,0.143553883,-0.045658913,0.33185488,0.42694369,-0.041287392,0.401608706,0.346395314,-0.055122919,0.400208473,0.399723738,-0.048214998,0.380005687,0.436620623,-0.04111265,0.368171811,0.470452547,-0.051203739,0.424025476,0.419179887,-0.05442569,0.417130977,0.462554932,-0.034972534,0.398039907,0.489223719,-0.022346847,0.400476784,0.518381059,-0.060740493,0.439246535,0.478523403,-0.05233809,0.429025412,0.513500094,-0.032370936,0.411529571,0.53533113,-0.018708784 +Left,0.303465992,0.681254208,6.78E-08,0.289710581,0.562487364,0.010042413,0.306526989,0.447414905,0.002046063,0.345709383,0.379779756,-0.008946534,0.384106517,0.352045417,-0.020166826,0.295981854,0.392941207,-0.02630589,0.338686526,0.267477572,-0.041464493,0.366351217,0.203609928,-0.046220865,0.387284368,0.149031252,-0.049519192,0.321282387,0.418484807,-0.041025601,0.399284005,0.347462207,-0.057607707,0.398433387,0.404630542,-0.051241547,0.377522588,0.437782645,-0.044171192,0.353627056,0.461857587,-0.053099796,0.42084074,0.424056619,-0.05885122,0.412825614,0.470421135,-0.040111408,0.39207086,0.492632449,-0.027639955,0.384346157,0.512888312,-0.065203123,0.435201377,0.487767875,-0.0592805,0.424010396,0.524019718,-0.041595463,0.40341413,0.541718304,-0.029424867 +Left,0.295574218,0.671504855,1.25E-07,0.293466061,0.559563994,0.006987349,0.311052591,0.451219887,-0.003437705,0.346562505,0.385189772,-0.018183922,0.378758252,0.349451095,-0.032920476,0.297493517,0.384270042,-0.022266759,0.341856241,0.268204063,-0.041991353,0.369782656,0.206451222,-0.04950954,0.391917765,0.155309319,-0.05450714,0.305480778,0.403640002,-0.038364157,0.3961685,0.355052233,-0.063445628,0.402049184,0.420133621,-0.061489135,0.386757374,0.452864558,-0.055524327,0.325401127,0.444120914,-0.053314757,0.412321657,0.43573752,-0.069023728,0.40572989,0.490734845,-0.056492705,0.384737074,0.505940378,-0.046132963,0.351745099,0.495060831,-0.068653852,0.417853713,0.505302489,-0.071026966,0.407207519,0.546944261,-0.060145251,0.384656906,0.55629909,-0.051865861 +Left,0.296925902,0.674954474,1.99E-07,0.351658225,0.589817047,-0.004397057,0.377481043,0.508462965,-0.018939085,0.404417515,0.457205266,-0.037672602,0.427038431,0.447422326,-0.0556361,0.307566226,0.376435995,-0.014890755,0.346376151,0.277352452,-0.036258418,0.37134102,0.213824496,-0.048921388,0.3914451,0.162112415,-0.058315534,0.294229537,0.390147239,-0.028391134,0.382663637,0.362091154,-0.060634263,0.396707803,0.433932424,-0.066393077,0.388311237,0.477198213,-0.063972257,0.299939036,0.42929551,-0.042723477,0.392300785,0.438916892,-0.070164509,0.390276968,0.505147576,-0.065663412,0.372881383,0.5314731,-0.0572409,0.317162573,0.477626264,-0.058297772,0.391353488,0.50526768,-0.070652179,0.39030835,0.560557246,-0.065247983,0.376856238,0.581552029,-0.059002981 +Left,0.30582574,0.690722704,1.40E-07,0.363636196,0.616108775,0.000329355,0.393000484,0.544622242,-0.013459366,0.411385357,0.488872379,-0.033695281,0.403188109,0.471868217,-0.053323902,0.32262677,0.384443641,-0.00714005,0.351871282,0.289340854,-0.030159235,0.372833163,0.227402776,-0.044118334,0.389416784,0.17779085,-0.054106317,0.296283364,0.390402526,-0.025047069,0.374850065,0.355562538,-0.059051253,0.387194008,0.435001194,-0.065472774,0.373915404,0.480119765,-0.062402271,0.288704753,0.423509002,-0.044024777,0.372349083,0.430012584,-0.073435031,0.376114309,0.502468526,-0.067537829,0.358902633,0.531414807,-0.057380702,0.29424575,0.471808463,-0.064093597,0.367569149,0.499624878,-0.077888384,0.370009065,0.556665242,-0.071497306,0.353832036,0.579142034,-0.064011872 +Left,0.316493571,0.68375659,1.34E-07,0.366334736,0.616087854,-0.00601596,0.396770656,0.550970256,-0.022636224,0.410884261,0.494413406,-0.044376787,0.397949994,0.482622474,-0.065887168,0.333616227,0.386849761,-0.011972437,0.359190464,0.299690723,-0.035929281,0.37932086,0.241029263,-0.050543509,0.394278169,0.191210568,-0.06103931,0.303052515,0.390615344,-0.027188633,0.371113032,0.365953684,-0.060644828,0.384653986,0.448052794,-0.066825636,0.371861875,0.492694885,-0.06405358,0.288403571,0.423806429,-0.044052389,0.362665236,0.443991959,-0.07542938,0.367967457,0.518454671,-0.069649249,0.350872636,0.547648966,-0.059127357,0.285500407,0.474966586,-0.062362999,0.351085901,0.503265262,-0.079869151,0.355996788,0.561606586,-0.073906429,0.339320719,0.587053955,-0.065868519 +Left,0.312471092,0.688227117,1.15E-07,0.361698091,0.626834989,-0.00695226,0.397085339,0.558311164,-0.023103856,0.411297083,0.500172555,-0.044241365,0.389612436,0.494065285,-0.065543786,0.339653164,0.394523948,-0.011810237,0.365034312,0.308725566,-0.035171229,0.38372919,0.250800371,-0.04845313,0.397319496,0.199051768,-0.057761513,0.305627137,0.393814832,-0.026316665,0.369310021,0.371734768,-0.059838913,0.379639089,0.463332474,-0.06502898,0.36601159,0.506662905,-0.060797092,0.28458184,0.421086878,-0.042463828,0.356406391,0.444937229,-0.074183516,0.358559489,0.525635421,-0.06766168,0.340407282,0.554819286,-0.055993017,0.273277998,0.467029542,-0.060069036,0.337052703,0.49904716,-0.077423386,0.34215495,0.560001969,-0.070734821,0.326614022,0.585772812,-0.061841823 +Left,0.311171204,0.700340092,1.29E-07,0.358048081,0.639344931,-0.008685392,0.39539203,0.566778064,-0.024316648,0.408449978,0.503052533,-0.044747058,0.381638825,0.493881226,-0.065232366,0.344943911,0.402840912,-0.009697548,0.368344218,0.317709863,-0.033172369,0.385754704,0.259176612,-0.046395324,0.399232447,0.205457658,-0.055129968,0.308924824,0.398655295,-0.022735238,0.364483207,0.376399219,-0.058892187,0.373490185,0.472858101,-0.065455884,0.361760944,0.523523033,-0.060264882,0.282976449,0.420321822,-0.037716024,0.346061468,0.445156157,-0.071646608,0.348231465,0.530995965,-0.06642475,0.332387894,0.56712985,-0.053751729,0.265404046,0.461194098,-0.054220021,0.325619817,0.499661297,-0.072446845,0.331089437,0.564346194,-0.066979036,0.316956669,0.593565881,-0.057920232 +Left,0.307592124,0.701136231,1.27E-07,0.354388237,0.645974755,-0.010860393,0.393550962,0.572478354,-0.026442964,0.403010309,0.506076336,-0.045908354,0.372717172,0.488810092,-0.065317981,0.350955904,0.409577072,-0.011031191,0.374009013,0.322886467,-0.035314452,0.390693635,0.263381481,-0.048392076,0.403491378,0.207026809,-0.056724887,0.313177079,0.401642531,-0.022502081,0.363039732,0.372744024,-0.06055491,0.368041575,0.473423988,-0.067705542,0.355057985,0.525368154,-0.061867785,0.283892602,0.418604434,-0.036016282,0.339345127,0.441628695,-0.071907923,0.338983148,0.529876769,-0.066959411,0.322461456,0.563492239,-0.053631648,0.261309445,0.454480708,-0.050920106,0.315116346,0.495711029,-0.070351884,0.319880933,0.562273741,-0.064831078,0.306662947,0.587066412,-0.055231456 +Left,0.3060368,0.696822405,1.32E-07,0.350592494,0.645803094,-0.012822006,0.390849352,0.574107945,-0.029042436,0.397575617,0.507028103,-0.048244916,0.364994973,0.485106856,-0.067657113,0.351563752,0.410623968,-0.015295538,0.374180079,0.323149264,-0.038832638,0.389492422,0.263509423,-0.050706241,0.400786579,0.208403319,-0.057979569,0.311617702,0.403360724,-0.025192121,0.356789738,0.37150979,-0.061314106,0.359101117,0.475013077,-0.066663079,0.34598884,0.526489258,-0.059827898,0.279760838,0.42119056,-0.036882691,0.329944611,0.437035978,-0.073077366,0.330358684,0.526798189,-0.06695503,0.316027701,0.562608838,-0.05261834,0.253071368,0.457729757,-0.049733922,0.30190751,0.491976678,-0.070984729,0.312052071,0.5616225,-0.064333305,0.305387527,0.592420697,-0.053217396 +Left,0.296075612,0.707824409,1.13E-07,0.342706114,0.660505474,-0.018679872,0.385929883,0.588053942,-0.03401288,0.380751044,0.518376172,-0.050447345,0.345392942,0.488622397,-0.066713296,0.35229218,0.423375249,-0.016799934,0.373385459,0.332664549,-0.038993951,0.385883361,0.271261811,-0.049996514,0.394123375,0.213461757,-0.05670153,0.312045902,0.412008256,-0.02239557,0.348936945,0.376847625,-0.05786407,0.349058658,0.479292005,-0.064435907,0.337290496,0.532948792,-0.05809002,0.277594328,0.42527464,-0.029979752,0.314101934,0.442403048,-0.068043314,0.315359712,0.538170457,-0.063235603,0.304711878,0.579990029,-0.048486881,0.244235709,0.456273079,-0.038788933,0.277641565,0.486110598,-0.062773526,0.291311026,0.561539888,-0.056149241,0.290786684,0.597956836,-0.043684278 +Left,0.284242898,0.716299474,1.07E-07,0.332680136,0.675105572,-0.023538806,0.376164496,0.596054316,-0.036160048,0.359665245,0.525924325,-0.047880456,0.317533642,0.495284051,-0.059429914,0.354990155,0.446205467,-0.020129493,0.372031033,0.346185774,-0.040998835,0.379963905,0.282441199,-0.052251305,0.3840397,0.217977375,-0.06025929,0.313202888,0.43542245,-0.022931077,0.330481827,0.381765068,-0.061221607,0.330223411,0.477363259,-0.072360605,0.324378163,0.538251102,-0.068620473,0.275224239,0.448972732,-0.027574405,0.291443855,0.447408736,-0.069063567,0.297679842,0.543340862,-0.068237774,0.295759112,0.589823544,-0.054980408,0.238213867,0.477046162,-0.033360772,0.257507265,0.493786216,-0.062136855,0.273556322,0.569059312,-0.058810025,0.279372096,0.60588032,-0.047733992 +Left,0.279319495,0.727418125,1.19E-07,0.329208702,0.67744863,-0.025557896,0.368462235,0.592226863,-0.037724014,0.343017519,0.522010207,-0.048526093,0.299312234,0.490638763,-0.059133604,0.348031759,0.458297819,-0.019736448,0.365295857,0.355676532,-0.040249839,0.371747494,0.289481848,-0.051813155,0.374671936,0.223879546,-0.060061719,0.305950195,0.452518553,-0.021719104,0.315628976,0.381911516,-0.060647827,0.316989869,0.473301589,-0.073320284,0.315141171,0.537343562,-0.070197925,0.267517626,0.467214286,-0.025608972,0.274179012,0.448573619,-0.068992324,0.284479588,0.546669066,-0.068616204,0.287438631,0.599454582,-0.054599047,0.230128586,0.49669373,-0.030555274,0.241488606,0.486546844,-0.061558157,0.25905028,0.56314218,-0.057173941,0.267388135,0.609031975,-0.044434607 +Left,0.273756027,0.731417179,1.10E-07,0.32322976,0.682021379,-0.026203712,0.361084521,0.595216155,-0.038597092,0.32907632,0.523134649,-0.049340516,0.285100669,0.491079986,-0.059598763,0.344783515,0.466872513,-0.020204669,0.363366663,0.361585736,-0.040758472,0.370893985,0.295299351,-0.052285068,0.374752343,0.229660809,-0.060770713,0.301701814,0.460057735,-0.021996189,0.310381502,0.391204029,-0.06136572,0.310559273,0.483960956,-0.073986851,0.308341891,0.546691656,-0.071097121,0.263174444,0.47323814,-0.025785189,0.267647296,0.448505878,-0.069976494,0.27810958,0.548576415,-0.069304071,0.281868488,0.601340532,-0.055285126,0.22589004,0.501691401,-0.030598406,0.235332131,0.489089429,-0.063239187,0.252478391,0.566795707,-0.059116583,0.260912091,0.611391425,-0.046477903 +Left,0.27096656,0.738355279,9.93E-08,0.32202518,0.686198771,-0.026201585,0.356346846,0.595286071,-0.038315799,0.319462806,0.518261135,-0.048842046,0.276610434,0.483666807,-0.05900206,0.342940152,0.472135574,-0.017612536,0.360364199,0.364263892,-0.037187632,0.367847413,0.29591769,-0.048689168,0.371811748,0.230461895,-0.057291977,0.29913187,0.46742636,-0.019250119,0.306772619,0.392531067,-0.058107123,0.306354165,0.485815823,-0.070414864,0.303914607,0.553314269,-0.067191333,0.260484964,0.482856214,-0.023003591,0.263856232,0.446048111,-0.066935308,0.273750275,0.545956612,-0.065647289,0.277229935,0.60360384,-0.051223371,0.223248899,0.513644338,-0.027737692,0.231280074,0.489734173,-0.06096087,0.247090176,0.567554355,-0.056368966,0.254964799,0.615918517,-0.043268181 +Left,0.276613861,0.734325707,1.18E-07,0.325337857,0.676595688,-0.024786068,0.36065805,0.58292675,-0.036742423,0.331056714,0.515021026,-0.047593445,0.286184669,0.491521329,-0.058327202,0.332432926,0.450529814,-0.018579511,0.346780241,0.34741956,-0.038898863,0.351676941,0.28260684,-0.05042959,0.352178276,0.218648821,-0.058704145,0.289458573,0.451220065,-0.020991527,0.296530932,0.38376826,-0.059114531,0.304341465,0.475169063,-0.07148803,0.306007326,0.536589444,-0.068738684,0.251722187,0.473528683,-0.025222616,0.258657038,0.453001231,-0.068457983,0.275096476,0.55149287,-0.066808388,0.280115902,0.603456438,-0.052212495,0.215945944,0.511525631,-0.030372582,0.228304654,0.493505001,-0.060916889,0.249106094,0.568512678,-0.054797646,0.257069677,0.612583518,-0.041062891 +Left,0.282117635,0.722283721,1.37E-07,0.326155841,0.663720369,-0.023653012,0.361759961,0.572349846,-0.037575338,0.339452118,0.505072176,-0.05053978,0.296326518,0.486590207,-0.063104048,0.322241426,0.429414034,-0.020844415,0.335277677,0.331176817,-0.04236706,0.339971483,0.266377151,-0.053376622,0.339464098,0.203057647,-0.060628533,0.278296113,0.428760767,-0.023670314,0.298394978,0.372388035,-0.059804305,0.309109598,0.472233802,-0.067991436,0.30647558,0.53099227,-0.062693305,0.241165832,0.451712072,-0.028559824,0.266119063,0.449186981,-0.06991639,0.280879021,0.548279524,-0.066947259,0.278439313,0.594921768,-0.052277852,0.205442071,0.491919309,-0.034510422,0.233768031,0.496041179,-0.061811306,0.257756412,0.570346951,-0.055486206,0.263297856,0.610399008,-0.042523526 +Left,0.285311431,0.726388097,1.50E-07,0.325673282,0.66514343,-0.02220008,0.360181063,0.578670859,-0.039803855,0.347572088,0.510464072,-0.058025844,0.30850032,0.491152853,-0.075789616,0.310076654,0.425587296,-0.020287996,0.321554661,0.327307582,-0.045639671,0.328042954,0.260643721,-0.058095183,0.32981959,0.198825717,-0.065456316,0.266959876,0.428160667,-0.02540952,0.296824843,0.377186716,-0.065171279,0.310337514,0.482259929,-0.072500609,0.305946141,0.54026252,-0.06537398,0.232387885,0.452682227,-0.032983679,0.270318151,0.460046768,-0.074786961,0.283838362,0.557489514,-0.069454305,0.278419226,0.601706147,-0.053117234,0.200989857,0.495536447,-0.04213383,0.239086688,0.517995298,-0.068174049,0.262424946,0.589624584,-0.061447032,0.26653403,0.623592019,-0.048275176 +Left,0.28868252,0.716806889,1.47E-07,0.327168345,0.649606586,-0.014424562,0.358148783,0.564088225,-0.032357365,0.358223557,0.492380351,-0.053449322,0.324385017,0.486663342,-0.074504018,0.297341824,0.412216365,-0.016413024,0.308340669,0.317512333,-0.041224658,0.317247063,0.250902086,-0.053566784,0.32225275,0.191308886,-0.061275356,0.257598221,0.420186609,-0.026788464,0.298852414,0.375092626,-0.06473054,0.315970898,0.479115397,-0.069329828,0.310360372,0.534888387,-0.061644316,0.228752762,0.450670093,-0.039424829,0.282067209,0.453241467,-0.077223741,0.29566294,0.542662024,-0.070173584,0.287113041,0.584432006,-0.054925423,0.207603782,0.498527765,-0.053636625,0.262334019,0.5188393,-0.075951427,0.282088578,0.58371079,-0.069537669,0.279377043,0.616797924,-0.058530364 +Left,0.286212593,0.71129173,1.66E-07,0.327092111,0.63842237,-0.013271888,0.357246637,0.554290116,-0.031856339,0.35969764,0.485214919,-0.054292321,0.32980898,0.482620955,-0.07643497,0.29054442,0.40616101,-0.015347974,0.301342428,0.308600903,-0.040190801,0.311342239,0.240055695,-0.052896801,0.317456782,0.181750745,-0.060953639,0.252918512,0.416180998,-0.027086094,0.301191449,0.367292136,-0.065650411,0.322862208,0.464456022,-0.071072206,0.318369806,0.521324098,-0.063965134,0.227625251,0.447731435,-0.041087624,0.288994938,0.450396836,-0.077413112,0.302811593,0.535298884,-0.070483655,0.292304665,0.576668501,-0.055869702,0.211864635,0.495901674,-0.056942996,0.27230984,0.515417159,-0.07738705,0.286771595,0.57689482,-0.07125026,0.27673313,0.609139085,-0.061091922 +Left,0.285117924,0.709217429,1.46E-07,0.327050239,0.636455894,-0.012325253,0.35673067,0.554158509,-0.03110736,0.36125493,0.485225618,-0.053906668,0.332971841,0.484142929,-0.076560259,0.2865794,0.401947677,-0.016410379,0.298981369,0.306236625,-0.040720239,0.308955103,0.23860085,-0.053267725,0.315282434,0.18094787,-0.061417941,0.249597147,0.412704319,-0.028517026,0.30280298,0.368891895,-0.065281928,0.32422471,0.46519503,-0.06988854,0.318897158,0.520332634,-0.063123666,0.22621882,0.446065485,-0.042662144,0.292413414,0.450018287,-0.077609055,0.305899352,0.533445776,-0.070403911,0.295097172,0.574378729,-0.05635868,0.212967336,0.495362937,-0.058587838,0.275396109,0.512849092,-0.078444593,0.289962977,0.574017167,-0.072051287,0.280145645,0.607762039,-0.062053859 +Left,0.288299799,0.735304594,1.34E-07,0.332504481,0.676607251,-0.021088479,0.368629336,0.597144008,-0.039295699,0.362522334,0.52602154,-0.058919918,0.32635498,0.499229312,-0.077883042,0.327495545,0.437843502,-0.018420693,0.344648153,0.337502599,-0.043230608,0.355152726,0.268881202,-0.054420333,0.360026121,0.208605975,-0.06074772,0.285369754,0.433351547,-0.024355903,0.322030962,0.380852401,-0.06381584,0.33108443,0.487474591,-0.068909422,0.322710216,0.546358049,-0.059923973,0.251105279,0.450182527,-0.033051159,0.29436323,0.460783422,-0.073788784,0.301493406,0.558104157,-0.067241922,0.291863769,0.603217423,-0.050271105,0.219632894,0.484843403,-0.04354408,0.261595756,0.514023602,-0.068635769,0.277723193,0.588388681,-0.062190719,0.276542038,0.624180615,-0.049547564 +Left,0.287250936,0.741730273,1.08E-07,0.335181236,0.689605594,-0.024063794,0.375988126,0.605092406,-0.038333941,0.354445487,0.536284149,-0.051720362,0.310092956,0.511116803,-0.064638123,0.345148921,0.451664656,-0.020321677,0.35966903,0.351479053,-0.042454831,0.366011679,0.284611255,-0.05357739,0.367051482,0.220418304,-0.060873155,0.300580382,0.442827255,-0.023210496,0.322201461,0.391267806,-0.061440066,0.326536924,0.49634704,-0.070259459,0.320390135,0.55902797,-0.064385809,0.261856943,0.459856629,-0.028334945,0.284205317,0.465780526,-0.070863023,0.294367284,0.567431986,-0.06874869,0.291472703,0.614687145,-0.05408689,0.223883837,0.493847698,-0.034619085,0.249155641,0.517284274,-0.062902294,0.269317269,0.594507515,-0.058351144,0.274766654,0.63138026,-0.04625668 +Left,0.282689601,0.742272198,1.04E-07,0.331427038,0.68813175,-0.02397668,0.372666657,0.602852762,-0.038149521,0.349971145,0.535618544,-0.051421825,0.305157542,0.511478424,-0.064278118,0.34181565,0.448524773,-0.019864958,0.35680759,0.346586287,-0.04138729,0.363280028,0.279206455,-0.052527446,0.363873392,0.214813411,-0.060171593,0.297751784,0.442182332,-0.022871032,0.318936348,0.391680479,-0.060221843,0.321306616,0.498733878,-0.069023319,0.313416451,0.557646453,-0.063713282,0.259148717,0.460538954,-0.028059242,0.27930364,0.459645301,-0.07029102,0.289596617,0.562540889,-0.067701004,0.28665781,0.60689193,-0.053164627,0.221050888,0.495335549,-0.034337122,0.244376972,0.512596965,-0.063159071,0.265098006,0.591083884,-0.058038842,0.270575255,0.626965642,-0.045622401 +Left,0.273679644,0.754160821,1.00E-07,0.322902232,0.702889085,-0.02530062,0.365394205,0.617696941,-0.038615465,0.344376266,0.548469901,-0.050678611,0.298670888,0.523234546,-0.062128935,0.338116169,0.463520557,-0.021661995,0.353323072,0.358498722,-0.043639772,0.359708399,0.290708989,-0.054873694,0.360920876,0.223162889,-0.062706977,0.29342708,0.453999937,-0.024140874,0.310685903,0.405271888,-0.061971631,0.312564492,0.507987022,-0.071319416,0.306366771,0.566946805,-0.066454969,0.253439665,0.470291615,-0.02895264,0.271528482,0.476257175,-0.071702056,0.282341182,0.577655017,-0.070635073,0.281177491,0.621964574,-0.056989662,0.215095505,0.503349006,-0.035103999,0.237404048,0.528435111,-0.064332455,0.258480966,0.605847955,-0.060898114,0.265187621,0.64168638,-0.04970533 +Left,0.26599279,0.782815695,1.34E-07,0.316709518,0.731685221,-0.025577566,0.358187556,0.646747768,-0.039191816,0.330705822,0.579796433,-0.051696848,0.283019632,0.55538094,-0.063962519,0.336426437,0.500164568,-0.023167904,0.352018595,0.390448689,-0.047063578,0.357470483,0.318473339,-0.06078206,0.359500378,0.248448133,-0.070255861,0.291137457,0.48735103,-0.025799157,0.301707715,0.439989686,-0.06754145,0.301598936,0.537801206,-0.080152638,0.299637884,0.601855397,-0.076640673,0.250387967,0.498749912,-0.030508246,0.257718444,0.505314469,-0.073541746,0.266686529,0.603844047,-0.072686322,0.270701766,0.653781176,-0.058860928,0.21156317,0.527663529,-0.036802489,0.222433373,0.552284241,-0.066167884,0.241418734,0.628412127,-0.062515363,0.253375888,0.6669842,-0.050472423 +Left,0.260203212,0.782533407,1.32E-07,0.310512573,0.733900487,-0.028128093,0.352166533,0.649566531,-0.042296849,0.325574607,0.585221946,-0.055143531,0.277969092,0.558283329,-0.06768889,0.329812855,0.501492381,-0.023976048,0.343361914,0.389393508,-0.048518527,0.347054958,0.316116393,-0.061904076,0.347760051,0.245378345,-0.070735782,0.284466773,0.488953352,-0.024927553,0.292277724,0.441705406,-0.068614192,0.291959971,0.539230287,-0.081927314,0.291029096,0.602558911,-0.077903055,0.243063912,0.499317735,-0.028225621,0.246337146,0.509641767,-0.073292449,0.256822377,0.609636307,-0.073644198,0.263607502,0.659392416,-0.059586901,0.203886464,0.525004745,-0.033195231,0.211925477,0.556834459,-0.06366346,0.232344046,0.634574652,-0.061186217,0.246896043,0.672559738,-0.049337033 +Left,0.250311643,0.795818567,1.27E-07,0.29906857,0.738441825,-0.024273736,0.339895844,0.652752459,-0.038446691,0.314183503,0.5910936,-0.052043092,0.266837746,0.567816138,-0.065476298,0.315573364,0.498768151,-0.022553712,0.329028577,0.392607957,-0.0460191,0.333315551,0.321460724,-0.059249256,0.333296627,0.250433564,-0.068677433,0.268741012,0.487286419,-0.026031772,0.282208264,0.448283017,-0.066076376,0.285107672,0.549745142,-0.077728055,0.282471329,0.607425034,-0.074316911,0.226753175,0.502683818,-0.031522952,0.239509478,0.518553376,-0.073782206,0.250630498,0.618590415,-0.072893016,0.253200889,0.661329687,-0.059748828,0.186367214,0.534879506,-0.038533024,0.202200383,0.570277393,-0.066983216,0.223901823,0.647779465,-0.063431166,0.23568593,0.681164384,-0.052071963 +Left,0.233097211,0.775234222,1.54E-07,0.284429908,0.717424691,-0.024311496,0.326517791,0.630068839,-0.038136072,0.301600039,0.567267597,-0.051417187,0.253265351,0.545364499,-0.064520098,0.300861657,0.472130805,-0.022970928,0.317645758,0.362194896,-0.046530575,0.324908435,0.291078091,-0.059111368,0.326960623,0.220799565,-0.067616493,0.252841443,0.460201085,-0.026172355,0.26498583,0.414493918,-0.065920778,0.268763036,0.509716094,-0.077851184,0.266637921,0.569751322,-0.07428246,0.209700614,0.474590629,-0.031360347,0.223962739,0.498331547,-0.074448049,0.237862483,0.595164478,-0.075846501,0.241775617,0.640278697,-0.063582011,0.170035884,0.506178498,-0.037931737,0.190483078,0.550847292,-0.067086317,0.213854536,0.629880786,-0.065275319,0.225791484,0.668591201,-0.054716643 +Left,0.229787603,0.699738741,1.63E-07,0.280052871,0.641760707,-0.027528446,0.322958946,0.550779819,-0.043912284,0.298191041,0.481688887,-0.058957722,0.248656288,0.457710147,-0.073742732,0.288542897,0.381812155,-0.025904341,0.307059199,0.276626706,-0.05050265,0.316209614,0.206378415,-0.063984923,0.318582565,0.136426061,-0.073222227,0.237783283,0.375053942,-0.02852896,0.253949702,0.3273983,-0.070517041,0.26213333,0.437470645,-0.082425393,0.25872466,0.504239917,-0.078195252,0.194162861,0.396885455,-0.033269007,0.214968294,0.411842942,-0.079512589,0.232046202,0.517409742,-0.079042636,0.233301908,0.565273523,-0.064591423,0.153632775,0.437916249,-0.039321695,0.180421948,0.462675065,-0.070614584,0.206498533,0.543726265,-0.066397421,0.215829968,0.583243132,-0.053585537 +Left,0.210573718,0.731654346,1.68E-07,0.262322664,0.672451019,-0.023090467,0.305747658,0.582656145,-0.0371859,0.287513584,0.515103698,-0.051429279,0.240259156,0.496478081,-0.065837152,0.276526511,0.421601832,-0.019995118,0.299337506,0.314911395,-0.044130091,0.311411917,0.246534407,-0.057742383,0.318199068,0.178505957,-0.066844031,0.226898462,0.410403639,-0.024408389,0.244679391,0.364314646,-0.066324882,0.246490195,0.465510607,-0.079407975,0.240844667,0.530128419,-0.075914182,0.182352886,0.427068144,-0.030801911,0.203961417,0.445151687,-0.075794928,0.214829952,0.54503715,-0.077451721,0.214915305,0.593539655,-0.064680465,0.14099586,0.462188542,-0.038389605,0.166473076,0.50088048,-0.068759412,0.189442709,0.581427395,-0.066738382,0.200177088,0.622701883,-0.055663571 +Left,0.202609077,0.74007076,1.85E-07,0.25197643,0.685440361,-0.026582539,0.294811845,0.596544623,-0.042539813,0.267946303,0.530021727,-0.057799052,0.218252048,0.505244195,-0.072477415,0.26896733,0.437517107,-0.023681197,0.291700482,0.33029139,-0.049015597,0.302801311,0.260528773,-0.061238393,0.307343245,0.193547159,-0.069045164,0.217284113,0.429468572,-0.026855659,0.229953498,0.375556171,-0.069222644,0.234129116,0.484889746,-0.07962767,0.230833933,0.543382585,-0.073941015,0.172133118,0.445622534,-0.03250156,0.186881632,0.45195967,-0.080097102,0.202140704,0.558826625,-0.079304762,0.204355687,0.602919459,-0.064178929,0.129915923,0.480063498,-0.039386708,0.152513474,0.51236105,-0.072472937,0.178992093,0.59404254,-0.069454916,0.189891756,0.629888058,-0.05704746 +Left,0.199078292,0.746330023,2.06E-07,0.246693775,0.685720265,-0.025136992,0.288229585,0.597692251,-0.041562568,0.262540787,0.534696341,-0.05749993,0.213917658,0.513706148,-0.07310535,0.259414405,0.439391613,-0.023686383,0.284546226,0.336858392,-0.050594173,0.300299674,0.270086527,-0.06462799,0.309459895,0.205058932,-0.073610879,0.207321703,0.42984587,-0.027348097,0.222044468,0.383803338,-0.070706688,0.226704895,0.49590525,-0.082145996,0.222044989,0.555750787,-0.077087738,0.162408084,0.44663012,-0.033412382,0.180347055,0.465529799,-0.081257038,0.19693847,0.56935066,-0.08195553,0.199185848,0.61108619,-0.06801115,0.120489091,0.483368099,-0.040622301,0.146830842,0.530724764,-0.074210502,0.175566792,0.61179781,-0.07304693,0.18803373,0.645048261,-0.062020805 +Left,0.209694222,0.760878563,1.97E-07,0.256018162,0.694702625,-0.02445811,0.296192467,0.598878443,-0.040524039,0.271670312,0.531236351,-0.056048334,0.224234134,0.514347136,-0.071145572,0.258191168,0.442698359,-0.022701085,0.280431569,0.338982731,-0.050043862,0.295527786,0.272497326,-0.065229408,0.304323792,0.205935836,-0.075193845,0.205970138,0.437939554,-0.027250011,0.224410295,0.385627508,-0.07203611,0.234358713,0.499949574,-0.084558643,0.231160849,0.564633012,-0.080008514,0.161750555,0.460137039,-0.03402226,0.186251968,0.471729755,-0.082387663,0.20532237,0.577863336,-0.081918597,0.207079664,0.623909593,-0.066962048,0.120958924,0.503196418,-0.041963786,0.152243137,0.540181041,-0.075319871,0.181671649,0.620356083,-0.072628893,0.192469552,0.655110598,-0.060534287 +Left,0.257165015,0.769033313,2.13E-07,0.299773663,0.691352367,-0.016615048,0.331135333,0.590240836,-0.03121536,0.316595882,0.517191827,-0.047472909,0.273300856,0.510564566,-0.063008688,0.278618395,0.439057767,-0.016830236,0.301907778,0.336819172,-0.045494191,0.319275469,0.274981618,-0.06147413,0.330012053,0.210144877,-0.071664862,0.227755383,0.437583596,-0.026017396,0.257941365,0.387261569,-0.068683751,0.273495227,0.475211829,-0.081823751,0.270440549,0.528798401,-0.07923682,0.189208284,0.467539638,-0.037346803,0.243051752,0.503783941,-0.080308758,0.25792852,0.588207662,-0.082964309,0.250912398,0.619173765,-0.072736897,0.160592407,0.519180655,-0.049931906,0.219066888,0.575749159,-0.075457104,0.239388645,0.641706049,-0.075173937,0.237135112,0.664151549,-0.067738071 +Left,0.29076004,0.775866985,2.12E-07,0.344394326,0.663105011,-0.004767571,0.368744761,0.564266384,-0.021121765,0.37688446,0.489075214,-0.042754326,0.363939971,0.490189254,-0.063388146,0.272384882,0.430462003,-0.010487251,0.314095706,0.328390479,-0.041274171,0.341317594,0.257577002,-0.061376166,0.362882257,0.195409507,-0.075881131,0.24274604,0.451105297,-0.02893715,0.325324893,0.390179336,-0.071190454,0.344895422,0.474447459,-0.079877771,0.336004108,0.519250214,-0.07767944,0.236695707,0.496592224,-0.04968451,0.336099625,0.499133646,-0.086401977,0.345829248,0.573805928,-0.081568189,0.329801738,0.598969638,-0.071071818,0.248385847,0.553383589,-0.072297178,0.332416683,0.572713971,-0.090096705,0.338469565,0.62763834,-0.085574053,0.320426881,0.645582438,-0.079302564 +Left,0.300751805,0.7800138,2.25E-07,0.363381833,0.654266,-0.008049034,0.383062005,0.555803239,-0.027037969,0.39631173,0.484119028,-0.050626371,0.401125968,0.462145776,-0.072694123,0.286272913,0.421599656,-0.018520275,0.332534283,0.311465383,-0.047162596,0.359656513,0.241548359,-0.064781487,0.380711436,0.180900484,-0.077988952,0.263648182,0.448246151,-0.034427155,0.356852293,0.385658652,-0.074006356,0.377586901,0.465723544,-0.081397973,0.368894577,0.507436395,-0.07979998,0.266593128,0.497731417,-0.052096158,0.37401399,0.480953336,-0.087168567,0.380888641,0.553510129,-0.08176183,0.361118257,0.579353571,-0.072049171,0.285133153,0.555831671,-0.071519874,0.375387311,0.55927676,-0.088984117,0.380022705,0.614699364,-0.083915107,0.360810608,0.634032845,-0.077701889 +Left,0.312305033,0.753204226,2.74E-07,0.313891321,0.634973168,-0.003459118,0.33016786,0.520145655,-0.02286345,0.368405282,0.446342707,-0.045363624,0.401673317,0.417986453,-0.067366116,0.291917473,0.442832917,-0.036839791,0.340019256,0.312818766,-0.065864764,0.370435894,0.234686822,-0.080972701,0.392466277,0.167652667,-0.091355048,0.29956764,0.473590106,-0.052939463,0.397310853,0.391027451,-0.088259183,0.405017078,0.456560284,-0.089970246,0.385032803,0.494479388,-0.085846968,0.323048711,0.523786068,-0.068634987,0.423026472,0.480458975,-0.09360192,0.417363346,0.537979484,-0.080912866,0.390899807,0.557758689,-0.069080703,0.354706615,0.582208097,-0.085623614,0.433041215,0.562647581,-0.093931742,0.422972888,0.607790112,-0.082466997,0.396482259,0.62329632,-0.07329271 +Left,0.323912829,0.773618579,1.47E-07,0.303756505,0.651282191,0.003857494,0.30961287,0.525405169,-0.011228899,0.342214346,0.440243602,-0.02940804,0.37764895,0.395753711,-0.047644529,0.290463269,0.467210293,-0.039986003,0.329910636,0.321258903,-0.065530509,0.353683114,0.238335013,-0.076877847,0.369544387,0.167688668,-0.084323533,0.313530207,0.500290155,-0.056815576,0.403509378,0.395001113,-0.086998612,0.408810437,0.459172904,-0.083802894,0.386549801,0.500931442,-0.076731391,0.349171311,0.548933685,-0.071514137,0.431942463,0.478648484,-0.089703716,0.425730169,0.532176971,-0.071047805,0.400792301,0.559063852,-0.055957228,0.387548059,0.604469657,-0.086549997,0.449655682,0.55001229,-0.088792354,0.440402776,0.590004623,-0.071258694,0.417034805,0.611388683,-0.057894014 +Left,0.318998575,0.806963742,3.92E-08,0.281847358,0.686213613,0.003269012,0.28262642,0.556144893,-0.008813275,0.31275928,0.461251915,-0.021822369,0.346646219,0.410994649,-0.035095058,0.267982781,0.517120123,-0.042059258,0.284088314,0.35373202,-0.06610854,0.29399389,0.261103123,-0.077313386,0.298447251,0.184973508,-0.084514655,0.311047345,0.537159622,-0.056013163,0.365128458,0.394560218,-0.082021788,0.368450195,0.45114547,-0.077403508,0.350793868,0.507567048,-0.068923645,0.359517515,0.572268248,-0.067249864,0.404145181,0.464571655,-0.080539651,0.401244521,0.512409747,-0.057664085,0.38447836,0.554560959,-0.03942354,0.403333336,0.611914873,-0.078635782,0.4297916,0.524923146,-0.076112896,0.423242033,0.565378129,-0.052126095,0.411276281,0.600126505,-0.034003813 +Left,0.302606106,0.832340896,5.60E-08,0.254555643,0.726145148,-0.002266041,0.245214343,0.595148861,-0.016164443,0.26717478,0.490367234,-0.029283017,0.298987627,0.429655433,-0.042320669,0.227893382,0.563218653,-0.048392192,0.231811792,0.400681973,-0.075816624,0.235361934,0.301273108,-0.091403782,0.234615445,0.221461266,-0.102062732,0.275043488,0.572116137,-0.059802677,0.316918612,0.423930198,-0.087354653,0.325247556,0.47707361,-0.084083892,0.312089592,0.535781622,-0.077383094,0.327495158,0.594362259,-0.069059335,0.361858308,0.477581114,-0.083176553,0.363413632,0.522046328,-0.059883256,0.350802183,0.566974461,-0.042192515,0.375169098,0.623552799,-0.079100303,0.393549383,0.529298425,-0.079017587,0.390571803,0.572516143,-0.055669073,0.382893145,0.611168563,-0.038205229 +Left,0.27631855,0.842327714,1.30E-07,0.219154984,0.746580839,-0.002062946,0.203072727,0.623057723,-0.01637416,0.226020634,0.52587074,-0.029845083,0.260412812,0.478307426,-0.043807421,0.189026415,0.596112609,-0.051980063,0.185195208,0.428134501,-0.077483214,0.183291942,0.329975009,-0.091466926,0.179404438,0.251445293,-0.101104714,0.240606204,0.600701869,-0.062736876,0.267406791,0.442231953,-0.089124851,0.273048997,0.489214301,-0.085716814,0.265113086,0.547109067,-0.078908719,0.29540959,0.615728259,-0.070564613,0.316076368,0.491868854,-0.083352774,0.315423757,0.532270908,-0.060861144,0.306556642,0.579397321,-0.043494709,0.343801171,0.635511816,-0.078954369,0.352317363,0.533480704,-0.077395402,0.347407818,0.572114706,-0.053712923,0.341371953,0.61359328,-0.035890739 +Left,0.259410322,0.830107331,1.49E-07,0.203608841,0.730406284,-0.000693556,0.186064616,0.607027113,-0.015869152,0.209321156,0.51047045,-0.030434018,0.245401919,0.459923685,-0.045552373,0.168270022,0.577790737,-0.052331835,0.163540602,0.410975873,-0.076880239,0.16182375,0.31416887,-0.089208439,0.158168256,0.235146224,-0.097785942,0.217568114,0.579978883,-0.064347163,0.247072548,0.421132773,-0.090523884,0.255834997,0.469169945,-0.086929038,0.248467803,0.527784348,-0.079970442,0.272579074,0.593045652,-0.073077224,0.296174079,0.47472614,-0.085551962,0.298194408,0.51738131,-0.063098945,0.289241999,0.562865734,-0.045957219,0.322199136,0.611482084,-0.082197994,0.33161211,0.519037962,-0.079219349,0.329447895,0.560066938,-0.054779254,0.324298501,0.599680901,-0.036659565 +Left,0.242303789,0.816417456,1.02E-07,0.192474529,0.705531657,0.002967732,0.17963624,0.574854732,-0.009496778,0.204235196,0.47627157,-0.022912672,0.238887087,0.420618445,-0.036420979,0.159103319,0.533556938,-0.040874213,0.165509537,0.371325672,-0.062065419,0.169861525,0.27704975,-0.072253041,0.170097545,0.200222135,-0.079504617,0.205861017,0.543294907,-0.055132564,0.248006091,0.396622241,-0.079913557,0.256746173,0.448098779,-0.077554516,0.246885821,0.50389117,-0.071445823,0.259595543,0.563622594,-0.066264413,0.2954216,0.452056766,-0.078446172,0.297080189,0.499327719,-0.05734849,0.285843194,0.545173287,-0.040961906,0.309554517,0.589222074,-0.07768403,0.328898817,0.506296337,-0.074208386,0.326657921,0.547912955,-0.050998263,0.319152713,0.585548937,-0.03352135 +Left,0.223121539,0.795085192,7.50E-08,0.175634518,0.676850736,0.010752112,0.163198709,0.546314776,0.002053884,0.186948404,0.449514151,-0.009756106,0.221542239,0.394331992,-0.021882566,0.139545768,0.497509062,-0.026206633,0.153323233,0.339451492,-0.041657999,0.16194585,0.250388861,-0.04747026,0.163886279,0.179038733,-0.052202351,0.180243492,0.504862309,-0.043981548,0.232924014,0.367099106,-0.063727133,0.24664931,0.42242232,-0.060147773,0.234940663,0.475943983,-0.054149993,0.231473967,0.524918556,-0.058559902,0.278634638,0.426712006,-0.068094112,0.284083486,0.476768702,-0.048572674,0.27055496,0.518336475,-0.034441013,0.281813323,0.552546024,-0.072796412,0.311897278,0.481574208,-0.067853808,0.312188089,0.527805746,-0.045991693,0.300988406,0.564798713,-0.030254571 +Left,0.228845879,0.776891112,1.21E-07,0.189693615,0.656472743,0.004959272,0.181052357,0.521112144,-0.005756261,0.206583411,0.424092621,-0.01941102,0.240235537,0.366879106,-0.032707725,0.159326851,0.470042527,-0.026401037,0.182687595,0.318041325,-0.045517858,0.197126478,0.234722018,-0.054077104,0.205106437,0.166273803,-0.060479164,0.196716622,0.488847613,-0.043059926,0.258407325,0.357489645,-0.068235882,0.268557638,0.413549274,-0.067431785,0.254062653,0.462195516,-0.062486358,0.243082955,0.517546237,-0.05782624,0.298192322,0.426775515,-0.072383709,0.299893737,0.478557378,-0.05521315,0.283091128,0.514814615,-0.041739602,0.289265662,0.552622199,-0.072989978,0.33013016,0.485505223,-0.072319165,0.328123868,0.531205118,-0.053697422,0.313628554,0.562690318,-0.039853271 +Left,0.229983643,0.775374949,1.53E-07,0.196887866,0.652576089,0.00226148,0.194608808,0.51576829,-0.010757944,0.225404665,0.417491794,-0.026055483,0.260237128,0.361777276,-0.040722046,0.170729309,0.470165521,-0.0335664,0.201921731,0.321355671,-0.055246308,0.221858233,0.23819989,-0.065029271,0.234112173,0.167810619,-0.072169073,0.205006123,0.495993972,-0.049604934,0.275891125,0.370723397,-0.077961981,0.283720404,0.4306584,-0.077028625,0.265053719,0.477865368,-0.071742348,0.249705076,0.532402515,-0.063740507,0.315605044,0.444023877,-0.08170443,0.314492106,0.49731043,-0.064788155,0.293757796,0.530590713,-0.05075549,0.295595795,0.573968172,-0.078281626,0.346054316,0.508664131,-0.080816582,0.34162426,0.551977336,-0.063755006,0.323231637,0.578755379,-0.050564196 +Left,0.248151854,0.759372592,1.81E-07,0.217203885,0.632039309,0.002702162,0.215160325,0.497773796,-0.009617725,0.246969491,0.408603549,-0.024968185,0.285324633,0.363395661,-0.039637636,0.196587771,0.443498224,-0.026183814,0.230763197,0.301021218,-0.046794351,0.252077192,0.220319331,-0.057044428,0.265262157,0.152930647,-0.064481854,0.229227826,0.467938155,-0.042171087,0.30380705,0.346809328,-0.06925597,0.313988537,0.40689674,-0.069494247,0.296093464,0.453232229,-0.064496152,0.27176711,0.504573345,-0.056675673,0.340257317,0.418792427,-0.073860712,0.341309309,0.474548399,-0.058283042,0.320683986,0.510098159,-0.044597898,0.315719455,0.54960084,-0.071705706,0.368142366,0.488850892,-0.073826738,0.364386797,0.531618416,-0.057483122,0.345246136,0.560225368,-0.044363335 +Left,0.277503371,0.740193009,2.70E-07,0.299510241,0.618543863,-0.004503478,0.307821006,0.499277085,-0.020468893,0.326255977,0.411354154,-0.039736949,0.345248491,0.361096323,-0.05686865,0.240841687,0.417604327,-0.025139142,0.28276661,0.288166612,-0.052135605,0.304971516,0.212560967,-0.06508927,0.320717394,0.146470636,-0.074277736,0.236949533,0.436261624,-0.039871287,0.330174744,0.343759179,-0.07835643,0.356369138,0.413403392,-0.081331782,0.353752851,0.46273008,-0.075581454,0.255739212,0.474666595,-0.055261012,0.359601229,0.428815305,-0.085645922,0.368759692,0.497576118,-0.076264255,0.352825046,0.528469205,-0.064126678,0.287581444,0.521475852,-0.072006032,0.376425773,0.519238949,-0.085386463,0.377256423,0.572535992,-0.079250775,0.358136177,0.592068076,-0.072443664 +Left,0.316558659,0.745543063,2.97E-07,0.373545796,0.615713239,-0.008272978,0.389043003,0.516568005,-0.026160549,0.400106847,0.445227146,-0.048098277,0.41035983,0.420274079,-0.06793195,0.279860049,0.41678232,-0.019254457,0.319186151,0.292665839,-0.046509609,0.339952409,0.219492987,-0.061750192,0.354885429,0.15510723,-0.072519056,0.265171766,0.440303773,-0.033320319,0.352568626,0.349520028,-0.073691145,0.382082492,0.418539703,-0.080745026,0.383439183,0.466583878,-0.076938085,0.276254892,0.479007423,-0.048707455,0.376171917,0.442829698,-0.082380392,0.387014329,0.515450299,-0.077323914,0.373772383,0.551107168,-0.066741541,0.302979738,0.522263646,-0.065808646,0.388815612,0.519075215,-0.080303967,0.394753873,0.578048766,-0.074831508,0.380756617,0.607479811,-0.068098195 +Left,0.385614753,0.741810799,1.18E-07,0.439006776,0.63214767,-0.005827115,0.456870496,0.54229641,-0.019353108,0.464159161,0.475384861,-0.037020586,0.459831238,0.44333303,-0.053299498,0.348035902,0.421384573,-0.013132856,0.380895734,0.313025922,-0.036788128,0.399420917,0.243879601,-0.051166296,0.412209094,0.181722403,-0.061794318,0.327058524,0.439093411,-0.027002526,0.407121629,0.369759083,-0.060162667,0.433586925,0.43757087,-0.066252977,0.431345344,0.483741492,-0.064317018,0.329959601,0.477066219,-0.042447839,0.424592048,0.45052734,-0.075174734,0.438947618,0.521520317,-0.07262741,0.427145928,0.558586061,-0.064520665,0.348314792,0.522039115,-0.059072867,0.43026492,0.519498825,-0.078017376,0.443564415,0.579653382,-0.075595133,0.433565915,0.613492429,-0.070515245 +Left,0.457471699,0.748171687,1.43E-07,0.492208898,0.665038228,-0.008704231,0.511659563,0.572030008,-0.025062202,0.508534789,0.496245891,-0.045702085,0.4786098,0.485323161,-0.065985642,0.431907296,0.446268171,-0.008182327,0.445917249,0.348205447,-0.031831082,0.455483049,0.278798908,-0.044032834,0.460602373,0.221783787,-0.051718272,0.39697513,0.460893869,-0.021442331,0.440401465,0.375650793,-0.056780796,0.468448341,0.459396511,-0.061390605,0.466936141,0.516331434,-0.053981666,0.377210021,0.490641385,-0.036855418,0.439791679,0.455860108,-0.071980923,0.459968776,0.539319217,-0.065411039,0.450694114,0.587357879,-0.051147241,0.370093226,0.534028053,-0.053562023,0.435642779,0.531270266,-0.074463762,0.455541402,0.594671488,-0.069011793,0.448072493,0.635948718,-0.059302028 +Left,0.475918561,0.760897279,1.81E-07,0.515223145,0.686026216,-0.014759507,0.542207837,0.591489851,-0.029915392,0.538596034,0.510936618,-0.047831833,0.5010432,0.501030803,-0.06527105,0.483739465,0.452076554,-0.010187443,0.494797081,0.35712871,-0.031793665,0.50257051,0.295907259,-0.042435762,0.505921841,0.237652957,-0.049124084,0.445595533,0.460657179,-0.018876566,0.477195144,0.391478688,-0.053431187,0.497844249,0.479635298,-0.05951545,0.496364534,0.535042048,-0.053128693,0.416497409,0.488773733,-0.029933795,0.465227395,0.47585547,-0.067015722,0.481657058,0.565493286,-0.062448442,0.473697484,0.613050938,-0.048179287,0.393979549,0.533488393,-0.04224956,0.446076423,0.535234928,-0.06471891,0.466372997,0.601077318,-0.059108447,0.462374955,0.641261339,-0.048416615 +Left,0.468923092,0.74105978,2.13E-07,0.514302731,0.687399805,-0.024484877,0.548736334,0.588979244,-0.038186789,0.52898699,0.511064768,-0.050798696,0.483533978,0.491492927,-0.062999487,0.503670275,0.441733748,-0.020985631,0.510749042,0.331839263,-0.041605696,0.516108155,0.265507698,-0.051427588,0.515470922,0.203631103,-0.057444036,0.461937726,0.444381505,-0.022870202,0.479769528,0.369686157,-0.058826108,0.495353907,0.455615819,-0.068041548,0.494922489,0.518776536,-0.062879972,0.427739948,0.469248503,-0.02677452,0.456154764,0.463818908,-0.067116521,0.47139433,0.553749144,-0.066525176,0.468361795,0.603417933,-0.053568844,0.396981895,0.511318803,-0.031934626,0.431961685,0.522394419,-0.059400074,0.455507249,0.593589306,-0.056278355,0.460791588,0.636497378,-0.045752008 +Left,0.433079302,0.744839311,5.61E-08,0.47795707,0.674857676,-0.025356617,0.499430776,0.562222898,-0.036195818,0.459207922,0.497456282,-0.045647528,0.412882566,0.488610387,-0.054821543,0.462997913,0.423114657,-0.016694915,0.454565078,0.312876701,-0.035422292,0.444032282,0.245541543,-0.045596942,0.432382584,0.183766782,-0.052961618,0.419907004,0.440467328,-0.018900393,0.416631728,0.363744915,-0.055866163,0.432622641,0.453332782,-0.066997074,0.442083538,0.522739947,-0.062728584,0.384391129,0.477632523,-0.023145337,0.386938781,0.452799767,-0.066381857,0.410971731,0.545941591,-0.066626891,0.422339082,0.60348177,-0.05301572,0.352265358,0.529751658,-0.028393254,0.363334239,0.520277441,-0.061367627,0.39160502,0.591482282,-0.058567341,0.407176971,0.637358725,-0.046641544 +Left,0.401902765,0.770705223,7.42E-08,0.444337577,0.70042336,-0.027557282,0.462239504,0.585638762,-0.038646411,0.423215806,0.523671448,-0.048270483,0.375732929,0.51626426,-0.057619933,0.423388511,0.445007563,-0.020175176,0.41266188,0.322862267,-0.039906252,0.400169939,0.250630766,-0.05021999,0.38616997,0.185656011,-0.057323273,0.380308688,0.468883485,-0.022350356,0.371789753,0.388423562,-0.060745433,0.389450938,0.473698556,-0.072099328,0.402779192,0.541416049,-0.06759277,0.345054895,0.510646045,-0.026686277,0.345154405,0.487017959,-0.071125001,0.371629775,0.581011951,-0.070480607,0.385778219,0.637940764,-0.055588923,0.314393491,0.564525008,-0.032353517,0.318643302,0.547793388,-0.065170377,0.348138392,0.618712902,-0.060246408,0.367102772,0.666170895,-0.046398435 +Left,0.367641628,0.791401386,6.65E-08,0.409342945,0.716021895,-0.029187707,0.422699958,0.602950573,-0.042434182,0.375023603,0.553394854,-0.054361418,0.32514742,0.543125987,-0.065875895,0.383851022,0.461200684,-0.02053168,0.36413911,0.338748813,-0.042245917,0.346614003,0.266055048,-0.054333244,0.328595787,0.202840984,-0.062766679,0.339349627,0.492085963,-0.022709494,0.323970735,0.418715715,-0.065116495,0.34280169,0.505931616,-0.078310847,0.358615398,0.574747026,-0.074393861,0.303469926,0.539661109,-0.027472597,0.296009839,0.512099206,-0.075312562,0.326714128,0.60538739,-0.074979961,0.345530987,0.662194252,-0.059744637,0.273591638,0.598255992,-0.033645984,0.275202721,0.587104797,-0.069887467,0.307931572,0.654628217,-0.066291943,0.330168456,0.695785105,-0.052741636 +Left,0.334098637,0.817323089,3.41E-08,0.372686237,0.73177284,-0.031815831,0.383640796,0.62285012,-0.049023967,0.329428017,0.582611918,-0.064320751,0.278365105,0.575669706,-0.078994684,0.339237481,0.482890695,-0.027207555,0.311858892,0.36099422,-0.05184776,0.289798528,0.290230393,-0.066941187,0.267835051,0.227239519,-0.078069128,0.294994026,0.517826557,-0.029188754,0.278979689,0.449265897,-0.073042616,0.302753657,0.542437017,-0.086110868,0.320791811,0.608868122,-0.083269499,0.261725873,0.570251465,-0.033965487,0.252048165,0.539590657,-0.080441721,0.285301775,0.631361902,-0.076798424,0.305043101,0.68525672,-0.061004087,0.233930409,0.634978354,-0.040650152,0.228673026,0.611746788,-0.07489378,0.261012346,0.675203264,-0.068604298,0.282934785,0.712803841,-0.054365952 +Left,0.307407528,0.831336737,8.33E-08,0.346643925,0.752457023,-0.033367015,0.357682735,0.641768336,-0.051475555,0.302294731,0.599315524,-0.067609586,0.249796584,0.589558184,-0.082965508,0.312486202,0.491229653,-0.028559379,0.290033519,0.363583326,-0.053951874,0.272436559,0.285114914,-0.069268696,0.252333581,0.218121886,-0.080491401,0.266697973,0.525327384,-0.029909406,0.251543343,0.463490248,-0.075401172,0.277143866,0.558276057,-0.088906921,0.294537872,0.624795377,-0.085984148,0.231595024,0.577940106,-0.034074072,0.222420573,0.544323981,-0.082225144,0.258458763,0.638453782,-0.0784657,0.27811113,0.692626119,-0.062377457,0.202824622,0.644272268,-0.040273279,0.202465206,0.628436983,-0.077032618,0.239156276,0.692268789,-0.072123431,0.262071162,0.72674948,-0.058230907 +Left,0.279222786,0.819652736,1.45E-07,0.324281454,0.73855412,-0.032754224,0.342221528,0.627960801,-0.049614619,0.285659611,0.574267745,-0.064761236,0.234219298,0.553475082,-0.079263128,0.308872283,0.47812292,-0.024882887,0.308187038,0.346645653,-0.050827429,0.304673076,0.263199091,-0.066714235,0.296869576,0.189171106,-0.078176126,0.258879602,0.49822247,-0.025967196,0.248813301,0.429611027,-0.073204644,0.263432413,0.527685523,-0.0887798,0.274689078,0.598701894,-0.08642856,0.218860164,0.539029002,-0.029930254,0.210850567,0.511894047,-0.080709092,0.239095181,0.609651685,-0.080356628,0.256577998,0.667668045,-0.065277576,0.186232239,0.596329868,-0.03561439,0.187454283,0.5900774,-0.075099885,0.220772639,0.661413074,-0.072794668,0.244045511,0.702650666,-0.059525173 +Left,0.24672848,0.808980227,1.69E-07,0.300103307,0.732825458,-0.030128459,0.329200625,0.628812671,-0.04577763,0.289022118,0.555395007,-0.060440503,0.240048662,0.518912613,-0.074603319,0.311781108,0.475427657,-0.022295421,0.334556252,0.356676042,-0.048932415,0.343653619,0.281190038,-0.063495182,0.347610265,0.207715154,-0.073324561,0.258674234,0.471893221,-0.023972368,0.258394718,0.393491328,-0.071415626,0.263921261,0.501474202,-0.084627129,0.26843968,0.574552953,-0.079152405,0.212135762,0.492763728,-0.028651465,0.212017268,0.478645623,-0.079422504,0.231329888,0.588081419,-0.07884004,0.242408812,0.647768617,-0.062337831,0.171151698,0.534770787,-0.034924723,0.179400295,0.546633542,-0.071567543,0.20653373,0.628099144,-0.069332063,0.225208044,0.671399295,-0.056154761 +Left,0.238514319,0.801378012,2.05E-07,0.292633682,0.735755086,-0.028765598,0.329203248,0.635120869,-0.043515392,0.293149322,0.563242853,-0.057284519,0.243176594,0.529224694,-0.070596449,0.311561465,0.479745984,-0.02235274,0.337763786,0.364313841,-0.048561499,0.349396765,0.288672328,-0.062219005,0.354658514,0.215626419,-0.071245588,0.258777857,0.472313285,-0.024764253,0.260338485,0.396135509,-0.071036711,0.265379578,0.504306793,-0.084278978,0.268160075,0.575808764,-0.078804851,0.21162869,0.488978118,-0.029887863,0.21386902,0.48262015,-0.080418907,0.231468901,0.593929768,-0.080765523,0.240017742,0.649391294,-0.064827353,0.169228524,0.525959074,-0.036388207,0.180610135,0.549717903,-0.07269267,0.206804484,0.634768367,-0.070835046,0.2230535,0.676792502,-0.057990275 +Left,0.241178945,0.799251437,1.62E-07,0.299310297,0.749511123,-0.026673879,0.348649293,0.662097514,-0.04065999,0.32243675,0.580870569,-0.053484596,0.275623918,0.539726317,-0.065811098,0.33488977,0.496209204,-0.022509703,0.36765027,0.392661482,-0.04922441,0.385865867,0.324664831,-0.062741049,0.400221884,0.255955428,-0.071181111,0.28365311,0.468565255,-0.025238831,0.301403731,0.409333438,-0.071401432,0.294213563,0.522177696,-0.084065132,0.28701818,0.595590115,-0.077693291,0.236593425,0.472424507,-0.03035829,0.246572584,0.497380584,-0.080230303,0.252592146,0.608654559,-0.081954367,0.254673809,0.663079321,-0.066683665,0.192074507,0.497655004,-0.036647726,0.206312105,0.545968592,-0.070803203,0.225076854,0.635842025,-0.069667213,0.237028226,0.679999292,-0.057577178 +Left,0.250762939,0.784233928,1.79E-07,0.30866003,0.733928144,-0.019030424,0.358486116,0.650907874,-0.031211497,0.343872279,0.571679652,-0.044278976,0.302049875,0.533265114,-0.057045072,0.34657523,0.483364493,-0.015628964,0.383330226,0.382150173,-0.04036288,0.406377703,0.317816079,-0.052655477,0.423686326,0.25370568,-0.060278758,0.296603799,0.454255641,-0.022119783,0.325390816,0.406205058,-0.064185016,0.318053722,0.515007913,-0.07504987,0.305266768,0.578330696,-0.069127306,0.250262827,0.456427753,-0.030582026,0.273649156,0.488310456,-0.077036358,0.275291026,0.596299171,-0.078109235,0.269304782,0.644376278,-0.064208426,0.204816118,0.481079489,-0.03977935,0.230190769,0.538129687,-0.071445085,0.246683091,0.629933357,-0.069818296,0.25317812,0.672979772,-0.058642883 +Left,0.294661582,0.787811935,1.94E-07,0.345053732,0.728525043,-0.012228361,0.390780836,0.640690506,-0.028696349,0.40032205,0.559903622,-0.048376281,0.36494267,0.542733192,-0.067763373,0.35270068,0.454752207,-0.016962061,0.389089048,0.357893884,-0.044100549,0.414065897,0.294661283,-0.060224164,0.430455625,0.23250246,-0.071426004,0.304667354,0.441298813,-0.030157449,0.353258044,0.411167681,-0.070220754,0.358743876,0.511599839,-0.079935066,0.343160987,0.561278701,-0.07674662,0.266253412,0.464898646,-0.044929478,0.32343781,0.502573073,-0.08448232,0.327011138,0.591661394,-0.081819892,0.312094629,0.619497001,-0.07021638,0.23692067,0.513205707,-0.06100224,0.296073467,0.573540032,-0.083924778,0.30897525,0.64674592,-0.079316065,0.302366525,0.673417926,-0.070167661 +Left,0.334762931,0.790798545,2.11E-07,0.383336395,0.715387762,-0.010200758,0.421377569,0.626252472,-0.030819647,0.433934361,0.546090961,-0.056458853,0.40504542,0.541411221,-0.081856862,0.358786106,0.43669036,-0.014131557,0.392702758,0.344985664,-0.04422516,0.415748805,0.274220794,-0.061602328,0.432452887,0.214424908,-0.073300958,0.314049661,0.440281898,-0.031088078,0.380021363,0.40896064,-0.073639795,0.394015282,0.517868102,-0.079908028,0.382600248,0.568030417,-0.073316731,0.285394609,0.478375673,-0.050502598,0.363154709,0.503799915,-0.090249605,0.370207489,0.595699787,-0.082729317,0.353925526,0.625435352,-0.067870207,0.271043837,0.540435791,-0.071790121,0.342885107,0.585447192,-0.094251417,0.35352537,0.650657296,-0.087977596,0.3401196,0.672212481,-0.077803835 +Left,0.348805875,0.781356096,1.75E-07,0.398653507,0.701237559,-0.005159099,0.433444589,0.611066461,-0.022786452,0.445665121,0.537281692,-0.045914136,0.423009425,0.52758497,-0.068825379,0.357219696,0.429307163,-0.011446116,0.388894558,0.327708364,-0.039465506,0.412175596,0.255147487,-0.056203473,0.429056734,0.193551809,-0.06789989,0.316941202,0.437507629,-0.029764812,0.389266372,0.392601222,-0.069231547,0.408454299,0.491580874,-0.075959876,0.398010761,0.545536876,-0.071143717,0.296103597,0.480912089,-0.049888983,0.381009191,0.495644182,-0.086078294,0.389239609,0.580333948,-0.080214925,0.371036738,0.609643042,-0.0680333,0.291221917,0.544508815,-0.07139653,0.368089318,0.58066684,-0.09098053,0.379002899,0.64078784,-0.085176475,0.363437027,0.660973668,-0.076552667 +Left,0.346649468,0.786036193,2.06E-07,0.405317307,0.689128399,-0.003719684,0.43133828,0.599513292,-0.020428065,0.443302482,0.527719736,-0.042470653,0.434106946,0.506390035,-0.063981131,0.333928138,0.436222941,-0.01750573,0.367014587,0.321016431,-0.046122175,0.390779585,0.24322921,-0.064299144,0.407760739,0.17828986,-0.077462919,0.303037643,0.454908133,-0.036206733,0.389158905,0.388182998,-0.074068859,0.414325565,0.47448647,-0.080455691,0.405411929,0.525226951,-0.077717885,0.298753291,0.503425598,-0.056066059,0.39877215,0.489675432,-0.090260364,0.409898937,0.568819225,-0.082658589,0.390786827,0.600753903,-0.071268678,0.310951263,0.564759314,-0.077292271,0.397548079,0.571212411,-0.094874993,0.408496112,0.631193936,-0.086731419,0.392914861,0.656159282,-0.077731103 +Left,0.32826975,0.772271216,2.02E-07,0.344981372,0.643551052,-0.002603683,0.353530556,0.526266634,-0.018213317,0.367822349,0.442450732,-0.037911091,0.384992719,0.389229894,-0.05692013,0.298243761,0.448410809,-0.027093928,0.334331065,0.318530083,-0.057274297,0.356585205,0.234705985,-0.073219977,0.370905846,0.164702296,-0.083933488,0.297277451,0.478132248,-0.043526731,0.394475162,0.392230123,-0.081917599,0.410785854,0.458769202,-0.08567249,0.396066457,0.498466343,-0.081966363,0.316048443,0.529172421,-0.060346708,0.42332387,0.486050725,-0.091537401,0.423617035,0.546241641,-0.081758656,0.399064153,0.565987051,-0.070257753,0.346022189,0.587845862,-0.078174397,0.432310343,0.567909002,-0.091901019,0.428797603,0.615317225,-0.082783677,0.404436409,0.631507039,-0.074192047 +Left,0.312809527,0.784516871,1.09E-07,0.283379376,0.661675334,0.003565816,0.287370294,0.528868854,-0.008633362,0.321327627,0.441765398,-0.022706239,0.357869178,0.39892146,-0.037054468,0.273950696,0.483848631,-0.03666243,0.300720125,0.326334,-0.058856543,0.3181355,0.236836404,-0.068471529,0.32918185,0.161805809,-0.074846104,0.312445611,0.511639237,-0.051817376,0.382367432,0.383067548,-0.0798968,0.383388579,0.444747835,-0.077211261,0.361746669,0.495426416,-0.069422677,0.357296288,0.552780688,-0.064443663,0.414804667,0.461584955,-0.079909526,0.408218801,0.511661351,-0.06005184,0.38710624,0.545162499,-0.043452777,0.399046481,0.600532591,-0.077200882,0.436229348,0.529138148,-0.075524263,0.427594304,0.570053756,-0.053693321,0.411237836,0.597743869,-0.036989637 +Left,0.311163396,0.780027688,3.97E-08,0.267144769,0.65771544,-0.005028144,0.268921554,0.528189898,-0.017175941,0.305728555,0.435093582,-0.025829865,0.344651073,0.397031903,-0.034451663,0.269107848,0.509138584,-0.055140987,0.282537431,0.339859426,-0.079810396,0.29455179,0.241431355,-0.09334784,0.304935515,0.160520852,-0.102602109,0.324553162,0.530022562,-0.060449008,0.363304794,0.375008851,-0.083525725,0.354469687,0.417299688,-0.078350931,0.337944806,0.47249797,-0.069848821,0.373783767,0.55922097,-0.062876895,0.395763755,0.440370977,-0.072181456,0.384702504,0.47292605,-0.051466014,0.372685552,0.515777051,-0.035030343,0.412698597,0.589748621,-0.065864995,0.416106582,0.493700922,-0.062720865,0.403529286,0.520641506,-0.042072412,0.396982044,0.556068122,-0.026217448 +Left,0.323437601,0.773646533,2.58E-08,0.277293742,0.666444659,-0.007028515,0.273527503,0.540482461,-0.019777199,0.306947678,0.44685623,-0.028278446,0.344095677,0.406039238,-0.036901508,0.2761482,0.525822043,-0.059138406,0.28106761,0.35520345,-0.084269583,0.288663447,0.254943609,-0.097449027,0.295755088,0.174423546,-0.10625805,0.331882894,0.543281615,-0.062831536,0.359996438,0.379395753,-0.086257696,0.352381527,0.419107914,-0.080794819,0.339352965,0.475832433,-0.071866736,0.380785376,0.567691505,-0.06365975,0.393264294,0.441856712,-0.074053593,0.384214848,0.472707987,-0.053989545,0.374978781,0.515954673,-0.037623473,0.419678867,0.591989756,-0.06487368,0.417778611,0.486971676,-0.063585378,0.407423526,0.513260186,-0.043665018,0.402539551,0.548712552,-0.028138261 +Left,0.316239059,0.789746881,8.29E-08,0.268517643,0.684397459,-0.006663363,0.263290107,0.56369108,-0.019661542,0.294510067,0.475619465,-0.029114326,0.329366058,0.439267755,-0.039021038,0.264944047,0.542999983,-0.055538315,0.270606518,0.378513128,-0.080988474,0.276037604,0.279315919,-0.095995829,0.280294031,0.200347632,-0.106326662,0.32101211,0.557954252,-0.0595969,0.347326875,0.398405254,-0.083290078,0.342268646,0.434731752,-0.080161743,0.33120653,0.488540262,-0.073063053,0.370799273,0.581158817,-0.06085765,0.383383453,0.45732826,-0.071990825,0.375867248,0.486231089,-0.053434309,0.367623508,0.529805303,-0.037913732,0.410854816,0.604413748,-0.062459566,0.409468412,0.499775946,-0.062995307,0.398922086,0.525907516,-0.044289302,0.394776016,0.561950505,-0.029156946 +Left,0.303484917,0.790893197,7.16E-08,0.262491137,0.684187055,0.00251727,0.255620539,0.556543171,-0.009137223,0.27852881,0.457659423,-0.02078196,0.309622318,0.402143568,-0.032116521,0.238513187,0.523933113,-0.04259311,0.253659338,0.368424177,-0.06521076,0.263657451,0.278833419,-0.076530054,0.268487781,0.205236435,-0.084241539,0.280875206,0.542017102,-0.054928605,0.333479464,0.403039336,-0.078734621,0.338232934,0.45324403,-0.074297465,0.323211163,0.506861567,-0.066812217,0.329820067,0.57138586,-0.064390957,0.372415483,0.466586173,-0.07572975,0.370828003,0.506928205,-0.054093838,0.357365549,0.546880364,-0.037358761,0.375088066,0.604324043,-0.07396818,0.398047805,0.521141171,-0.071110427,0.393507332,0.557692409,-0.04875375,0.385005534,0.591339767,-0.031975668 +Left,0.293596715,0.784736097,9.22E-08,0.260104299,0.668688178,0.006391274,0.254351556,0.536071301,-0.004850678,0.277567536,0.434831858,-0.018793739,0.303664476,0.367379576,-0.032255959,0.228219688,0.493828744,-0.030669075,0.254922956,0.349530071,-0.048473794,0.270050019,0.27005741,-0.054976504,0.27884379,0.205233335,-0.059787236,0.258903146,0.517360628,-0.046464268,0.331519991,0.403002381,-0.067929171,0.342011154,0.460139096,-0.06302166,0.326208621,0.502881825,-0.056823548,0.300623894,0.552305639,-0.060056794,0.366792411,0.467909157,-0.071910344,0.368744701,0.516948938,-0.053116135,0.351109684,0.548618019,-0.039820291,0.343605578,0.591450334,-0.073754214,0.393528968,0.525774658,-0.072410151,0.391344458,0.564979613,-0.054923166,0.374699563,0.591666579,-0.042564802 +Left,0.286700964,0.776297212,1.19E-07,0.261000037,0.663724899,0.005795493,0.254301488,0.541308284,-0.00573406,0.275215179,0.44738844,-0.021571202,0.300617605,0.385435283,-0.037036523,0.227898687,0.487171113,-0.02440059,0.254803479,0.345672131,-0.045272946,0.269931376,0.26565659,-0.053607646,0.279162616,0.198706299,-0.059605349,0.244059712,0.503373802,-0.041256767,0.324055135,0.399554074,-0.06807144,0.33853066,0.460196525,-0.066180028,0.32548064,0.501572549,-0.060321975,0.275716603,0.533690929,-0.05696642,0.358294249,0.465768486,-0.07465753,0.361727983,0.520330846,-0.061142791,0.342910558,0.547575176,-0.049879074,0.314620703,0.570869744,-0.073163398,0.381216407,0.530904531,-0.077904768,0.378010005,0.57472527,-0.067180656,0.357030094,0.596847594,-0.058652919 diff --git a/data/rock_on.csv b/data/rock_on.csv new file mode 100644 index 0000000..edf56d4 --- /dev/null +++ b/data/rock_on.csv @@ -0,0 +1,223 @@ +handedness,0_x,0_y,0_z,1_x,1_y,1_z,2_x,2_y,2_z,3_x,3_y,3_z,4_x,4_y,4_z,5_x,5_y,5_z,6_x,6_y,6_z,7_x,7_y,7_z,8_x,8_y,8_z,9_x,9_y,9_z,10_x,10_y,10_z,11_x,11_y,11_z,12_x,12_y,12_z,13_x,13_y,13_z,14_x,14_y,14_z,15_x,15_y,15_z,16_x,16_y,16_z,17_x,17_y,17_z,18_x,18_y,18_z,19_x,19_y,19_z,20_x,20_y,20_z +Right,0.85290736,0.592654943,3.16E-07,0.841666222,0.59881258,-0.066551305,0.849309266,0.545908153,-0.097326301,0.884756923,0.47216481,-0.1150226,0.915281773,0.416112721,-0.127321437,0.782102525,0.425725341,-0.073925324,0.795473158,0.335815668,-0.10746529,0.812762082,0.272933483,-0.127115801,0.830882907,0.210832611,-0.138171524,0.811153591,0.377859503,-0.051643804,0.860436022,0.317431301,-0.096523367,0.874803305,0.395345777,-0.109039657,0.868463039,0.44674173,-0.106725462,0.841050148,0.352011204,-0.034326605,0.881493568,0.306403577,-0.07644546,0.891051114,0.376949877,-0.078696035,0.881814957,0.415979296,-0.067054644,0.86686182,0.343658864,-0.021557275,0.890278578,0.259908438,-0.04575783,0.90024358,0.213262886,-0.047851976,0.898450971,0.169280678,-0.041677792 +Right,0.878294528,0.619564891,2.98E-07,0.855908751,0.621431649,-0.058446694,0.854412258,0.562683582,-0.087537214,0.886968851,0.48135823,-0.105658665,0.923378289,0.427226871,-0.119296707,0.798850536,0.447770417,-0.064415619,0.804309845,0.356075823,-0.095594749,0.819615602,0.294106901,-0.114588678,0.834736109,0.236027718,-0.126193821,0.832354784,0.405809492,-0.047142684,0.863918841,0.334957391,-0.092275091,0.880064487,0.415130854,-0.105192088,0.877585113,0.46868515,-0.103250116,0.863801479,0.384536207,-0.03440712,0.889890611,0.326301813,-0.076125845,0.8990587,0.387513876,-0.079052545,0.892389655,0.425397933,-0.068890058,0.89037168,0.379823714,-0.025444502,0.906243503,0.292166591,-0.0503245,0.916868448,0.244517729,-0.053426042,0.915656209,0.19974415,-0.049054213 +Right,0.881456137,0.639709651,2.52E-07,0.854558885,0.629238307,-0.048811737,0.846275747,0.574360073,-0.074165747,0.879302621,0.49650532,-0.091637425,0.914579451,0.444372833,-0.105802141,0.797765732,0.454262465,-0.050653581,0.796925306,0.367893547,-0.081010625,0.805459142,0.30555439,-0.102415636,0.815349817,0.251081347,-0.116197839,0.834637105,0.416018575,-0.03807345,0.85406059,0.346925676,-0.080425113,0.873950064,0.420660079,-0.094539873,0.877378464,0.470786273,-0.094216175,0.868136585,0.399312764,-0.029897925,0.887715578,0.340795696,-0.068353161,0.900587738,0.408166707,-0.069018744,0.899220467,0.455628037,-0.057705954,0.898503661,0.40182817,-0.025410231,0.909310818,0.312383473,-0.050387461,0.91803813,0.263727605,-0.053986385,0.917870402,0.219315156,-0.049864504 +Right,0.886683524,0.666801751,1.50E-07,0.851208627,0.64777863,-0.038564268,0.838066697,0.587700605,-0.059417415,0.871996224,0.509367406,-0.074678876,0.908114076,0.461081475,-0.087188296,0.804372728,0.462749898,-0.039848883,0.800594568,0.378590375,-0.067376018,0.806325197,0.318300307,-0.087039128,0.812517762,0.261902809,-0.100124165,0.84348011,0.428898692,-0.031885434,0.857340395,0.363402605,-0.072734877,0.875163078,0.440166533,-0.086649932,0.879629195,0.493538082,-0.086507484,0.879490614,0.416062772,-0.027553163,0.893888175,0.352402151,-0.065020904,0.905644417,0.420971185,-0.066155076,0.906874597,0.471190572,-0.055404533,0.910793662,0.421588123,-0.025986837,0.922604024,0.33614406,-0.05097612,0.931738675,0.286227763,-0.055991564,0.934190452,0.23731406,-0.053099502 +Right,0.883754015,0.703067183,8.50E-08,0.84063369,0.673512459,-0.027692471,0.823379397,0.602566063,-0.042220384,0.856544912,0.527047276,-0.053291734,0.894712508,0.483124435,-0.06247386,0.804249048,0.479267478,-0.027917234,0.799059689,0.395758688,-0.053750519,0.804097593,0.334580362,-0.072094731,0.811021149,0.279468119,-0.084125556,0.846154332,0.4545542,-0.024599671,0.856966019,0.386082768,-0.063536353,0.865791738,0.463641047,-0.076368414,0.866975427,0.5215922,-0.075330533,0.884750605,0.448633432,-0.024548367,0.895817637,0.390612721,-0.060392033,0.897726536,0.455216885,-0.06254717,0.895402074,0.502811074,-0.05293059,0.9192155,0.45796901,-0.026392672,0.933210194,0.371559262,-0.051639117,0.942831576,0.321430773,-0.058043651,0.948017538,0.271069944,-0.056401081 +Right,0.873217285,0.725095272,3.20E-08,0.827497602,0.683423579,-0.021981275,0.807061315,0.608635664,-0.034266558,0.8380723,0.537932575,-0.045346193,0.877324343,0.501126826,-0.055590134,0.797263503,0.490625679,-0.019001646,0.789751053,0.405464739,-0.040614516,0.791557074,0.348407537,-0.054524422,0.794388115,0.296112537,-0.063843623,0.839355588,0.472889215,-0.019757342,0.843956053,0.396327674,-0.059278045,0.849347949,0.470744491,-0.072254278,0.849533737,0.532429338,-0.070195027,0.879325807,0.473077148,-0.023331311,0.884544671,0.406214684,-0.060018629,0.884575963,0.468085587,-0.062409814,0.882239282,0.51881516,-0.051951576,0.914752841,0.486414492,-0.028282484,0.925754309,0.397888184,-0.05314346,0.933336437,0.34444195,-0.059286661,0.937212884,0.292686552,-0.05746733 +Right,0.859164596,0.740311742,3.27E-08,0.812834799,0.697976708,-0.018352415,0.783715725,0.61187911,-0.029364038,0.809554636,0.538594604,-0.040161703,0.850662351,0.507614493,-0.050192375,0.79393965,0.495479137,-0.015821816,0.785553217,0.409124643,-0.033269763,0.783834219,0.356696397,-0.044601157,0.783582449,0.305902719,-0.053872235,0.833282769,0.484613985,-0.017737705,0.832709491,0.403991491,-0.051638644,0.832634747,0.476292163,-0.061173566,0.833048165,0.535093248,-0.058874864,0.870279074,0.492209435,-0.021926029,0.870184541,0.421543688,-0.053147871,0.862545609,0.492114425,-0.049837384,0.85908246,0.550871968,-0.037586514,0.904012263,0.512121558,-0.027775647,0.917916417,0.426161855,-0.050070215,0.923802793,0.3697052,-0.05448797,0.927657604,0.313560188,-0.05279272 +Right,0.84985286,0.748871326,4.13E-09,0.804675698,0.697137356,-0.017144291,0.776033223,0.612433016,-0.027426276,0.795233607,0.549293756,-0.038408112,0.83345592,0.523342431,-0.048291951,0.796995997,0.492167056,-0.012440775,0.790465832,0.40995872,-0.029662624,0.786002278,0.362906396,-0.039520152,0.783778131,0.314558774,-0.046985924,0.834462762,0.488228768,-0.015622905,0.834669888,0.407388806,-0.051330734,0.827797413,0.478664875,-0.06117231,0.824901164,0.536869168,-0.057707693,0.87020117,0.501822829,-0.021194248,0.869424522,0.437633276,-0.055967156,0.856164813,0.514944911,-0.053560667,0.850078285,0.574959457,-0.039778981,0.903117597,0.526980758,-0.028127311,0.919931889,0.442143708,-0.051151544,0.925964236,0.387270629,-0.05483342,0.930660188,0.330908358,-0.051607635 +Right,0.838456511,0.740083873,-2.91E-08,0.796352267,0.688537598,-0.016080147,0.769872725,0.60204947,-0.025462631,0.780724704,0.539618313,-0.036176499,0.814253747,0.516738653,-0.045565844,0.802599609,0.484816849,-0.008269507,0.796523929,0.403667092,-0.024887016,0.790714204,0.354999661,-0.033330489,0.789725125,0.306992948,-0.039168004,0.835651517,0.486101538,-0.012480966,0.834765136,0.399242342,-0.048645642,0.819416463,0.461338699,-0.058670938,0.810943604,0.519517243,-0.054222405,0.868350983,0.504575908,-0.01921325,0.863521874,0.444454283,-0.055614978,0.845275939,0.516803741,-0.054773882,0.836170733,0.573239625,-0.040830992,0.899329305,0.533035576,-0.027086319,0.915221632,0.449984729,-0.049658321,0.920407474,0.39505139,-0.053271431,0.924576879,0.339972943,-0.049777865 +Right,0.822883427,0.726673841,-3.40E-08,0.782044351,0.67358613,-0.016781349,0.757872224,0.585857689,-0.026669918,0.763942599,0.523635328,-0.038305938,0.793332279,0.502191126,-0.048228122,0.800051033,0.47978574,-0.006813713,0.794622362,0.396144927,-0.023099797,0.786536455,0.34728393,-0.030516088,0.784298539,0.299122691,-0.035219148,0.828296006,0.484521478,-0.010688458,0.827972472,0.395418942,-0.047033638,0.808619261,0.453338772,-0.056419991,0.79865104,0.508870184,-0.050819341,0.856282651,0.503837526,-0.017224895,0.847114205,0.439127833,-0.053382456,0.827029228,0.508890688,-0.051683471,0.819281042,0.564192653,-0.036591556,0.882892311,0.531634569,-0.025097705,0.898825228,0.450310111,-0.046084862,0.902279019,0.394633025,-0.048478853,0.905442834,0.339616001,-0.043993812 +Right,0.816499054,0.720001161,-1.18E-07,0.777473867,0.663045526,-0.016111601,0.755529463,0.575766683,-0.026720142,0.756632805,0.513929069,-0.039128032,0.78450501,0.494070977,-0.049357042,0.806162,0.47337696,-0.007728568,0.802801788,0.386655599,-0.024726467,0.792024732,0.337290585,-0.032106843,0.786129415,0.290907204,-0.036810294,0.830872178,0.48220396,-0.012077556,0.825236797,0.398185611,-0.047549587,0.802240729,0.45842275,-0.054949082,0.793048978,0.513734639,-0.048947543,0.854587436,0.505031645,-0.019292686,0.841339707,0.435963452,-0.054423213,0.819063365,0.502162516,-0.050583962,0.812277496,0.557168961,-0.035127889,0.877148092,0.535006106,-0.027979685,0.891839564,0.453203231,-0.049014341,0.892899215,0.396235585,-0.051102534,0.894773304,0.340779543,-0.046841115 +Right,0.805542171,0.715400279,-1.77E-07,0.769724667,0.655240655,-0.011004829,0.752225161,0.566005766,-0.01973897,0.750680208,0.504387736,-0.031379815,0.773228109,0.493753135,-0.04105645,0.810269773,0.475657165,-0.003679709,0.812372148,0.386378884,-0.020070434,0.801551998,0.336452395,-0.026838524,0.795030177,0.291463435,-0.030868946,0.830359519,0.485752255,-0.010324597,0.82224381,0.393642724,-0.045991033,0.794570029,0.451335311,-0.053304303,0.784879088,0.506200433,-0.046617158,0.848414302,0.509067535,-0.019387953,0.83056879,0.434094727,-0.053116549,0.802788377,0.495501161,-0.049306408,0.79444921,0.549002767,-0.033823784,0.864310861,0.539760113,-0.029640682,0.877206802,0.457629502,-0.049478706,0.875294685,0.398677617,-0.051964298,0.875963211,0.343156099,-0.047991481 +Right,0.792812407,0.706321239,-3.56E-07,0.758771539,0.637285829,0.004949744,0.74813211,0.557108879,0.002801635,0.744089186,0.507396817,-0.005877622,0.753237963,0.484391987,-0.013534933,0.812177062,0.466413856,0.012615993,0.813059032,0.382849663,-0.001126384,0.801354527,0.334394664,-0.007290647,0.793880224,0.292756379,-0.011552301,0.831831515,0.477810383,-0.002635282,0.81010884,0.392372906,-0.032401465,0.778689981,0.446001768,-0.037584949,0.771082163,0.494754106,-0.032329604,0.84345758,0.502579153,-0.020013846,0.814754426,0.424086064,-0.04927884,0.785434842,0.482177705,-0.043660998,0.77984637,0.533818245,-0.029824028,0.850062013,0.5317958,-0.037702117,0.856288433,0.449193597,-0.059695967,0.850259483,0.392440528,-0.063824393,0.849280238,0.342771649,-0.061690357 +Right,0.786123037,0.712442577,-4.53E-07,0.754355788,0.623958588,0.010639587,0.743808985,0.552514851,0.006774355,0.739445031,0.503253281,-0.003842409,0.743645251,0.470316321,-0.012451779,0.829127908,0.469263732,0.013428339,0.81237042,0.37956214,0.002949383,0.798717976,0.327576816,-0.001101234,0.79109621,0.283213079,-0.005547235,0.843109608,0.484821469,-0.004692063,0.784605861,0.403296888,-0.027921783,0.759191096,0.470292777,-0.026403366,0.765653491,0.51329869,-0.020723054,0.84337002,0.507426023,-0.024612622,0.788027108,0.430938005,-0.048071932,0.766367435,0.494707018,-0.034678172,0.770906568,0.540619671,-0.020344079,0.833153546,0.532577634,-0.044963147,0.824959099,0.44654876,-0.067772329,0.816950321,0.391408443,-0.07038933,0.816535294,0.340197057,-0.068800524 +Right,0.788591802,0.70551908,-5.63E-07,0.756213784,0.619028747,0.011117824,0.748348296,0.555790842,0.007245998,0.740441024,0.511537254,-0.000957005,0.7360062,0.472574413,-0.007005449,0.846116364,0.476296723,0.000691816,0.816925287,0.381433785,-0.010453803,0.799206316,0.335201621,-0.017591141,0.790997565,0.297011286,-0.025348695,0.85607636,0.495243698,-0.014855159,0.781894386,0.41871649,-0.035289228,0.757950962,0.475973129,-0.036253773,0.764631212,0.516801059,-0.036654923,0.846042931,0.520141065,-0.030766377,0.78289777,0.442924231,-0.04857111,0.760043085,0.491945803,-0.037942048,0.763732433,0.531635761,-0.030425942,0.824964166,0.542994738,-0.046794612,0.812811434,0.461480021,-0.070177458,0.803101778,0.401499003,-0.077618912,0.801960349,0.347406507,-0.081546448 +Right,0.780637622,0.707955599,-5.45E-07,0.75596559,0.611302614,0.011915258,0.752547085,0.553706765,0.00785788,0.746908963,0.506424606,-0.000134512,0.743619919,0.467689335,-0.007028425,0.849851668,0.499805599,-0.002065926,0.82741046,0.392446399,-0.013994806,0.812214315,0.336827725,-0.024644535,0.801130652,0.291157663,-0.035975549,0.854633987,0.516225636,-0.016987666,0.781279624,0.415375352,-0.033972692,0.757581115,0.47146064,-0.034540739,0.760607004,0.514362097,-0.037012585,0.837854505,0.535418093,-0.032089099,0.772768021,0.446354687,-0.046267755,0.75160563,0.501251161,-0.034636006,0.752147973,0.547018111,-0.02853613,0.810207725,0.553696632,-0.047423959,0.791942477,0.470674872,-0.071574919,0.781210721,0.414792418,-0.080717511,0.77838093,0.362614393,-0.0868221 +Right,0.783216596,0.727826118,-6.04E-07,0.768847883,0.638114154,0.020184774,0.762939095,0.568278909,0.020790955,0.74671042,0.514968097,0.01728772,0.730724633,0.474222839,0.013168625,0.851979911,0.520233631,-0.001945582,0.829429805,0.40977785,-0.011883521,0.812685013,0.351648986,-0.020816199,0.799174726,0.306856394,-0.030864947,0.847711563,0.533342361,-0.018701248,0.782858551,0.423627585,-0.032168102,0.761163414,0.47233361,-0.030392038,0.762579083,0.514284134,-0.031507716,0.823951244,0.552319288,-0.034233894,0.768520296,0.451115102,-0.045220308,0.749816895,0.496672004,-0.033759426,0.750970304,0.538226426,-0.028593313,0.790310681,0.570833445,-0.048681002,0.77020067,0.477136344,-0.073535085,0.75624156,0.419948518,-0.083042637,0.751089096,0.368971974,-0.089297839 +Right,0.781973839,0.727328777,-4.80E-07,0.81526494,0.657711029,0.015046516,0.827409387,0.56320101,0.016184291,0.8197788,0.480047911,0.015570875,0.804717004,0.430789709,0.013548122,0.854385734,0.544248819,-0.017258378,0.839673877,0.427547395,-0.026746193,0.824929357,0.364756018,-0.029752132,0.814027309,0.315556884,-0.034486067,0.837334335,0.554424942,-0.028868694,0.788806498,0.441349208,-0.039702635,0.767488539,0.476005912,-0.031847246,0.766860187,0.50885886,-0.028501634,0.807469606,0.570912004,-0.038574025,0.76535517,0.467862338,-0.048540197,0.749359667,0.502469361,-0.03579843,0.749058664,0.53989327,-0.029045319,0.773687601,0.586102605,-0.04691112,0.757334113,0.493019104,-0.066500261,0.746433079,0.435062408,-0.073977575,0.74033761,0.385190725,-0.079423398 +Right,0.77213186,0.738934755,-3.59E-07,0.807489753,0.666940749,0.010762533,0.824711263,0.576423347,0.010450551,0.814975739,0.497227341,0.011388111,0.797196984,0.452359974,0.011204999,0.844193757,0.561896801,-0.030035267,0.839100659,0.443121344,-0.041688241,0.829690456,0.376113921,-0.045547973,0.819034457,0.320200324,-0.050547559,0.816758633,0.566456139,-0.038440593,0.780907094,0.438722134,-0.049866401,0.767140508,0.482371718,-0.039886732,0.770766079,0.518754005,-0.034342349,0.780760288,0.577959657,-0.044389624,0.751115322,0.469031483,-0.053422574,0.744607806,0.505996406,-0.039260853,0.750248015,0.540123284,-0.031468846,0.743690789,0.585632324,-0.0488795,0.731090784,0.494313121,-0.067229711,0.723981798,0.441694021,-0.07343328,0.72081548,0.39084065,-0.078042753 +Right,0.761213481,0.738033533,-2.61E-07,0.799960494,0.674026906,0.005415382,0.821685016,0.590507627,0.001278502,0.816952229,0.517359018,-0.000615528,0.799907625,0.46806854,-0.003500401,0.838397682,0.578750432,-0.041120697,0.838650525,0.453955472,-0.057835836,0.833574057,0.383714527,-0.064296916,0.827804089,0.32667315,-0.069768138,0.807214618,0.582351208,-0.047830306,0.78238678,0.444057554,-0.063222989,0.765100896,0.477248549,-0.054204874,0.765422285,0.514248312,-0.048039578,0.768548369,0.588345706,-0.052312721,0.748769522,0.465753675,-0.063740268,0.73726058,0.493626535,-0.049678031,0.739994764,0.528599083,-0.040616501,0.731071472,0.588649809,-0.055702526,0.720996022,0.489751279,-0.073614836,0.713442683,0.433544904,-0.078542843,0.710730135,0.383773029,-0.081512831 +Right,0.74340862,0.733386695,-1.94E-07,0.785492837,0.669610977,0.007027585,0.805643916,0.586271465,0.006048153,0.795137227,0.515874684,0.005768863,0.77307713,0.477298617,0.004646129,0.817040443,0.568592131,-0.027793471,0.82779181,0.453293324,-0.042215355,0.826626539,0.382569492,-0.046635039,0.823199391,0.326730013,-0.050240286,0.784862399,0.559190512,-0.034657929,0.767947733,0.435073942,-0.051232073,0.751432598,0.467642367,-0.04445,0.75099504,0.504230917,-0.038106639,0.747884095,0.557896912,-0.039668757,0.735404789,0.445523411,-0.05287445,0.725486517,0.472444504,-0.041471239,0.727343321,0.507444322,-0.032490209,0.713232398,0.556661904,-0.043451525,0.705409348,0.463984311,-0.061014336,0.700170159,0.409574151,-0.066354856,0.699492991,0.364732027,-0.068699464 +Right,0.732486546,0.698960721,-1.65E-07,0.771718502,0.636949718,0.007430845,0.790538549,0.558010936,0.006547177,0.779233456,0.490181834,0.005326697,0.759637654,0.452388674,0.00280763,0.803431094,0.533920109,-0.021355929,0.809495568,0.423828602,-0.032832842,0.808877707,0.356225014,-0.037215296,0.80647397,0.302553803,-0.040846966,0.773666561,0.525754452,-0.028567474,0.755144954,0.416695744,-0.04049081,0.743390322,0.448872924,-0.035235208,0.744789243,0.48078379,-0.03072889,0.739134073,0.526187479,-0.033969648,0.723328233,0.429965764,-0.043204095,0.715491891,0.458329856,-0.033236843,0.718317509,0.489320219,-0.025891036,0.704794943,0.524849832,-0.038262099,0.696883321,0.435306102,-0.049428597,0.690007746,0.38575685,-0.05091133,0.687243938,0.341195196,-0.051245514 +Right,0.737415254,0.665797889,-3.09E-07,0.768010974,0.601621866,0.01509844,0.784542859,0.527455211,0.017769465,0.774256229,0.461070418,0.017979903,0.757064641,0.424450099,0.016971545,0.801923692,0.497094214,-0.008595021,0.792626321,0.387922674,-0.01499711,0.783500135,0.329959869,-0.01526698,0.777000248,0.282515168,-0.016260263,0.782053471,0.492342561,-0.018779472,0.745649278,0.400434226,-0.02701645,0.730667651,0.436367303,-0.021289689,0.731996536,0.467130899,-0.017519874,0.75418067,0.495247632,-0.026935326,0.722545385,0.410492182,-0.033876278,0.710540056,0.446164608,-0.023937281,0.712282956,0.478959292,-0.017470054,0.722249746,0.496422857,-0.0335369,0.709591568,0.411441684,-0.043324061,0.699292481,0.363165081,-0.044791117,0.693082631,0.319057554,-0.045502171 +Right,0.734589517,0.649929106,-3.97E-07,0.700310946,0.582281768,0.006031109,0.690343916,0.522810161,0.004129344,0.678891718,0.479855329,-0.001186781,0.672718525,0.447381645,-0.005390923,0.775968611,0.449824989,0.006282616,0.758832037,0.36560443,0.000803193,0.746743023,0.319178194,-0.002912733,0.737532318,0.279845357,-0.007204905,0.779435456,0.45666036,-0.004730534,0.718467712,0.399067014,-0.01956482,0.699983239,0.447042674,-0.022133291,0.704791427,0.477856636,-0.022453107,0.767398834,0.46952194,-0.016347997,0.711501658,0.411121666,-0.03458938,0.692271352,0.458219439,-0.030740974,0.695209146,0.49084571,-0.024738321,0.745855033,0.479814738,-0.027522678,0.731473982,0.395740241,-0.045223225,0.720130742,0.345665365,-0.048740834,0.717353702,0.29687345,-0.048925407 +Right,0.722728491,0.626974702,-1.79E-07,0.682333171,0.583857596,0.004509515,0.665941834,0.513320744,0.004249609,0.660240233,0.463546246,-0.002554219,0.670136631,0.438975543,-0.008479766,0.704862714,0.427407056,0.018865794,0.700702429,0.353816837,0.009296217,0.69138211,0.314538777,0.004457303,0.684819221,0.278953493,0.001342266,0.722240627,0.42931655,0.005194603,0.70340997,0.362164497,-0.023656497,0.68770206,0.414142907,-0.033734053,0.686253488,0.462364465,-0.030812752,0.737521529,0.439057559,-0.010122512,0.710891902,0.383651495,-0.037498657,0.693324685,0.439695418,-0.036956914,0.693013728,0.486380994,-0.025765825,0.749902964,0.453165561,-0.025568966,0.748013437,0.378448009,-0.041664682,0.737342119,0.326896101,-0.044335347,0.731046557,0.280050814,-0.041475222 +Right,0.733293891,0.613277972,-1.28E-07,0.690464854,0.587358057,-0.01078714,0.658453584,0.52750659,-0.017883833,0.658794165,0.474317104,-0.02662557,0.684036791,0.442974776,-0.0342125,0.669181406,0.41822952,-0.006943282,0.652579129,0.357065886,-0.021193134,0.640231073,0.323992729,-0.028435335,0.630092561,0.289278775,-0.033638641,0.697090268,0.407147557,-0.011349028,0.677486241,0.363048136,-0.041359358,0.679441571,0.435023695,-0.048285354,0.687632084,0.485460997,-0.044139124,0.726885378,0.410772353,-0.017613776,0.7057693,0.382560164,-0.047874305,0.702291131,0.454806387,-0.044892717,0.707359672,0.504692435,-0.032045957,0.755738974,0.422056079,-0.02462423,0.755305529,0.34697175,-0.045216404,0.747235119,0.299230248,-0.048052099,0.738717198,0.253347367,-0.044746503 +Right,0.754544437,0.601395309,-1.17E-07,0.712574601,0.586199641,-0.015127009,0.677529275,0.541866004,-0.024619307,0.686244249,0.487583101,-0.034185749,0.710356832,0.449442089,-0.042386975,0.666736186,0.417245954,-0.013169354,0.64893204,0.366160452,-0.027462974,0.637329698,0.333662421,-0.035835534,0.627120435,0.298287034,-0.042560093,0.698361278,0.393895537,-0.015185773,0.687081695,0.365516126,-0.04299482,0.699436367,0.434897184,-0.05004406,0.709911764,0.478851438,-0.047734544,0.731797278,0.38990882,-0.019192327,0.722100317,0.364525259,-0.049109742,0.729376674,0.438546062,-0.046470352,0.736922264,0.487543255,-0.035002958,0.763531268,0.396238804,-0.024090847,0.764167905,0.327607453,-0.045857288,0.760970294,0.286298394,-0.049226418,0.755013049,0.240104735,-0.046460237 +Right,0.76361835,0.578044355,-4.33E-08,0.727928221,0.581109285,-0.019961251,0.701449811,0.552292049,-0.031721648,0.713501275,0.50360769,-0.040800914,0.737190187,0.470589846,-0.047979064,0.674508333,0.444950521,-0.026583364,0.655754626,0.396853417,-0.045646857,0.643011272,0.367660582,-0.05658548,0.633121371,0.338284791,-0.065445356,0.704775095,0.412158638,-0.025869384,0.692508638,0.371459067,-0.055594586,0.713495731,0.44453311,-0.058712915,0.726551473,0.483432353,-0.054279305,0.737941921,0.397366583,-0.027765892,0.731902063,0.365012228,-0.058454569,0.745638847,0.435251474,-0.052374966,0.754844546,0.479284048,-0.039940454,0.770779192,0.392048419,-0.031018354,0.771544755,0.325554639,-0.059592571,0.772010386,0.282751322,-0.066795483,0.768430889,0.236687168,-0.066725403 +Right,0.78391546,0.532340288,-9.39E-08,0.747236907,0.549275815,-0.020594867,0.714996874,0.534147978,-0.036281712,0.72395426,0.493799776,-0.05006491,0.752140641,0.465894818,-0.061347943,0.690905929,0.406321466,-0.029783778,0.668941855,0.383773386,-0.052175488,0.651269913,0.378139973,-0.062756337,0.635876954,0.366583675,-0.070815861,0.718148112,0.370630741,-0.029721182,0.70283848,0.368274599,-0.052732926,0.725136518,0.448870927,-0.047583088,0.734122157,0.463025033,-0.040304214,0.752202928,0.356629938,-0.033400349,0.742362857,0.358428717,-0.061400834,0.756216168,0.436142087,-0.048839618,0.764759719,0.468050212,-0.034098268,0.786906719,0.354469717,-0.038916048,0.7850582,0.301549405,-0.06718763,0.782763541,0.269489706,-0.070987605,0.778771222,0.229525864,-0.068838522 +Right,0.794833899,0.540966451,-1.89E-07,0.756906927,0.545574307,-0.016944898,0.718864143,0.521849871,-0.031103386,0.709765434,0.494599462,-0.044699974,0.727533102,0.468062907,-0.056301147,0.710445523,0.388222933,-0.026704434,0.679064989,0.350940436,-0.050041258,0.653660715,0.345496595,-0.060845844,0.632754207,0.338170171,-0.068134397,0.739419401,0.368018091,-0.028700596,0.706803858,0.348918289,-0.05621602,0.717911124,0.434229404,-0.053472139,0.730572283,0.464775443,-0.045822795,0.77200973,0.368899226,-0.033891421,0.744470716,0.360752314,-0.063458614,0.752009749,0.437790841,-0.051811844,0.763258219,0.476411194,-0.036525466,0.803523362,0.380668283,-0.040585607,0.798343837,0.319340765,-0.068890654,0.789823055,0.285032898,-0.073501483,0.780450165,0.245476156,-0.0718062 +Right,0.82315141,0.590953469,-3.09E-07,0.781727791,0.566342711,-0.010540294,0.741771758,0.516553283,-0.022032015,0.720144451,0.480720282,-0.034794301,0.724565089,0.460470021,-0.04568759,0.76046747,0.369589001,-0.016745701,0.723413467,0.315629601,-0.038919162,0.691539943,0.295969456,-0.050295487,0.665497959,0.280787915,-0.05843908,0.786791384,0.368792772,-0.023764858,0.738395274,0.337302476,-0.055122659,0.737712145,0.421416759,-0.054450054,0.748722434,0.462730259,-0.046774946,0.812293768,0.390857518,-0.033613797,0.763472736,0.368174493,-0.063673362,0.764032602,0.446306586,-0.0503066,0.775715649,0.490132689,-0.033476993,0.834458709,0.424440652,-0.045124996,0.817847371,0.370349377,-0.072412245,0.803114295,0.332310736,-0.076266602,0.79193157,0.284331292,-0.074289434 +Right,0.814367175,0.616309047,-2.06E-07,0.773649335,0.587679386,-0.017177653,0.73661232,0.531038404,-0.032940507,0.719885647,0.490894169,-0.049303845,0.733009458,0.468684345,-0.063576937,0.764597535,0.390131176,-0.022928573,0.733025551,0.324216604,-0.045187283,0.704722881,0.298567772,-0.056267213,0.681497812,0.276644737,-0.063720189,0.791129649,0.391870618,-0.027513154,0.752505362,0.346472889,-0.060780421,0.745453,0.429595977,-0.062812068,0.752375484,0.478210866,-0.056144275,0.817296624,0.415132046,-0.03494224,0.777742267,0.37963891,-0.066398196,0.770418048,0.457691193,-0.056233644,0.776128352,0.506288171,-0.040460549,0.840402007,0.449208975,-0.044334233,0.835919321,0.384011984,-0.067684658,0.826609373,0.341000259,-0.069616936,0.81983757,0.290868342,-0.066357501 +Right,0.751546681,0.672029018,-1.17E-07,0.716453493,0.628534794,-0.018338827,0.693014622,0.550245285,-0.029637126,0.702138901,0.497029841,-0.041395772,0.733913481,0.483464986,-0.051691595,0.733438134,0.429393172,-0.017743787,0.728834748,0.346492171,-0.037179347,0.718958259,0.301886201,-0.046483103,0.712143302,0.259083986,-0.052792035,0.765202761,0.437347651,-0.020920381,0.758020699,0.360822082,-0.056954321,0.739167035,0.435157329,-0.063345663,0.732004344,0.493256181,-0.057631407,0.795178413,0.463023543,-0.026909046,0.784811854,0.403946549,-0.062785789,0.763941169,0.477460176,-0.058055576,0.756067812,0.532989144,-0.043017559,0.822578073,0.496084988,-0.034457102,0.843079805,0.419578493,-0.059437748,0.851130605,0.368210673,-0.063614309,0.858688116,0.315176725,-0.060945753 +Right,0.7277233,0.716198087,-1.09E-07,0.691490889,0.662580431,-0.019531986,0.673558056,0.580033898,-0.030705433,0.697278917,0.533724666,-0.04126478,0.7346403,0.526790679,-0.050216302,0.707026124,0.457803845,-0.02143326,0.709102035,0.378431976,-0.041598149,0.707761168,0.332431674,-0.051970676,0.708885074,0.286260009,-0.059758134,0.744519889,0.469082922,-0.02286697,0.746151268,0.404438615,-0.059446283,0.730499446,0.483828783,-0.066025987,0.723854125,0.539144456,-0.061338261,0.778113067,0.49837485,-0.026984897,0.780729711,0.443701088,-0.064453028,0.75874418,0.521501303,-0.059531569,0.747275293,0.579081535,-0.044638991,0.807638168,0.534853995,-0.032397717,0.835125089,0.465879917,-0.061799556,0.84826982,0.417293638,-0.068196051,0.860595286,0.363347352,-0.066622153 +Right,0.731767595,0.744819343,1.04E-07,0.69168967,0.709810376,-0.039108295,0.677740037,0.650774062,-0.062744051,0.720075488,0.609434366,-0.080599129,0.764968157,0.588337719,-0.095410295,0.687862992,0.50360924,-0.05359805,0.697937846,0.423396379,-0.08609394,0.70841682,0.37076658,-0.105824791,0.719614267,0.321645319,-0.119573936,0.732104361,0.500591159,-0.046370175,0.750089347,0.452355176,-0.089170441,0.746519804,0.547745109,-0.096938014,0.740900278,0.59801805,-0.093978412,0.769808352,0.516058445,-0.043335356,0.788542151,0.479654253,-0.084302932,0.780489087,0.560595155,-0.080934323,0.771360993,0.61109823,-0.068123721,0.801873267,0.542833924,-0.043237321,0.833806276,0.471187711,-0.078319356,0.857621372,0.431356847,-0.088739291,0.876007974,0.38435781,-0.089511864 +Right,0.744910836,0.719297409,1.96E-07,0.705762863,0.703484535,-0.047636829,0.692292273,0.651163697,-0.074140079,0.737357855,0.608085036,-0.092827879,0.784142911,0.583233654,-0.107809909,0.691475213,0.501680136,-0.063835084,0.70467031,0.42249313,-0.101361178,0.722110927,0.373685062,-0.125623405,0.741626501,0.332443267,-0.141170442,0.735251844,0.489909858,-0.053398404,0.764269054,0.449897438,-0.09984225,0.759302497,0.545190275,-0.111028098,0.748198628,0.59048605,-0.109915443,0.772289038,0.494033188,-0.047878109,0.804261029,0.466753423,-0.091030717,0.797046304,0.554723322,-0.089259706,0.783924341,0.603047013,-0.07703723,0.804389477,0.51242578,-0.046186376,0.83904922,0.440638095,-0.080177136,0.863891602,0.400175393,-0.088338695,0.881750703,0.354602396,-0.08692649 +Right,0.765392244,0.655359149,2.88E-07,0.733691037,0.6795277,-0.071670279,0.729165375,0.63498193,-0.103326805,0.770862639,0.57032603,-0.118614182,0.816078126,0.5213992,-0.127951756,0.690928936,0.494554788,-0.093672618,0.710235357,0.424394339,-0.134939045,0.733763456,0.378846109,-0.15988107,0.758009434,0.326035887,-0.175747782,0.727133691,0.451194525,-0.067426234,0.776434541,0.424438149,-0.110248275,0.776534557,0.522675276,-0.114402905,0.760389626,0.553703845,-0.110615253,0.761547804,0.431461513,-0.047467854,0.810303986,0.414433718,-0.089831829,0.805830479,0.507521689,-0.084416084,0.789135695,0.547797382,-0.070958734,0.792356849,0.428847969,-0.032949913,0.831730425,0.358195603,-0.067639329,0.848114014,0.319493502,-0.074600652,0.855421782,0.276535064,-0.072253704 +Right,0.782863379,0.633645177,3.53E-07,0.760023296,0.658255637,-0.074567713,0.762984276,0.612628102,-0.110943176,0.81078577,0.536750555,-0.131065115,0.852207065,0.472721308,-0.145767897,0.707009852,0.492256105,-0.099702343,0.739661396,0.411021352,-0.139193773,0.76616329,0.353844702,-0.161561042,0.79077369,0.292966306,-0.175247952,0.737764299,0.434308022,-0.073504537,0.798201442,0.396634817,-0.11854808,0.803636312,0.493211836,-0.124765888,0.791886628,0.538987815,-0.12139795,0.769699037,0.404211789,-0.052607499,0.827399373,0.372729003,-0.096670665,0.826977193,0.461966544,-0.093008056,0.812443078,0.507429361,-0.079574823,0.799434364,0.394946992,-0.03709776,0.837784648,0.314429253,-0.068694681,0.850957632,0.271366984,-0.072517984,0.855262935,0.226156592,-0.067751721 +Right,0.796869695,0.62018925,3.57E-07,0.779991925,0.645397007,-0.085192323,0.786375999,0.593242288,-0.122737132,0.827576399,0.511958122,-0.140711114,0.863196433,0.446096122,-0.152319387,0.719120979,0.476900667,-0.10862571,0.754537761,0.387758136,-0.146568224,0.781346023,0.329799533,-0.164978459,0.804396391,0.269165397,-0.174985304,0.742774308,0.418755174,-0.074876361,0.814139724,0.375457138,-0.119231403,0.82647568,0.464473933,-0.123746976,0.81592232,0.511137784,-0.118227184,0.770619869,0.384276897,-0.046819925,0.834356189,0.342900515,-0.090819195,0.842660904,0.429291368,-0.087193891,0.831031382,0.472422212,-0.072787002,0.800021172,0.367500782,-0.024791347,0.836437643,0.290817559,-0.055919353,0.848921776,0.253736198,-0.059743337,0.849197686,0.213835657,-0.054205727 +Right,0.836878181,0.642114162,2.91E-07,0.79662174,0.649434626,-0.053134944,0.779192805,0.587453663,-0.077275664,0.811909199,0.495919645,-0.091799915,0.850308776,0.434681386,-0.102172375,0.728409708,0.466564715,-0.052986883,0.733119369,0.379968941,-0.086919494,0.740390599,0.313814014,-0.111523889,0.749359488,0.252404511,-0.127399087,0.766138911,0.422373265,-0.039508916,0.788194001,0.348381788,-0.088002488,0.811612725,0.42874223,-0.104968257,0.81804198,0.483841747,-0.10468848,0.801316261,0.398890555,-0.031206787,0.82482636,0.339555264,-0.07560958,0.840591729,0.412683845,-0.07853727,0.840893984,0.460388094,-0.066821352,0.83397609,0.393717289,-0.026978139,0.846418619,0.302133262,-0.056070961,0.854673386,0.253022194,-0.060936067,0.8544029,0.205814824,-0.056415208 +Right,0.846602976,0.702843785,1.04E-07,0.79849875,0.676765382,-0.028104231,0.77326709,0.59802109,-0.042092938,0.80074054,0.501880944,-0.053176504,0.837849379,0.445315778,-0.062805958,0.741009295,0.488755941,-0.022144947,0.730080903,0.399621665,-0.04582116,0.730414569,0.335235983,-0.063769512,0.731590986,0.277371883,-0.076437362,0.782613993,0.449732989,-0.019061774,0.781685948,0.365115225,-0.05804643,0.803422749,0.43233797,-0.072604887,0.814952672,0.489643663,-0.072279401,0.822613895,0.434454381,-0.01916643,0.822937667,0.35815385,-0.053769916,0.835098684,0.41288197,-0.056247756,0.841799915,0.460439861,-0.046898805,0.859027982,0.439135909,-0.021354541,0.858915746,0.347040713,-0.044030815,0.860254467,0.291539669,-0.049388666,0.857529819,0.23796764,-0.047725208 +Right,0.810543656,0.762332797,4.16E-08,0.756304622,0.708064079,-0.013316615,0.723212719,0.61587745,-0.021083441,0.740429223,0.53909111,-0.03114737,0.782007575,0.505793452,-0.040614862,0.745183825,0.514736593,-0.001587059,0.731030822,0.426091224,-0.015935011,0.719637513,0.374083102,-0.02468182,0.711659014,0.322170556,-0.031532545,0.781308353,0.500843048,-0.006422339,0.774748385,0.404437602,-0.041778296,0.768551767,0.468020141,-0.053319395,0.768740535,0.527656257,-0.050162673,0.817613721,0.50160408,-0.013471119,0.809864581,0.416766882,-0.045341309,0.797835827,0.494726688,-0.042235781,0.795377254,0.56450218,-0.027747512,0.853206277,0.515214205,-0.022138298,0.86072439,0.418843865,-0.04107701,0.858518064,0.351823986,-0.043456245,0.855942309,0.288632035,-0.039775126 +Right,0.761283398,0.788068354,-8.93E-08,0.714980841,0.72732842,-0.010547009,0.693081856,0.637599051,-0.017193105,0.697194934,0.564325213,-0.027335759,0.727760732,0.545543253,-0.036262382,0.744453073,0.548272431,0.00350705,0.74346441,0.460832238,-0.01196656,0.732279539,0.41134429,-0.019838572,0.726426125,0.361404598,-0.025189836,0.769588411,0.546838939,-0.00355356,0.765521288,0.448513269,-0.040628821,0.74272728,0.508007944,-0.05232859,0.734817564,0.569101036,-0.048141371,0.795755446,0.556884825,-0.013063223,0.785320342,0.477138162,-0.047718953,0.758590579,0.543260455,-0.047076471,0.749862671,0.604815662,-0.032973696,0.82173264,0.57614398,-0.023777014,0.838562846,0.483525276,-0.042328253,0.838919103,0.420019895,-0.044961445,0.840337873,0.365374327,-0.041271813 +Right,0.731837213,0.767277956,-2.90E-07,0.69836551,0.697235465,0.000194363,0.691862881,0.615235031,-0.002147047,0.691614032,0.562209308,-0.009696749,0.707487524,0.535706997,-0.015498317,0.759408772,0.536395371,0.010018763,0.768806815,0.455003083,-0.006360561,0.758516729,0.402032673,-0.014557867,0.751272678,0.356250763,-0.019788962,0.776488602,0.547431886,-0.002140788,0.757842779,0.459928989,-0.038124595,0.726144075,0.51968205,-0.046243407,0.719860256,0.576257348,-0.040684685,0.789746165,0.568583071,-0.016710065,0.767436326,0.487849176,-0.050577283,0.735974312,0.546904922,-0.04558802,0.730060756,0.603235185,-0.029742777,0.799746454,0.592760742,-0.031962659,0.815784335,0.507524133,-0.0561819,0.813907027,0.442959785,-0.061119005,0.816762686,0.386748701,-0.058427133 +Right,0.742826879,0.781171441,-5.91E-07,0.721085489,0.670448005,0.0134912,0.722183645,0.597513974,0.012421474,0.722108245,0.540066898,0.007828998,0.724074006,0.488924563,0.004730226,0.822791219,0.566708326,-0.002017926,0.801669419,0.45041129,-0.014257464,0.787269294,0.39097926,-0.024278488,0.77825439,0.341311693,-0.034909617,0.82668066,0.5834077,-0.016321216,0.756674826,0.461933732,-0.034263305,0.726818621,0.518275738,-0.033619739,0.726709485,0.562856078,-0.034481984,0.808891416,0.598587215,-0.030519823,0.746016383,0.488410115,-0.045396544,0.718090892,0.541446388,-0.032262683,0.714927018,0.589331806,-0.024622817,0.778676927,0.611092329,-0.044675346,0.762578905,0.516642511,-0.070253246,0.754094362,0.453961968,-0.079607487,0.754291475,0.39856708,-0.085328482 +Right,0.754128575,0.78606385,-5.65E-07,0.785250843,0.709465444,0.02206693,0.794167519,0.621109784,0.025452098,0.780965269,0.545454502,0.02518509,0.758640587,0.499831885,0.023318073,0.82528019,0.58032316,-0.007648593,0.802424788,0.460524172,-0.015463167,0.78380388,0.396663725,-0.018412769,0.770367682,0.348156631,-0.023277832,0.808643699,0.588556588,-0.022929681,0.752740979,0.47860691,-0.032847892,0.730908215,0.521048665,-0.026119182,0.730822861,0.557505786,-0.023955509,0.778218746,0.605066895,-0.035982382,0.728939354,0.500778794,-0.045540113,0.710987031,0.543164432,-0.033395611,0.710696399,0.582817972,-0.027625298,0.742821217,0.622332692,-0.047043648,0.724189878,0.521968544,-0.067162126,0.711500943,0.462581992,-0.074317478,0.7039873,0.408569187,-0.079665437 +Right,0.748671055,0.803508282,-3.47E-07,0.784071207,0.72804606,0.004399206,0.801512957,0.629694879,0.000924257,0.792461514,0.541641831,-0.000520105,0.776245296,0.490812361,-0.002725847,0.820201278,0.613711059,-0.035690345,0.79927659,0.48886922,-0.048743363,0.78185606,0.423956931,-0.051542215,0.76755619,0.373353601,-0.053910758,0.789776981,0.623871446,-0.042727817,0.749978006,0.48933062,-0.055703107,0.735167444,0.525090456,-0.046165437,0.737265348,0.564053059,-0.039068967,0.752181828,0.640012503,-0.047752276,0.717716336,0.524825096,-0.059402723,0.709159553,0.560231209,-0.046223957,0.714784324,0.596566021,-0.036814749,0.713672578,0.651531577,-0.05167355,0.69521904,0.551497042,-0.067159407,0.684534848,0.493781209,-0.070440091,0.67760241,0.440562278,-0.072274014 +Right,0.744028449,0.837612987,-2.58E-07,0.786266744,0.767360628,0.0057895,0.807225704,0.67193681,0.002442399,0.802141547,0.5904302,0.001388863,0.784041464,0.537220597,-0.000500196,0.820713818,0.659706354,-0.042309102,0.817656517,0.527163982,-0.059531309,0.810093343,0.450500488,-0.066564366,0.801140368,0.388897121,-0.072532818,0.784642458,0.666338027,-0.049428605,0.758509159,0.519900978,-0.065535828,0.746609271,0.561151624,-0.056493543,0.751603484,0.602842271,-0.050145049,0.74305141,0.675917089,-0.054103803,0.722492576,0.543928146,-0.065470383,0.713332951,0.577138484,-0.050187275,0.718940496,0.616684198,-0.040333997,0.703488588,0.677942991,-0.057751309,0.690913498,0.569115043,-0.075260706,0.681690812,0.505274296,-0.079819806,0.677707911,0.44918853,-0.082814448 +Right,0.736849487,0.806434333,-2.54E-07,0.777966857,0.738785684,0.00543034,0.800239444,0.648113728,0.001772777,0.795676112,0.569167435,-0.000353624,0.777002394,0.520025909,-0.003571278,0.814903498,0.635543823,-0.037136473,0.814606667,0.509944558,-0.052970838,0.809012949,0.43708992,-0.058609061,0.802495241,0.378234327,-0.063263327,0.781309843,0.638116837,-0.044951346,0.756027162,0.500363588,-0.061232232,0.740389884,0.536948264,-0.053283505,0.742405415,0.57768327,-0.047046032,0.740998566,0.645324051,-0.05066504,0.719047308,0.527141035,-0.06357801,0.70883888,0.557564795,-0.050876398,0.713364303,0.593918443,-0.04178727,0.702170134,0.647151947,-0.055237733,0.690084517,0.543436229,-0.071355417,0.680874705,0.484091461,-0.074692994,0.676181436,0.433042347,-0.076522335 +Right,0.73759985,0.763171494,-3.30E-07,0.772371471,0.694097877,0.005941534,0.791124523,0.605924487,0.001916962,0.785747826,0.525218546,-0.001363802,0.772274017,0.476895452,-0.005560878,0.810240805,0.588798523,-0.03038444,0.798942685,0.473713219,-0.043750022,0.78805083,0.408352435,-0.048913624,0.7770015,0.354938805,-0.053929605,0.784752727,0.595174909,-0.038463965,0.745998085,0.473766088,-0.051052958,0.730891764,0.512937725,-0.042669348,0.734486163,0.546573043,-0.037601735,0.750155807,0.606785476,-0.044966534,0.7164433,0.501962543,-0.05567342,0.707081556,0.536321402,-0.042960193,0.711870372,0.570242703,-0.035137594,0.713487625,0.614740908,-0.05057817,0.696076274,0.520113945,-0.066295825,0.683575392,0.466107786,-0.06987296,0.674754262,0.416396439,-0.072321966 +Right,0.737160504,0.752884924,-4.42E-07,0.768459976,0.682404041,0.013278294,0.779820681,0.594437599,0.012822977,0.77001667,0.516955912,0.010447904,0.752577722,0.473713279,0.006643849,0.80430603,0.569212377,-0.016246593,0.786720157,0.462469101,-0.027064528,0.771819234,0.402801543,-0.032503761,0.759483576,0.354728699,-0.038228739,0.787792027,0.579706192,-0.027458644,0.738242865,0.478947759,-0.038281828,0.719746828,0.515294433,-0.033009935,0.720131934,0.544869781,-0.031217597,0.759035826,0.595793188,-0.036941703,0.711611092,0.507343054,-0.046280891,0.698137343,0.542205215,-0.036307663,0.699858069,0.575797975,-0.031233151,0.725629926,0.60997045,-0.045097031,0.702045202,0.519437075,-0.059377894,0.68749702,0.467312276,-0.063355573,0.677603483,0.421028376,-0.066688083 +Right,0.707652688,0.763233006,-4.93E-07,0.675053239,0.685127616,0.005090812,0.660943151,0.612471104,-0.002340909,0.653981805,0.56504792,-0.014668502,0.654468358,0.532325625,-0.025135059,0.754995346,0.530286729,0.001187332,0.735158443,0.441461861,-0.01123208,0.718674123,0.388325334,-0.020948451,0.707432032,0.341982543,-0.030565294,0.769679546,0.54699415,-0.013423388,0.701330006,0.485973299,-0.034867078,0.678769886,0.545387268,-0.037693795,0.68421644,0.585164666,-0.038615379,0.766466379,0.57342118,-0.02932586,0.705433428,0.511656642,-0.050259095,0.684722126,0.568812311,-0.040757183,0.685989201,0.611693323,-0.032157462,0.752762735,0.602365017,-0.045947086,0.736333072,0.522996545,-0.067412905,0.720624328,0.46910876,-0.070897162,0.712227583,0.418629348,-0.071350217 +Right,0.708918571,0.801672459,-1.73E-07,0.667752802,0.754359365,-0.012468176,0.642789125,0.670479417,-0.021256605,0.639073968,0.607297897,-0.032450259,0.665265143,0.591946423,-0.041611806,0.682299435,0.56332618,-0.005521478,0.6794644,0.47837162,-0.02224124,0.668778479,0.431218207,-0.029632747,0.662717819,0.38435626,-0.034551963,0.708205044,0.568277001,-0.011224146,0.69750905,0.487183094,-0.045217808,0.678043842,0.553827524,-0.051410198,0.672835529,0.610485494,-0.04489103,0.732717872,0.589768767,-0.019304901,0.714053392,0.529856145,-0.052511103,0.695542693,0.599383175,-0.047435425,0.692737222,0.65308392,-0.031703062,0.755347073,0.619581938,-0.028592652,0.763484955,0.544291854,-0.047721487,0.757261038,0.495993972,-0.047933426,0.751730978,0.451403975,-0.042545479 +Right,0.740359187,0.832492173,-7.75E-08,0.690984368,0.792986393,-0.017654594,0.659545839,0.722567499,-0.027976951,0.674117863,0.662834466,-0.038461804,0.707562447,0.641160369,-0.047539391,0.666129172,0.592997551,-0.014549006,0.656938076,0.516053259,-0.032641731,0.649897277,0.468566775,-0.042797823,0.644394875,0.419847965,-0.050342299,0.705275476,0.58414644,-0.017434565,0.701359034,0.521662235,-0.052796718,0.703460991,0.604196787,-0.061089437,0.706414223,0.663157701,-0.056404799,0.743826568,0.594202161,-0.022665987,0.738227963,0.547705173,-0.057463627,0.734815061,0.630886316,-0.053163819,0.735049427,0.68975383,-0.037954032,0.77932173,0.615411878,-0.029195631,0.787644804,0.53908515,-0.052707288,0.788922787,0.492587566,-0.054669008,0.788251758,0.441492438,-0.049726687 +Right,0.772486627,0.81876725,-2.91E-08,0.722896934,0.800520658,-0.024770569,0.693031728,0.741284966,-0.038114011,0.715731025,0.673598468,-0.049570229,0.749264836,0.629054308,-0.059026133,0.673726857,0.601258755,-0.025311397,0.657005131,0.521956205,-0.04778263,0.649168551,0.469080806,-0.060245827,0.642901838,0.416909754,-0.069198094,0.714845121,0.574539065,-0.024394434,0.712088764,0.509304702,-0.063608207,0.725287139,0.595982909,-0.072051808,0.731993616,0.653830349,-0.067421943,0.755153179,0.570815146,-0.026515037,0.754864335,0.517931879,-0.066024296,0.761880636,0.602619827,-0.063103996,0.765352011,0.659069121,-0.048412383,0.792647719,0.581070423,-0.03024484,0.798059404,0.499674559,-0.061049316,0.804100394,0.453766227,-0.067725375,0.807158113,0.401456475,-0.06507311 +Right,0.782323003,0.752873838,1.01E-07,0.742303312,0.749942064,-0.037372492,0.720977902,0.697759211,-0.057163738,0.74771744,0.622009754,-0.07171154,0.77733165,0.569261014,-0.083341166,0.680405378,0.567040205,-0.041320071,0.668310583,0.491015673,-0.070605248,0.665895939,0.436194927,-0.090474449,0.665629029,0.385483027,-0.103351243,0.718325019,0.530023813,-0.034472443,0.727923393,0.467688739,-0.078621753,0.749764979,0.541622818,-0.093628772,0.758437395,0.592224717,-0.093469895,0.75478518,0.512928486,-0.031247446,0.76704067,0.460419476,-0.072981261,0.783351481,0.532050729,-0.075278252,0.788837492,0.580426693,-0.064195909,0.789747715,0.512131214,-0.030499099,0.79767108,0.429808617,-0.060479961,0.808094561,0.380887032,-0.067733616,0.812868297,0.330083132,-0.065409146 +Right,0.797607005,0.706848562,1.60E-07,0.760107636,0.715514302,-0.039650429,0.738548756,0.66666007,-0.059686229,0.766190171,0.592907488,-0.073162638,0.798864782,0.542146027,-0.083741724,0.70208782,0.54963851,-0.05017205,0.690036118,0.474196315,-0.080218568,0.69195652,0.418125719,-0.100559279,0.696421027,0.367002547,-0.113854595,0.738527,0.505455792,-0.04309202,0.754027307,0.439213187,-0.085508451,0.774615943,0.513309777,-0.098601349,0.779051602,0.56620425,-0.098262988,0.772739172,0.481870532,-0.03975258,0.792640567,0.425235391,-0.079440199,0.810031295,0.494899035,-0.080113791,0.812500179,0.544733882,-0.069368295,0.805152655,0.476024538,-0.039259113,0.816771269,0.391912758,-0.06728211,0.827938497,0.340925157,-0.072304294,0.831524849,0.293964982,-0.06934645 +Right,0.798446238,0.717883706,-4.99E-08,0.74723506,0.688605428,-0.016159691,0.713717222,0.613913238,-0.023466809,0.734256625,0.540369272,-0.02995944,0.772835493,0.509549737,-0.035577938,0.712107539,0.503159642,-0.015693653,0.693780661,0.429107666,-0.033566386,0.682364225,0.382187515,-0.04426216,0.672536373,0.337462604,-0.052744232,0.750594378,0.480238587,-0.017464219,0.741937995,0.408738106,-0.052392665,0.752642691,0.488435179,-0.060243115,0.760587215,0.547254562,-0.055763304,0.789108515,0.476776302,-0.021433329,0.783307135,0.421782702,-0.054751094,0.78602016,0.501485944,-0.050276998,0.788954496,0.561310351,-0.035977382,0.825380206,0.485193461,-0.026662976,0.830868006,0.397172868,-0.053463493,0.833376706,0.33888936,-0.059455343,0.832855403,0.279388607,-0.057691667 +Right,0.774337053,0.73188293,-6.77E-08,0.730504096,0.686645031,-0.016488228,0.700031281,0.604879975,-0.027289834,0.695799887,0.538664043,-0.039851405,0.722951412,0.505029619,-0.050726917,0.732127368,0.494497359,-0.009418283,0.718336225,0.406114727,-0.028109511,0.70283401,0.357466161,-0.037259843,0.691838086,0.310945988,-0.043224547,0.759935319,0.490857631,-0.01313335,0.748391509,0.399571955,-0.050172798,0.733181715,0.464654088,-0.058341887,0.728844821,0.525249898,-0.052615449,0.789998949,0.501804709,-0.019650625,0.772972465,0.426185548,-0.054766234,0.755988181,0.496600181,-0.050817426,0.752383411,0.55640775,-0.035315383,0.819586515,0.522201538,-0.027777635,0.826990008,0.430542827,-0.049290858,0.820739985,0.367669761,-0.052391093,0.814982891,0.309795827,-0.048870645 +Right,0.762441635,0.727695823,-1.62E-07,0.722338676,0.666902423,-0.00992077,0.702833056,0.579030454,-0.019464388,0.69982034,0.514767826,-0.032625351,0.722308815,0.497366458,-0.044383883,0.754323602,0.485860556,-0.003898075,0.750597358,0.39289698,-0.021954592,0.737252474,0.339455247,-0.029670218,0.728893638,0.291657984,-0.034451339,0.776020765,0.49138397,-0.011223551,0.763579667,0.400786519,-0.047339875,0.74051398,0.470281541,-0.052859638,0.735843778,0.528933525,-0.04512959,0.796918631,0.509683013,-0.021148972,0.777974784,0.426898271,-0.054409895,0.754434586,0.497042835,-0.047233298,0.750326991,0.557765603,-0.029934427,0.815454543,0.534513235,-0.032515552,0.825967133,0.446822107,-0.053596668,0.820058048,0.383152723,-0.056267362,0.816708088,0.325861275,-0.052492928 +Right,0.749890149,0.734630227,-4.38E-07,0.718071997,0.646621168,0.007775616,0.706100702,0.56935662,0.0021874,0.702427089,0.517717838,-0.010228235,0.710063398,0.487375468,-0.019893529,0.797643721,0.479606241,0.014772993,0.782486677,0.392325222,0.00106859,0.768350542,0.339102298,-0.006684949,0.759638011,0.290107071,-0.01354441,0.813688517,0.497258335,-0.003477767,0.756294549,0.413472056,-0.028700717,0.730169654,0.487370461,-0.028317565,0.736339152,0.529396057,-0.022874806,0.815093756,0.520602047,-0.024325512,0.758562207,0.439798236,-0.050734762,0.733952463,0.509895384,-0.036136411,0.735539377,0.561580122,-0.019525263,0.804852307,0.543627381,-0.045997206,0.799109101,0.446348637,-0.069769181,0.791709304,0.388449848,-0.070078619,0.790755391,0.335551828,-0.065835774 +Right,0.74808681,0.724495351,-5.70E-07,0.716832101,0.629408419,0.01472238,0.713312089,0.560799658,0.015670458,0.708109021,0.506543219,0.012158927,0.702800095,0.469844937,0.009418198,0.809498549,0.501308739,0.005148325,0.790247381,0.39286384,-0.003328004,0.779100955,0.332359254,-0.009984741,0.77112025,0.283736706,-0.017743591,0.816948533,0.513358116,-0.009816539,0.745987475,0.417047411,-0.026237454,0.717367887,0.470891237,-0.026551217,0.716710985,0.515017867,-0.02693026,0.802982986,0.530076802,-0.024675736,0.738853514,0.437686741,-0.041313492,0.711767197,0.488737643,-0.032020435,0.709370673,0.535600066,-0.025042482,0.776304424,0.544071317,-0.038991872,0.755496144,0.448933274,-0.062275495,0.740716219,0.389599055,-0.070003167,0.735618651,0.337573886,-0.07398048 +Right,0.75298363,0.684651494,-3.73E-07,0.784534752,0.605219245,0.010929951,0.794702709,0.506593943,0.008588906,0.775488138,0.42477712,0.005380322,0.750066817,0.385904193,0.000680699,0.816376805,0.480855465,-0.022306466,0.796292424,0.364614099,-0.032636769,0.781728446,0.299494267,-0.03711218,0.769664586,0.246864393,-0.042507302,0.794251502,0.488565445,-0.032468278,0.740794957,0.383855253,-0.043126281,0.727681756,0.426831067,-0.037173372,0.732952714,0.458441526,-0.035301428,0.762079537,0.503978193,-0.040479887,0.714300871,0.414085388,-0.04875746,0.70805341,0.451357692,-0.038832977,0.714938223,0.483511746,-0.034446508,0.725601792,0.517790079,-0.04713846,0.699644923,0.422462285,-0.05932055,0.685099304,0.370017231,-0.062179245,0.674484551,0.321796775,-0.065332271 +Right,0.759736478,0.659435809,-3.13E-07,0.77523303,0.564449072,0.012493282,0.766510725,0.471926868,0.01540362,0.73735255,0.414168477,0.017413637,0.708180964,0.393425465,0.017915159,0.767923474,0.436315,-0.01688775,0.731008649,0.340409249,-0.026953546,0.708617628,0.287130356,-0.028452555,0.688936889,0.249230534,-0.029869914,0.74060142,0.459251076,-0.026408786,0.676577091,0.381724417,-0.03926871,0.672849953,0.429637313,-0.031190373,0.684082747,0.460803747,-0.024251554,0.710404158,0.496626616,-0.034136079,0.655829906,0.43362397,-0.047166795,0.655412138,0.471610934,-0.036696851,0.667559028,0.497425735,-0.028061418,0.679415047,0.533592641,-0.039993234,0.642369032,0.460113049,-0.057295278,0.619105279,0.417633533,-0.061902825,0.601062953,0.376019657,-0.063663118 +Right,0.778261423,0.597223043,-3.31E-07,0.777927279,0.505109429,0.01565899,0.751355469,0.425728053,0.020497311,0.712161779,0.387572169,0.02375911,0.681547821,0.38573432,0.025641575,0.746439278,0.378389955,-0.007943544,0.689423382,0.316731453,-0.012137987,0.657399535,0.285357594,-0.011313967,0.631553471,0.261625528,-0.01183287,0.727231741,0.406274617,-0.016732654,0.658201039,0.377059251,-0.022764275,0.661870956,0.421286494,-0.015569021,0.676371753,0.442289531,-0.010746866,0.707057834,0.448364347,-0.02306715,0.646046996,0.420030862,-0.028625926,0.650123954,0.455403984,-0.018888466,0.663621664,0.473139614,-0.012777381,0.685425222,0.495105267,-0.027467607,0.636622906,0.447556734,-0.036668047,0.608960986,0.425043881,-0.037886787,0.586188257,0.40091899,-0.038450081 +Right,0.768097818,0.565882325,-4.10E-07,0.709487796,0.547387302,0.010373619,0.673192322,0.510810018,0.009195645,0.646945417,0.489350408,0.003989901,0.632583976,0.47065869,-0.000698661,0.697075963,0.355661333,0.004608597,0.638914347,0.341297925,-0.004206866,0.604679585,0.336266249,-0.01254149,0.577153087,0.335288703,-0.019870654,0.707137585,0.359548241,-0.0082756,0.634673119,0.401780307,-0.024118846,0.638553739,0.450429559,-0.031280279,0.650065124,0.475660712,-0.035547011,0.709011614,0.391081393,-0.020823808,0.640017092,0.434482396,-0.03641158,0.642848253,0.48527354,-0.03495647,0.653414786,0.514344156,-0.032193895,0.702247083,0.439771175,-0.032754667,0.650816441,0.419080168,-0.048042811,0.619145036,0.405522406,-0.052725419,0.592953801,0.390435517,-0.055003848 +Right,0.773748875,0.566578329,-3.51E-07,0.708096445,0.574687779,0.010640107,0.663832963,0.566314638,0.003314376,0.63898313,0.563557684,-0.009656407,0.632152557,0.55606997,-0.022572419,0.660231709,0.413839161,0.002442916,0.603961885,0.429944664,-0.010594884,0.573210061,0.447976738,-0.022351762,0.547730744,0.463248223,-0.032152846,0.671799421,0.410390168,-0.013458652,0.608022034,0.494805306,-0.028985597,0.629181504,0.549136281,-0.031934936,0.652174771,0.562076628,-0.033955485,0.681461215,0.438037008,-0.029519089,0.619535923,0.507429421,-0.042477686,0.639329314,0.556930959,-0.032699738,0.663069189,0.574746132,-0.025387218,0.689700723,0.486699283,-0.045734126,0.642795563,0.488755167,-0.056098714,0.622969329,0.498782068,-0.052636519,0.610898733,0.504535735,-0.049585976 +Right,0.759053707,0.542598903,-3.52E-07,0.707861125,0.575554848,0.002264416,0.66524744,0.592840731,-0.003521468,0.641766012,0.609312892,-0.011214386,0.628255963,0.624185562,-0.018993311,0.637147367,0.45565033,-0.011297742,0.591241837,0.486306608,-0.024683636,0.564320922,0.509446025,-0.034776025,0.540725648,0.526613295,-0.043346565,0.655760825,0.441638589,-0.021747874,0.612767696,0.532917321,-0.037548244,0.63534683,0.584471285,-0.038475577,0.655735552,0.596056044,-0.038417008,0.677239716,0.457393467,-0.03255599,0.638162494,0.549295843,-0.049730688,0.6618945,0.592313349,-0.041815817,0.684041917,0.600760639,-0.033994421,0.698114932,0.487967372,-0.043384187,0.659096658,0.510638773,-0.06060721,0.642098904,0.519556999,-0.061449654,0.628216147,0.515738904,-0.06016124 +Right,0.755593479,0.574665964,-2.92E-07,0.702169716,0.590693772,-0.006199446,0.663993418,0.600229919,-0.018777668,0.64697516,0.617411256,-0.032664128,0.640497684,0.626180887,-0.046597157,0.651598632,0.457239628,-0.021721849,0.615413308,0.475307703,-0.043090474,0.59038794,0.495202303,-0.058255333,0.570010424,0.513778031,-0.068949886,0.677168846,0.440800965,-0.029306497,0.643404484,0.523230851,-0.048445437,0.661826313,0.588247359,-0.04741415,0.679246664,0.597456813,-0.044645637,0.706892729,0.454019547,-0.03847177,0.672438264,0.528306007,-0.05620496,0.685760319,0.583079338,-0.043273736,0.702264786,0.594453633,-0.03150633,0.735941052,0.482954502,-0.048994079,0.714470804,0.504913568,-0.067580625,0.70216769,0.517167509,-0.064794466,0.695797265,0.51105094,-0.058875527 +Right,0.729644775,0.600233138,-3.29E-07,0.696217716,0.602162421,-0.016831409,0.662789166,0.570490718,-0.02835791,0.649222136,0.527863145,-0.039010115,0.641695142,0.500575662,-0.047376074,0.65771693,0.469455272,-0.025845455,0.638273418,0.48503527,-0.051742699,0.620880067,0.507627189,-0.063887574,0.605440259,0.529334188,-0.069747955,0.683486342,0.4500857,-0.028244263,0.666620195,0.520101607,-0.050503269,0.679913938,0.586842,-0.046037789,0.689036667,0.584630907,-0.038988154,0.715530097,0.455998302,-0.034726057,0.701172471,0.520905912,-0.058461748,0.703080952,0.579988837,-0.044590339,0.707281172,0.587316632,-0.030908585,0.747761607,0.475648522,-0.043572173,0.742742479,0.50224191,-0.065512925,0.738485873,0.522821426,-0.062808812,0.738764644,0.51677382,-0.056268491 +Right,0.676076949,0.592452586,1.21E-07,0.663795173,0.641806006,-0.049239669,0.674622655,0.668979645,-0.082295865,0.707165658,0.685956478,-0.108849548,0.747020602,0.668218791,-0.132599205,0.716321707,0.555891156,-0.078808434,0.756082654,0.519525647,-0.10902974,0.784544766,0.513018012,-0.120602705,0.806092083,0.494960129,-0.127375007,0.743814886,0.528057694,-0.068932511,0.769647121,0.553650796,-0.107472889,0.750856042,0.630086124,-0.113346688,0.738279164,0.658101439,-0.111806013,0.760363996,0.522783995,-0.061999656,0.780047297,0.541090012,-0.098279051,0.761900365,0.605532348,-0.094342597,0.746260047,0.622823536,-0.084985919,0.773386061,0.528322756,-0.05840198,0.812566102,0.493070036,-0.082804196,0.842037082,0.471915185,-0.085349619,0.8651191,0.433403343,-0.08398468 +Right,0.783457339,0.745285451,1.68E-07,0.74396348,0.749367237,-0.038810696,0.721643925,0.71698463,-0.063701548,0.750627816,0.666383386,-0.082658947,0.78806138,0.630404234,-0.098598793,0.697575688,0.578794122,-0.055188637,0.691081583,0.5105111,-0.088537671,0.698224068,0.460479558,-0.109389387,0.711197674,0.418230027,-0.123135984,0.734191,0.545939744,-0.047127217,0.75298667,0.520924687,-0.08435037,0.757953823,0.60744822,-0.089064911,0.752732396,0.640940011,-0.086398743,0.770213485,0.537393749,-0.04368059,0.793684661,0.526862621,-0.08085233,0.791587412,0.602428794,-0.077260323,0.784209907,0.641881526,-0.066501617,0.805211842,0.541475356,-0.043373447,0.828522623,0.470690131,-0.078698128,0.847123682,0.43082732,-0.088080399,0.861641765,0.38831538,-0.087668933 +Right,0.79637146,0.780604362,1.52E-07,0.754397631,0.765171289,-0.038967997,0.737362921,0.708902538,-0.060434796,0.775484204,0.648186982,-0.07575129,0.816734374,0.606289625,-0.087904856,0.718644083,0.565008521,-0.050444696,0.724952638,0.477939844,-0.083417319,0.735641599,0.419826806,-0.10551247,0.7467314,0.365964621,-0.120294042,0.761727691,0.539641678,-0.043568328,0.784432769,0.484414279,-0.088804692,0.79519105,0.574587047,-0.101668052,0.795117259,0.630209029,-0.101233631,0.800262332,0.536227703,-0.040613785,0.822972178,0.495150894,-0.082856506,0.828327179,0.579740286,-0.082340032,0.825822711,0.634350836,-0.070368357,0.836190403,0.549474061,-0.040550891,0.859982967,0.467289269,-0.072851427,0.878907681,0.421142668,-0.080750309,0.890372515,0.372654915,-0.079321414 +Right,0.789959252,0.814227521,8.39E-08,0.74272728,0.784286141,-0.0308204,0.722931147,0.707409263,-0.046989318,0.759903073,0.632631361,-0.059941404,0.804090381,0.591509879,-0.070842661,0.710221231,0.568781137,-0.030152274,0.707405269,0.47429496,-0.055674944,0.712369084,0.411135882,-0.072350204,0.717739344,0.353465497,-0.083722547,0.754771471,0.550168812,-0.026338408,0.765762329,0.48202908,-0.069243096,0.775456429,0.565313399,-0.082553715,0.777197659,0.626285732,-0.080852643,0.795526147,0.549726486,-0.025996802,0.807425618,0.491944849,-0.066067889,0.80970943,0.565644562,-0.067902528,0.808409452,0.620259881,-0.056763653,0.831183434,0.562795281,-0.027786484,0.848510921,0.475592196,-0.056786973,0.860328078,0.421970278,-0.065141834,0.867918849,0.365993261,-0.064336844 +Right,0.796063542,0.817084789,1.09E-07,0.745159507,0.780308723,-0.023223668,0.71841681,0.687551916,-0.03535391,0.748631954,0.599841416,-0.046388987,0.791112781,0.557213843,-0.056617144,0.708314598,0.579398394,-0.017037408,0.697223723,0.483061373,-0.037301272,0.696094275,0.420842618,-0.051782612,0.695335686,0.361707032,-0.062792726,0.750517488,0.558035493,-0.016636981,0.748677433,0.457070321,-0.053833768,0.758826852,0.520694792,-0.066775069,0.765108824,0.58159095,-0.065301269,0.790482998,0.555494845,-0.018816039,0.791099608,0.47070235,-0.051063593,0.792216003,0.535252154,-0.049892858,0.793187678,0.593001127,-0.037970986,0.826394796,0.567325056,-0.02310265,0.834659338,0.475069582,-0.044144902,0.840331256,0.415112257,-0.048213139,0.843132675,0.357358634,-0.04584932 +Right,0.7858693,0.800933421,3.31E-08,0.739840567,0.764873922,-0.025098635,0.715688705,0.686104059,-0.03970265,0.748428524,0.613646269,-0.052424535,0.788819373,0.569974065,-0.063696094,0.70682919,0.546095371,-0.024635734,0.701408982,0.457948506,-0.04679653,0.702295482,0.39937821,-0.061103713,0.702165008,0.343953192,-0.071556345,0.750671923,0.529556632,-0.02368788,0.754939318,0.461717874,-0.063218147,0.762634873,0.545566916,-0.074672207,0.765044451,0.606722832,-0.072254688,0.791554749,0.533993959,-0.025499104,0.798327148,0.47723341,-0.062787257,0.798167884,0.555408657,-0.061032869,0.795992374,0.612807035,-0.047787555,0.828154802,0.552198052,-0.029082673,0.840362549,0.462395936,-0.055945009,0.849592745,0.408497185,-0.060959835,0.855426371,0.351182282,-0.057887301 +Right,0.785922587,0.752275646,6.11E-08,0.741088986,0.732770324,-0.035396378,0.720801473,0.675990164,-0.054374114,0.758904696,0.61985141,-0.067595139,0.802963495,0.586173713,-0.077544652,0.708315134,0.528705239,-0.046852101,0.71105516,0.44922325,-0.079445302,0.718185067,0.393094838,-0.100773543,0.727562904,0.340822399,-0.115164667,0.753382981,0.508422434,-0.041003965,0.771480322,0.456250876,-0.084717005,0.779794931,0.550757051,-0.095100492,0.780133843,0.604618311,-0.09336523,0.793650508,0.508398116,-0.039212137,0.812724054,0.467146814,-0.08112365,0.814912617,0.553406596,-0.0792588,0.812094212,0.607804358,-0.066583499,0.831337214,0.523158371,-0.040068153,0.852181315,0.440458596,-0.074743591,0.869086385,0.39211604,-0.084337026,0.880568683,0.339209855,-0.083985709 +Right,0.786407292,0.734086454,1.32E-07,0.744951367,0.725560665,-0.041034017,0.721453547,0.682672501,-0.066727243,0.754688561,0.634877145,-0.086171605,0.796733916,0.604255497,-0.101870798,0.707593083,0.533663392,-0.057905208,0.705991685,0.464640051,-0.096176259,0.713994086,0.415361226,-0.118790768,0.727093101,0.37432909,-0.133296669,0.750887454,0.51105386,-0.050592978,0.770318806,0.474120617,-0.093143128,0.772248268,0.573008001,-0.096259356,0.764177322,0.603014052,-0.091128364,0.790533781,0.508098841,-0.048860881,0.814428568,0.479508996,-0.09173815,0.811420202,0.565548897,-0.084411077,0.800895393,0.608249664,-0.069628119,0.826611519,0.519320965,-0.050541073,0.852642179,0.444242865,-0.090015613,0.871808589,0.399942428,-0.099515945,0.884936154,0.348514259,-0.098789893 +Right,0.796134353,0.724122763,1.72E-07,0.753472567,0.724315464,-0.052333951,0.725998342,0.701659679,-0.086713731,0.754465878,0.669127464,-0.114175722,0.795513988,0.649675012,-0.136688828,0.714841604,0.549066007,-0.07016822,0.706185043,0.493854314,-0.11163146,0.714579284,0.463775814,-0.126707062,0.732075632,0.449147403,-0.132924095,0.758344769,0.524515092,-0.058680214,0.776089311,0.503166497,-0.10309983,0.776110828,0.600552082,-0.098298259,0.765762866,0.609382927,-0.086285278,0.798253,0.51901722,-0.054623406,0.823461354,0.509788036,-0.105238281,0.819587708,0.598284066,-0.096001595,0.808096588,0.631013989,-0.077770934,0.835552454,0.526885808,-0.05455818,0.861986756,0.469864309,-0.100779556,0.88309437,0.434823602,-0.111292876,0.899477363,0.389089644,-0.10940785 +Right,0.785883307,0.694811821,-8.54E-08,0.734893799,0.676207602,-0.03607171,0.705225289,0.649398208,-0.062512256,0.730062306,0.65754652,-0.084070988,0.769093573,0.669753432,-0.101308785,0.715664089,0.492563486,-0.057892911,0.7118572,0.474651486,-0.089918025,0.698401511,0.466721594,-0.096891075,0.686316848,0.46540907,-0.098730385,0.75879091,0.478062779,-0.053301424,0.760318816,0.50935334,-0.084636353,0.752805233,0.611770988,-0.071842328,0.751906037,0.618129134,-0.056275725,0.79947561,0.499280721,-0.054559108,0.81056869,0.530974448,-0.096248545,0.797381341,0.616958261,-0.081228875,0.78969425,0.639701247,-0.061003339,0.835455418,0.533329606,-0.058652811,0.855074584,0.499986202,-0.105760649,0.873604119,0.473243177,-0.115256056,0.894733429,0.430453598,-0.112322234 +Right,0.78572154,0.704265416,-1.47E-07,0.739489079,0.68621397,-0.021984588,0.708594203,0.645266354,-0.040988494,0.721994042,0.630113721,-0.058280546,0.749191284,0.638503373,-0.072602592,0.722280085,0.485972136,-0.034271516,0.699219227,0.454833567,-0.061867163,0.676767647,0.44553113,-0.0758816,0.655560076,0.430417418,-0.086051844,0.759730697,0.477019906,-0.036608335,0.737177312,0.477942109,-0.066108145,0.735019863,0.580271661,-0.062974162,0.741855979,0.604098439,-0.056436703,0.797501922,0.50244987,-0.043153524,0.782448709,0.511168718,-0.076504044,0.773479104,0.603189945,-0.062714748,0.774036765,0.644529581,-0.046404451,0.831784487,0.542909265,-0.051884469,0.841240227,0.499097884,-0.085577846,0.849275231,0.469318449,-0.089890063,0.85954535,0.426329494,-0.087201111 +Right,0.789251268,0.702344596,-1.90E-07,0.749609649,0.688400447,-0.02653322,0.708156586,0.643872142,-0.048720706,0.693148673,0.607675433,-0.070265867,0.712241828,0.589348078,-0.088985838,0.720907688,0.481538713,-0.034650665,0.68954891,0.423935473,-0.06364011,0.660920024,0.403828621,-0.075896412,0.637747884,0.384524524,-0.083683163,0.756720126,0.474323034,-0.035650041,0.717846513,0.446787655,-0.07260105,0.718198597,0.553871751,-0.070367083,0.729257286,0.596523285,-0.060702544,0.792833328,0.493553549,-0.041228183,0.756699502,0.475107819,-0.081355877,0.754154682,0.570722759,-0.068461545,0.761680841,0.623800278,-0.049210113,0.825762212,0.525743306,-0.049050611,0.826533079,0.458788872,-0.082271039,0.819789708,0.420253992,-0.086747982,0.812645495,0.376063526,-0.083749764 +Right,0.781221747,0.716139138,-1.78E-07,0.737181544,0.691561639,-0.016835127,0.692044318,0.632863641,-0.032029033,0.669555783,0.584879458,-0.049153812,0.68351835,0.562352479,-0.064299941,0.70799315,0.481978655,-0.017779661,0.677726507,0.406239808,-0.040103961,0.647250772,0.37574935,-0.049206857,0.623443961,0.348268837,-0.055197068,0.735795021,0.476563215,-0.023313858,0.696281552,0.425527245,-0.060421593,0.693728209,0.518359482,-0.061561555,0.704205453,0.569400728,-0.052105878,0.765194833,0.492172658,-0.032299049,0.72345686,0.452690184,-0.069496512,0.719291151,0.539126515,-0.05973215,0.727026939,0.59169054,-0.041605484,0.793138742,0.518476784,-0.043017261,0.783475578,0.445917755,-0.06969592,0.768651307,0.399333775,-0.073060982,0.7558254,0.346711904,-0.069779046 +Right,0.761560559,0.747188449,-2.12E-07,0.715888381,0.709758461,-0.012156954,0.675474286,0.629885316,-0.022841379,0.660753727,0.563229382,-0.036558952,0.679951012,0.542913496,-0.048401564,0.708358049,0.491499633,-0.009001928,0.687385082,0.404417932,-0.026541444,0.664237201,0.365735114,-0.033101369,0.646297991,0.328371465,-0.038021281,0.734607279,0.491022378,-0.016506059,0.702489376,0.422704101,-0.052845612,0.691028059,0.505076826,-0.056455545,0.694213152,0.558872223,-0.048705719,0.760538042,0.508397639,-0.026880775,0.722389877,0.452879906,-0.063148879,0.709718347,0.53730607,-0.055911832,0.711622953,0.595747888,-0.039379008,0.784443319,0.535010159,-0.038657743,0.778753281,0.453067958,-0.063488267,0.766321242,0.397886693,-0.067725495,0.75617224,0.339467347,-0.065561846 +Right,0.73186183,0.757291198,-1.09E-07,0.685557961,0.705765724,-0.011091489,0.654454768,0.617594957,-0.019078104,0.651892245,0.549207687,-0.029781826,0.679209292,0.5277583,-0.038992573,0.694320798,0.508310378,-0.003519906,0.684393764,0.420024931,-0.017618496,0.668174386,0.377595097,-0.023943329,0.655957222,0.333605409,-0.028972127,0.721127689,0.509031773,-0.009907639,0.708023012,0.42473495,-0.044050433,0.690896869,0.491045415,-0.052432142,0.687118232,0.548910975,-0.048119232,0.748695314,0.52282691,-0.018483814,0.730683208,0.448809177,-0.051383086,0.708769858,0.519565463,-0.048449989,0.70223093,0.579617083,-0.034833841,0.775655389,0.544827461,-0.028197819,0.786032677,0.452666312,-0.048236754,0.783005953,0.387920797,-0.051591374,0.780776441,0.328002632,-0.049183827 +Right,0.72998023,0.761800408,-1.61E-09,0.682010114,0.707412958,-0.01232761,0.656822026,0.611242652,-0.018605053,0.670975924,0.537203789,-0.027095955,0.707294285,0.512734532,-0.034523152,0.691743374,0.521315694,3.51E-05,0.686415493,0.432097524,-0.012524058,0.678982615,0.380665123,-0.019022662,0.676017582,0.332164913,-0.024145721,0.723770916,0.517623186,-0.004498902,0.724606752,0.424593091,-0.037982795,0.706563473,0.48159045,-0.048971646,0.698771596,0.544813633,-0.046046115,0.75534451,0.525442779,-0.011298562,0.752929628,0.440509856,-0.042304873,0.727477491,0.501445472,-0.043038301,0.715967894,0.565511763,-0.032320961,0.785049915,0.543637514,-0.019265812,0.804032147,0.456162155,-0.036836911,0.808538318,0.392163664,-0.041574679,0.812483132,0.335508525,-0.040863957 +Right,0.743981719,0.775695562,1.33E-08,0.694658101,0.735325813,-0.018936193,0.661012053,0.639724314,-0.028730411,0.682263374,0.560385585,-0.039040156,0.724165142,0.529008269,-0.048388433,0.681525767,0.525367379,-0.009910727,0.672313988,0.442136675,-0.025623325,0.667342603,0.39302969,-0.0362757,0.664919078,0.344153613,-0.04507751,0.720114112,0.513843298,-0.011533748,0.72138226,0.429879785,-0.044619653,0.714779258,0.496161163,-0.055285718,0.712204456,0.557692409,-0.053507619,0.75614965,0.519685626,-0.015708873,0.756873369,0.436254799,-0.045819905,0.744451404,0.506006062,-0.043284897,0.739831507,0.571340144,-0.031497918,0.788345158,0.53973943,-0.021822687,0.802600861,0.454085767,-0.041150402,0.806014955,0.395891607,-0.044824995,0.808920979,0.340488672,-0.043136004 +Right,0.7530725,0.768460453,1.27E-08,0.703147054,0.735361993,-0.020315619,0.665166736,0.649687409,-0.031877283,0.683018625,0.574258387,-0.04375134,0.724366009,0.54407692,-0.054511856,0.681259334,0.520706952,-0.013911965,0.670512438,0.435501456,-0.029715054,0.664706647,0.389396966,-0.039918024,0.661689401,0.340910286,-0.048528615,0.720895946,0.506510139,-0.016072355,0.7209723,0.423354119,-0.049282406,0.717711627,0.493976951,-0.060262572,0.716457605,0.556914985,-0.058978472,0.757963598,0.510194957,-0.020740209,0.757249594,0.42488879,-0.051183809,0.748489082,0.49281773,-0.050660439,0.744970083,0.555738807,-0.040499315,0.791124642,0.528903246,-0.027263202,0.803673744,0.440612853,-0.0467248,0.807112873,0.384474933,-0.051241599,0.809512377,0.331978142,-0.050210305 +Right,0.760226369,0.711046398,9.38E-08,0.711259663,0.68647182,-0.023070924,0.672028899,0.612769604,-0.037907679,0.685965419,0.53956306,-0.052213591,0.727224588,0.511711538,-0.065606676,0.678975761,0.478568941,-0.021492973,0.666206956,0.396555483,-0.041356422,0.659929991,0.347926319,-0.054260246,0.656904936,0.298436999,-0.064323835,0.719907641,0.4584288,-0.023946989,0.718857884,0.35987699,-0.06081403,0.717672706,0.428779125,-0.072126299,0.715926886,0.491827637,-0.069592401,0.758249938,0.459207803,-0.028931605,0.757524788,0.376190037,-0.061574262,0.752569854,0.445136398,-0.060108434,0.750278413,0.505242169,-0.048067264,0.793014586,0.476827353,-0.036041148,0.80292964,0.386107028,-0.0573157,0.805282533,0.32815522,-0.061371088,0.806062341,0.273035556,-0.059195168 +Right,0.765257657,0.657176137,5.54E-08,0.715879381,0.632300138,-0.021927519,0.676139534,0.555981755,-0.035166774,0.692822933,0.480225265,-0.047900427,0.734912753,0.450422108,-0.059550248,0.67745918,0.413511753,-0.018163195,0.663880765,0.332814485,-0.036695406,0.659107327,0.284702778,-0.048546392,0.65904665,0.236830473,-0.057718404,0.720257401,0.394316465,-0.020607201,0.720991373,0.304065645,-0.057902586,0.720841646,0.378912538,-0.069381632,0.72091049,0.446313888,-0.066504456,0.759985626,0.396244079,-0.02573703,0.760616362,0.321419835,-0.058987558,0.755150616,0.388466537,-0.059357289,0.752973795,0.446465701,-0.048405048,0.795309722,0.415085316,-0.032753453,0.804503381,0.325188816,-0.054664653,0.807034373,0.268131256,-0.060019113,0.808723688,0.213990107,-0.058568224 +Right,0.760682106,0.689873874,7.93E-08,0.712356329,0.663028121,-0.021869797,0.678171754,0.583663702,-0.035206344,0.697383821,0.509964287,-0.048166018,0.736275136,0.472625434,-0.060194965,0.680126309,0.455353558,-0.019627055,0.665506601,0.371680319,-0.039684162,0.66063118,0.319568664,-0.051870812,0.65913558,0.267028749,-0.060911618,0.720113218,0.437283188,-0.021661859,0.719343722,0.344586551,-0.059632733,0.720177889,0.421765327,-0.069852121,0.720789194,0.487523556,-0.066129029,0.758387566,0.43913126,-0.026340477,0.755260527,0.360526979,-0.060832214,0.751106322,0.439097852,-0.05712482,0.750741184,0.502485156,-0.042712729,0.792939365,0.455633909,-0.032968186,0.80463177,0.361333072,-0.055474699,0.808580279,0.300966203,-0.058673244,0.809915841,0.240485236,-0.055460256 +Right,0.759594023,0.783011556,-5.83E-08,0.710780323,0.737007201,-0.015449855,0.679326773,0.645679653,-0.024326,0.700906754,0.577796102,-0.034809787,0.742812216,0.555112362,-0.045048524,0.702840507,0.529524624,-0.011453731,0.693280458,0.437557071,-0.026827851,0.686293542,0.383370697,-0.035904709,0.680592656,0.330942839,-0.043346811,0.739959002,0.523847878,-0.015784392,0.735511005,0.451990515,-0.050444372,0.726830304,0.518727422,-0.061323915,0.723310411,0.576706409,-0.05950398,0.775222778,0.534020126,-0.022124149,0.769845843,0.471276999,-0.054990891,0.756775022,0.549461722,-0.052152943,0.752045035,0.614306033,-0.039137237,0.808055341,0.553231657,-0.029920427,0.821865261,0.462196261,-0.05079494,0.82485199,0.400462866,-0.053179495,0.826407492,0.340070784,-0.049920455 +Right,0.780286789,0.907478333,-7.68E-08,0.72946018,0.877907217,-0.024044391,0.694288373,0.810392261,-0.039536394,0.716289043,0.747190416,-0.053590398,0.755206704,0.706301332,-0.065615676,0.697052538,0.668932021,-0.029557642,0.685306549,0.579910934,-0.05158424,0.677863717,0.526925206,-0.06379278,0.671247244,0.469361961,-0.074115619,0.738840699,0.651295483,-0.029711049,0.731674492,0.600412786,-0.064823225,0.734903753,0.696109653,-0.069552064,0.73923403,0.748224497,-0.0651493,0.778347075,0.659955442,-0.032646146,0.77264452,0.630553901,-0.068480186,0.767870724,0.725594997,-0.060068659,0.766643286,0.782781839,-0.044017807,0.814491689,0.678885043,-0.037506931,0.820407271,0.600817084,-0.065537356,0.819959641,0.55622077,-0.068260901,0.817539871,0.502832413,-0.064277478 +Right,0.786409378,0.85604775,-7.16E-10,0.738912106,0.829178631,-0.021674726,0.703584909,0.764304817,-0.035086107,0.724450588,0.701019049,-0.046912912,0.763323247,0.662923753,-0.057293225,0.701854408,0.629014313,-0.027126331,0.689254522,0.544120252,-0.045621745,0.681058347,0.498174131,-0.05567912,0.672018051,0.447216868,-0.064726464,0.743221164,0.610422015,-0.027565224,0.735943973,0.563334048,-0.059882805,0.738040149,0.658321142,-0.064438485,0.742051601,0.711907208,-0.060278215,0.782743037,0.618113339,-0.030498054,0.777171612,0.595276177,-0.064413317,0.769412994,0.684663236,-0.059084937,0.766483486,0.737209976,-0.045788527,0.818214178,0.63528496,-0.034887146,0.826029539,0.557804942,-0.062011912,0.83113426,0.513364732,-0.066107303,0.835414588,0.460970402,-0.0635591 +Right,0.782275975,0.818232179,5.52E-08,0.734284103,0.795105875,-0.025008142,0.696924925,0.727208972,-0.040244982,0.714668572,0.668239057,-0.054061666,0.755459785,0.640470684,-0.066098452,0.704206586,0.570962369,-0.023352459,0.691645622,0.497430444,-0.044836864,0.684318542,0.453805685,-0.057996329,0.680900872,0.408934385,-0.068240054,0.747604907,0.554438651,-0.024078464,0.746295512,0.474593878,-0.062877759,0.743733346,0.563819885,-0.072540723,0.743273795,0.633106291,-0.068788528,0.787772179,0.561735272,-0.02788749,0.78665036,0.486562371,-0.064640753,0.77744776,0.575109363,-0.061619576,0.773282826,0.642953873,-0.047984447,0.823060989,0.589079797,-0.033653818,0.838342726,0.51829344,-0.062421128,0.847412586,0.477740884,-0.069049463,0.856157959,0.430030704,-0.067047402 +Right,0.790990174,0.78103143,1.57E-07,0.739291608,0.760077357,-0.029036233,0.700433791,0.69406122,-0.04863679,0.716274559,0.630230248,-0.066821024,0.756379068,0.5951069,-0.083625726,0.706635773,0.533314586,-0.027746873,0.68963939,0.448959887,-0.051584553,0.681718051,0.397961795,-0.067661732,0.678043842,0.348837674,-0.080051243,0.751000583,0.511714518,-0.029572617,0.752363443,0.406445622,-0.07178881,0.748311937,0.480937779,-0.086661808,0.745314062,0.555369675,-0.085779369,0.792102218,0.51663512,-0.034583133,0.796224594,0.421088219,-0.071179442,0.787262678,0.485711932,-0.073956251,0.781182051,0.547950745,-0.064881273,0.828454673,0.54546535,-0.041983012,0.844456434,0.467417598,-0.068464741,0.855508089,0.421239018,-0.07607837,0.86549747,0.376768619,-0.075471863 +Right,0.790342808,0.747100532,1.08E-07,0.737885773,0.724263072,-0.025653237,0.698711455,0.650164962,-0.041723859,0.718583941,0.576194108,-0.056876618,0.762094498,0.541527629,-0.070833027,0.703076601,0.513409436,-0.024824848,0.68550688,0.424292594,-0.047204681,0.675441921,0.371745706,-0.061494242,0.668492556,0.319930643,-0.07270813,0.746220469,0.488516122,-0.027025368,0.745423675,0.37788412,-0.067377344,0.744369805,0.449542046,-0.079585008,0.74441582,0.519004941,-0.07697133,0.786068261,0.48882392,-0.032042641,0.785458922,0.394129038,-0.066765778,0.779849768,0.464466035,-0.065169401,0.778305769,0.52721405,-0.052912712,0.822002649,0.509524465,-0.039510563,0.836161137,0.424228311,-0.063413747,0.84394747,0.373825759,-0.068324201,0.851126313,0.324750185,-0.066179097 +Right,0.77839911,0.7226125,1.25E-07,0.723325074,0.70452404,-0.018909058,0.684773207,0.630324364,-0.029374193,0.698254406,0.550597608,-0.039295409,0.730413198,0.514641762,-0.048697345,0.690302372,0.51647979,-0.016175073,0.669433653,0.420023322,-0.032632913,0.655272186,0.362940043,-0.043833632,0.644707203,0.306846291,-0.053511981,0.727338731,0.488753706,-0.018767446,0.719503164,0.3767685,-0.050437961,0.725051522,0.421771675,-0.061768308,0.733676851,0.478093505,-0.061360512,0.763982415,0.479857802,-0.023556614,0.759428918,0.382433772,-0.048154112,0.752462447,0.411459386,-0.050245777,0.750110745,0.450839698,-0.044935364,0.798802197,0.487444729,-0.030436689,0.808409631,0.396059096,-0.047271606,0.81171751,0.335469007,-0.053646218,0.814052284,0.283341497,-0.055664707 +Right,0.751130998,0.706474304,-8.50E-09,0.700767338,0.682984233,-0.016486421,0.66436255,0.607708335,-0.025199974,0.677459121,0.534514844,-0.033846624,0.710003495,0.500511706,-0.041730121,0.671031237,0.487259686,-0.014253254,0.653293252,0.400748014,-0.028482875,0.642699659,0.34906444,-0.038138945,0.634053946,0.300519735,-0.046436038,0.707470417,0.46969384,-0.016982073,0.698995888,0.391464889,-0.046591327,0.695866168,0.445468992,-0.05702636,0.695954263,0.501502633,-0.056802515,0.743280828,0.468536764,-0.021543054,0.737870276,0.395468026,-0.047791123,0.73056668,0.447673649,-0.047791883,0.729111969,0.501136005,-0.039928801,0.7767905,0.480167627,-0.027686603,0.783910453,0.392230958,-0.046141248,0.78318727,0.33522284,-0.050943758,0.782783091,0.28467226,-0.050768565 +Right,0.802477956,0.916442335,5.29E-08,0.749721944,0.898048759,-0.027422179,0.710989475,0.82425034,-0.044565801,0.729737759,0.756664813,-0.06049113,0.767928541,0.722273469,-0.075224675,0.713423014,0.697526932,-0.034384802,0.695170581,0.596773684,-0.061313756,0.684746802,0.533607125,-0.077223465,0.675257206,0.471017897,-0.089616023,0.755414367,0.670200586,-0.036956847,0.744307816,0.560578227,-0.083635032,0.748510361,0.636473298,-0.095234402,0.752028406,0.703131139,-0.091594368,0.795976937,0.670071125,-0.042215534,0.789006054,0.596224964,-0.08505515,0.788231313,0.688706994,-0.079194941,0.787669301,0.760147333,-0.062028825,0.833226204,0.686586142,-0.050077729,0.844024837,0.598341346,-0.081827052,0.851490498,0.537067115,-0.087366454,0.854911447,0.473157614,-0.084743828 +Right,0.766738832,0.885321498,2.74E-08,0.718631089,0.854616344,-0.013458663,0.680488348,0.775536954,-0.019746657,0.701465249,0.718364835,-0.025338518,0.739378214,0.693524659,-0.030345859,0.69106245,0.642729163,-0.018265309,0.678469241,0.555918634,-0.034089141,0.670482218,0.503407955,-0.044445973,0.664185047,0.449270308,-0.054362789,0.731782258,0.631132603,-0.020843541,0.718974948,0.571215808,-0.050823145,0.718944728,0.65790391,-0.056119576,0.724184811,0.711469471,-0.052881386,0.768684506,0.643410683,-0.025170144,0.76235193,0.60886544,-0.053743131,0.753697276,0.687699378,-0.047524173,0.751622677,0.740096688,-0.035043638,0.801716506,0.666435063,-0.030700892,0.812018156,0.586506307,-0.055913631,0.816753626,0.5392676,-0.060838718,0.821307898,0.487798393,-0.059461992 +Right,0.81678021,0.98986578,-1.11E-07,0.76084137,0.984760761,-0.026611017,0.725758612,0.940007031,-0.043882381,0.747431457,0.924920738,-0.059390076,0.793469965,0.928793073,-0.074647948,0.731347382,0.801305652,-0.039790608,0.719150662,0.722627163,-0.06575945,0.709524393,0.662958264,-0.083192781,0.70347929,0.604906261,-0.095381752,0.773256421,0.765847921,-0.038984712,0.785196126,0.777949095,-0.082031325,0.796098769,0.871803164,-0.094600014,0.805565417,0.946628153,-0.092651568,0.814650595,0.763663232,-0.040539339,0.828852355,0.773555934,-0.08331456,0.834762454,0.849042594,-0.086980142,0.838032603,0.913279474,-0.075802334,0.852595687,0.774232686,-0.043733481,0.863618314,0.726578593,-0.077391185,0.872534633,0.712756515,-0.083715126,0.881204963,0.707601368,-0.078914836 +Right,0.775149107,0.950970769,7.99E-09,0.730063498,0.933367014,-0.019367954,0.694123507,0.879951,-0.03213717,0.713278055,0.830177426,-0.04311119,0.754198551,0.80212152,-0.052668296,0.697957635,0.731553674,-0.031996593,0.68289417,0.657536387,-0.053663559,0.673251629,0.608922303,-0.067055449,0.665690601,0.559796929,-0.078327529,0.738417387,0.709959686,-0.033234984,0.728320718,0.695974827,-0.061566789,0.726516604,0.790184021,-0.062354591,0.730746806,0.82660234,-0.057471097,0.777677953,0.724032581,-0.036972344,0.771779716,0.737970412,-0.067595601,0.760276318,0.821307242,-0.059282858,0.759103,0.863258898,-0.045718797,0.814291477,0.752265871,-0.042453434,0.822064459,0.695302129,-0.072871886,0.823397875,0.672627985,-0.07640788,0.829665422,0.646434307,-0.072375193 +Right,0.779623032,0.899226964,-2.02E-07,0.733699381,0.845687747,-0.012405833,0.700521886,0.768745601,-0.024176614,0.685329199,0.718057156,-0.037368953,0.694527388,0.698330104,-0.048987966,0.739308059,0.648681521,-0.021512549,0.721136689,0.569174647,-0.050877102,0.69706434,0.531735539,-0.0683598,0.676449835,0.497566283,-0.079976037,0.769109547,0.657546461,-0.0285242,0.735062301,0.602381468,-0.071156614,0.716770768,0.693770409,-0.074643999,0.720347524,0.756921411,-0.066442989,0.793567121,0.691852689,-0.038880523,0.76045078,0.658874691,-0.07826031,0.745325089,0.740415692,-0.069033839,0.749515355,0.798545361,-0.050948158,0.817309439,0.738656163,-0.050776575,0.820989192,0.676321328,-0.083111644,0.801928163,0.64361167,-0.088884756,0.786483705,0.616789341,-0.08595138 +Right,0.766934037,0.800813794,-3.90E-07,0.73706311,0.715746522,-0.002456152,0.715595365,0.635108292,-0.021756725,0.712919414,0.580994368,-0.04635527,0.724181294,0.566797376,-0.069475159,0.818515241,0.531544447,-0.005515744,0.795729876,0.452474535,-0.021858651,0.778941095,0.401275098,-0.039801996,0.768888772,0.350921154,-0.059189126,0.847652316,0.564240277,-0.02125782,0.749645948,0.521278918,-0.037648771,0.728876472,0.604645252,-0.039364129,0.738847673,0.649220586,-0.044269122,0.85194701,0.613813519,-0.039749175,0.753239989,0.574739814,-0.054071385,0.738893986,0.652169526,-0.038050696,0.743440926,0.704059839,-0.030247476,0.838452399,0.671251893,-0.06124359,0.79672873,0.604747772,-0.083453648,0.773877501,0.548531294,-0.087168194,0.754460037,0.495196283,-0.090031996 +Right,0.78832376,0.739486575,-4.21E-07,0.824590802,0.667794943,0.00821582,0.841026127,0.575344145,0.003090329,0.832143664,0.495434701,-0.002180697,0.812465966,0.450554937,-0.008650049,0.868341148,0.554680228,-0.031670522,0.851026177,0.430372298,-0.045620266,0.835733771,0.36148417,-0.052982595,0.822659791,0.304715037,-0.061085589,0.844858766,0.566864133,-0.041643381,0.787887335,0.446525127,-0.054361083,0.773171604,0.49200061,-0.047104869,0.780731797,0.524756014,-0.045244031,0.809295416,0.580935895,-0.049817648,0.758224308,0.482639521,-0.059208591,0.751226246,0.522486091,-0.04743544,0.758728147,0.555253983,-0.042905234,0.770810783,0.591253519,-0.057189263,0.742114246,0.494487405,-0.073974244,0.725782156,0.44112128,-0.07903564,0.714361608,0.390872151,-0.08382342 +Right,0.767692208,0.665080667,-2.47E-07,0.803427458,0.596843481,0.005901861,0.82214576,0.514957011,0.001851768,0.810269237,0.442255765,-0.00179425,0.788961649,0.401477963,-0.006496142,0.838357687,0.491544336,-0.028526802,0.828063309,0.376777887,-0.039888784,0.819024026,0.311837435,-0.042919841,0.81000489,0.26226306,-0.045673605,0.808082521,0.491472006,-0.035095241,0.773863196,0.390770674,-0.045728184,0.760195315,0.42801106,-0.037348937,0.763546705,0.457588315,-0.032134984,0.772525728,0.497014165,-0.039909948,0.743227541,0.408112049,-0.049053568,0.735091627,0.441056967,-0.037721559,0.739775836,0.473662555,-0.030486748,0.736405849,0.498448372,-0.043698739,0.723692954,0.405264556,-0.05690394,0.713273823,0.349943399,-0.059671264,0.706824303,0.301088512,-0.061219584 +Right,0.747309506,0.656995654,-3.49E-07,0.789461017,0.591124058,0.005777467,0.810829878,0.493966401,-0.000566361,0.800370514,0.407905161,-0.006199726,0.778011858,0.357694268,-0.013013947,0.83108288,0.478141069,-0.03652101,0.82313323,0.343625993,-0.050604384,0.808528066,0.2740224,-0.055515479,0.795464277,0.222004995,-0.059854317,0.798942506,0.483225226,-0.045280363,0.764563441,0.3557311,-0.05702658,0.750061572,0.392522365,-0.049160872,0.754564881,0.4267703,-0.046016574,0.759970129,0.490070939,-0.051948138,0.732854486,0.373392075,-0.062347699,0.724262178,0.408160895,-0.050053697,0.727494955,0.445292056,-0.043541443,0.720518708,0.493178308,-0.057454061,0.706521928,0.381929159,-0.071058668,0.696413338,0.325820565,-0.072041526,0.689232171,0.278687835,-0.073401548 +Right,0.680607557,0.614148498,-2.61E-07,0.712691665,0.533674359,0.008621077,0.725275517,0.441145629,0.007129698,0.708652794,0.364428073,0.005733692,0.683860481,0.323326349,0.003339482,0.737308264,0.411673099,-0.024129547,0.723923385,0.290941596,-0.036539897,0.715179563,0.22451067,-0.040184323,0.705234587,0.173212975,-0.043428484,0.70594275,0.419906259,-0.032900486,0.666137874,0.301555365,-0.047502473,0.656380534,0.343593895,-0.040670525,0.662201226,0.377913237,-0.035318445,0.669289827,0.435362399,-0.03983983,0.636974335,0.332792491,-0.054661136,0.632150352,0.368946016,-0.044340055,0.639913499,0.402047068,-0.03598278,0.63259697,0.44592154,-0.045147661,0.61602515,0.345887065,-0.063877471,0.603832483,0.288002968,-0.068548314,0.59562099,0.234506592,-0.070526972 +Right,0.695264697,0.516064703,-2.71E-07,0.728450835,0.440861791,0.013083015,0.739991188,0.349225253,0.01290517,0.727205575,0.276592493,0.011542129,0.702885151,0.243121073,0.00834845,0.754688025,0.326140404,-0.020275421,0.742306054,0.213524491,-0.027984682,0.729247808,0.153926656,-0.029231137,0.717732787,0.11006628,-0.031009475,0.725577295,0.330465466,-0.029948873,0.693185806,0.227061987,-0.036560651,0.681000352,0.257401735,-0.028524732,0.683478534,0.290336579,-0.023923831,0.690731227,0.343932986,-0.036993995,0.664683342,0.249370396,-0.040164821,0.657253802,0.27494061,-0.028658137,0.661891341,0.307233036,-0.022874534,0.655110002,0.35675776,-0.04253462,0.637629509,0.269103557,-0.050356504,0.624009252,0.218158692,-0.051591545,0.61559999,0.176792026,-0.053154249 +Right,0.762687624,0.581427932,-4.09E-07,0.798134804,0.50835222,0.011636272,0.817597389,0.418770075,0.009251184,0.811654508,0.335116148,0.005524325,0.790575981,0.287365973,0.000506982,0.837984025,0.386900097,-0.021825561,0.825092375,0.263058573,-0.03375617,0.810267568,0.195125967,-0.038316712,0.795154989,0.144032434,-0.042331319,0.81425035,0.389976442,-0.032569811,0.766144693,0.275060922,-0.044235472,0.748430014,0.313996285,-0.037308443,0.751947343,0.347218126,-0.033510383,0.780055642,0.399318665,-0.041410033,0.735369623,0.300149947,-0.050990157,0.724705935,0.334668458,-0.039944336,0.730238199,0.368995547,-0.033532012,0.74228096,0.406552732,-0.048868492,0.717965066,0.305192828,-0.061396506,0.702274144,0.247699052,-0.06320858,0.69246614,0.196390644,-0.064604908 +Right,0.775621533,0.660584211,-3.51E-07,0.812379777,0.589805901,0.009786534,0.832717717,0.499953479,0.007742332,0.823900759,0.419140726,0.005637196,0.805751562,0.373087943,0.002342691,0.85301441,0.483082503,-0.025166184,0.844416261,0.360967696,-0.034211829,0.833402574,0.293832451,-0.036058526,0.822535276,0.240514204,-0.039311238,0.826415896,0.486310631,-0.034090605,0.791779935,0.363504589,-0.042412732,0.777342141,0.40137282,-0.032922149,0.779843688,0.434235573,-0.028166628,0.792072296,0.495631307,-0.040927526,0.763097465,0.384872556,-0.048440382,0.754812062,0.420852035,-0.036487009,0.758864164,0.455551744,-0.030473026,0.756047308,0.500065982,-0.046451826,0.736518323,0.403888702,-0.060680214,0.723234355,0.348992467,-0.065496981,0.714793205,0.297423512,-0.069760337 +Left,0.253618389,0.853899837,8.09E-08,0.295549095,0.82167697,-0.027744865,0.323853821,0.763492107,-0.045126427,0.297029257,0.704877973,-0.060008347,0.263379574,0.673328638,-0.073831737,0.322978616,0.625151336,-0.034133341,0.337118864,0.533627629,-0.058286883,0.342120647,0.469367176,-0.074152395,0.344646066,0.409059882,-0.085585669,0.282503903,0.607101083,-0.033426929,0.282001287,0.52833122,-0.068610124,0.28427729,0.60552448,-0.081047662,0.286961049,0.657850564,-0.082123138,0.244700685,0.61245203,-0.034713767,0.239292726,0.549576819,-0.067930557,0.247779757,0.626723707,-0.068840489,0.253967583,0.680628538,-0.061328568,0.209605664,0.634463668,-0.037944652,0.190267503,0.561575472,-0.060748309,0.175895855,0.519368351,-0.065202244,0.163008556,0.469080448,-0.064501002 +Left,0.258178949,0.806100249,-6.76E-08,0.304811537,0.774194062,-0.031828858,0.326323688,0.705704808,-0.04886999,0.290916294,0.648280621,-0.063107647,0.255112767,0.61518681,-0.076067813,0.332167208,0.550937891,-0.03399469,0.346948087,0.461749732,-0.057591978,0.353712946,0.392843723,-0.073152252,0.357597977,0.332589626,-0.084096596,0.288484335,0.532707512,-0.031333156,0.281460464,0.488126338,-0.068619832,0.276896805,0.573787034,-0.081639864,0.278826863,0.633128583,-0.081939697,0.248664856,0.542743206,-0.031326972,0.235477746,0.505684674,-0.066665538,0.237732589,0.580574512,-0.068845473,0.24295193,0.633337975,-0.060990226,0.213642299,0.569194496,-0.033564776,0.189881831,0.492392868,-0.056495953,0.171857819,0.446633935,-0.060123947,0.158818036,0.39705956,-0.057937887 +Left,0.26637885,0.785767078,-7.62E-08,0.308158427,0.741551101,-0.024676256,0.332621187,0.672130883,-0.039708879,0.305631191,0.610185027,-0.053369202,0.271688282,0.574397504,-0.066391431,0.33236745,0.530746758,-0.026691694,0.3522515,0.439952433,-0.047372792,0.362951934,0.374679327,-0.060333047,0.370396912,0.316494167,-0.069027483,0.29181847,0.517552435,-0.027431536,0.292764395,0.461105376,-0.062986091,0.291348755,0.540065944,-0.077136792,0.290481985,0.598260283,-0.078404821,0.254710436,0.52615881,-0.029911106,0.250837564,0.47879979,-0.064402707,0.258261293,0.551203668,-0.068461537,0.262591064,0.607480764,-0.061968293,0.220056966,0.549971998,-0.033617161,0.19326517,0.469160736,-0.054082755,0.177260488,0.4223966,-0.057197269,0.164762497,0.371752024,-0.055250175 +Left,0.268563867,0.790239573,-3.51E-08,0.309044659,0.741298258,-0.016274592,0.340784371,0.671854794,-0.027855383,0.334734052,0.613191783,-0.040371522,0.305472165,0.581259608,-0.052429799,0.321457416,0.529260516,-0.016111122,0.338517129,0.436533898,-0.033327993,0.349317193,0.381082296,-0.043299735,0.357948244,0.327363282,-0.049902782,0.286581159,0.528795958,-0.022012729,0.294009686,0.457974434,-0.055419147,0.310061127,0.529321134,-0.069859467,0.316621721,0.584653497,-0.071589619,0.254340827,0.547362506,-0.029156126,0.259920835,0.490552455,-0.062208865,0.281814158,0.569250166,-0.066532165,0.29204154,0.624473631,-0.06039834,0.225172088,0.578679085,-0.037089843,0.202036262,0.504778445,-0.055737354,0.192106545,0.460348219,-0.05954932,0.181993693,0.404026002,-0.059150338 +Left,0.270232618,0.790246189,-3.90E-08,0.30871439,0.73690623,-0.009135141,0.337524235,0.663198352,-0.018765453,0.342785597,0.604560077,-0.030970581,0.316805363,0.577607572,-0.042781111,0.308140099,0.52911818,-0.00965507,0.326623291,0.435287684,-0.02469863,0.339502841,0.382745743,-0.031093579,0.34864971,0.33367461,-0.034684055,0.278618544,0.533965528,-0.019046014,0.298888445,0.456893921,-0.051078606,0.317101747,0.535867333,-0.061675508,0.320983171,0.592269242,-0.059928987,0.251719743,0.553399503,-0.029493401,0.2670573,0.490488142,-0.060882282,0.292717516,0.563405871,-0.06273064,0.303031355,0.611199439,-0.054936513,0.226916656,0.584504843,-0.040235247,0.20996213,0.511098266,-0.057086531,0.203977227,0.465901911,-0.05956902,0.19603239,0.411671102,-0.05849405 +Left,0.266131073,0.793168187,-4.50E-08,0.305553883,0.740676045,-0.00610007,0.336007386,0.662785709,-0.014169097,0.34499532,0.602801085,-0.025950497,0.320855886,0.578231633,-0.037794966,0.300771862,0.531892896,-0.005841828,0.318183392,0.439890802,-0.019974982,0.331313074,0.390217781,-0.025070546,0.340298831,0.343286991,-0.027512118,0.273880005,0.537948847,-0.017159451,0.297799081,0.460066736,-0.048874497,0.316212893,0.539779902,-0.057965815,0.318561047,0.593363762,-0.054725684,0.249850795,0.558376014,-0.029570963,0.271019548,0.495419621,-0.061607841,0.296334743,0.5716874,-0.061707381,0.304882824,0.620328665,-0.05188892,0.227459878,0.589438856,-0.042110089,0.216129169,0.513479412,-0.059070576,0.215146303,0.467924982,-0.060340699,0.211360127,0.415144622,-0.058038011 +Left,0.267626703,0.749443412,-3.26E-09,0.308346927,0.687918901,0.000517629,0.331835687,0.614676178,-0.003557123,0.343313187,0.564244509,-0.012121171,0.331267476,0.541535378,-0.021218309,0.287438929,0.492596567,0.000585271,0.297423542,0.401146293,-0.012684004,0.311633289,0.352768779,-0.019494131,0.320563257,0.310003966,-0.023807898,0.267465264,0.503558278,-0.011769094,0.287476927,0.426332653,-0.038931213,0.315476924,0.484517753,-0.048383132,0.323020428,0.532971084,-0.048731357,0.25033766,0.528392851,-0.025167935,0.270935565,0.456105649,-0.052576944,0.30054754,0.512921333,-0.053097464,0.311488569,0.557314157,-0.046371643,0.234237283,0.563847244,-0.038498521,0.230139017,0.487353027,-0.056995332,0.237270683,0.438559085,-0.061960891,0.240586087,0.390510798,-0.063177794 +Left,0.258117676,0.724450052,-1.11E-07,0.304814547,0.646588206,0.010767001,0.323429376,0.575464189,0.010068412,0.336257935,0.535485864,0.003761307,0.335256279,0.507446826,-0.002986869,0.245889783,0.457678735,0.003294148,0.274996847,0.37858963,-0.008300621,0.287866801,0.324780822,-0.014336239,0.296520889,0.280581713,-0.019707659,0.229861215,0.472366959,-0.013842431,0.287906259,0.411862075,-0.039844584,0.31452921,0.472314864,-0.045349136,0.319758385,0.515398562,-0.044156019,0.227706447,0.504579723,-0.031175721,0.283382356,0.440580577,-0.059757497,0.310250282,0.501075685,-0.056733124,0.315621614,0.5416677,-0.048533466,0.235393375,0.543709695,-0.047577925,0.249384746,0.466795862,-0.073885813,0.258850098,0.420446336,-0.081503488,0.265230864,0.375855982,-0.083630502 +Left,0.25248149,0.67808938,1.02E-08,0.299321741,0.586571872,0.004322145,0.309287727,0.504217446,-0.000333306,0.320570707,0.444273293,-0.009720963,0.327748328,0.393939227,-0.018935673,0.218583375,0.42937246,-0.002130299,0.249960944,0.332155466,-0.011509421,0.263318121,0.277033061,-0.018671019,0.26993838,0.228136212,-0.025360832,0.215947241,0.445369482,-0.014915769,0.290224522,0.370646417,-0.037907727,0.308581471,0.431870103,-0.043059945,0.304325014,0.473773658,-0.042095345,0.229976952,0.471235454,-0.027245998,0.301678538,0.401367486,-0.049668621,0.312978536,0.463260829,-0.042804897,0.304330468,0.505688608,-0.032637294,0.254415691,0.50329113,-0.039468966,0.289857358,0.426194847,-0.052995,0.307246894,0.383258402,-0.04955836,0.318470657,0.34362632,-0.044465583 +Left,0.258816302,0.668718219,7.57E-08,0.238361374,0.572437227,0.012831122,0.234759748,0.472268254,0.010106979,0.259064734,0.411003351,0.002785129,0.293470442,0.387548298,-0.005280043,0.218571991,0.433463335,-0.009450587,0.240794539,0.319972157,-0.017949054,0.253902584,0.260710001,-0.019608315,0.261829734,0.210663766,-0.021523537,0.239427358,0.4486247,-0.024015479,0.294841856,0.345069766,-0.039808162,0.309212655,0.38784188,-0.038713273,0.304442704,0.422958374,-0.034500707,0.269440353,0.471379489,-0.036571048,0.319153935,0.382795274,-0.050825883,0.328849316,0.425045341,-0.043072574,0.322848231,0.458853334,-0.033911984,0.303065032,0.498912632,-0.047905128,0.334038138,0.410695136,-0.055781733,0.356015801,0.369578719,-0.052504286,0.372783184,0.333420336,-0.04829964 +Left,0.278245151,0.67961061,8.88E-08,0.251800686,0.588773847,0.006042929,0.247862175,0.479598045,0.001331867,0.270876259,0.40354237,-0.005437477,0.303413242,0.370131195,-0.012088951,0.232865006,0.452825755,-0.019790221,0.253122091,0.338194847,-0.030137621,0.265467376,0.280153155,-0.030838171,0.274159372,0.23001489,-0.031593822,0.261543334,0.472037464,-0.029867847,0.311988264,0.364022583,-0.049689244,0.321405411,0.410823852,-0.047770955,0.313911766,0.451299131,-0.041695509,0.296217084,0.496794045,-0.038054317,0.33975181,0.404958457,-0.056456301,0.34571448,0.447275966,-0.04887465,0.338281095,0.484028518,-0.038356975,0.330984592,0.522881031,-0.045074493,0.36440286,0.437006474,-0.056708194,0.388951063,0.398269266,-0.056000896,0.407349706,0.364809752,-0.052706867 +Left,0.298789769,0.728535652,2.94E-08,0.264072806,0.644733191,0.004962306,0.259422481,0.545583904,0.002730342,0.27873081,0.467508912,0.001257354,0.303984851,0.430237144,0.000188886,0.255745202,0.521579564,-0.027959596,0.263460875,0.393542975,-0.040717959,0.271403611,0.329137236,-0.044391111,0.278560132,0.274197251,-0.047541033,0.294914901,0.528971791,-0.033182885,0.319304675,0.408083797,-0.050354708,0.323134333,0.446099281,-0.045233957,0.318816125,0.483681798,-0.038195152,0.331350148,0.544544876,-0.036252014,0.353200108,0.43550688,-0.048953656,0.353452176,0.467757583,-0.037149888,0.348417908,0.504879951,-0.026054146,0.360429317,0.561993897,-0.038458027,0.390432715,0.475456178,-0.053201851,0.410172999,0.430546701,-0.056388181,0.425691962,0.38940537,-0.056103751 +Left,0.323291004,0.729393601,4.38E-09,0.285039335,0.651355088,0.005585485,0.280043215,0.559360504,0.004023415,0.29736656,0.487730861,0.003306729,0.323146343,0.455534995,0.002747531,0.276918977,0.5335567,-0.026770992,0.277909368,0.411356986,-0.041850384,0.281180143,0.345906675,-0.048812311,0.285482228,0.288776636,-0.053829439,0.314775944,0.534064531,-0.031131778,0.331885159,0.414920598,-0.046470311,0.336283326,0.449788898,-0.041452058,0.333841622,0.484544635,-0.034868304,0.35047242,0.544003606,-0.033428017,0.365973711,0.434468001,-0.043062579,0.365108818,0.463851511,-0.030259425,0.361201525,0.4995628,-0.018835856,0.378662854,0.557699203,-0.035112448,0.403753817,0.46738407,-0.047484331,0.41983071,0.4218449,-0.049211569,0.433321923,0.382044017,-0.047732931 +Left,0.338378847,0.700410247,-2.06E-08,0.303844988,0.623341262,0.004090129,0.299418956,0.53111881,0.003282709,0.316903383,0.458026618,0.00337687,0.3392739,0.425017774,0.003717493,0.298778474,0.509420931,-0.024234617,0.302241117,0.390359551,-0.036638923,0.3059434,0.327139288,-0.040395185,0.310593903,0.272981554,-0.043176897,0.335473359,0.510591567,-0.027889958,0.351143003,0.39585495,-0.042203855,0.353684634,0.433043212,-0.035850558,0.35130614,0.469910473,-0.027926274,0.369716793,0.521519542,-0.029910339,0.384674132,0.418149561,-0.040315676,0.383435786,0.448367536,-0.028320845,0.37969628,0.48399666,-0.017036533,0.397237986,0.535000682,-0.031358548,0.421844095,0.451792955,-0.04407344,0.436654329,0.408925235,-0.04668403,0.44894585,0.371792257,-0.045976013 +Left,0.323284328,0.692568183,8.41E-08,0.298731744,0.61500895,0.01238421,0.289089352,0.523845434,0.011558743,0.298801541,0.455825955,0.008279983,0.317916036,0.425288886,0.005088885,0.27980575,0.487094313,-0.013800193,0.301593155,0.380708098,-0.021139033,0.315068066,0.326926589,-0.021623973,0.324598312,0.281717122,-0.022342738,0.305216759,0.500175834,-0.024097763,0.35073936,0.401279241,-0.034874097,0.362918586,0.43664667,-0.03054806,0.359139234,0.466888964,-0.025618758,0.337245584,0.516742527,-0.031938858,0.379390299,0.427039295,-0.041073255,0.387023956,0.458321422,-0.032374486,0.382689208,0.48894909,-0.024398834,0.369205356,0.535821736,-0.038336363,0.404998451,0.460368931,-0.045253091,0.428152829,0.425043315,-0.04428979,0.444645286,0.393789232,-0.042149004 +Left,0.292058706,0.702032983,1.03E-07,0.27485314,0.615085244,0.014065068,0.27224189,0.524832249,0.012312083,0.290585369,0.461109668,0.006688073,0.311758548,0.424648255,-4.35E-05,0.254667878,0.488464087,-0.013161532,0.285517573,0.382973254,-0.020967271,0.301618963,0.329225689,-0.021766866,0.311755657,0.28263104,-0.023261486,0.271608382,0.502859771,-0.026966199,0.326498151,0.411785662,-0.039548069,0.341867208,0.449875295,-0.036368035,0.339192867,0.478887439,-0.032724179,0.297441185,0.526098073,-0.038379133,0.349321544,0.44833377,-0.050315946,0.358654976,0.485628873,-0.041979495,0.352857232,0.515357196,-0.034406774,0.326913208,0.554471612,-0.048374441,0.36207217,0.475379616,-0.057414938,0.386117041,0.436715722,-0.055609092,0.404284,0.402652085,-0.053000595 +Left,0.283568114,0.70460701,-7.84E-09,0.329462022,0.622396529,0.003876524,0.346348554,0.564908743,-0.003632762,0.361158937,0.529188037,-0.016161121,0.364880413,0.506832242,-0.028936693,0.269752771,0.455439955,-0.002240902,0.312450588,0.382074237,-0.01351094,0.332108796,0.343528003,-0.022563903,0.345658571,0.307466805,-0.03070529,0.256616652,0.472439438,-0.016498465,0.329706103,0.431699753,-0.040942568,0.345195413,0.494565338,-0.049508005,0.344754368,0.533451974,-0.051113874,0.257580996,0.502907217,-0.030601496,0.330786794,0.462276906,-0.053873375,0.342232794,0.526085317,-0.050676189,0.337613881,0.564318538,-0.043191731,0.269079924,0.540157855,-0.044801194,0.299935579,0.484694451,-0.061850663,0.318156958,0.453154922,-0.062362142,0.334844738,0.418620467,-0.059581861 +Left,0.281244755,0.67721945,-8.36E-08,0.326104462,0.619418502,0.008178483,0.347701252,0.562425017,0.006469365,0.363885581,0.527961731,-0.000497971,0.364809334,0.509433448,-0.008307334,0.283261716,0.442236483,0.00506688,0.32125634,0.382205844,-0.003962497,0.341901898,0.345609188,-0.00960033,0.356934518,0.312110364,-0.014729257,0.264672428,0.450743288,-0.008800129,0.331038743,0.429396868,-0.029498437,0.342876345,0.494133532,-0.033984326,0.33796078,0.529104173,-0.033042423,0.258958369,0.47483322,-0.022758434,0.324590415,0.449884683,-0.045842484,0.335551053,0.515183985,-0.042314377,0.330718428,0.551355124,-0.034412969,0.262971044,0.50816977,-0.036209822,0.292150408,0.458744168,-0.057048503,0.311256677,0.432584226,-0.060655706,0.327881157,0.402967453,-0.059481353 +Left,0.27285403,0.654678702,6.42E-08,0.312336415,0.621815801,-0.002481219,0.343665272,0.569009542,-0.00734742,0.358390212,0.528298795,-0.015550504,0.343122542,0.504223406,-0.024713825,0.322438359,0.46097371,-0.001972991,0.34483543,0.390130371,-0.014763386,0.367251188,0.357750773,-0.02201842,0.383873075,0.328459084,-0.026201699,0.301077217,0.458972275,-0.011430723,0.32744512,0.397335023,-0.035288636,0.340329528,0.458292842,-0.043114547,0.338316351,0.504879773,-0.042130925,0.279964119,0.470489502,-0.021986637,0.307657003,0.422094464,-0.045667458,0.322020382,0.484174907,-0.04480226,0.323622733,0.526316822,-0.037409067,0.257608831,0.492905378,-0.032747686,0.268117219,0.43997246,-0.048513196,0.284673303,0.415197253,-0.050815921,0.297831714,0.388702393,-0.049739625 +Left,0.236259103,0.683443725,-1.21E-08,0.275836796,0.654703856,-0.008610475,0.30866617,0.612387419,-0.018198086,0.308297455,0.570795,-0.029031768,0.286886036,0.54435122,-0.040606573,0.30428344,0.495550573,-0.01580427,0.332910091,0.437467545,-0.032420989,0.356614053,0.407687545,-0.043259781,0.376294941,0.380361259,-0.050298024,0.275658607,0.484406024,-0.022841295,0.299078524,0.442306906,-0.049224,0.302060574,0.506724954,-0.060420286,0.29553023,0.55412209,-0.062764145,0.246244967,0.492416382,-0.030418929,0.265188545,0.459558517,-0.056300424,0.271614403,0.525140345,-0.059485223,0.268666565,0.569768429,-0.056103446,0.217953622,0.515540242,-0.038058184,0.204213992,0.464559555,-0.055488113,0.201358318,0.439453185,-0.059561063,0.198667049,0.410237134,-0.060290348 +Left,0.2307906,0.689215302,-1.41E-08,0.263489366,0.67014426,-0.021310696,0.294911325,0.631408393,-0.037038017,0.280472368,0.585185707,-0.051609721,0.254559666,0.556570411,-0.0654874,0.302753091,0.494419575,-0.025409415,0.32201314,0.447826833,-0.045921981,0.337426394,0.416000783,-0.058888052,0.351361454,0.386312068,-0.067925662,0.26554811,0.475261122,-0.028039841,0.274192035,0.451351166,-0.059974648,0.271561712,0.531610966,-0.071983561,0.269925505,0.573229432,-0.073554352,0.229270503,0.483791888,-0.032237075,0.231142968,0.459622383,-0.066711098,0.237403646,0.542411983,-0.069678351,0.24103114,0.590574503,-0.063888319,0.194660634,0.510858893,-0.037018731,0.176619619,0.469227999,-0.060951285,0.159114659,0.450963706,-0.063928641,0.142601728,0.416001797,-0.061968621 +Left,0.237710252,0.69200176,4.79E-08,0.273946166,0.673012257,-0.027874826,0.301459104,0.622832894,-0.047835268,0.277678519,0.570807755,-0.065319732,0.242418543,0.544679224,-0.081780456,0.312138885,0.493225604,-0.034892049,0.326992929,0.435946375,-0.060516085,0.341105312,0.394699246,-0.076746158,0.354737222,0.355990469,-0.088873215,0.271159261,0.468206078,-0.034827769,0.277604103,0.416285396,-0.068847962,0.271591693,0.504709423,-0.076721922,0.271164268,0.546239734,-0.07521861,0.230009675,0.470176697,-0.03753306,0.229324237,0.419732779,-0.073207028,0.231767982,0.511097252,-0.070541464,0.234709695,0.566577494,-0.061043646,0.190228656,0.493104517,-0.041863926,0.167752057,0.439139515,-0.069697239,0.143976718,0.419463933,-0.073414266,0.122531556,0.385009766,-0.071891397 +Left,0.26102674,0.709021509,-1.30E-07,0.309669524,0.695207596,-0.028475264,0.353017479,0.627375126,-0.043821223,0.347992539,0.55285573,-0.056710724,0.34550631,0.510685205,-0.068862163,0.346292347,0.499674976,-0.035604071,0.365586191,0.467404068,-0.065300837,0.391154826,0.454304188,-0.083146282,0.41829586,0.437338352,-0.094931684,0.302635878,0.473068953,-0.03471997,0.307575524,0.475621849,-0.072495095,0.304759383,0.573756635,-0.080510065,0.303905576,0.616903007,-0.079381302,0.256882459,0.481282711,-0.037394717,0.2515288,0.486660719,-0.083119117,0.257643342,0.592565358,-0.082038879,0.261322051,0.648937225,-0.072171561,0.212689281,0.509956062,-0.040918577,0.181838542,0.479784012,-0.078727163,0.155375868,0.486764967,-0.084246181,0.128670812,0.465474963,-0.082252763 +Left,0.284025282,0.728594184,7.67E-08,0.327098668,0.724695206,-0.022814609,0.369401634,0.716176391,-0.046205424,0.367410541,0.701973975,-0.070889786,0.354094654,0.689494669,-0.096486233,0.385314524,0.530366659,-0.032676354,0.42429629,0.513678551,-0.06612473,0.459491253,0.513369918,-0.08996255,0.490850985,0.50746423,-0.105857231,0.344798356,0.500357687,-0.039424062,0.372642398,0.524296761,-0.081835367,0.36404112,0.620192111,-0.097734973,0.351249605,0.659876764,-0.10153868,0.301071316,0.503774226,-0.048826877,0.321018487,0.522789359,-0.094507478,0.315663278,0.625807285,-0.095689915,0.303894997,0.666807055,-0.086628407,0.258646786,0.531042576,-0.059100043,0.262347549,0.514737546,-0.094863221,0.2484501,0.552338183,-0.096145846,0.224661469,0.555772007,-0.089913025 +Left,0.335054517,0.721281707,1.08E-07,0.375024945,0.721827984,-0.023322688,0.422107458,0.715899944,-0.048065737,0.435606658,0.685929,-0.074332312,0.411913335,0.653634191,-0.099954076,0.465052605,0.552853346,-0.026574269,0.504889965,0.529962003,-0.056785878,0.538897514,0.529354692,-0.074318454,0.568425953,0.53101635,-0.084997915,0.43011716,0.509025991,-0.033463784,0.46224755,0.510068417,-0.072484329,0.440442979,0.611148715,-0.081787795,0.42672801,0.643550992,-0.079794198,0.38973102,0.497204393,-0.043506384,0.413954616,0.497015864,-0.085058846,0.398990512,0.596155524,-0.081911169,0.384015888,0.631858647,-0.070289917,0.345957279,0.508287847,-0.054957222,0.35027653,0.487427622,-0.084857807,0.34174788,0.506129444,-0.084301896,0.327518672,0.494221449,-0.077875562 +Left,0.346102536,0.695237517,5.51E-09,0.389459103,0.689500809,-0.015228232,0.435326308,0.665516734,-0.030362792,0.437217891,0.621646285,-0.046558622,0.41829887,0.582912624,-0.062807873,0.459360242,0.506054819,-0.018515958,0.494551301,0.47785762,-0.041923817,0.525787592,0.472667158,-0.057578593,0.553260684,0.471967787,-0.06750562,0.427266985,0.472495049,-0.026153753,0.45812133,0.473330349,-0.061008185,0.444747597,0.564254165,-0.074477546,0.428900838,0.616237521,-0.076294944,0.388023287,0.469670564,-0.035523795,0.413772494,0.461227477,-0.072225824,0.402957767,0.551867485,-0.074853219,0.389739573,0.599422991,-0.068114147,0.346286297,0.48882851,-0.045159042,0.342682779,0.446536511,-0.071546525,0.339173287,0.441941082,-0.074432403,0.335009366,0.423077881,-0.071530722 +Left,0.333421052,0.662370205,7.81E-08,0.37759313,0.626022696,-0.009673485,0.414702266,0.581891537,-0.024138896,0.42748642,0.541655064,-0.040672142,0.406932533,0.507353663,-0.058398958,0.393972218,0.43249312,-0.019564467,0.431729615,0.377327621,-0.039406162,0.462425143,0.359088272,-0.051776025,0.489690721,0.345601976,-0.05895859,0.366233617,0.42979458,-0.0287803,0.408463478,0.404266864,-0.057504408,0.411315143,0.482801616,-0.067139551,0.403404176,0.535426497,-0.067663439,0.338725328,0.44958663,-0.038957328,0.375983685,0.429335237,-0.067043103,0.382307291,0.506721616,-0.066545144,0.379080534,0.553771734,-0.059737328,0.312144011,0.485871017,-0.049615819,0.311891556,0.433012784,-0.067104153,0.323104054,0.413200855,-0.068459474,0.335354775,0.391132712,-0.066815816 +Left,0.294953078,0.661275744,2.65E-07,0.347643524,0.590968847,-0.005073246,0.373796731,0.538152456,-0.022545885,0.392150074,0.501900077,-0.04414684,0.386266589,0.487634212,-0.065611802,0.293194413,0.402455479,-0.016031478,0.339167625,0.343452871,-0.037072126,0.371505916,0.303061366,-0.052508231,0.399575472,0.275150061,-0.06356138,0.276550144,0.4210051,-0.028895373,0.352446914,0.383756042,-0.053267445,0.368245095,0.446681499,-0.057187911,0.363048613,0.477400988,-0.057198238,0.274317086,0.457728773,-0.043234359,0.350143611,0.431342661,-0.066183865,0.359155864,0.490063637,-0.058042798,0.346608639,0.522615254,-0.049018696,0.283809662,0.507610917,-0.058976427,0.333371222,0.463173538,-0.073690809,0.351363063,0.456808388,-0.06885197,0.356509745,0.447620302,-0.063228354 +Left,0.260244966,0.692859888,2.16E-07,0.24683547,0.593733728,0.006635585,0.253119737,0.484089404,-0.002178407,0.281812251,0.406883568,-0.012701397,0.309473068,0.360207438,-0.023611251,0.234531015,0.444570661,-0.032654043,0.27814588,0.33666867,-0.046607971,0.305695474,0.285269678,-0.05067613,0.327560246,0.243380323,-0.054133952,0.251150668,0.474104404,-0.044705611,0.326131135,0.387782216,-0.061780322,0.341821611,0.437528819,-0.056812957,0.338318437,0.469924003,-0.052034285,0.27783072,0.515386045,-0.054390341,0.347647786,0.43955934,-0.068264812,0.356223345,0.482502878,-0.056489184,0.349129647,0.514337063,-0.047177285,0.307070702,0.561537445,-0.063343689,0.362334162,0.496777326,-0.073571563,0.395224452,0.466297746,-0.070949391,0.41940999,0.435557246,-0.067957014 +Left,0.300779402,0.773454785,7.43E-08,0.275761098,0.687280774,0.003570583,0.273147106,0.588036239,-0.001018046,0.286331952,0.511061966,-0.005125757,0.304460019,0.471425116,-0.008546989,0.272081077,0.567801118,-0.030569319,0.290650845,0.445389509,-0.04543031,0.306936562,0.383493304,-0.052226428,0.319467187,0.333354294,-0.057759199,0.305659384,0.588841438,-0.035973977,0.347626418,0.47583583,-0.055205137,0.353684872,0.509245932,-0.053175084,0.346396536,0.54268533,-0.04905032,0.339784086,0.613544285,-0.039009061,0.377687305,0.507312119,-0.052381616,0.379231006,0.533382952,-0.041664768,0.372003257,0.567895889,-0.032160774,0.368029892,0.639185548,-0.041452914,0.407370776,0.567071557,-0.05665284,0.429965556,0.527362049,-0.059914138,0.447390139,0.491150916,-0.059759367 +Left,0.315769285,0.801521897,-6.01E-08,0.292298794,0.710348368,0.012782753,0.298857599,0.633624911,0.017094066,0.32087177,0.58088398,0.020153506,0.345100135,0.564082384,0.023313226,0.302389592,0.590149641,-0.004659172,0.325071096,0.495367557,-0.008187157,0.340210587,0.447235882,-0.006491691,0.352410018,0.411695898,-0.005217232,0.335701644,0.604785502,-0.010777386,0.36391446,0.51407522,-0.016134832,0.365139067,0.542638302,-0.010132407,0.358570457,0.573177755,-0.003567568,0.36712271,0.628667414,-0.014768217,0.391324192,0.543641508,-0.018858392,0.389039218,0.568049967,-0.010089369,0.381333113,0.59632355,-0.002253792,0.391459972,0.656826615,-0.017250115,0.420027643,0.597002208,-0.023766562,0.439889908,0.569381475,-0.024579715,0.454569101,0.54568094,-0.023002474 +Left,0.303453803,0.867591083,4.95E-08,0.28105092,0.775690496,0.00579888,0.29055506,0.68701601,0.005359627,0.318463087,0.624901354,0.004878259,0.347176522,0.606465578,0.004936362,0.291619152,0.661099255,-0.017791858,0.321025282,0.557292223,-0.02675005,0.340253025,0.505308449,-0.027766708,0.356233776,0.465489566,-0.027882418,0.326560676,0.680619001,-0.022941789,0.3627294,0.574425817,-0.036738526,0.362356871,0.596598446,-0.034030221,0.352733761,0.629987419,-0.027595678,0.359861851,0.706070602,-0.025978569,0.389819741,0.607258558,-0.036072347,0.387990326,0.624063373,-0.029285541,0.37918362,0.65158844,-0.020758675,0.385455638,0.73331815,-0.027934039,0.420879364,0.66586256,-0.036035981,0.443595469,0.633653164,-0.037007056,0.460270464,0.607586741,-0.035014167 +Left,0.30118376,0.824081242,-3.24E-08,0.280626476,0.731701732,0.016247133,0.289388627,0.65552932,0.022897413,0.313389212,0.604841888,0.028566265,0.339242309,0.590829968,0.034190908,0.292278737,0.621034324,-0.004039336,0.320289254,0.530156374,-0.005866361,0.337576091,0.487475336,-0.003629624,0.35247317,0.454438359,-0.002329558,0.32444036,0.637429059,-0.009937047,0.356850356,0.551421046,-0.011518516,0.357587755,0.580798209,-0.003527516,0.351102382,0.610019028,0.003456819,0.354372203,0.662569523,-0.013158598,0.382598907,0.583242834,-0.013538034,0.379743159,0.60552752,-0.0033887,0.371653408,0.631368518,0.004524617,0.37776494,0.690813839,-0.014537157,0.411821246,0.632481992,-0.019449335,0.433762342,0.606297731,-0.0199007,0.449680716,0.583499551,-0.01828035 +Left,0.309796423,0.830611229,-4.73E-09,0.294051409,0.739791572,0.013872582,0.304332376,0.66546011,0.018112702,0.329789728,0.619098544,0.020591244,0.355431944,0.610246658,0.023001436,0.307070911,0.633210003,-0.003979624,0.33796677,0.545756757,-0.006281534,0.357609242,0.505548954,-0.003227299,0.372792929,0.47642383,-0.000891684,0.335422516,0.652283669,-0.010694914,0.373052418,0.571800411,-0.01554292,0.37411809,0.601812541,-0.00940725,0.365928084,0.628350437,-0.002538563,0.363585919,0.678325057,-0.015007332,0.396933436,0.60089612,-0.01902071,0.395388544,0.626563132,-0.010641373,0.386682063,0.652442575,-0.002759513,0.385524809,0.707730412,-0.017638352,0.419591606,0.657435298,-0.023491094,0.442257017,0.633441985,-0.024098873,0.458749622,0.611355007,-0.022234347 +Left,0.302381217,0.854428172,1.49E-07,0.285309702,0.76487577,0.006586001,0.295984298,0.68218261,0.003925886,0.324770868,0.630757451,0.000574966,0.354092717,0.617459118,-0.002301917,0.293904364,0.658080101,-0.019975476,0.330952376,0.561948121,-0.030520627,0.355389923,0.517333567,-0.033760391,0.375003278,0.481716633,-0.035640221,0.322664142,0.681706905,-0.02609846,0.366451144,0.591745913,-0.038407624,0.371721864,0.617224634,-0.036210474,0.365510136,0.64389348,-0.032220881,0.352296829,0.709681034,-0.030001663,0.392191142,0.623566568,-0.038494848,0.39512077,0.645697415,-0.030705985,0.389215797,0.672397435,-0.023046592,0.37720412,0.73761934,-0.033012714,0.417767793,0.680321395,-0.039691858,0.442975134,0.652707815,-0.039720658,0.462208033,0.627671838,-0.037893675 +Left,0.31289804,0.780488968,1.89E-07,0.352490097,0.738698423,-0.006151838,0.375602007,0.700340033,-0.01711116,0.389339805,0.670961976,-0.030484162,0.394012809,0.64744395,-0.043837667,0.345221162,0.567204237,-0.010997279,0.370731086,0.522382736,-0.02788109,0.395136416,0.504513144,-0.040877473,0.417593658,0.490752399,-0.049398124,0.324124694,0.571412027,-0.018252514,0.36438784,0.549150646,-0.036904834,0.38149479,0.590898454,-0.044280123,0.388298601,0.625065804,-0.046921659,0.308418602,0.596363068,-0.026708137,0.349421412,0.589730203,-0.0440511,0.368207723,0.624786198,-0.044371113,0.377281219,0.655724704,-0.041358896,0.297926247,0.636786819,-0.03613722,0.332109094,0.629526854,-0.047655974,0.357435793,0.639191687,-0.047807921,0.376229644,0.648915172,-0.045592517 +Left,0.31425941,0.743344545,1.72E-08,0.34655717,0.732805967,-0.014883106,0.379857242,0.704877377,-0.027394269,0.383719027,0.662271321,-0.040713072,0.365796208,0.621961176,-0.053997755,0.392798483,0.589525104,-0.015326319,0.416116327,0.544936538,-0.032275055,0.432929665,0.519796193,-0.041936722,0.447892725,0.497766733,-0.047532279,0.3661502,0.569757938,-0.019529648,0.385757685,0.532807887,-0.045345962,0.381289989,0.595966578,-0.054181632,0.37576434,0.633375347,-0.05347551,0.338397592,0.569728315,-0.025136527,0.354235262,0.544690251,-0.052706819,0.352479905,0.610861719,-0.052632898,0.347683758,0.649011075,-0.044938255,0.308907181,0.584226191,-0.031326409,0.305852234,0.540982366,-0.048755392,0.306946814,0.531101942,-0.04824473,0.308537334,0.514496326,-0.043837808 +Left,0.314293981,0.692249537,1.21E-07,0.352211773,0.681232691,-0.015104574,0.379481226,0.637561142,-0.023451833,0.369952261,0.582841456,-0.0310352,0.350924671,0.547130108,-0.038316056,0.394473642,0.548132896,-0.016082034,0.420201749,0.498019636,-0.029560488,0.436114073,0.463593006,-0.03958137,0.448164165,0.429642558,-0.047062039,0.370606065,0.520504236,-0.017454755,0.388440788,0.465697914,-0.038929783,0.388208568,0.499652147,-0.050419938,0.382476836,0.531819642,-0.054084294,0.343141854,0.510085583,-0.019718342,0.349576086,0.452054113,-0.040191472,0.348839283,0.500030696,-0.044439662,0.344953448,0.54304117,-0.042800922,0.314370543,0.516735017,-0.022922283,0.303373158,0.462015301,-0.037217468,0.295757651,0.429838359,-0.041942272,0.288430661,0.396400928,-0.043343432 +Left,0.271980107,0.694214582,-2.67E-08,0.313322037,0.674424589,-0.023144573,0.34215045,0.618309855,-0.032914348,0.319091082,0.555646598,-0.040300898,0.289923966,0.526511371,-0.046923537,0.363324344,0.506992221,-0.017354345,0.385412395,0.441779047,-0.03130427,0.397519916,0.390214175,-0.041918918,0.405723006,0.347034037,-0.050473295,0.330897599,0.476603061,-0.015577463,0.33684212,0.431812525,-0.041929606,0.319819838,0.487406909,-0.053604811,0.308364213,0.533231735,-0.054892514,0.296688139,0.469693482,-0.015905397,0.293627083,0.419836402,-0.041922323,0.284001261,0.466161817,-0.048176862,0.278948963,0.507784486,-0.045802355,0.262706101,0.480151534,-0.017480312,0.243032008,0.419695497,-0.036908261,0.223630846,0.388129056,-0.04287596,0.209773809,0.358536661,-0.043315958 +Left,0.244185522,0.787373841,-2.62E-08,0.286159843,0.767024815,-0.030610757,0.309191346,0.710705161,-0.048682846,0.2877253,0.641149819,-0.063653499,0.261829019,0.589584112,-0.076559566,0.339020878,0.57340461,-0.031288255,0.36121285,0.503765464,-0.054320879,0.372500181,0.445435524,-0.069988675,0.380730182,0.395795703,-0.081904784,0.301600784,0.539578497,-0.029198231,0.301466852,0.48721689,-0.063727543,0.291056454,0.562765896,-0.075789474,0.288889259,0.612953067,-0.076836675,0.261562407,0.535553515,-0.029865282,0.254112989,0.478095829,-0.064086102,0.253712386,0.549617887,-0.066879757,0.257328749,0.60325104,-0.061558735,0.223777354,0.553098381,-0.032539368,0.199758336,0.490930259,-0.058948636,0.178581268,0.457733393,-0.065020144,0.161416456,0.421412706,-0.064915359 +Left,0.25146547,0.856697559,-4.23E-08,0.289320469,0.859611034,-0.037066128,0.309031904,0.820778608,-0.060257461,0.276255101,0.756745815,-0.07862854,0.242547899,0.70667392,-0.094618358,0.357008368,0.671085,-0.042725943,0.382056177,0.615830183,-0.069723934,0.389342904,0.554956794,-0.086570695,0.393682182,0.50296092,-0.099651754,0.320547432,0.620148242,-0.03728696,0.306867152,0.586754084,-0.072338894,0.285979688,0.67939353,-0.080621421,0.2880328,0.731976509,-0.079107873,0.27788946,0.60274452,-0.035545014,0.256805092,0.566891968,-0.072725929,0.247586176,0.644035876,-0.073473021,0.252155185,0.691782475,-0.066152252,0.236122683,0.609369218,-0.035957433,0.205789059,0.544718623,-0.066818029,0.177866101,0.519821584,-0.072534502,0.158200383,0.492241889,-0.070709854 +Left,0.27234,0.803399861,-6.80E-08,0.316772193,0.831131458,-0.034746554,0.353177428,0.796944201,-0.051139429,0.348793626,0.719156742,-0.062122919,0.33487004,0.661695302,-0.071946464,0.407187015,0.695806146,-0.034974024,0.43287766,0.641699433,-0.06137675,0.44893083,0.582012594,-0.0794966,0.459249079,0.531026006,-0.092777103,0.380605996,0.623319268,-0.027968438,0.377400517,0.568457603,-0.063633278,0.335925609,0.637435973,-0.071026154,0.320520192,0.691616297,-0.066840395,0.345313877,0.577025592,-0.024623834,0.339345515,0.519304931,-0.061088569,0.305667192,0.582127154,-0.057858706,0.292703748,0.631397903,-0.045948915,0.30801186,0.55932641,-0.023625161,0.292517453,0.499371648,-0.056249004,0.266358018,0.508215129,-0.058576755,0.250328898,0.514526546,-0.05166864 +Left,0.332406819,0.696289659,-7.92E-09,0.366544187,0.737180889,-0.036813799,0.403009653,0.707254469,-0.052525658,0.406060576,0.625375271,-0.062028348,0.404498994,0.559056699,-0.07081148,0.441053659,0.649935186,-0.039415345,0.464459121,0.598925114,-0.068484314,0.475415856,0.537166417,-0.084064476,0.484813571,0.485951304,-0.093424037,0.420568347,0.574399114,-0.032352015,0.416455507,0.504840732,-0.071981847,0.372100472,0.561511576,-0.077984579,0.359313786,0.621752083,-0.07060764,0.395337522,0.517358899,-0.029094066,0.382610828,0.465644628,-0.070910774,0.346091062,0.527892292,-0.062958658,0.341571003,0.58248812,-0.044804148,0.369384259,0.482297927,-0.027878648,0.362050116,0.43781966,-0.057657238,0.336652637,0.486947209,-0.049463347,0.331531972,0.533757269,-0.03390222 +Left,0.34208104,0.619480133,1.64E-09,0.360294044,0.680256724,-0.044392351,0.380510449,0.680177271,-0.066692092,0.352561057,0.592010498,-0.081091255,0.328616083,0.526920319,-0.093675666,0.444964737,0.603099883,-0.049910925,0.456434846,0.547365248,-0.081429899,0.458660007,0.482023239,-0.101446226,0.461791992,0.425050259,-0.115065567,0.430011451,0.516489983,-0.041001726,0.401056707,0.458156854,-0.07857427,0.358991325,0.514470041,-0.088414811,0.350235641,0.572845817,-0.087289467,0.405700684,0.452351868,-0.036610439,0.376927435,0.403030813,-0.077098362,0.342092454,0.472219348,-0.074748695,0.338622868,0.529288828,-0.063302837,0.379255235,0.415617704,-0.035250455,0.356793076,0.372564852,-0.068236284,0.329085678,0.404480457,-0.066483714,0.317689002,0.431835234,-0.0565929 +Left,0.340812117,0.632541418,-5.17E-08,0.371577412,0.681900382,-0.042926107,0.39979738,0.666168988,-0.061835647,0.371406704,0.576517761,-0.071094297,0.340040296,0.514017045,-0.078904673,0.438208282,0.594078541,-0.055346005,0.444324136,0.534915566,-0.086639933,0.441792876,0.471046954,-0.106743172,0.444273591,0.415793419,-0.120116137,0.415562451,0.514738858,-0.045714285,0.387155533,0.460195065,-0.080791101,0.347931981,0.514373124,-0.089243598,0.341607243,0.570589721,-0.087684713,0.390494049,0.454217136,-0.039803173,0.359237552,0.416370749,-0.07695096,0.328245223,0.488124222,-0.073974669,0.329832286,0.546911538,-0.063026041,0.367440015,0.420821488,-0.03673292,0.342609167,0.397061884,-0.064465947,0.317849785,0.452698767,-0.059256613,0.312217653,0.500102043,-0.048096985 +Left,0.339880556,0.619374275,2.85E-08,0.367150486,0.651334643,-0.036221836,0.389552832,0.637040377,-0.057264272,0.380291879,0.574579477,-0.072196111,0.376033574,0.522863448,-0.085314788,0.430240214,0.586998522,-0.05128327,0.443777949,0.526383579,-0.086816393,0.444422126,0.475353569,-0.108223595,0.445737243,0.42908448,-0.121880323,0.403283596,0.527337134,-0.047462024,0.390305579,0.464665473,-0.086906381,0.356532931,0.531893134,-0.09388449,0.353335142,0.583517671,-0.090256348,0.372759491,0.486843795,-0.047386326,0.35312736,0.450134575,-0.084999636,0.330952346,0.525518298,-0.075550944,0.339422077,0.573717535,-0.060497615,0.342522621,0.470051289,-0.049967095,0.325626791,0.451991618,-0.076758929,0.316086829,0.510912001,-0.06831076,0.324897528,0.552694261,-0.05543533 +Left,0.337414652,0.608139932,3.32E-07,0.35990867,0.60709846,-0.02290331,0.376624763,0.570975184,-0.035175931,0.377473891,0.522823572,-0.045373537,0.37805891,0.479643911,-0.055207931,0.393087745,0.513027132,-0.029378027,0.411622912,0.453550965,-0.050566833,0.423096091,0.405649662,-0.063804112,0.429958582,0.364706159,-0.071642794,0.371935874,0.492758304,-0.029872559,0.391773522,0.434410989,-0.049261019,0.400853962,0.404599488,-0.056779511,0.407959998,0.381021857,-0.059348866,0.347212344,0.490400225,-0.032835428,0.349514484,0.468579561,-0.056359626,0.345825702,0.509380996,-0.054147452,0.346371204,0.542116463,-0.046575911,0.321263075,0.499619067,-0.037735101,0.321423084,0.485036641,-0.054278784,0.320318997,0.510864913,-0.049749266,0.320882887,0.531391978,-0.042555574 +Left,0.29679966,0.624344349,1.62E-07,0.324564278,0.627972245,-0.027491428,0.340294302,0.603617907,-0.04630056,0.317310244,0.559321165,-0.060409728,0.298107803,0.524570167,-0.074064679,0.355125517,0.506594658,-0.046609413,0.376991987,0.430085868,-0.070865989,0.386308193,0.37355575,-0.085883483,0.393260717,0.325794429,-0.097213216,0.326148272,0.48132959,-0.043194715,0.320106566,0.42801699,-0.072103627,0.309178293,0.477902204,-0.079379223,0.311985105,0.513589978,-0.079865225,0.295430332,0.476549536,-0.041547135,0.2812576,0.421990901,-0.067235701,0.271038234,0.449239403,-0.06565053,0.272527635,0.464693189,-0.060330279,0.266334772,0.487775087,-0.041421682,0.242034927,0.443087161,-0.062050574,0.227645606,0.432945758,-0.063414857,0.223317623,0.418613493,-0.060589045 +Left,0.24474436,0.764043093,3.54E-08,0.291892648,0.715632081,-0.014878293,0.326360047,0.642784655,-0.025102003,0.317057133,0.57190007,-0.03562123,0.287428737,0.530374706,-0.045799125,0.314604551,0.523498952,-0.015576117,0.338313639,0.437687546,-0.032585382,0.354796082,0.388230979,-0.043971356,0.369690537,0.34010458,-0.052346114,0.278318673,0.51030618,-0.020686606,0.290404022,0.427456558,-0.051602423,0.303271055,0.494000018,-0.066771947,0.306265593,0.554746091,-0.070327535,0.243637383,0.517351806,-0.026567416,0.246186256,0.435789526,-0.054123703,0.266203582,0.504669487,-0.058395877,0.27633357,0.564949989,-0.05496357,0.210703373,0.542413592,-0.033247869,0.192951635,0.474942774,-0.049961239,0.18705143,0.435326129,-0.054986805,0.179807246,0.390373409,-0.056612551 +Left,0.231878579,0.78268224,5.20E-08,0.275880873,0.734543145,-0.014289184,0.310961664,0.663532615,-0.02442144,0.303566724,0.598873317,-0.035785109,0.273898274,0.560212076,-0.046817884,0.297367036,0.537026942,-0.010718157,0.320948303,0.454507619,-0.027747488,0.336948097,0.40922749,-0.038645178,0.352583289,0.366134882,-0.046334166,0.261422276,0.527552247,-0.017026594,0.274051994,0.449877828,-0.050550625,0.287874639,0.518826544,-0.066957273,0.294521511,0.581471324,-0.070019983,0.227088466,0.538703203,-0.024489114,0.231892914,0.464270949,-0.054770619,0.253340513,0.536538839,-0.060229726,0.2672185,0.597468197,-0.056335442,0.194322303,0.568871558,-0.032667156,0.178094417,0.510958076,-0.050864976,0.173625767,0.477294058,-0.056623306,0.169929221,0.4380292,-0.058085915 +Left,0.245712429,0.780642927,1.01E-08,0.288088024,0.732643783,-0.007023457,0.321457565,0.663069546,-0.014895717,0.324132204,0.603792667,-0.0248833,0.296030343,0.573379636,-0.035492811,0.303438187,0.537223816,-0.008650444,0.329736859,0.462673724,-0.024990331,0.34890908,0.422980368,-0.035605874,0.364868104,0.383592159,-0.042945348,0.270197481,0.531616569,-0.017760711,0.288759053,0.455606848,-0.046591464,0.301846385,0.528040767,-0.059112146,0.302418798,0.58475405,-0.061080627,0.238098577,0.546095669,-0.027488662,0.251837194,0.479303151,-0.054425057,0.271995127,0.551319242,-0.056472305,0.279821008,0.603447735,-0.051487114,0.207098737,0.578493655,-0.03741388,0.194795534,0.517763317,-0.054120768,0.197752297,0.487008005,-0.057668354,0.200718671,0.44840616,-0.058168922 +Left,0.258742779,0.761825562,6.60E-08,0.302213967,0.731275916,-0.017332152,0.338322282,0.675740719,-0.028704591,0.334848821,0.608293116,-0.040000666,0.310064703,0.559205055,-0.050580274,0.341344357,0.552287519,-0.014954744,0.36837697,0.479547799,-0.03219102,0.386274904,0.437721729,-0.044768542,0.402249992,0.398247331,-0.053728148,0.307287186,0.529547095,-0.018099003,0.324157536,0.456330866,-0.047598161,0.330678523,0.514817178,-0.062834591,0.329201251,0.570322514,-0.066718906,0.273580998,0.527490854,-0.022486143,0.281094402,0.451198369,-0.047646564,0.293002248,0.513893485,-0.051318914,0.297740221,0.571591854,-0.048007272,0.240594715,0.545239508,-0.028184285,0.231290951,0.486200809,-0.043919671,0.228356823,0.454712898,-0.048296388,0.224057645,0.420377791,-0.0491165 +Left,0.266298354,0.766216934,9.98E-08,0.312891752,0.739532411,-0.017840324,0.347794473,0.68050313,-0.027440524,0.340753973,0.608163595,-0.036118388,0.318571389,0.558154285,-0.043856651,0.355839729,0.567522585,-0.013456284,0.385230541,0.499734581,-0.027796369,0.402822167,0.456463665,-0.038346622,0.418078721,0.417057157,-0.046670608,0.323604554,0.539308071,-0.015669398,0.344636142,0.463587701,-0.042640701,0.346430659,0.513901174,-0.057515983,0.341460049,0.568761289,-0.061427191,0.289791197,0.53229177,-0.019173514,0.296567589,0.458696276,-0.042279735,0.305469304,0.500842392,-0.049415879,0.307961732,0.547777832,-0.049174596,0.254646897,0.544500828,-0.023888908,0.245188415,0.480718136,-0.039072338,0.242577165,0.447049499,-0.045494977,0.23878333,0.41767475,-0.048167843 +Left,0.269287646,0.780082405,4.26E-08,0.315281719,0.754659295,-0.021170339,0.348221511,0.694658697,-0.030748971,0.335823536,0.619029284,-0.038923852,0.314386159,0.567233622,-0.04564124,0.366209179,0.582361817,-0.011983777,0.39644751,0.516871452,-0.025326265,0.410845518,0.475387216,-0.035606597,0.425485075,0.435148925,-0.044588987,0.333961755,0.549540162,-0.012810088,0.358683169,0.474118352,-0.040279083,0.347967654,0.528330803,-0.054799952,0.33708638,0.581174493,-0.058006074,0.299088001,0.539018333,-0.015519635,0.311161906,0.457726687,-0.039944008,0.30975154,0.504014134,-0.046986897,0.305838287,0.55412519,-0.046149194,0.262919962,0.549307227,-0.01982333,0.252734661,0.484956682,-0.037088331,0.243522942,0.446782231,-0.044712152,0.234981462,0.413746864,-0.047814619 +Left,0.261629581,0.787683427,-4.42E-09,0.306228727,0.767043948,-0.025133956,0.335605592,0.706725955,-0.035635728,0.318862885,0.631860614,-0.043564606,0.297373265,0.579850376,-0.049760211,0.359758258,0.598021328,-0.017224502,0.386746973,0.533418775,-0.033211064,0.398014903,0.487125099,-0.044930529,0.410121381,0.443377912,-0.05492688,0.328526735,0.560647666,-0.016198194,0.348954618,0.483907908,-0.045959324,0.330299675,0.535266578,-0.059547413,0.316454083,0.587560117,-0.061418496,0.293151736,0.548097968,-0.017761342,0.301604271,0.464369416,-0.044197105,0.291693211,0.499754518,-0.051941764,0.283429146,0.539951622,-0.051134806,0.256870657,0.557653427,-0.021274289,0.24387677,0.493429065,-0.04146776,0.22924003,0.45511958,-0.05091859,0.216500998,0.422676593,-0.054663837 +Left,0.249528676,0.789670765,-1.15E-08,0.295306295,0.764409542,-0.026610719,0.321733385,0.702657938,-0.039032336,0.301424086,0.625695586,-0.048654225,0.276678979,0.577426493,-0.056245927,0.3484357,0.591338277,-0.018374821,0.369431555,0.530033529,-0.034843735,0.378461123,0.483739972,-0.046644717,0.38723138,0.441724062,-0.056554951,0.315165073,0.555907547,-0.01662647,0.327555716,0.491217405,-0.045610659,0.3105492,0.554165125,-0.057925027,0.301671147,0.603650033,-0.05944702,0.278084576,0.546222687,-0.017638501,0.283296466,0.468979061,-0.045883849,0.275347263,0.519111574,-0.051684,0.270886004,0.566121578,-0.049108554,0.239676222,0.558498263,-0.020567514,0.225489795,0.49361971,-0.043020017,0.210489661,0.453407645,-0.051803842,0.198045909,0.417758048,-0.054423448 +Left,0.238514513,0.809696674,2.33E-09,0.285159469,0.771635175,-0.021580169,0.311905533,0.702232301,-0.030441854,0.291445941,0.62327981,-0.03725462,0.265897423,0.578324795,-0.042676821,0.327283293,0.607393265,-0.012895145,0.350371271,0.534934878,-0.027123395,0.359361082,0.480690062,-0.0386758,0.36662671,0.430709869,-0.048490226,0.294653147,0.573923528,-0.012555275,0.31356883,0.486416906,-0.039080624,0.301527351,0.535559535,-0.052221447,0.288562775,0.58816582,-0.054087892,0.259208769,0.563559115,-0.014198257,0.266082495,0.471211493,-0.038142126,0.260427296,0.512363017,-0.044352051,0.253466815,0.561304212,-0.042253926,0.222116277,0.573843241,-0.017421423,0.20299688,0.499731541,-0.035299081,0.188113898,0.456027985,-0.043079205,0.175277352,0.420656979,-0.045536458 +Left,0.233196631,0.811706662,2.71E-09,0.277946889,0.767629623,-0.022784684,0.302339315,0.692576885,-0.032890037,0.275567263,0.616459966,-0.040807016,0.246665105,0.57360965,-0.047541603,0.310527503,0.588539064,-0.013802448,0.327611804,0.521407723,-0.028709184,0.333478391,0.469206452,-0.040848989,0.337600946,0.424335957,-0.05053531,0.273165017,0.564558148,-0.013186467,0.280867934,0.481607854,-0.040359784,0.273759633,0.52744931,-0.054847114,0.267157495,0.581936896,-0.057971917,0.23625277,0.56492275,-0.014649455,0.234408841,0.480734587,-0.039540928,0.233865947,0.518418431,-0.046363384,0.233153701,0.566444218,-0.044862051,0.200136483,0.586898863,-0.017724782,0.180060565,0.51759541,-0.035463158,0.165753424,0.476630628,-0.042531498,0.154361501,0.443675816,-0.044646956 +Left,0.233859792,0.798004746,8.15E-08,0.271344244,0.743393898,-0.017923221,0.296365887,0.65743655,-0.026817832,0.272818357,0.58622694,-0.034664348,0.237940297,0.554772139,-0.041226733,0.280338347,0.556288838,-0.010515204,0.291284561,0.478242129,-0.021942385,0.29575026,0.430092931,-0.031221438,0.299030483,0.385711193,-0.039123069,0.243242264,0.549090981,-0.012220204,0.243548125,0.461286217,-0.036696024,0.256615281,0.502361953,-0.051007219,0.265047342,0.554631412,-0.054937057,0.208998188,0.559663415,-0.015134284,0.20130904,0.47380805,-0.036652017,0.220401138,0.516156077,-0.042432986,0.234794214,0.565855384,-0.041365735,0.178272814,0.587584019,-0.019410629,0.15469414,0.525278091,-0.033004746,0.1421749,0.484588206,-0.038982868,0.131282315,0.446794808,-0.041828554 +Left,0.232762069,0.786016405,7.99E-08,0.272787124,0.731435239,-0.014948907,0.297752649,0.648458004,-0.023161622,0.282136112,0.575581074,-0.031804848,0.24986288,0.541342795,-0.039813831,0.275301665,0.543685734,-0.005399562,0.288190335,0.465215653,-0.015730927,0.297243804,0.418385088,-0.02326378,0.303861648,0.376728952,-0.02945628,0.240836471,0.536689758,-0.008709203,0.242581278,0.453961253,-0.03296607,0.26173979,0.500921428,-0.046060421,0.271984637,0.552624464,-0.048617397,0.2093658,0.547041416,-0.013304945,0.204396769,0.463408113,-0.034690689,0.230089709,0.512761772,-0.038809642,0.245908678,0.564481795,-0.036221828,0.179591849,0.574890018,-0.01913544,0.159528404,0.514935076,-0.032695998,0.15330413,0.476062268,-0.038466536,0.146416694,0.437814415,-0.040954322 +Left,0.222839624,0.778269172,9.32E-08,0.265069246,0.723080754,-0.01176547,0.295799822,0.650418937,-0.021733163,0.291271925,0.579295039,-0.033517625,0.260546565,0.539379001,-0.045303266,0.273784965,0.535685182,-0.00510867,0.293819368,0.459658861,-0.017848469,0.307148874,0.413664788,-0.026086776,0.317599654,0.37269792,-0.032356866,0.241233349,0.527458727,-0.011519047,0.25029853,0.44324252,-0.037880808,0.268327028,0.500983477,-0.050324176,0.276040643,0.553906381,-0.052021042,0.210553393,0.537256658,-0.019124055,0.215267271,0.453695476,-0.043903869,0.239861026,0.517000914,-0.046370625,0.252384782,0.573952794,-0.041710209,0.180469841,0.566434622,-0.027538929,0.167287678,0.506004035,-0.043932393,0.165594727,0.46852535,-0.049365472,0.161708474,0.428998232,-0.051042914 +Left,0.216911346,0.770202994,9.34E-08,0.257962823,0.717511535,-0.008212219,0.28618902,0.643059671,-0.018279856,0.290316284,0.581712604,-0.031173248,0.262037784,0.551270366,-0.044714939,0.256923795,0.521571815,-0.00745539,0.278428257,0.446228832,-0.023931097,0.298146456,0.403201699,-0.032930814,0.313216925,0.368274987,-0.038313534,0.226955384,0.523131609,-0.016789554,0.244133189,0.434592128,-0.045093875,0.262582839,0.499538004,-0.05400648,0.267024189,0.553239107,-0.052323859,0.199097857,0.542024553,-0.027509613,0.214115918,0.467348903,-0.055554226,0.23661907,0.538009703,-0.054318603,0.244562745,0.591014802,-0.045803111,0.172393337,0.578205347,-0.038780969,0.166782677,0.522953391,-0.057445318,0.173383787,0.491513819,-0.060663041,0.176796898,0.453011304,-0.060058009 +Left,0.215953618,0.768474877,6.96E-08,0.258375376,0.722942054,-0.008824694,0.292037964,0.654764891,-0.018105203,0.296175301,0.591335118,-0.029873088,0.267159462,0.555315912,-0.042012509,0.270231307,0.531425714,-0.004266473,0.292655498,0.461333901,-0.01847326,0.310264826,0.419772804,-0.026329478,0.324741364,0.384781897,-0.031441018,0.239290401,0.525073528,-0.01253516,0.257777214,0.439082175,-0.039992627,0.271741569,0.50884366,-0.049900766,0.273722827,0.565536201,-0.048628695,0.209867328,0.536550224,-0.022025226,0.224957973,0.464715987,-0.049385648,0.244388774,0.540368319,-0.049223222,0.250479102,0.594998479,-0.041361295,0.180646136,0.566288412,-0.031937599,0.174675405,0.513344467,-0.049575355,0.178607389,0.484739453,-0.05272517,0.179531634,0.4464463,-0.052127711 +Left,0.228438705,0.754274964,4.25E-08,0.270827979,0.712518096,-0.010338264,0.305455953,0.650374651,-0.019493021,0.306084424,0.586507857,-0.030187959,0.279157937,0.546108007,-0.041066777,0.291186869,0.529501915,-0.007671448,0.314081609,0.461964548,-0.022754479,0.331242979,0.423771977,-0.032047436,0.346695662,0.388650119,-0.038588043,0.258974731,0.517722607,-0.01469991,0.275779128,0.438555688,-0.043850251,0.288592488,0.507646501,-0.056604501,0.290439337,0.56670773,-0.057870444,0.227683961,0.52525872,-0.022724377,0.239606336,0.456718385,-0.050319396,0.259201676,0.52796793,-0.053024165,0.266454309,0.582262218,-0.04787444,0.196651608,0.551541984,-0.031155661,0.187562466,0.496635377,-0.049582817,0.190044999,0.465894222,-0.054952208,0.190257728,0.426310539,-0.056186691 +Left,0.240404338,0.752596021,7.77E-08,0.284786075,0.720627606,-0.016121874,0.321539819,0.664803088,-0.026667809,0.317201018,0.594319224,-0.037276413,0.294436276,0.544023573,-0.047257092,0.320444703,0.552394152,-0.011250813,0.344227642,0.482794344,-0.025454652,0.359914899,0.441462964,-0.03549052,0.374296904,0.40376246,-0.043113347,0.288466513,0.530272603,-0.014986839,0.30650413,0.450420797,-0.042053431,0.313540161,0.503534853,-0.056404103,0.311844766,0.557902277,-0.05979012,0.257194579,0.527145624,-0.01994051,0.26665926,0.445080251,-0.043668102,0.280100524,0.501965165,-0.047848191,0.285126865,0.557746947,-0.045031618,0.225155592,0.541665792,-0.026058674,0.216302708,0.477705002,-0.041401144,0.215772718,0.442119241,-0.046791673,0.213915244,0.405576646,-0.048605278 +Left,0.238692552,0.75785017,1.06E-07,0.284110576,0.726071119,-0.017882567,0.320421576,0.663375199,-0.027311144,0.313203007,0.586079061,-0.036060881,0.289004534,0.535522282,-0.043825001,0.323807657,0.564066231,-0.008820345,0.34928149,0.494089246,-0.020420486,0.363224179,0.45051527,-0.02946822,0.376576573,0.411198854,-0.03711303,0.293595165,0.539194167,-0.010729041,0.313895226,0.454101205,-0.035360634,0.315529406,0.492784917,-0.050191846,0.310905665,0.543587506,-0.0542803,0.261978954,0.531956613,-0.014078586,0.270512193,0.448095769,-0.035679072,0.276389122,0.482984781,-0.042944934,0.27642715,0.52798295,-0.042798173,0.229032502,0.542226911,-0.018732289,0.218534246,0.474411249,-0.032519773,0.214815214,0.433229655,-0.039145175,0.210740834,0.397287548,-0.042343497 +Left,0.232423753,0.779213071,1.89E-08,0.276832551,0.738491297,-0.019180879,0.302947611,0.669818878,-0.027569573,0.285981089,0.591439903,-0.034311067,0.263402909,0.544453502,-0.039763778,0.314170957,0.576983094,-0.011583804,0.336505949,0.503374815,-0.024670035,0.346277028,0.452622592,-0.036275774,0.354801893,0.406242996,-0.046285793,0.283142626,0.54922986,-0.012068597,0.30100286,0.462742805,-0.035310563,0.293310076,0.498729914,-0.048135296,0.283929795,0.543825865,-0.051491253,0.250315547,0.542393863,-0.014368752,0.256884515,0.452129424,-0.033831056,0.25473088,0.476305872,-0.039628964,0.249978706,0.514112413,-0.039346531,0.215942711,0.555586517,-0.01834967,0.198157921,0.48303014,-0.033028889,0.186892003,0.438514233,-0.03997751,0.177361518,0.403327346,-0.043050237 +Left,0.210330412,0.80801636,-1.83E-08,0.25698483,0.766783595,-0.023357337,0.282391191,0.699119031,-0.034311201,0.257696807,0.621568739,-0.043120757,0.23183018,0.572949409,-0.050347961,0.292360604,0.603263676,-0.015618166,0.313266665,0.533276796,-0.030053843,0.31941089,0.4851107,-0.041640561,0.325671762,0.439501286,-0.051942542,0.259209692,0.575240791,-0.014622341,0.275436789,0.49250567,-0.041786674,0.263601273,0.536253572,-0.05592199,0.252885938,0.585672975,-0.059618466,0.224656239,0.568419278,-0.015761441,0.228386641,0.475072801,-0.039548066,0.225129992,0.513629854,-0.046892274,0.221767962,0.563063741,-0.046934508,0.189964682,0.582456529,-0.018684058,0.170651034,0.516915262,-0.037039474,0.155813664,0.47527656,-0.046947751,0.144393578,0.440657973,-0.051873613 +Left,0.209096447,0.818295121,-4.33E-08,0.253255278,0.785209298,-0.025671359,0.275960356,0.721134484,-0.036377139,0.253685474,0.641565084,-0.044320546,0.233621731,0.587023914,-0.050235931,0.303218246,0.610866666,-0.012794114,0.321456552,0.551505685,-0.026180902,0.325738102,0.504710793,-0.03658431,0.330668062,0.463044405,-0.04575412,0.268981755,0.580835819,-0.011218854,0.283954948,0.505094886,-0.038837288,0.265449375,0.556618512,-0.052918732,0.252457708,0.607046366,-0.055355258,0.232484922,0.575014651,-0.012457905,0.236773446,0.491149992,-0.03797916,0.227597237,0.525892019,-0.047154989,0.220483854,0.566445112,-0.04730963,0.195730835,0.59192878,-0.015499434,0.179553449,0.522954345,-0.03450758,0.164870173,0.482617706,-0.044086955,0.153724313,0.44885534,-0.048037257 +Left,0.213784888,0.805267394,-4.47E-08,0.259512126,0.768222809,-0.022382798,0.28049773,0.705560982,-0.03258789,0.258508772,0.63084048,-0.041185636,0.237711489,0.580166519,-0.048484474,0.303639382,0.607554913,-0.011674803,0.323342711,0.545333564,-0.025375338,0.328253984,0.498502314,-0.036532197,0.333853632,0.454087794,-0.046761382,0.270439148,0.576722682,-0.011833573,0.286121249,0.493859351,-0.03991412,0.269327551,0.544776976,-0.054946315,0.2574552,0.595197022,-0.058537703,0.234809861,0.569240332,-0.01432708,0.240968004,0.479720116,-0.039981309,0.232894138,0.518286586,-0.049131494,0.226194918,0.563480377,-0.049511541,0.199185729,0.584568441,-0.018399194,0.183407053,0.516628623,-0.038110245,0.168752864,0.476320922,-0.048584677,0.157009035,0.44214353,-0.053479783 +Left,0.221158937,0.793539524,-2.29E-08,0.263969868,0.753044069,-0.022161849,0.287323594,0.683923542,-0.032894894,0.261632711,0.610433877,-0.041057929,0.235536888,0.566493869,-0.047814973,0.300503999,0.581763446,-0.016997738,0.314467132,0.517697096,-0.031334233,0.318238378,0.469732553,-0.042898089,0.32065931,0.425812662,-0.053059984,0.264900923,0.556903481,-0.016293151,0.273267895,0.486875772,-0.041101221,0.265292645,0.536546886,-0.053514764,0.258131981,0.584735692,-0.056735866,0.229092315,0.556444645,-0.017617611,0.229523227,0.475557148,-0.041311312,0.228569224,0.513362825,-0.04788899,0.227379456,0.555404305,-0.047592651,0.194148421,0.578682005,-0.020375943,0.173811421,0.516043901,-0.0399202,0.157940447,0.477584541,-0.048656005,0.145139188,0.442820311,-0.05232653 +Left,0.222682759,0.789284468,-3.82E-09,0.265209436,0.747840047,-0.023718402,0.287540048,0.673915625,-0.034243044,0.261145145,0.599875569,-0.041655555,0.233629987,0.557130158,-0.047294647,0.293068051,0.574613869,-0.017031018,0.308666527,0.506687045,-0.030272348,0.312259763,0.460143209,-0.040726859,0.314949691,0.416988075,-0.050149318,0.257647276,0.553594112,-0.015840784,0.266711712,0.475141853,-0.041577585,0.261055887,0.518518567,-0.054889504,0.254574627,0.567050219,-0.05809563,0.223043159,0.554700732,-0.016822061,0.221610382,0.46978119,-0.039966989,0.224732563,0.493446469,-0.048101857,0.225913972,0.526153147,-0.049102847,0.190324605,0.57677108,-0.019430989,0.166841984,0.515303671,-0.037516642,0.15103893,0.476785153,-0.046653051,0.138056099,0.443100721,-0.051189598 +Left,0.23165381,0.786073744,1.66E-08,0.272987127,0.739796996,-0.020461844,0.294820756,0.658583105,-0.029403836,0.267111897,0.588170648,-0.036192056,0.235638812,0.553443968,-0.041309632,0.294194192,0.5578444,-0.013355272,0.307480633,0.486017793,-0.02531649,0.312687993,0.440757304,-0.035301141,0.316989183,0.398331434,-0.04456614,0.257440686,0.543306231,-0.013514564,0.261282533,0.466763705,-0.037714146,0.264183193,0.516786695,-0.051505644,0.264789969,0.568533301,-0.055906132,0.222737506,0.550350904,-0.015331795,0.216243058,0.464080751,-0.037654072,0.223694056,0.5042243,-0.044315085,0.22911638,0.549918175,-0.044462122,0.191040531,0.577849746,-0.0186071,0.166894406,0.516880095,-0.03542212,0.152620673,0.478483111,-0.043556124,0.140996665,0.444095433,-0.047733411 +Left,0.232655197,0.782412946,2.19E-08,0.269704193,0.736376524,-0.018963203,0.294896603,0.658155799,-0.029188693,0.27124989,0.590826929,-0.038104877,0.239441946,0.554169774,-0.045810014,0.288295299,0.540454507,-0.012273054,0.299753577,0.471757054,-0.024895394,0.306120008,0.429531455,-0.034416363,0.311194003,0.389978468,-0.042642206,0.250025809,0.529937029,-0.014257402,0.252807498,0.453992724,-0.039857764,0.262102395,0.517667294,-0.05326492,0.266672075,0.575421095,-0.056490183,0.214821219,0.54253608,-0.017603938,0.209453121,0.466067106,-0.0415546,0.225095794,0.524429321,-0.045694612,0.235242903,0.576610148,-0.043298494,0.182698578,0.575750828,-0.022210931,0.160772547,0.521328092,-0.038963709,0.148749232,0.487842917,-0.044760659,0.137151241,0.451133996,-0.046950508 +Left,0.227465451,0.78079766,7.56E-08,0.265734196,0.730869591,-0.014515856,0.294726789,0.656972408,-0.02515465,0.283956498,0.590904057,-0.036356963,0.253053129,0.554184139,-0.047064308,0.276049227,0.53327632,-0.009033225,0.292860627,0.459785044,-0.021973293,0.305050045,0.41633001,-0.03095868,0.314825565,0.376232535,-0.038132567,0.240808576,0.525833011,-0.014060406,0.247774512,0.449999452,-0.040150091,0.26592344,0.510991812,-0.053300634,0.273328811,0.564222991,-0.05614195,0.208753422,0.539197862,-0.020207623,0.209749416,0.463668406,-0.044494338,0.23386693,0.528588593,-0.047297928,0.246022344,0.581884325,-0.043660201,0.178934216,0.573394954,-0.027296159,0.16094774,0.519843161,-0.043433048,0.156742543,0.489884049,-0.048154853,0.150226176,0.452639848,-0.049564004 +Left,0.216525435,0.789063871,9.02E-08,0.258836836,0.732044756,-0.011506309,0.290502071,0.657160759,-0.020889301,0.281994283,0.588914931,-0.032025456,0.251335442,0.551257551,-0.043064475,0.265751064,0.541336954,-0.003580672,0.283934832,0.468484461,-0.01620212,0.297602147,0.424453944,-0.024590138,0.308826268,0.38503769,-0.030908942,0.23262766,0.535012543,-0.009983682,0.242779717,0.451796949,-0.036397398,0.260549843,0.512698591,-0.049382616,0.267660379,0.56822902,-0.051353432,0.201886162,0.546156108,-0.01761819,0.206337452,0.465498269,-0.042927977,0.230568513,0.532901466,-0.045557238,0.242742792,0.590682328,-0.040796816,0.171783358,0.577282131,-0.025928099,0.158056885,0.519523978,-0.042010661,0.156299695,0.486534953,-0.046636935,0.15216729,0.448833913,-0.047755077 +Left,0.233348802,0.768739104,1.08E-07,0.269887596,0.70990473,-0.008998534,0.292494953,0.632084429,-0.018237561,0.292919576,0.573584735,-0.030326277,0.266984701,0.550136924,-0.043058515,0.252660483,0.527620435,-0.005635019,0.267273366,0.453699946,-0.023854773,0.286848217,0.409029067,-0.034713812,0.301272362,0.372155249,-0.04032544,0.225700393,0.535362661,-0.013989599,0.236458629,0.44698602,-0.044270728,0.259666741,0.504630506,-0.054580908,0.266290963,0.55808109,-0.052783649,0.201303244,0.558386683,-0.024128104,0.214591101,0.48962611,-0.054015785,0.239016399,0.552868903,-0.053063057,0.245751217,0.601721406,-0.042967383,0.178358912,0.596264601,-0.034917466,0.177664652,0.530188918,-0.052784421,0.184627503,0.495355368,-0.053816833,0.184341937,0.459771335,-0.050669122 +Left,0.253053218,0.783608735,1.61E-07,0.28692618,0.718466997,-0.007491997,0.306440353,0.637041926,-0.018409578,0.310661376,0.576387405,-0.032824859,0.28659147,0.556626201,-0.047692526,0.249649525,0.53317827,-0.00528205,0.262244076,0.457420975,-0.023355074,0.283487499,0.41139394,-0.033880513,0.300258994,0.377173364,-0.0390414,0.224960983,0.547143757,-0.014170484,0.244157404,0.461299121,-0.04050206,0.274777859,0.515311599,-0.047401216,0.284462661,0.561961591,-0.04444702,0.206111938,0.574526131,-0.024894733,0.229851842,0.504180849,-0.05108308,0.259372503,0.562986314,-0.046665709,0.267504901,0.609267533,-0.035247352,0.191875011,0.617895246,-0.036463138,0.198548511,0.554064691,-0.052426197,0.214306414,0.522819996,-0.051190123,0.222869053,0.493999243,-0.046178054 +Left,0.224730045,0.775934219,4.43E-07,0.207802981,0.677211642,0.000200263,0.199076951,0.577885747,-0.01350266,0.21044299,0.499426842,-0.029438712,0.22973989,0.456977814,-0.045428351,0.159022808,0.562230647,-0.030229555,0.189534619,0.447425097,-0.049412433,0.214659706,0.383941948,-0.059133597,0.236530825,0.336129069,-0.065877013,0.173716694,0.590227127,-0.042493429,0.22980614,0.466480494,-0.066947155,0.264892697,0.49033314,-0.069304965,0.280652732,0.522151172,-0.067091063,0.201967359,0.619820535,-0.053509593,0.254779309,0.511230111,-0.072630465,0.282898158,0.526587546,-0.068246327,0.294856638,0.551467299,-0.061967414,0.237024307,0.651236236,-0.064566568,0.288197428,0.580206096,-0.077664286,0.317740262,0.538369358,-0.07873445,0.33879891,0.506277978,-0.07711982 +Left,0.234034136,0.802771151,4.51E-07,0.203148663,0.71177423,-0.002062395,0.192336082,0.605207026,-0.017566515,0.20847708,0.517338216,-0.034314293,0.234483629,0.472514391,-0.050628923,0.160108805,0.599463522,-0.036772758,0.185239092,0.476522863,-0.057621378,0.208188415,0.406301111,-0.067436785,0.227849901,0.352339864,-0.074419633,0.18061024,0.624035597,-0.048440803,0.228828803,0.487740546,-0.075129263,0.264185011,0.508512676,-0.077347524,0.280678302,0.540920973,-0.075224429,0.213986441,0.64785558,-0.058962528,0.260805488,0.522563159,-0.080503248,0.289699554,0.53267324,-0.076816872,0.30386281,0.556824386,-0.070964955,0.25333038,0.671729803,-0.069534019,0.301966995,0.58868736,-0.084921613,0.330673158,0.542523086,-0.088384055,0.351204783,0.506309927,-0.088840492 +Left,0.241313979,0.836627007,4.50E-07,0.205495387,0.750075996,-0.003333348,0.19067055,0.645388305,-0.019245774,0.205613256,0.556070924,-0.035395805,0.231024504,0.507394493,-0.050362118,0.1650033,0.644913852,-0.044246253,0.182313979,0.511632264,-0.064760834,0.200033426,0.440422475,-0.072118558,0.215153098,0.386159956,-0.0770768,0.188544139,0.66383934,-0.053936958,0.229516968,0.516527474,-0.078746714,0.261281818,0.536760807,-0.076920092,0.27395767,0.567259729,-0.072391599,0.224686578,0.678991795,-0.062109675,0.268097937,0.544990063,-0.081650183,0.290439695,0.563714623,-0.072751164,0.296895653,0.595209658,-0.063673012,0.264705241,0.694631755,-0.07060536,0.311663777,0.601626039,-0.085675173,0.339126378,0.548820496,-0.087637737,0.357988358,0.506073177,-0.086737208 +Left,0.244080886,0.833089828,4.47E-07,0.204370543,0.751939714,-0.004441361,0.184976041,0.650191128,-0.021449672,0.197769865,0.559994161,-0.037937202,0.222791538,0.510343432,-0.053052865,0.164102435,0.656755149,-0.049443245,0.175428286,0.517007589,-0.069429845,0.191433623,0.445903599,-0.07554134,0.205900788,0.392825991,-0.079850473,0.193506062,0.670502722,-0.057897825,0.226937652,0.515309334,-0.08157292,0.252130032,0.537937343,-0.077742942,0.259531438,0.570102751,-0.072482526,0.23245278,0.679499626,-0.064623311,0.266812056,0.539584875,-0.08255095,0.282457411,0.561768413,-0.072296642,0.284060478,0.596839249,-0.063190527,0.272524774,0.688812077,-0.071755812,0.314242721,0.590109766,-0.086956009,0.338937938,0.534816682,-0.089638062,0.355876476,0.489037544,-0.08968433 +Left,0.245996013,0.834209085,4.26E-07,0.205425858,0.758914173,-0.004669943,0.183325872,0.658480048,-0.020639727,0.192062497,0.566824019,-0.035647117,0.213568121,0.513962984,-0.04918756,0.165643573,0.663656473,-0.050497428,0.174676657,0.523659647,-0.071447946,0.190338328,0.452079952,-0.077900328,0.204651341,0.398439288,-0.082121171,0.196180522,0.675357938,-0.058398902,0.227052376,0.516379654,-0.083815224,0.249497294,0.539919436,-0.080322698,0.255491525,0.575810611,-0.074674241,0.235370815,0.682582557,-0.064638987,0.267631233,0.53810364,-0.084702343,0.28162539,0.559732616,-0.075531237,0.283046544,0.595623195,-0.066519119,0.274744689,0.690369129,-0.071075059,0.315193772,0.590784907,-0.088689417,0.339963168,0.53585124,-0.092995748,0.357852817,0.489909768,-0.093692325 +Left,0.2624681,0.804944873,3.90E-07,0.221748218,0.732998252,-0.004954498,0.200566694,0.633143604,-0.018406274,0.208598644,0.541992784,-0.030187963,0.228444219,0.489448488,-0.040507406,0.188236862,0.642114878,-0.046014681,0.196497008,0.505360782,-0.064522877,0.211370826,0.432340324,-0.0712924,0.223778412,0.374523997,-0.076422662,0.222933054,0.648646891,-0.052513231,0.251382589,0.495934188,-0.077375688,0.268558145,0.517136753,-0.077757731,0.270944059,0.553012371,-0.075072877,0.263013721,0.654197454,-0.057120882,0.293377817,0.516130805,-0.076608256,0.302561939,0.530071139,-0.071997687,0.301160336,0.560802162,-0.066152543,0.301450253,0.661782682,-0.061550591,0.339024335,0.559078693,-0.077741504,0.361775845,0.501646638,-0.083210304,0.37799263,0.456187308,-0.085364282 +Left,0.284846276,0.775839806,3.05E-07,0.246913105,0.708518982,-0.004581095,0.228086382,0.609807134,-0.015540275,0.235010505,0.519764364,-0.023707449,0.252094239,0.46397233,-0.030042397,0.2180112,0.617734492,-0.047481369,0.22457391,0.481544822,-0.066095904,0.239281714,0.411968291,-0.0732655,0.252222806,0.357645631,-0.078618743,0.252834529,0.622223079,-0.051011108,0.276803434,0.477040291,-0.073692322,0.294097215,0.495702207,-0.072006263,0.29846701,0.527704298,-0.068476595,0.291118145,0.626169562,-0.05248959,0.316706836,0.497711301,-0.069045559,0.325859666,0.512571812,-0.061148774,0.325800121,0.543693602,-0.053788047,0.325861424,0.631106079,-0.05386458,0.358891487,0.533485055,-0.071014851,0.379993469,0.480210483,-0.076861352,0.394859165,0.436605692,-0.07909327 +Left,0.306284964,0.772498846,2.05E-07,0.267341286,0.70648849,-0.002312427,0.251976788,0.605189145,-0.011268826,0.263458282,0.515470326,-0.017325368,0.283324331,0.468679905,-0.022245517,0.245565519,0.611431479,-0.049136676,0.25442937,0.477497935,-0.066935882,0.267018557,0.409576297,-0.071725622,0.27758649,0.356456071,-0.07487227,0.28482452,0.615600586,-0.05231094,0.303613394,0.472006381,-0.074926876,0.310551822,0.50172168,-0.069254011,0.308986306,0.541383207,-0.061566826,0.32351166,0.620516241,-0.052907728,0.341370136,0.491428256,-0.068390802,0.344920129,0.517570794,-0.055549324,0.342603475,0.556671321,-0.043743659,0.355105698,0.625675023,-0.053225007,0.382545471,0.527687669,-0.068572678,0.400617599,0.475583941,-0.071666151,0.414292812,0.429806978,-0.07165692 +Left,0.315059125,0.781746089,1.86E-07,0.275440931,0.712992907,-0.001151032,0.262012362,0.613587797,-0.008860886,0.273912191,0.526923478,-0.014176448,0.294051558,0.48492527,-0.018550921,0.258138359,0.617787778,-0.044511165,0.266563088,0.484319329,-0.061035406,0.279286236,0.418127745,-0.064975612,0.290671051,0.365698308,-0.067286909,0.296661913,0.622489691,-0.04817285,0.31583336,0.480466902,-0.070098229,0.321394354,0.508306026,-0.065161206,0.318807006,0.547729552,-0.057638008,0.334609091,0.628745735,-0.049274713,0.350932389,0.502520859,-0.064423859,0.352761805,0.527984142,-0.052542802,0.349589258,0.566076636,-0.041026641,0.365243852,0.635141075,-0.049976978,0.391135931,0.534863949,-0.064118102,0.408859551,0.480572075,-0.06666968,0.42255649,0.433714598,-0.066318765 +Left,0.252030551,0.869345844,5.94E-07,0.22006768,0.779551029,-0.00987294,0.222095251,0.669685543,-0.030661006,0.261665195,0.586435556,-0.047933836,0.305509627,0.554506958,-0.063764177,0.189483702,0.683309078,-0.066002525,0.214467824,0.553121209,-0.092573918,0.240907893,0.476385117,-0.106879339,0.26407373,0.417486519,-0.116680488,0.221849531,0.713866234,-0.073958874,0.280616105,0.568199456,-0.106884129,0.29993093,0.581165612,-0.113349788,0.300035238,0.610665619,-0.114634916,0.262274146,0.73720485,-0.079511739,0.318490058,0.606259882,-0.101579085,0.32751888,0.601282954,-0.100605048,0.321951091,0.612476885,-0.0977984,0.303107828,0.757053852,-0.085400745,0.35894984,0.657445729,-0.099148296,0.389051199,0.60509932,-0.101904042,0.409634113,0.568089664,-0.102880299 +Left,0.26990065,0.824161649,5.44E-07,0.241397738,0.73136121,-0.011744724,0.25095281,0.613099635,-0.035723459,0.299435049,0.530820727,-0.054913152,0.349316299,0.51641196,-0.073242977,0.21300602,0.638189971,-0.076966286,0.237956211,0.50645113,-0.104303323,0.263186634,0.433258832,-0.119488403,0.28344962,0.375828207,-0.13144578,0.247365177,0.667924047,-0.083572239,0.309821814,0.51834023,-0.117659442,0.316148371,0.556525469,-0.120513223,0.301380962,0.603230953,-0.119962811,0.287327677,0.693428874,-0.087194234,0.345549583,0.560379028,-0.106752858,0.34057638,0.584061146,-0.097624674,0.321323663,0.620526075,-0.090524249,0.323994577,0.71794349,-0.091791593,0.382944077,0.611353636,-0.105906546,0.412533045,0.558085561,-0.107578605,0.432453096,0.517011762,-0.108670868 +Left,0.305588394,0.79987824,3.64E-07,0.275607824,0.709908068,-0.006457624,0.280517906,0.594486117,-0.023402447,0.320243239,0.50862056,-0.035867009,0.360215932,0.500121117,-0.047425937,0.260462075,0.615246475,-0.065176196,0.283919126,0.480038851,-0.085164979,0.305885106,0.409751922,-0.093070857,0.323462069,0.353075594,-0.099803425,0.29947862,0.640224278,-0.06946715,0.350615501,0.497135103,-0.097235024,0.351316124,0.537170649,-0.094126023,0.335545093,0.581571937,-0.088338107,0.339358687,0.661820352,-0.070192069,0.383794606,0.535748065,-0.085610867,0.376532972,0.562224507,-0.072421707,0.359435886,0.599584222,-0.061345004,0.371966958,0.679657161,-0.071180806,0.420968384,0.580753446,-0.082914189,0.446125537,0.526940227,-0.083957866,0.463773131,0.481307656,-0.084004335 +Left,0.305406183,0.793119133,3.36E-07,0.277857512,0.70914948,-0.001269749,0.274490625,0.596477985,-0.015133961,0.300753653,0.510451496,-0.026404925,0.333976686,0.490588337,-0.037202619,0.260599643,0.592377126,-0.0561161,0.286995828,0.46226716,-0.076673225,0.3102898,0.395644903,-0.086280353,0.32969299,0.34200424,-0.094086759,0.295965284,0.618997455,-0.062706128,0.349648535,0.486978948,-0.088530898,0.353285909,0.533999264,-0.085369103,0.3393507,0.575999677,-0.080336243,0.334235907,0.646246552,-0.065956116,0.38168323,0.527288556,-0.082258441,0.37976557,0.561184943,-0.069280855,0.365679264,0.600015402,-0.058579244,0.367129266,0.671611726,-0.068854704,0.417525589,0.580295086,-0.082820885,0.445820957,0.53459239,-0.083965003,0.465468049,0.491862535,-0.083528139 +Left,0.300009191,0.782993317,3.41E-07,0.27627331,0.683348238,-0.00095842,0.279793084,0.574071288,-0.015337633,0.313742816,0.501151681,-0.028480906,0.349599004,0.479112446,-0.041050669,0.26186195,0.56145072,-0.050724324,0.298658103,0.439702243,-0.068398423,0.326927632,0.380708098,-0.074144036,0.349179506,0.33211273,-0.079181984,0.290026784,0.593208432,-0.059057124,0.35695228,0.476843119,-0.081785277,0.362939864,0.522144437,-0.077578261,0.349191219,0.561060011,-0.072761193,0.324862927,0.628025055,-0.064771518,0.387343705,0.523551464,-0.081453308,0.388088018,0.557660818,-0.071643256,0.37472409,0.591255963,-0.063395105,0.358530551,0.66391772,-0.070179828,0.413884759,0.59022212,-0.083900668,0.446528047,0.555189312,-0.086380124,0.47190541,0.52411145,-0.087075979 +Left,0.284357816,0.762196124,2.89E-07,0.270361036,0.654551744,0.003940195,0.280757278,0.551658928,-0.007376089,0.321699083,0.492983967,-0.020117326,0.36187759,0.480783761,-0.033026516,0.261411041,0.517416954,-0.03472247,0.31121856,0.412105441,-0.047890972,0.341919571,0.361737251,-0.052381698,0.364929914,0.319860011,-0.057087868,0.280907243,0.546537519,-0.045582552,0.357452571,0.460984498,-0.062335264,0.365147918,0.513822019,-0.05799434,0.353096813,0.547952473,-0.053877182,0.310071468,0.585474908,-0.054160468,0.380416453,0.506799817,-0.067424044,0.382952183,0.551072955,-0.057612401,0.370450646,0.584088624,-0.049874164,0.3415654,0.629797637,-0.062352553,0.399912506,0.573189676,-0.073902659,0.435043454,0.548633039,-0.074712619,0.462466389,0.524997175,-0.074089587 +Left,0.2828843,0.727851748,1.99E-07,0.313034415,0.648228347,0.009940272,0.334675461,0.5681898,0.00331899,0.369240344,0.529010773,-0.007294419,0.398838729,0.51448226,-0.018608812,0.291667938,0.476643205,-0.017886145,0.35090524,0.407396674,-0.028328048,0.385918558,0.37653321,-0.033518787,0.411870182,0.352563024,-0.038288508,0.294211119,0.497531742,-0.031173399,0.377455592,0.459647298,-0.045060385,0.384576738,0.516967475,-0.042475872,0.374162436,0.549468517,-0.039309867,0.30834198,0.538303256,-0.042366799,0.385909319,0.50254178,-0.054838777,0.389392793,0.556123734,-0.046874292,0.378286451,0.587297559,-0.039816815,0.327627897,0.588849306,-0.052741136,0.391846031,0.562417686,-0.063276209,0.428554237,0.553390801,-0.062497102,0.456657112,0.540907145,-0.060228024 +Left,0.296290725,0.724383414,1.59E-07,0.351753354,0.677244544,-0.002037953,0.381043077,0.638923466,-0.014983508,0.402892053,0.606716514,-0.032174982,0.40701586,0.562367022,-0.048174735,0.330766767,0.486142218,-0.007922722,0.382001221,0.445196092,-0.027080929,0.415043533,0.431821615,-0.041442242,0.443298906,0.424432039,-0.050821941,0.313635856,0.489863634,-0.019774307,0.387353003,0.483992994,-0.041427091,0.388140917,0.544647932,-0.046051636,0.378064066,0.570343733,-0.045965601,0.307791084,0.516485155,-0.032926068,0.381415814,0.522649825,-0.053440467,0.379689932,0.578380287,-0.046821307,0.366792828,0.603740394,-0.038208216,0.311271936,0.559734941,-0.047108021,0.367558777,0.550460875,-0.059947465,0.387913704,0.560017765,-0.054827135,0.399548888,0.560241997,-0.047851782 +Left,0.311505377,0.736226261,1.17E-08,0.355979234,0.710781336,-0.000729693,0.390037745,0.663315475,-0.00845354,0.409089327,0.624028146,-0.02078061,0.400591433,0.585970879,-0.033745807,0.371786296,0.52731657,0.002578284,0.407345206,0.49133426,-0.012570078,0.435019195,0.476339906,-0.022326713,0.458044887,0.464483917,-0.027569273,0.349684715,0.518804371,-0.007842347,0.396192104,0.502304733,-0.029236317,0.39276737,0.579033732,-0.033733144,0.381190568,0.612130344,-0.03061438,0.330030441,0.528138995,-0.01960093,0.376859188,0.519564867,-0.042885773,0.373625517,0.593258023,-0.036349107,0.360004216,0.626690686,-0.024760984,0.311562836,0.555047035,-0.031614508,0.344342738,0.532227576,-0.046104319,0.3622154,0.537556708,-0.04113755,0.372143537,0.529524028,-0.033224881 +Left,0.310549378,0.745182633,5.10E-08,0.35036087,0.730439067,-0.010220764,0.385989249,0.686858177,-0.019076029,0.394961476,0.638700545,-0.029748676,0.376621485,0.598607183,-0.041265421,0.384559333,0.563356459,-0.008989351,0.412938893,0.514046073,-0.025958162,0.437269419,0.49127692,-0.037128907,0.458564341,0.472104222,-0.043302041,0.357985735,0.546924472,-0.014491209,0.385790497,0.50705415,-0.039746895,0.380833745,0.577456594,-0.047378849,0.368659496,0.624779761,-0.045430951,0.32975775,0.548350632,-0.021379011,0.355078548,0.526235282,-0.047141973,0.354343206,0.594267964,-0.044662815,0.344785839,0.638103724,-0.034927841,0.298900962,0.564425468,-0.028800912,0.31133917,0.518365502,-0.04505375,0.324109316,0.53404361,-0.041191209,0.330266237,0.550451398,-0.033549897 +Left,0.275961012,0.777709901,2.29E-08,0.315172285,0.761007011,-0.016897488,0.354155481,0.716965914,-0.027897915,0.346316069,0.661675334,-0.039693352,0.324154466,0.621175468,-0.051189844,0.365577191,0.584625781,-0.010297101,0.387829542,0.538381338,-0.029560324,0.408932477,0.51004678,-0.041083276,0.427981079,0.488787889,-0.048238162,0.329650253,0.55843538,-0.014722392,0.348450512,0.507251799,-0.046069827,0.33909291,0.589150071,-0.056690503,0.331132889,0.636668742,-0.055002239,0.2924788,0.558734477,-0.021307142,0.306529284,0.523165166,-0.056644529,0.300966173,0.610831976,-0.057257514,0.293150783,0.657597184,-0.047563866,0.25436455,0.579177499,-0.028243789,0.251288235,0.538465381,-0.052955944,0.239692792,0.532752514,-0.05406972,0.224111259,0.507916987,-0.049200781 +Left,0.249625489,0.827260375,7.33E-08,0.29237479,0.808357775,-0.028151397,0.329149216,0.757963538,-0.047473095,0.317590386,0.692037165,-0.065576077,0.297343671,0.644859552,-0.081598811,0.353545845,0.624692857,-0.023275772,0.373424232,0.57588464,-0.04721228,0.392603397,0.540761411,-0.058783624,0.410909116,0.516840458,-0.06631206,0.311845541,0.586509824,-0.024585551,0.334281385,0.529074311,-0.059122644,0.319083452,0.62376827,-0.063942827,0.313437462,0.667340219,-0.057601977,0.270246744,0.578156948,-0.029738003,0.283839732,0.523775518,-0.068440095,0.274884254,0.624180377,-0.063521497,0.268082231,0.676306248,-0.050364673,0.22615473,0.595546603,-0.036688711,0.216620415,0.555479228,-0.06650123,0.198453516,0.552104235,-0.068669565,0.179714337,0.526801586,-0.064416826 +Left,0.248178512,0.865780234,7.84E-08,0.291873753,0.854876518,-0.03034848,0.321448177,0.818097591,-0.051610336,0.302817136,0.764497519,-0.071369536,0.272027582,0.719265163,-0.089723065,0.359529048,0.683819413,-0.024988331,0.380010962,0.639085233,-0.050954316,0.394554317,0.604311287,-0.064190529,0.406036824,0.582956076,-0.072266378,0.317185313,0.637481987,-0.025203196,0.329156011,0.589043498,-0.060967814,0.310296774,0.689361274,-0.066237606,0.305507958,0.742654145,-0.059122559,0.271715641,0.622808516,-0.029759336,0.276742846,0.573358834,-0.069645874,0.265399605,0.668554783,-0.065580383,0.261781722,0.720484912,-0.052044865,0.222649738,0.635317028,-0.036015216,0.202983171,0.587839186,-0.067740753,0.178719044,0.584373593,-0.069738887,0.160039946,0.564522088,-0.063948639 +Left,0.260663807,0.878286064,1.31E-07,0.303480029,0.865571201,-0.030633567,0.333479136,0.820357621,-0.052840833,0.316670358,0.764743388,-0.07375107,0.289129674,0.718229949,-0.092653953,0.375766844,0.678677619,-0.023233496,0.390234053,0.639424562,-0.048044387,0.40664947,0.608610988,-0.059952199,0.423403502,0.589072943,-0.067717403,0.331781715,0.633528173,-0.024334313,0.342766643,0.59375596,-0.056423828,0.32632795,0.691759348,-0.058827031,0.32748279,0.733427703,-0.051183164,0.28494364,0.622334957,-0.030276008,0.289653361,0.580373168,-0.068509966,0.280885249,0.674028993,-0.062886879,0.280984521,0.718269587,-0.049829986,0.234944999,0.639381051,-0.038368981,0.215588927,0.598948359,-0.071097501,0.19209075,0.596752167,-0.073512204,0.173458099,0.575841427,-0.068569459 +Left,0.268314123,0.863337815,6.23E-08,0.307563454,0.848689079,-0.029314265,0.34001267,0.812133729,-0.05116481,0.331255674,0.754079938,-0.072551176,0.318349987,0.698692977,-0.091839455,0.379856735,0.659233987,-0.02186545,0.396021843,0.615386546,-0.046741661,0.411341608,0.580926657,-0.058638092,0.425285876,0.558960497,-0.066385247,0.336377442,0.619521201,-0.02362865,0.353138447,0.56866008,-0.058962412,0.336007953,0.665317714,-0.063268825,0.332696557,0.70831871,-0.056174949,0.2933864,0.613651514,-0.029803934,0.302486062,0.565087318,-0.069363773,0.293423235,0.665574312,-0.064056136,0.289253742,0.718809009,-0.050417412,0.246656775,0.63504833,-0.037991218,0.232968599,0.59766674,-0.070210278,0.212997898,0.592899442,-0.073503233,0.196057528,0.568098545,-0.069268905 +Left,0.272793412,0.861487567,8.81E-09,0.311534911,0.842705727,-0.022657832,0.348816246,0.794818163,-0.037316348,0.334116966,0.738896608,-0.051177114,0.309662223,0.696664333,-0.063341193,0.369887471,0.654760778,-0.016495006,0.386258066,0.606035769,-0.038848467,0.402674317,0.577133656,-0.050881561,0.419546783,0.554401815,-0.059037477,0.327204913,0.623561203,-0.019777134,0.341591418,0.571209729,-0.055668652,0.332801014,0.664845824,-0.065654337,0.3301588,0.711705267,-0.062970862,0.285054266,0.623109996,-0.026077226,0.291782916,0.577496648,-0.066484421,0.290600836,0.678511739,-0.066941798,0.290348709,0.730311036,-0.057081148,0.242729291,0.646775007,-0.033074323,0.226570219,0.613481581,-0.06375882,0.209306806,0.615683913,-0.067619108,0.192988068,0.592799187,-0.064386085 +Left,0.265228182,0.875367522,3.22E-08,0.305041999,0.851882458,-0.020494508,0.342444152,0.803677201,-0.034455977,0.329462141,0.752049446,-0.048020363,0.302582562,0.713729501,-0.060246736,0.352173775,0.658181489,-0.015043874,0.369297862,0.608466029,-0.037465654,0.387858838,0.584418118,-0.050192397,0.406120062,0.564720988,-0.058948677,0.309884995,0.633028448,-0.01999394,0.325312972,0.580225468,-0.056163266,0.323330164,0.669715464,-0.067772508,0.320913613,0.718762875,-0.066631615,0.269921839,0.641082585,-0.027852548,0.276654661,0.59914577,-0.068263292,0.283183903,0.697974801,-0.070738539,0.285730392,0.74871397,-0.062567621,0.231449053,0.675075948,-0.036247365,0.215454087,0.646946371,-0.067767218,0.200875044,0.654406071,-0.073337153,0.185251087,0.635708153,-0.071552493 +Left,0.267967224,0.890241623,4.80E-08,0.305426806,0.859602928,-0.018547451,0.344177365,0.810916066,-0.035152718,0.337658226,0.756736279,-0.052203126,0.309694767,0.721170247,-0.068610303,0.342443168,0.658951819,-0.017583953,0.359273165,0.613287449,-0.041111272,0.379286796,0.587475896,-0.054588292,0.398226202,0.56877929,-0.063039839,0.301428497,0.64216131,-0.023925213,0.322027057,0.593579054,-0.058333382,0.323338896,0.685373783,-0.068490185,0.320276618,0.731509447,-0.066693299,0.263773561,0.655936182,-0.032545567,0.276752412,0.620933354,-0.07005392,0.285753429,0.713975728,-0.069675989,0.285784006,0.761531889,-0.059959166,0.227431536,0.693829,-0.041766778,0.218037516,0.663920939,-0.069414437,0.213282675,0.675136268,-0.070923351,0.203674659,0.665855825,-0.06621097 +Left,0.266856164,0.893311083,4.04E-09,0.307233095,0.854793251,-0.011468942,0.34562242,0.791330636,-0.02027663,0.341863155,0.731916666,-0.030401183,0.314751446,0.696896076,-0.040245466,0.337259442,0.668226242,-0.008671411,0.356872946,0.604804814,-0.027889803,0.376523942,0.572497785,-0.039222881,0.395915508,0.545042038,-0.046304323,0.301709235,0.655964315,-0.016214911,0.323059171,0.582666457,-0.048796453,0.326306224,0.663886786,-0.060350131,0.322291166,0.723212659,-0.05932115,0.26786837,0.665563166,-0.025265791,0.281947285,0.606333375,-0.058829304,0.29022646,0.693763733,-0.059606154,0.2903741,0.750868559,-0.050793935,0.234641165,0.694861293,-0.03459838,0.226607352,0.653422773,-0.057529286,0.225012481,0.647324145,-0.060283642,0.220523089,0.626175702,-0.057653286 +Left,0.277808428,0.867315769,2.32E-08,0.320736021,0.825004458,-0.009468886,0.355240881,0.76412636,-0.016631935,0.354070187,0.702982485,-0.025699027,0.330339938,0.663989723,-0.034758363,0.344943136,0.653318822,-0.003490553,0.366402835,0.588285089,-0.01913744,0.383508682,0.549013972,-0.027527718,0.400182307,0.514917791,-0.03241672,0.313611716,0.642283976,-0.010347855,0.331436038,0.561427474,-0.040050417,0.336197793,0.634294271,-0.050426617,0.335063845,0.694957316,-0.048128016,0.283099145,0.649561644,-0.018590501,0.2960594,0.589039385,-0.049054276,0.305141419,0.667362392,-0.049675956,0.307191014,0.722786844,-0.040434666,0.251960576,0.672741711,-0.02699836,0.24571082,0.62539196,-0.045783941,0.2466809,0.604317665,-0.048278682,0.24594444,0.572318912,-0.045884464 +Left,0.292913646,0.846023083,5.48E-08,0.334654242,0.802903652,-0.010483778,0.366856486,0.744562507,-0.018488795,0.366176993,0.684201837,-0.028475842,0.343173742,0.641741753,-0.038230233,0.357266665,0.638197899,-0.001227137,0.378565699,0.578680396,-0.014179667,0.393642753,0.540974021,-0.020541785,0.407180667,0.508816957,-0.024251517,0.327275336,0.627403259,-0.007281403,0.343889713,0.549901962,-0.033360414,0.348572314,0.618939757,-0.041709296,0.348619908,0.673627317,-0.038627524,0.298491269,0.632548869,-0.015081662,0.310863644,0.573765874,-0.042612989,0.320686966,0.6519261,-0.041932333,0.324306846,0.705394328,-0.032522149,0.26893872,0.652906418,-0.023407733,0.264411896,0.606877148,-0.039979972,0.266381949,0.582442224,-0.042003885,0.268286645,0.545699,-0.039940819 +Left,0.279110372,0.844525039,2.21E-08,0.321710229,0.806801558,-0.009264033,0.353951395,0.747011542,-0.01448532,0.353908062,0.688947916,-0.02129568,0.333685637,0.649357855,-0.028138218,0.349410325,0.64601028,-0.001156438,0.371854991,0.584221959,-0.012163539,0.387103766,0.547120214,-0.017562041,0.400850296,0.513679922,-0.02074221,0.320348382,0.631944835,-0.006620844,0.3385638,0.556071758,-0.030806443,0.340778261,0.620503783,-0.039369598,0.337787569,0.677566886,-0.036696948,0.291356981,0.635524929,-0.013364477,0.306121647,0.581254542,-0.038196061,0.311624646,0.654086053,-0.038215529,0.311999559,0.706253707,-0.029775597,0.261351556,0.653102696,-0.020554204,0.257546097,0.601409972,-0.034725994,0.26128757,0.575935423,-0.036343392,0.265847802,0.543503225,-0.034311041 +Left,0.245450228,0.856682837,3.44E-08,0.289460391,0.820132196,-0.013065835,0.325619787,0.761909068,-0.022334659,0.317042589,0.700350404,-0.03212868,0.291773021,0.661639273,-0.042447317,0.314323574,0.651042044,-0.011746182,0.33797878,0.58900243,-0.029665021,0.356174707,0.544555485,-0.040583242,0.373504847,0.509035468,-0.047233138,0.282290101,0.639843583,-0.017216107,0.303486258,0.575832367,-0.048384149,0.298590958,0.643791318,-0.06041497,0.292480409,0.698965192,-0.059591889,0.250715256,0.650535643,-0.023951611,0.267893702,0.608687639,-0.056204285,0.269954562,0.670329452,-0.05927068,0.268250734,0.715277314,-0.051989451,0.218872011,0.677382827,-0.030725587,0.210299045,0.620495498,-0.05103479,0.20781225,0.593747377,-0.053266603,0.206530124,0.565609336,-0.050378021 diff --git a/data/thumbs_up.csv b/data/thumbs_up.csv new file mode 100644 index 0000000..35c5737 --- /dev/null +++ b/data/thumbs_up.csv @@ -0,0 +1,288 @@ +handedness,0_x,0_y,0_z,1_x,1_y,1_z,2_x,2_y,2_z,3_x,3_y,3_z,4_x,4_y,4_z,5_x,5_y,5_z,6_x,6_y,6_z,7_x,7_y,7_z,8_x,8_y,8_z,9_x,9_y,9_z,10_x,10_y,10_z,11_x,11_y,11_z,12_x,12_y,12_z,13_x,13_y,13_z,14_x,14_y,14_z,15_x,15_y,15_z,16_x,16_y,16_z,17_x,17_y,17_z,18_x,18_y,18_z,19_x,19_y,19_z,20_x,20_y,20_z +Right,0.728714645,0.717921734,-4.75E-08,0.712676764,0.589776218,-0.003485082,0.678438902,0.490362704,-0.013189421,0.65322572,0.405934364,-0.022471642,0.660042048,0.330542982,-0.032217659,0.618499875,0.534202993,-0.02718693,0.560497463,0.548779666,-0.032055724,0.579540968,0.563272595,-0.03155395,0.604399085,0.567914009,-0.030780058,0.606330633,0.611947536,-0.030267665,0.551352739,0.603417039,-0.029870344,0.572641671,0.61143899,-0.024009274,0.597112775,0.617905736,-0.022080293,0.601709545,0.686503828,-0.031279214,0.553964138,0.667141557,-0.029042231,0.572312772,0.669644594,-0.01814523,0.594170034,0.675399423,-0.01342314,0.601385117,0.754850805,-0.032254949,0.558923483,0.728709459,-0.029127147,0.575193763,0.72516197,-0.016411157,0.593398273,0.728842378,-0.007558935 +Right,0.731261969,0.738901675,-2.50E-08,0.711596787,0.610430837,-0.003604688,0.676464915,0.511932135,-0.013076713,0.65237838,0.42675966,-0.021817176,0.655205369,0.350724667,-0.030844523,0.620873809,0.561904192,-0.02850873,0.563304782,0.573809683,-0.032740153,0.584295332,0.581622839,-0.031980183,0.609840393,0.584061027,-0.030727018,0.608800888,0.641665339,-0.030438591,0.5532673,0.628252923,-0.028851204,0.573447287,0.628597975,-0.023399346,0.59811461,0.634427369,-0.02195178,0.604771435,0.716447473,-0.030047277,0.553663731,0.69201386,-0.026936319,0.571089685,0.687340975,-0.01708607,0.593923628,0.69170469,-0.012930579,0.604912221,0.782884479,-0.029526232,0.558795214,0.75142169,-0.026755631,0.573125005,0.742168903,-0.014992048,0.59159714,0.744349957,-0.006537356 +Right,0.738692403,0.733184099,-8.11E-08,0.718064427,0.608701468,-0.001780839,0.680827141,0.512576878,-0.012254357,0.656734705,0.432020307,-0.022716109,0.660848618,0.357186437,-0.033722065,0.634660542,0.559339941,-0.034374345,0.569628179,0.575778246,-0.043687444,0.593198538,0.583785713,-0.044628665,0.620723903,0.581299186,-0.043824822,0.626213789,0.639600396,-0.038974453,0.561483502,0.632931352,-0.042222805,0.582718611,0.635238528,-0.035452843,0.608035922,0.63763833,-0.032497156,0.623339653,0.715947747,-0.041313015,0.56379056,0.697809935,-0.042488877,0.583365321,0.695240259,-0.02951769,0.60760802,0.696666181,-0.022368116,0.624442041,0.785390437,-0.043307483,0.570688486,0.759259582,-0.042741116,0.586457193,0.751878977,-0.028965808,0.607267618,0.753735662,-0.018881466 +Right,0.754398286,0.681294262,-1.28E-07,0.725437105,0.57221818,-0.00142361,0.682141423,0.477296054,-0.015811363,0.663938403,0.39959839,-0.030669691,0.672188759,0.327086806,-0.046471372,0.675970197,0.527293801,-0.050166357,0.595740199,0.551761687,-0.070187852,0.617514908,0.55298537,-0.076032497,0.647222579,0.545099497,-0.077120744,0.677548289,0.608190596,-0.058750995,0.590923965,0.619576991,-0.073702171,0.612812877,0.614970922,-0.068613805,0.642264485,0.612517059,-0.06586723,0.678385079,0.682668149,-0.065065704,0.598789752,0.68605417,-0.075098023,0.618837893,0.676497102,-0.060834602,0.646769822,0.673292637,-0.051425532,0.677716613,0.749447584,-0.071002387,0.609691501,0.742817521,-0.07550589,0.625016332,0.729856133,-0.062143944,0.651042342,0.727538645,-0.052600317 +Right,0.768594503,0.634016156,-8.59E-08,0.732192576,0.549924076,-0.010231835,0.689117372,0.462144762,-0.031685244,0.673158467,0.391123414,-0.050600056,0.678272724,0.320380479,-0.070094623,0.714687049,0.502537608,-0.079123966,0.625930011,0.546522081,-0.102298416,0.64754647,0.54610908,-0.104719199,0.677656472,0.535624981,-0.103665315,0.724778116,0.583966494,-0.086151175,0.629418969,0.617990077,-0.107901469,0.652744472,0.608484328,-0.100458734,0.683531404,0.603106141,-0.097130157,0.728595734,0.659175158,-0.090352044,0.638342917,0.681389332,-0.106578089,0.6599226,0.668932378,-0.089080431,0.689736784,0.661546946,-0.07825499,0.727362931,0.726311088,-0.094576247,0.654476106,0.736008167,-0.106518582,0.670206189,0.721631408,-0.094775088,0.696356893,0.71701318,-0.086645916 +Right,0.814393401,0.682331681,-4.43E-07,0.743960142,0.609889805,-0.018490218,0.690462887,0.513366163,-0.032848828,0.665151298,0.424293876,-0.0443804,0.659639537,0.338785559,-0.055124279,0.739346921,0.474419445,-0.040826205,0.6721403,0.570977926,-0.060912907,0.685958147,0.604428291,-0.065681674,0.705823362,0.580083489,-0.067245759,0.770991385,0.541189909,-0.043191746,0.692018509,0.643700242,-0.060254369,0.709912479,0.654979527,-0.056128871,0.732232153,0.627815604,-0.055094004,0.791508913,0.610270858,-0.04684449,0.715646625,0.697925329,-0.065237045,0.731369257,0.701363027,-0.054303482,0.753387868,0.674135387,-0.047207151,0.804497778,0.676057637,-0.05179454,0.743924081,0.741835952,-0.064768843,0.757397294,0.738695323,-0.057867482,0.779688835,0.716334224,-0.051817708 +Right,0.813388944,0.70797056,-3.45E-07,0.7474038,0.63861835,-0.020610884,0.696521699,0.532127202,-0.032222707,0.676136613,0.447093725,-0.040540248,0.669100702,0.375439167,-0.046425324,0.758827507,0.490953773,-0.029910365,0.698510408,0.588444591,-0.054806028,0.712355077,0.607854903,-0.070489042,0.732435346,0.573629677,-0.079919718,0.794606924,0.546346486,-0.03027332,0.717647254,0.664919972,-0.046930183,0.735695422,0.661315203,-0.048209671,0.758587062,0.622615159,-0.051267616,0.817370772,0.613623679,-0.033904448,0.744731605,0.72299552,-0.052461069,0.759685218,0.718689322,-0.047613662,0.783976793,0.687241793,-0.044175372,0.830895245,0.680035591,-0.039415054,0.775119662,0.76457119,-0.05383281,0.787325084,0.758373201,-0.053529877,0.811153471,0.729220152,-0.052354526 +Right,0.77707994,0.651551545,-4.62E-07,0.724023581,0.604012787,-0.047075178,0.694357634,0.513005137,-0.068340853,0.678919435,0.444739729,-0.080636688,0.663849413,0.367758751,-0.087450303,0.769507885,0.467976213,-0.059726615,0.733078897,0.586090744,-0.082264237,0.724958062,0.602219403,-0.091391809,0.733343601,0.569752991,-0.098703429,0.816557825,0.507898986,-0.049709424,0.766105711,0.645446599,-0.068295069,0.758167684,0.63549149,-0.068076096,0.767178595,0.593606353,-0.069845639,0.848752856,0.565124154,-0.043290075,0.798286796,0.67432189,-0.066917419,0.789618552,0.66892612,-0.055323962,0.799960375,0.636092782,-0.045920208,0.869457603,0.622789264,-0.041828156,0.834196806,0.694163799,-0.065528966,0.822615147,0.695527434,-0.062703162,0.827073336,0.677861154,-0.057252202 +Right,0.769349635,0.611849964,-3.71E-07,0.723248124,0.566303909,-0.039150409,0.698476732,0.455855668,-0.052246645,0.689448178,0.378092349,-0.057702001,0.683308482,0.304320991,-0.058567084,0.767356277,0.448686063,-0.046578884,0.713073552,0.538816631,-0.065422371,0.716349721,0.544413745,-0.074976809,0.734249711,0.517853081,-0.08199624,0.809369802,0.496805549,-0.036989972,0.73145324,0.625856102,-0.049230203,0.744324923,0.595504105,-0.047356036,0.765698016,0.556794286,-0.047293581,0.834070802,0.560027361,-0.030849267,0.758323908,0.66973114,-0.046538956,0.764540255,0.643887758,-0.029736083,0.784215033,0.605837941,-0.015651464,0.848129094,0.625015974,-0.029926781,0.791415036,0.697959721,-0.050284881,0.791484714,0.678978741,-0.046531748,0.80575484,0.650389671,-0.038736351 +Right,0.76136291,0.6098454,-4.35E-07,0.721666098,0.543609977,-0.04359084,0.703193784,0.444304347,-0.064465858,0.694873214,0.370689332,-0.077001937,0.691285491,0.290128499,-0.084591113,0.775981486,0.446728855,-0.061552703,0.720090687,0.535328507,-0.084534511,0.71195215,0.532493353,-0.093998045,0.724132001,0.506079257,-0.101002432,0.812969565,0.506315112,-0.052315358,0.732479274,0.622721851,-0.069816738,0.733859301,0.5857234,-0.068440273,0.747825444,0.543964624,-0.069029301,0.832790911,0.575949252,-0.045992296,0.753144324,0.669032574,-0.067227483,0.752518713,0.638346553,-0.050543122,0.768379927,0.601799071,-0.036896586,0.841522753,0.641001642,-0.044894099,0.782300591,0.699513674,-0.070053786,0.779550016,0.676711619,-0.066505425,0.791816652,0.647991419,-0.058739476 +Right,0.750805676,0.612491488,-3.91E-07,0.718678653,0.529644907,-0.042608246,0.709156752,0.431783348,-0.064652368,0.706047833,0.363467902,-0.078875631,0.707946062,0.282245338,-0.088995524,0.778283,0.454642475,-0.061407339,0.712044656,0.537301421,-0.083427131,0.706988335,0.529897809,-0.093279235,0.723658383,0.504998147,-0.101582401,0.807559192,0.525578082,-0.054086093,0.723486364,0.616431832,-0.069829926,0.723800421,0.586147785,-0.068688728,0.741192758,0.55022049,-0.071210124,0.821406364,0.597830415,-0.04951448,0.739490926,0.666535139,-0.068566911,0.738122582,0.641576767,-0.052940346,0.755320251,0.612819552,-0.042552546,0.825279355,0.661880672,-0.05027286,0.765449584,0.704688728,-0.072458617,0.7599594,0.687188745,-0.068194851,0.770097494,0.667692184,-0.062363748 +Right,0.732257009,0.687902391,-2.64E-07,0.714024544,0.594640553,-0.034520067,0.711354256,0.491154015,-0.053399388,0.711068392,0.412068814,-0.06628602,0.720721066,0.327282488,-0.076030925,0.764187276,0.524200439,-0.047517017,0.677795947,0.573408484,-0.074895911,0.684187293,0.576326132,-0.094798066,0.712196827,0.565568805,-0.108647622,0.78123641,0.605575502,-0.043828245,0.669094682,0.657692969,-0.061341435,0.691521049,0.647532105,-0.065180533,0.724984169,0.635285378,-0.070646159,0.782718956,0.686473012,-0.043321092,0.67610383,0.722887814,-0.061019707,0.694444537,0.713054001,-0.048616745,0.724713862,0.700084329,-0.039935622,0.775963068,0.760224164,-0.047756802,0.686312258,0.785164237,-0.067548506,0.699717462,0.774456024,-0.06550774,0.728431761,0.76147157,-0.061208323 +Right,0.73174715,0.742361069,-2.54E-07,0.708372951,0.614881039,-0.02544583,0.69380945,0.49459064,-0.042880364,0.689578056,0.398672223,-0.056887172,0.704572678,0.316228271,-0.068279639,0.731864154,0.521930456,-0.038849786,0.628493011,0.540509045,-0.065443248,0.646818936,0.568318784,-0.080354854,0.683157742,0.571333766,-0.088533111,0.729305565,0.612022579,-0.041198455,0.615605712,0.616646409,-0.063762344,0.648949325,0.631384373,-0.069605976,0.688018024,0.633179784,-0.076373167,0.722449183,0.691670179,-0.046117388,0.61784184,0.689457178,-0.068122424,0.649315655,0.702670634,-0.06182833,0.687354982,0.705529571,-0.057942007,0.711987019,0.768068552,-0.053916689,0.63113457,0.757292509,-0.071348757,0.65531528,0.761606097,-0.069020361,0.691898763,0.76592505,-0.066203885 +Right,0.714260876,0.738985777,-1.46E-07,0.710934341,0.610548317,-0.000541039,0.681165993,0.491182625,-0.011184526,0.665897012,0.398658395,-0.022326011,0.682709098,0.322898835,-0.034850206,0.644598186,0.509270728,-0.038037069,0.565785825,0.49976629,-0.052771833,0.583861411,0.527925849,-0.057493981,0.612466455,0.53751272,-0.058743972,0.626182258,0.586485863,-0.044544101,0.550784588,0.564805865,-0.053625997,0.5726403,0.585557759,-0.047824528,0.599972367,0.597916842,-0.044550177,0.611576915,0.664003372,-0.049005229,0.542295814,0.633996904,-0.054562148,0.564298987,0.647357285,-0.04017524,0.59108603,0.658581257,-0.031215325,0.600585878,0.738619328,-0.052966144,0.543242037,0.703152239,-0.055312172,0.560727298,0.707816839,-0.041790966,0.582686961,0.717804551,-0.031552497 +Right,0.683089375,0.768816948,-1.61E-07,0.684766293,0.634191871,-0.000113401,0.661556423,0.50633502,-0.009387201,0.648346663,0.406192124,-0.018852836,0.668103218,0.332803488,-0.029383441,0.608505845,0.516082287,-0.034294084,0.535215914,0.508742452,-0.043925006,0.552670896,0.535890162,-0.044397671,0.580263793,0.546805799,-0.043473002,0.587048292,0.592107952,-0.04048096,0.516828179,0.567985058,-0.045679186,0.537497997,0.590677559,-0.038511224,0.564139247,0.604453623,-0.035072777,0.5701226,0.669025421,-0.044166736,0.508594453,0.634661973,-0.047355283,0.529249132,0.651605248,-0.033082314,0.554595292,0.664635062,-0.024977576,0.557132661,0.744539499,-0.04728809,0.504073501,0.701901972,-0.047951359,0.522537827,0.711589217,-0.033513036,0.545113087,0.724083126,-0.022851588 +Right,0.634437084,0.771589875,-1.18E-07,0.658600807,0.64262408,0.00321052,0.658507347,0.522701979,-0.00241374,0.652410388,0.418383956,-0.008425667,0.677230835,0.355935872,-0.015207618,0.590309739,0.487305969,-0.01703376,0.533623219,0.452924192,-0.016666092,0.543866813,0.490444541,-0.013694891,0.564344466,0.514875591,-0.011947644,0.554494143,0.541949928,-0.020994214,0.505729854,0.504930675,-0.014050488,0.518369377,0.544263422,-0.006032444,0.538085878,0.566788316,-0.003597845,0.525320232,0.604264855,-0.022388766,0.486495554,0.568240106,-0.013639925,0.500124156,0.599472821,-0.00242444,0.519383788,0.62017405,0.001049557,0.502843618,0.668063819,-0.023327477,0.471811771,0.626844108,-0.015065687,0.487581402,0.64923799,-0.001936655,0.505290508,0.665802598,0.00661492 +Right,0.618056238,0.774014294,-1.50E-07,0.639812231,0.64363569,0.007167238,0.637999296,0.520305216,0.005278572,0.630099893,0.414756656,0.002767628,0.65212059,0.352753997,-0.000798158,0.56677115,0.482726514,-0.010229904,0.513451338,0.455218971,-0.004166492,0.523925841,0.49699235,0.001208404,0.543326139,0.521298289,0.003635204,0.531086147,0.535692394,-0.014488023,0.487006843,0.50992173,-0.001103281,0.498535901,0.549498498,0.007983887,0.518237412,0.569754422,0.009681392,0.502516508,0.598474801,-0.015541751,0.467310727,0.571510255,-0.0015242,0.480282605,0.604245961,0.010230817,0.499608517,0.623249769,0.012551952,0.480401933,0.665313482,-0.015882965,0.45182851,0.628662765,-0.003755496,0.46703577,0.652564824,0.010777589,0.484622002,0.668465734,0.019669462 +Right,0.673103869,0.745556355,-2.70E-07,0.679205477,0.619135797,0.010459284,0.66042316,0.499670893,0.010756681,0.641785562,0.402100652,0.008681287,0.656457961,0.335236192,0.005281317,0.599071205,0.473824471,-0.005136023,0.534964323,0.461418331,-0.004945425,0.540531754,0.505010188,-0.00240511,0.561515033,0.527496636,-0.000865652,0.572223127,0.528742909,-0.012988919,0.513079166,0.522888422,-0.007246055,0.52423352,0.563209236,0.000245611,0.547477484,0.578165829,0.002573348,0.550847054,0.595137775,-0.018514052,0.500319421,0.58598429,-0.013446874,0.514888465,0.621694624,-0.001583483,0.537440479,0.634753287,0.003024304,0.534264147,0.667409778,-0.022944927,0.491954029,0.645335317,-0.019210419,0.508564472,0.671487391,-0.006561371,0.529130697,0.683807135,0.002476866 +Right,0.734374404,0.719551623,-2.65E-07,0.71822679,0.598255098,0.003826846,0.672567308,0.489216238,-0.002495342,0.638157308,0.406786561,-0.010803991,0.639473021,0.328218907,-0.020122712,0.627686739,0.49074921,-0.019540336,0.556502879,0.519188166,-0.034765583,0.576521993,0.550084412,-0.041167054,0.605908275,0.548081696,-0.043620344,0.618533909,0.566744387,-0.028891088,0.546835423,0.591159821,-0.038574271,0.570558488,0.616562426,-0.033972315,0.599529028,0.613924801,-0.031171961,0.613093793,0.647240281,-0.037526254,0.549613714,0.663592875,-0.045140613,0.573963404,0.682565629,-0.031416837,0.600959957,0.678269029,-0.022830557,0.611137807,0.72787118,-0.0455947,0.557406902,0.730738759,-0.049339138,0.580352724,0.742227197,-0.036518481,0.605137825,0.739162207,-0.026331345 +Right,0.78272438,0.694696546,-3.02E-07,0.745069385,0.602543175,-0.001606238,0.686873078,0.508819878,-0.01711002,0.651023328,0.432890743,-0.032611612,0.64537257,0.350886017,-0.04900508,0.68587172,0.514791846,-0.053404473,0.601674259,0.586027563,-0.078469634,0.626111269,0.603221595,-0.084932975,0.656034291,0.58504647,-0.086218059,0.69794476,0.593732595,-0.064338341,0.608174145,0.666386366,-0.084799238,0.63332957,0.672581196,-0.077990912,0.663269997,0.65189445,-0.074280761,0.707825243,0.677655935,-0.073721975,0.624418437,0.735769749,-0.090417191,0.648233056,0.737054348,-0.07341288,0.676752269,0.717035711,-0.062317956,0.715077698,0.758795261,-0.082331277,0.64387244,0.794026732,-0.093471102,0.66495049,0.788656771,-0.080993474,0.69299221,0.773446321,-0.071279965 +Right,0.796078622,0.709600687,-3.62E-07,0.744348586,0.614269733,-0.018385509,0.698106706,0.502422631,-0.041460566,0.682165086,0.41103828,-0.059922539,0.687183857,0.318321884,-0.07938049,0.75079447,0.50485301,-0.088282958,0.650294185,0.573749781,-0.113875769,0.667379677,0.600470901,-0.115550406,0.695408642,0.588344276,-0.114903666,0.77241528,0.591890514,-0.093293563,0.660224617,0.658290565,-0.117001995,0.681823373,0.667260051,-0.107127875,0.712777078,0.656329632,-0.104305021,0.781226754,0.679086506,-0.096375562,0.676613092,0.729025602,-0.119182438,0.69937855,0.732345223,-0.100354545,0.730621219,0.723384023,-0.089512855,0.78149122,0.759570181,-0.099744223,0.700510025,0.784987211,-0.119534872,0.719608307,0.781986475,-0.109342985,0.748383462,0.775538743,-0.101979584 +Right,0.823021948,0.725303531,-4.02E-07,0.758639336,0.612193584,-0.02025081,0.713247299,0.490623534,-0.036348939,0.700428128,0.393560588,-0.049272686,0.711709857,0.308193117,-0.060351044,0.775396585,0.490517199,-0.040835157,0.68365556,0.564489126,-0.060858127,0.696035087,0.598946393,-0.067391135,0.723278522,0.582868397,-0.07078243,0.795858681,0.580527186,-0.043685365,0.690657854,0.64599371,-0.05984053,0.708362818,0.659083605,-0.056415625,0.737823009,0.641606748,-0.057197753,0.805149078,0.662564397,-0.048190184,0.706721723,0.714940369,-0.066565819,0.721880496,0.722627044,-0.05433505,0.751566827,0.705525279,-0.047213603,0.809129477,0.734714985,-0.05438618,0.729820907,0.770705938,-0.06801863,0.74669379,0.773340464,-0.060218547,0.778126538,0.760829449,-0.054078195 +Right,0.736139536,0.759068608,-5.01E-07,0.702514172,0.648931265,-0.041728441,0.712115526,0.509311616,-0.054170437,0.728053749,0.41904676,-0.058400676,0.742312551,0.334987313,-0.05616992,0.795869231,0.533008695,-0.039698772,0.717067719,0.58873409,-0.060689617,0.713219047,0.617102146,-0.071466491,0.739507616,0.609512269,-0.079400845,0.825088859,0.611287951,-0.031145947,0.724938869,0.690397143,-0.047966368,0.734914422,0.68869561,-0.051471442,0.764834702,0.664059699,-0.055479497,0.837373137,0.698240042,-0.027232194,0.741419971,0.759924412,-0.047377128,0.746381879,0.75392282,-0.040503796,0.772475719,0.728357196,-0.03469754,0.840160251,0.781132698,-0.028262271,0.76493454,0.820391715,-0.048025824,0.765254498,0.810952187,-0.04912056,0.787059963,0.792565942,-0.047116116 +Right,0.710191965,0.769748092,-7.89E-07,0.678524256,0.651463151,-0.050723989,0.700665891,0.524579048,-0.071203358,0.728262901,0.439474225,-0.083394133,0.748575032,0.352464944,-0.088615268,0.801350832,0.548145592,-0.052027654,0.736668706,0.617124617,-0.080073826,0.699273407,0.640821278,-0.089783899,0.705969036,0.627874792,-0.096801065,0.829944551,0.638989031,-0.04400792,0.741384208,0.711465359,-0.071187004,0.704331934,0.709119797,-0.073816322,0.721510351,0.679049909,-0.075030573,0.835991085,0.733002722,-0.041402727,0.747726262,0.788071394,-0.072274432,0.7149266,0.777417064,-0.063913636,0.732145071,0.751057148,-0.056392822,0.830443621,0.814931631,-0.044040721,0.757842481,0.851178765,-0.070782416,0.729577482,0.839775503,-0.070966654,0.737871289,0.818028688,-0.067816906 +Right,0.700160563,0.725494325,-8.08E-07,0.672083139,0.614672601,-0.051371958,0.694929004,0.493882418,-0.073335908,0.723720431,0.410660625,-0.087982588,0.745612741,0.32522282,-0.096434861,0.801287532,0.516099274,-0.050858162,0.749328375,0.570390344,-0.082636893,0.708317757,0.600077689,-0.094150856,0.709164202,0.595180869,-0.100951329,0.829677761,0.602061152,-0.043716576,0.761130452,0.659316957,-0.076548129,0.707615376,0.670822322,-0.080782667,0.710560441,0.657057047,-0.080904573,0.837306261,0.690996885,-0.042403404,0.769527674,0.745653987,-0.083066545,0.718330145,0.739485979,-0.077431485,0.719718099,0.717087388,-0.068011917,0.832759142,0.772681355,-0.045562796,0.780708909,0.812359214,-0.077361144,0.739150345,0.803131759,-0.076524749,0.733422637,0.780173063,-0.070714146 +Right,0.692134857,0.730971098,-8.46E-07,0.662430644,0.618637443,-0.049237303,0.681815445,0.493395686,-0.072506033,0.706003606,0.403431505,-0.08901,0.724961042,0.311593354,-0.099448502,0.788476825,0.513177693,-0.051857471,0.728901446,0.568526328,-0.084376343,0.687323809,0.593049407,-0.097899564,0.690654993,0.582770884,-0.106788047,0.817543685,0.599768221,-0.046604194,0.741059422,0.660308897,-0.078253195,0.68958807,0.669165373,-0.082107909,0.696464598,0.651763797,-0.082825646,0.825227678,0.691392839,-0.046830248,0.748479128,0.748091877,-0.08456035,0.701383889,0.739951789,-0.077095434,0.707909882,0.714713931,-0.067992985,0.820298851,0.774946451,-0.051755961,0.759657323,0.815322161,-0.08155521,0.720215321,0.802750587,-0.07980343,0.717944503,0.776949346,-0.074170329 +Right,0.687285542,0.717196822,-8.04E-07,0.657878757,0.608352184,-0.053660274,0.675644338,0.482663989,-0.077323675,0.698504686,0.397004366,-0.093022436,0.718450904,0.3084023,-0.102019444,0.776310086,0.502326369,-0.056834843,0.704580784,0.556651413,-0.089154661,0.664979398,0.594061077,-0.102478392,0.67201978,0.595260322,-0.111101232,0.801802158,0.594966888,-0.048244104,0.709453285,0.652572334,-0.077463634,0.666511178,0.663784802,-0.080147274,0.680100799,0.648067534,-0.081098795,0.805849791,0.690537453,-0.045448937,0.716495752,0.733104825,-0.079197586,0.678999662,0.728809118,-0.069702022,0.692263067,0.711935699,-0.060387492,0.800609231,0.775322616,-0.048055783,0.73242873,0.801045835,-0.076008476,0.703424275,0.791779935,-0.074169867,0.708716512,0.77671051,-0.068836525 +Right,0.704503417,0.693672121,-7.07E-07,0.674584985,0.60207653,-0.04818384,0.68829906,0.460050464,-0.064856902,0.709801555,0.365594923,-0.072333425,0.729842901,0.288243473,-0.072933413,0.779015183,0.489760637,-0.054786425,0.702403009,0.526232481,-0.081706077,0.674179375,0.56154263,-0.092551574,0.682630062,0.572214901,-0.098922558,0.806815505,0.583896399,-0.04243226,0.695819736,0.632144868,-0.059886325,0.681019545,0.632536471,-0.056379229,0.698182702,0.616563737,-0.053883724,0.807897508,0.678594828,-0.034996454,0.704752922,0.712951243,-0.060595993,0.688422203,0.699442148,-0.045435756,0.705126941,0.680225313,-0.031069076,0.798414648,0.760544538,-0.032579243,0.71918565,0.776496172,-0.061667714,0.703860641,0.766515553,-0.060255408,0.713536561,0.753469586,-0.052235667 +Right,0.717925191,0.677006423,-5.54E-07,0.694996834,0.56794256,-0.046733752,0.70832032,0.437596828,-0.065735511,0.724231005,0.346237212,-0.075852014,0.742467701,0.261248678,-0.079040252,0.792984068,0.47229749,-0.056520198,0.695233703,0.501361489,-0.083076864,0.679827631,0.539369285,-0.093997531,0.704201281,0.553197742,-0.101722725,0.81125313,0.564437807,-0.048154555,0.692698777,0.601920247,-0.069852144,0.689978242,0.61356765,-0.070345715,0.721525311,0.60954988,-0.07230141,0.809705198,0.657934308,-0.044374615,0.698586464,0.683561087,-0.069273539,0.69352591,0.683756948,-0.057492457,0.719690442,0.678767979,-0.048197035,0.799546778,0.741169333,-0.046042237,0.714097977,0.752947807,-0.071636334,0.706642389,0.745206118,-0.071934514,0.725112259,0.739078403,-0.068366691 +Right,0.743558407,0.654898524,-3.97E-07,0.72415632,0.548929811,-0.044527549,0.726581991,0.424727023,-0.067265987,0.732634366,0.334186137,-0.081676953,0.751141846,0.247274071,-0.089116789,0.80428642,0.453563154,-0.0610913,0.699483871,0.482108891,-0.091674313,0.697129905,0.515063584,-0.106743917,0.730338812,0.523525715,-0.116817005,0.820855141,0.542531192,-0.054566242,0.694511235,0.582834363,-0.077558666,0.70826602,0.594393432,-0.078002878,0.748089671,0.589184165,-0.080061898,0.82019341,0.636166573,-0.052284516,0.701645613,0.662957549,-0.075680725,0.712005138,0.665187478,-0.060566038,0.744603753,0.659376621,-0.049325954,0.810744584,0.723349035,-0.055897433,0.717447162,0.73566395,-0.081443109,0.722344637,0.727900624,-0.080774561,0.747788012,0.719172299,-0.076226048 +Right,0.75244087,0.634342194,-2.97E-07,0.736249864,0.533173919,-0.042880248,0.734788418,0.418072134,-0.067740589,0.737052202,0.332908481,-0.084544823,0.752326131,0.245591789,-0.094444863,0.803749919,0.451934189,-0.068047486,0.695513785,0.48130548,-0.103379123,0.700285435,0.511338174,-0.119154945,0.736023724,0.514979959,-0.12792398,0.817122757,0.539038897,-0.063667096,0.687280416,0.579885483,-0.090738602,0.707968652,0.58894825,-0.089558497,0.7496382,0.578991234,-0.089319244,0.815253198,0.630543351,-0.063486733,0.693871915,0.66103977,-0.088475034,0.714378953,0.658792555,-0.071007133,0.751061797,0.646679282,-0.057547543,0.805868328,0.716298223,-0.069096312,0.710503101,0.731684506,-0.094336487,0.725957751,0.722516,-0.092347734,0.759777367,0.712160766,-0.08661788 +Right,0.739602745,0.694131434,-3.30E-07,0.716909468,0.568066597,-0.039690152,0.709189534,0.443506658,-0.063445181,0.709026575,0.348307192,-0.079761229,0.726826429,0.25968501,-0.091101311,0.769123614,0.474861532,-0.06512522,0.65726161,0.482001752,-0.0986645,0.667041838,0.511620879,-0.115120664,0.703497231,0.515051246,-0.12448325,0.772726059,0.562181473,-0.062771216,0.645087183,0.574094057,-0.090675645,0.670275986,0.591887653,-0.095004991,0.709979296,0.592464209,-0.101136908,0.768244207,0.650882661,-0.063850746,0.646964729,0.663490951,-0.088884309,0.670958161,0.672581553,-0.08025901,0.707058191,0.673190892,-0.075673938,0.75869447,0.736122906,-0.069675937,0.663209319,0.74223721,-0.092579491,0.684035659,0.740811169,-0.09401077,0.722186625,0.737696409,-0.09388236 +Right,0.792220533,0.698527336,-2.34E-07,0.766238332,0.576092303,-0.012207619,0.726666927,0.440825164,-0.034388006,0.708372891,0.339406192,-0.052743718,0.717022896,0.251271009,-0.071509391,0.75037235,0.484403491,-0.084514178,0.63539505,0.489683509,-0.112574175,0.656190336,0.508903921,-0.117154896,0.690132916,0.511586726,-0.116834328,0.747129619,0.583634019,-0.091119483,0.627206981,0.576883197,-0.115450971,0.653818846,0.588043451,-0.106465027,0.690390944,0.596872747,-0.102698065,0.737471938,0.675160408,-0.095088661,0.62917161,0.651073933,-0.116142072,0.655109882,0.659580529,-0.095593795,0.689798832,0.669245183,-0.082409263,0.72236526,0.756436825,-0.098812744,0.639324903,0.724390924,-0.116142765,0.662367225,0.726133287,-0.103168771,0.693114758,0.737352371,-0.093134515 +Right,0.787485182,0.689721882,-1.78E-07,0.764623344,0.56594342,-0.008454227,0.723407924,0.432657063,-0.029642126,0.700309575,0.337156177,-0.048257392,0.706147313,0.247313321,-0.067425869,0.730552375,0.473930985,-0.074042179,0.621841252,0.483904094,-0.101657718,0.643325746,0.495078921,-0.108218603,0.676917195,0.492687374,-0.108906552,0.724527657,0.573140562,-0.081727788,0.612008035,0.57476145,-0.104166724,0.639277101,0.577558637,-0.096645094,0.675104022,0.579396486,-0.093149997,0.715637386,0.664806008,-0.087080225,0.612278104,0.649578571,-0.1044567,0.638237,0.650948644,-0.085904516,0.672852397,0.653485179,-0.074134029,0.70417738,0.746526301,-0.09214443,0.622348487,0.721045911,-0.105537884,0.643547297,0.715676844,-0.093523368,0.673810959,0.719659805,-0.084175438 +Right,0.778861225,0.687396884,-1.60E-07,0.75690037,0.563918412,-0.006061677,0.716776967,0.43434304,-0.026588071,0.692887485,0.34296757,-0.045007583,0.6979087,0.254154563,-0.064107224,0.719575703,0.481946319,-0.072906099,0.614970744,0.49567306,-0.098537013,0.635215163,0.501600266,-0.103487797,0.667891204,0.499751419,-0.103091143,0.715557873,0.579279423,-0.081875123,0.60282582,0.579704225,-0.104445875,0.630058229,0.577023625,-0.096821897,0.665831327,0.580263972,-0.0922627,0.708114088,0.668188095,-0.087978616,0.603740573,0.655297935,-0.104541853,0.630351305,0.650013566,-0.085013323,0.664065599,0.651793838,-0.071994595,0.69849658,0.747980118,-0.093585774,0.613105476,0.72557348,-0.105133325,0.634240329,0.714534104,-0.0911742,0.664072752,0.715645671,-0.080482416 +Right,0.773050427,0.694462657,-1.62E-07,0.750618815,0.568160832,-0.005520519,0.709234416,0.437020361,-0.024759337,0.685501456,0.343520045,-0.042556375,0.693398893,0.254686266,-0.060946926,0.703955472,0.48008436,-0.068109937,0.605308473,0.499369621,-0.091169059,0.627794862,0.507939756,-0.093943246,0.660374165,0.502365053,-0.092307687,0.699517548,0.578120232,-0.077170976,0.593728542,0.58004421,-0.098513305,0.622339904,0.581853509,-0.090446994,0.657302439,0.582877815,-0.084977359,0.692771077,0.667235136,-0.083431751,0.592724562,0.655140996,-0.098843172,0.620505393,0.654384613,-0.079394437,0.654669702,0.656685174,-0.066071518,0.684968174,0.747554481,-0.089279577,0.602401912,0.722504616,-0.099211857,0.623109519,0.716422081,-0.084826544,0.653106093,0.721008897,-0.073609397 +Right,0.7667799,0.688325047,-1.27E-07,0.745004714,0.559281647,-0.00555611,0.699959338,0.432237744,-0.023335287,0.672713518,0.340223014,-0.039548747,0.683941126,0.251770735,-0.056472268,0.686095059,0.478316426,-0.064564221,0.594402075,0.499317914,-0.083733261,0.618991673,0.508791447,-0.084584311,0.652009964,0.501136482,-0.082249731,0.681381285,0.574609578,-0.07222183,0.582870424,0.573615909,-0.088720925,0.61089766,0.575589836,-0.079285376,0.645319819,0.575576484,-0.073205411,0.676202774,0.662831426,-0.076987371,0.583340287,0.648037195,-0.08846014,0.610579491,0.646188378,-0.069934532,0.644377768,0.646750927,-0.05771121,0.671207666,0.743265331,-0.08137361,0.59329927,0.714116752,-0.087942809,0.613742113,0.707585216,-0.073340006,0.643652201,0.712483466,-0.062451951 +Right,0.759860218,0.685813308,-1.16E-07,0.737278819,0.552735806,-0.003205783,0.692455173,0.431482106,-0.019260719,0.665862143,0.338758349,-0.034520499,0.675186455,0.252859384,-0.050474051,0.672132432,0.478346795,-0.058074038,0.583151221,0.495234132,-0.074990831,0.607202172,0.506594539,-0.076033555,0.639614642,0.500578225,-0.074253112,0.666358232,0.572298646,-0.065608568,0.574911475,0.567415655,-0.07825727,0.60028553,0.572171688,-0.06874904,0.632182777,0.57263267,-0.063478604,0.660266817,0.658647895,-0.070272155,0.575130761,0.637874126,-0.077777356,0.599172354,0.638243139,-0.059024516,0.630304396,0.639764428,-0.047568422,0.654701233,0.736603439,-0.074572146,0.582738996,0.70386374,-0.076992519,0.60008955,0.698815763,-0.060951408,0.626473308,0.704447985,-0.049741834 +Right,0.761270881,0.687543511,-1.20E-07,0.737101555,0.555649519,-0.002348868,0.691121817,0.438948035,-0.019048061,0.666074455,0.346542954,-0.035108652,0.67464143,0.25761506,-0.052106589,0.674146712,0.483602822,-0.061287418,0.585094452,0.501895368,-0.079158552,0.608892024,0.510204971,-0.079847701,0.642388463,0.504153371,-0.077508911,0.670373857,0.57879585,-0.069916591,0.575629652,0.57384634,-0.083738595,0.600744545,0.575333774,-0.074075527,0.63347137,0.575506985,-0.068607323,0.665756166,0.666512132,-0.075372934,0.576952636,0.646963,-0.084113181,0.60084033,0.643334866,-0.065297097,0.632852435,0.644388795,-0.05366192,0.661159635,0.745968819,-0.080240846,0.585885823,0.714257717,-0.084342219,0.604094625,0.706601381,-0.068540767,0.632309973,0.712143064,-0.057326119 +Right,0.769623876,0.688527107,-1.52E-07,0.743580043,0.566650629,-0.006895334,0.699751437,0.44242245,-0.028019305,0.674721658,0.352732718,-0.047139946,0.682671607,0.264924347,-0.066978067,0.707442462,0.490074903,-0.074284129,0.604351044,0.516333461,-0.099488437,0.625617921,0.520044982,-0.1036838,0.658773899,0.513764679,-0.102850884,0.707420766,0.587542713,-0.083014861,0.595439196,0.601488888,-0.105250247,0.621099949,0.595942199,-0.097487263,0.656971097,0.594017804,-0.092895485,0.702715456,0.677144647,-0.088779457,0.598280191,0.67582643,-0.105046265,0.623673797,0.668260872,-0.085531846,0.657969415,0.66586405,-0.072537668,0.695005953,0.758142591,-0.094225794,0.609100938,0.744321823,-0.105276406,0.629001737,0.731132925,-0.091158353,0.65903759,0.729288161,-0.080548152 +Right,0.770831764,0.681896806,-1.46E-07,0.741467893,0.568573475,-0.013634594,0.703774631,0.448025048,-0.037649542,0.687987804,0.359131455,-0.057703461,0.69766748,0.277855814,-0.078285404,0.730977297,0.499214202,-0.090922453,0.61938256,0.517224491,-0.119475313,0.641364038,0.523149312,-0.124149039,0.674900591,0.520823002,-0.123864159,0.730848432,0.598240972,-0.097761057,0.61126703,0.60321784,-0.122826301,0.636309028,0.600506127,-0.114374012,0.671357572,0.605393589,-0.111077413,0.7240327,0.688279212,-0.101779543,0.614058316,0.677614629,-0.121986739,0.637859404,0.673431039,-0.102457479,0.672027528,0.677594721,-0.09041582,0.711892486,0.76702714,-0.10582485,0.627265334,0.74571538,-0.122335464,0.647734106,0.737784803,-0.110088691,0.678058863,0.744121552,-0.101067804 +Right,0.780376196,0.718671203,-3.23E-07,0.743243039,0.59038198,-0.013594742,0.708719432,0.463077158,-0.036302641,0.696643829,0.371471167,-0.055812772,0.709819794,0.286954015,-0.076499335,0.751660883,0.505943596,-0.082275286,0.636985481,0.527918816,-0.111883983,0.65523833,0.552525878,-0.118860558,0.688715398,0.552939892,-0.120672047,0.755342543,0.611117244,-0.090359502,0.632165253,0.618678033,-0.114950664,0.656588674,0.626101017,-0.107083388,0.691471994,0.628634095,-0.105720103,0.74942857,0.704935312,-0.096494138,0.635862708,0.697830021,-0.118831806,0.660608888,0.703555286,-0.099488713,0.694576979,0.707624435,-0.088329881,0.73755163,0.785844088,-0.102695152,0.649769783,0.766416669,-0.120324902,0.672126293,0.76870048,-0.107560366,0.704160869,0.776324689,-0.098405115 +Right,0.797839105,0.735720038,-3.97E-07,0.754117191,0.605369985,-0.019423427,0.71904397,0.474642038,-0.043713842,0.709551752,0.375178039,-0.064206749,0.72561276,0.280966669,-0.085727081,0.77110827,0.504125059,-0.086363807,0.65813005,0.524774253,-0.115562201,0.673740923,0.561543107,-0.118790805,0.705971122,0.56295979,-0.118710928,0.777062535,0.61026144,-0.09285266,0.652235806,0.617643178,-0.118654542,0.674777269,0.641378403,-0.107739195,0.707312465,0.644786239,-0.104047641,0.77191186,0.704219341,-0.098206237,0.656819463,0.701874316,-0.122870162,0.680154204,0.715812743,-0.101650231,0.713349879,0.719186962,-0.089241132,0.761225283,0.78589493,-0.104183242,0.672846735,0.774586022,-0.123602666,0.694148004,0.780952573,-0.111131012,0.726340353,0.787650824,-0.102112792 +Right,0.812799454,0.794115484,-5.09E-07,0.762324631,0.64899534,-0.02100732,0.727677763,0.498464763,-0.042421862,0.717495978,0.38184762,-0.059862711,0.732977629,0.2818048,-0.076768011,0.782808125,0.49597773,-0.073461592,0.669150889,0.533870578,-0.1010895,0.680376053,0.585273921,-0.103365749,0.711282849,0.583490133,-0.102657109,0.791516304,0.598569453,-0.078924693,0.667309046,0.626645625,-0.104845673,0.68696934,0.661197007,-0.095433943,0.719590008,0.661652327,-0.091493495,0.789270699,0.69413209,-0.084365465,0.674284756,0.712267041,-0.109514199,0.695589781,0.733742118,-0.0914829,0.729835629,0.730258942,-0.0804215,0.782793105,0.779720366,-0.09081047,0.692738533,0.783532381,-0.109394051,0.712283909,0.794419944,-0.099505365,0.746060371,0.79429245,-0.091554582 +Right,0.855832934,0.904177129,-6.15E-07,0.797551095,0.740813971,-0.005277875,0.747091174,0.552651644,-0.018809827,0.7308864,0.410830706,-0.032249529,0.74669981,0.296818554,-0.044667739,0.795908153,0.500008464,-0.045658197,0.684540451,0.523906767,-0.070379749,0.70385462,0.587587178,-0.075303227,0.736819208,0.586931348,-0.076879591,0.804310441,0.597434819,-0.057842582,0.681996822,0.622355938,-0.082764216,0.706869602,0.663994491,-0.076102607,0.743773162,0.667200863,-0.072476625,0.800537288,0.700423717,-0.069562942,0.682450235,0.707900703,-0.096956,0.708206177,0.742359519,-0.079355538,0.746832192,0.743525803,-0.065609626,0.790241301,0.801724494,-0.080523923,0.689730108,0.788356304,-0.100851297,0.710484326,0.810078144,-0.088955767,0.747434199,0.812850952,-0.077255905 +Right,0.819383025,0.913378477,-7.20E-07,0.747532368,0.729815602,-0.015305182,0.720525742,0.533704221,-0.023958743,0.727719784,0.392497122,-0.033394836,0.750737011,0.29135108,-0.039939985,0.803766131,0.483286709,-0.010738161,0.706252337,0.522313654,-0.041584451,0.709377229,0.596458673,-0.058901247,0.740674794,0.595303416,-0.068479396,0.827976882,0.568943262,-0.019553091,0.706712842,0.626784086,-0.050579958,0.716982484,0.676504731,-0.055975482,0.753925145,0.671154857,-0.057805929,0.836987555,0.66468358,-0.032903567,0.716628313,0.713048935,-0.06701947,0.726433218,0.762744784,-0.058157757,0.764852762,0.756780624,-0.047133535,0.835783839,0.764207244,-0.048152495,0.738319278,0.807532072,-0.070319518,0.745049179,0.837017596,-0.065100066,0.779482484,0.83081305,-0.056463674 +Right,0.744402051,0.740094781,-7.12E-07,0.71550554,0.625068069,-0.046635255,0.725913644,0.489602268,-0.065347806,0.741410196,0.392531395,-0.075417936,0.759295821,0.299756318,-0.079019539,0.819000125,0.509632051,-0.053727761,0.731978536,0.570339918,-0.07686089,0.707364976,0.597342968,-0.085084341,0.722983599,0.594369471,-0.091765396,0.848035455,0.601341188,-0.04598368,0.737436295,0.671635628,-0.066163711,0.72260946,0.666803658,-0.068047926,0.743083894,0.641805112,-0.071084969,0.855842531,0.698287964,-0.042193051,0.750404716,0.748732626,-0.067435503,0.734637439,0.74111855,-0.057125535,0.754146516,0.719611585,-0.049034916,0.852342725,0.78454423,-0.043499634,0.771113038,0.814762831,-0.068783678,0.752967477,0.806345701,-0.067519464,0.763006747,0.790901065,-0.062861361 +Right,0.75798142,0.754458189,-6.49E-07,0.727638006,0.638305187,-0.046076681,0.732569993,0.494576573,-0.065253176,0.741035163,0.391156882,-0.075720422,0.753358424,0.293993562,-0.079334803,0.82627666,0.516928494,-0.05510797,0.738372862,0.576694131,-0.080025345,0.721075356,0.599553227,-0.090047941,0.742503524,0.592431545,-0.097969249,0.856071949,0.609131515,-0.047445472,0.737156391,0.683431745,-0.06788525,0.732786953,0.678532183,-0.069042377,0.761957884,0.652848065,-0.071644194,0.863938928,0.707448125,-0.043932714,0.749197841,0.761772215,-0.069225527,0.741238058,0.754698396,-0.057543967,0.766740859,0.733517408,-0.048277922,0.860506415,0.795666695,-0.045720749,0.767705858,0.828312457,-0.07232891,0.754896998,0.818145096,-0.072063737,0.770529985,0.800514698,-0.067708991 +Right,0.768962204,0.760878801,-6.04E-07,0.730094612,0.651375294,-0.047693998,0.726987898,0.504537284,-0.065369278,0.721693635,0.399941146,-0.073905677,0.713391304,0.305699974,-0.075642005,0.83227402,0.513589501,-0.048960146,0.744213641,0.57884562,-0.075786367,0.730489373,0.606427968,-0.091162056,0.755832791,0.595991135,-0.102446407,0.866723299,0.602834463,-0.039469376,0.74494803,0.690942109,-0.057778068,0.74630481,0.680058122,-0.059970919,0.779831231,0.644697845,-0.063253969,0.876416802,0.702496171,-0.035137441,0.758727789,0.767159045,-0.05681615,0.754877865,0.753164828,-0.043295581,0.784504533,0.725773931,-0.032393876,0.872273922,0.79012984,-0.036871191,0.776386738,0.830671012,-0.061811518,0.769612312,0.818080962,-0.060960162,0.790666401,0.798261285,-0.055454511 +Right,0.789007187,0.760538816,-7.46E-07,0.738388956,0.667943716,-0.051446714,0.726710916,0.513605535,-0.069192573,0.717137694,0.407873929,-0.077362694,0.703644812,0.318636298,-0.079254605,0.835196435,0.501676857,-0.055982217,0.764707327,0.587647319,-0.082722634,0.742596865,0.623485804,-0.096079983,0.754767656,0.615888834,-0.105822362,0.881739199,0.583727479,-0.044408623,0.773724616,0.693620861,-0.063137352,0.761090279,0.684535801,-0.063611768,0.779086471,0.646435738,-0.065031253,0.899968743,0.681408703,-0.038064588,0.794952452,0.764797628,-0.062739976,0.778090179,0.754088879,-0.049937982,0.795871496,0.722990394,-0.038555175,0.903854191,0.767941535,-0.037599903,0.819199443,0.825286448,-0.064915068,0.798706651,0.820633113,-0.063986719,0.806294262,0.799856544,-0.057748698 +Right,0.788458228,0.802933335,-8.22E-07,0.736315548,0.701128602,-0.052454561,0.720141888,0.552421868,-0.073440641,0.703042746,0.450391442,-0.086064421,0.687860072,0.35880518,-0.091746442,0.839192331,0.508793175,-0.052919831,0.773256063,0.603246093,-0.084525831,0.742734015,0.647588253,-0.101703562,0.751446784,0.640564978,-0.113401659,0.888451278,0.592762232,-0.043908667,0.786200821,0.710562229,-0.067990169,0.760553837,0.709111869,-0.072789252,0.774993896,0.670364261,-0.076444425,0.910135746,0.693891883,-0.040623326,0.808030307,0.780281603,-0.067612261,0.783420742,0.780071259,-0.057048671,0.798749149,0.752675235,-0.047297791,0.916267157,0.783849716,-0.043630958,0.834958851,0.843151629,-0.068098433,0.810225368,0.842749357,-0.065091759,0.815868974,0.822632909,-0.058013804 +Right,0.760569096,0.827326417,-8.35E-07,0.713585436,0.721339285,-0.047087129,0.700099289,0.577005744,-0.068464562,0.681057513,0.480545163,-0.082526967,0.655748963,0.394039571,-0.090249173,0.827215791,0.530116081,-0.05057127,0.759316742,0.622227609,-0.080668576,0.728133142,0.657069147,-0.097671948,0.737821877,0.639175951,-0.110293366,0.87436074,0.613108218,-0.045042321,0.770704925,0.727782249,-0.068816952,0.743262172,0.726550698,-0.074429683,0.758691311,0.686531246,-0.079323262,0.893872201,0.714488566,-0.044288263,0.79052031,0.796483994,-0.069746278,0.763281643,0.799122036,-0.060160123,0.776984036,0.775452733,-0.052296337,0.897526443,0.805866838,-0.049445394,0.815811753,0.863073409,-0.073101796,0.789283335,0.86190927,-0.070966221,0.793599427,0.841750026,-0.065244377 +Right,0.742020726,0.837730587,-7.65E-07,0.695079565,0.741458893,-0.048213147,0.677539706,0.582812905,-0.070440128,0.658770442,0.475431979,-0.083851866,0.628449082,0.378812909,-0.09047813,0.797859251,0.541581988,-0.061267059,0.715369582,0.634149909,-0.09340056,0.696774364,0.673791349,-0.110514,0.715315878,0.657340169,-0.123354174,0.844681025,0.626305044,-0.054637838,0.728615165,0.741586387,-0.079238638,0.716054201,0.743681967,-0.08202789,0.739081919,0.701596379,-0.085390836,0.86407423,0.730420351,-0.052396718,0.751014113,0.816623509,-0.079122163,0.734960198,0.819487453,-0.064297609,0.754190862,0.79299897,-0.052637663,0.867755771,0.824867129,-0.05608033,0.779413581,0.883911312,-0.084858201,0.762624979,0.883684099,-0.082843311,0.775087893,0.862484455,-0.07609576 +Right,0.718936741,0.794382811,-3.77E-07,0.661629736,0.66784364,-0.034488153,0.619212925,0.539319575,-0.057248086,0.5822559,0.439800501,-0.073907897,0.561715662,0.337444007,-0.085806884,0.716282964,0.528121471,-0.057534385,0.590859532,0.602888107,-0.086073376,0.603908062,0.637432456,-0.100687884,0.64520365,0.617447615,-0.110149376,0.734434485,0.633571923,-0.059680641,0.590993762,0.711374342,-0.080516011,0.61932683,0.711241066,-0.082566105,0.662600577,0.681846499,-0.089741491,0.740167916,0.740902603,-0.064788915,0.603312314,0.80838418,-0.083351217,0.63158828,0.801741958,-0.071087129,0.673206985,0.779767931,-0.066388451,0.738496244,0.844575584,-0.074316896,0.6316728,0.893404603,-0.093236409,0.653386295,0.877453208,-0.090969287,0.693146229,0.850911319,-0.089326188 +Right,0.72053808,0.818306625,-5.60E-07,0.639681578,0.679856837,-0.015286637,0.560368299,0.553777218,-0.033619232,0.507250309,0.451687157,-0.05005594,0.489716202,0.339250892,-0.066096298,0.636360824,0.521990538,-0.055517629,0.521649361,0.590776503,-0.085347727,0.542846322,0.634937465,-0.094030745,0.57850343,0.621197581,-0.097667716,0.660164773,0.628037333,-0.06391748,0.529217362,0.702350736,-0.089216322,0.5556826,0.717603743,-0.08428847,0.594268084,0.693992019,-0.08444237,0.670840681,0.729974151,-0.072801761,0.548241496,0.795811117,-0.097360149,0.574373603,0.800465584,-0.080550581,0.613426507,0.772852659,-0.070450537,0.674851418,0.822323799,-0.082443394,0.573350966,0.871205747,-0.099769205,0.596764266,0.866086721,-0.088766597,0.636745453,0.841542959,-0.080348901 +Right,0.690695465,0.763439953,-4.93E-07,0.600277245,0.648570418,-0.02568371,0.526288986,0.54317534,-0.051265359,0.473716944,0.4507927,-0.072382078,0.43758446,0.351737559,-0.091199853,0.599608362,0.496358037,-0.076371461,0.490706384,0.620962977,-0.103247672,0.510610461,0.669935226,-0.103005521,0.543854773,0.644064724,-0.101152465,0.634656668,0.602450788,-0.082784124,0.50692904,0.732748568,-0.107101195,0.532781243,0.745975614,-0.096012235,0.568265319,0.709859133,-0.092449374,0.654435396,0.706407607,-0.089674696,0.534799337,0.820111871,-0.112793513,0.559488535,0.819808781,-0.092535242,0.596302629,0.784332335,-0.081686296,0.666498125,0.802131295,-0.098533355,0.569362998,0.882954001,-0.118349515,0.589289665,0.871131659,-0.109366655,0.626417279,0.837988377,-0.102435835 +Right,0.741375566,0.778639734,-6.88E-07,0.648890436,0.667296827,-0.017587909,0.555798948,0.558187366,-0.036908198,0.492223114,0.470086992,-0.054402575,0.456067175,0.369773805,-0.071492195,0.620622456,0.497303069,-0.061450448,0.514637232,0.620828688,-0.096151009,0.544668496,0.67087692,-0.106129937,0.578459859,0.64043045,-0.11027731,0.659935355,0.601610541,-0.07169801,0.538135052,0.727762938,-0.103824914,0.572107315,0.747609437,-0.098061234,0.60844326,0.71220243,-0.095874473,0.685017645,0.709036767,-0.083083712,0.569279969,0.819312751,-0.114626952,0.600496292,0.822326958,-0.096660502,0.636071563,0.778182507,-0.084131494,0.70246911,0.807941437,-0.095088638,0.604303002,0.888560653,-0.116624735,0.628654659,0.882434189,-0.104735076,0.665615559,0.848003924,-0.094535165 +Right,0.770128965,0.833301783,-6.44E-07,0.672647297,0.691979766,-0.012603106,0.586681604,0.556666493,-0.027074177,0.53394562,0.455493391,-0.041125044,0.505195916,0.357040823,-0.053336792,0.650981843,0.487814307,-0.041244779,0.553782046,0.619297028,-0.071162589,0.580580354,0.666918874,-0.081031293,0.613409817,0.631442428,-0.085716851,0.688702822,0.582893014,-0.053470854,0.578267336,0.719950438,-0.080425613,0.607661128,0.734278381,-0.076900989,0.640801489,0.693462908,-0.076428354,0.714463174,0.682426214,-0.067411318,0.607133567,0.80313319,-0.093314826,0.635713935,0.807007551,-0.077077381,0.671196103,0.763432264,-0.066287138,0.734194756,0.776313126,-0.082704268,0.644141853,0.867982924,-0.099479429,0.667129397,0.86575222,-0.088628121,0.70353061,0.830634236,-0.079199299 +Right,0.792162776,0.777002275,-5.74E-07,0.705123067,0.656146348,-0.019160919,0.636725366,0.525792897,-0.036060933,0.591955483,0.42258656,-0.049786814,0.562050462,0.330933154,-0.061747219,0.710580051,0.480987012,-0.053122461,0.606336236,0.60370326,-0.07732904,0.625747144,0.652762234,-0.083798498,0.658797681,0.627467692,-0.08720082,0.745557189,0.584547758,-0.060365204,0.625045598,0.705474913,-0.081036896,0.650048018,0.716867387,-0.076571532,0.684653997,0.685921609,-0.077779882,0.765927315,0.68677032,-0.068508938,0.652590632,0.79071486,-0.0898249,0.675476134,0.793968439,-0.075605705,0.710499048,0.763089776,-0.068065464,0.778334439,0.781118512,-0.078115642,0.686647236,0.853333592,-0.094184428,0.706557631,0.84747529,-0.085681073,0.742912531,0.81960094,-0.079193182 +Right,0.74941045,0.779497206,-4.35E-07,0.702518284,0.65781939,-0.045556564,0.680550814,0.50726068,-0.066617884,0.66792345,0.398850501,-0.079472467,0.66569972,0.286315799,-0.0850586,0.789098918,0.492578804,-0.052403793,0.683774769,0.582473397,-0.083166018,0.690909863,0.613691449,-0.100806735,0.726949751,0.591385603,-0.112870768,0.823371351,0.577634573,-0.047363319,0.698675811,0.694603205,-0.071612135,0.718573093,0.690063,-0.077445202,0.756890297,0.653133094,-0.084263325,0.840410411,0.676821232,-0.047619171,0.718041301,0.778573155,-0.072549433,0.734685481,0.766967654,-0.064417459,0.769252121,0.732544184,-0.058834318,0.845034301,0.777087927,-0.05357004,0.746348917,0.849918962,-0.079012915,0.757894218,0.836006045,-0.081740223,0.790275216,0.806518912,-0.080933809 +Right,0.760322332,0.752048135,-5.92E-07,0.729148388,0.629153788,-0.0495052,0.723623872,0.483847976,-0.073210098,0.720510244,0.380316973,-0.088014752,0.725007653,0.275891185,-0.094826594,0.836843252,0.504957557,-0.059195455,0.72845608,0.565803468,-0.090598822,0.719794035,0.597954154,-0.10550724,0.752818227,0.594892859,-0.115499735,0.864045918,0.602158189,-0.052278955,0.732159138,0.681723297,-0.077145338,0.737029493,0.678778172,-0.07869707,0.77674067,0.650606751,-0.081343889,0.870162845,0.705228806,-0.050513856,0.743092179,0.766156673,-0.076799139,0.744473577,0.7583915,-0.062134709,0.777552664,0.736575603,-0.051047713,0.864644647,0.798156083,-0.055142757,0.761305451,0.839122713,-0.083223358,0.757925451,0.828772724,-0.082740299,0.782869697,0.810424387,-0.077957757 +Right,0.753030717,0.738168657,-5.42E-07,0.730380297,0.624963522,-0.050749354,0.742816746,0.481883287,-0.072530948,0.751967072,0.382490605,-0.084009483,0.764685631,0.284502804,-0.087962471,0.837209105,0.53604126,-0.068234004,0.738901198,0.56474942,-0.096813977,0.73207891,0.57924813,-0.10860239,0.759894907,0.577617526,-0.116351411,0.862567365,0.644618392,-0.057003364,0.722381651,0.682655096,-0.076433964,0.739289701,0.666380167,-0.072896726,0.778705776,0.644650936,-0.071214564,0.860665023,0.75254041,-0.049911074,0.728697598,0.767348647,-0.073481731,0.738250136,0.746428609,-0.051795181,0.772674501,0.728886783,-0.033453293,0.845900774,0.842808783,-0.049279761,0.742493451,0.84371841,-0.07931795,0.745395422,0.826712549,-0.076000296,0.771582425,0.813652992,-0.066111252 +Right,0.746211886,0.734340012,-4.79E-07,0.72886467,0.617460907,-0.052179001,0.739286065,0.482572943,-0.078081675,0.749543071,0.384124845,-0.093357965,0.767140508,0.28663829,-0.10067302,0.835035086,0.533385456,-0.07235156,0.727351904,0.550804436,-0.104497612,0.721499324,0.574600518,-0.118779436,0.754144371,0.581233263,-0.128342777,0.853890538,0.642957985,-0.062316932,0.713352382,0.665566564,-0.085089944,0.728699982,0.664736867,-0.083421454,0.77245295,0.654459059,-0.083736219,0.84799397,0.750433922,-0.056493461,0.717099667,0.753549814,-0.081974097,0.726578474,0.743610382,-0.062050764,0.764077783,0.734281301,-0.04622364,0.829955697,0.841159582,-0.057204437,0.726587057,0.832110167,-0.086862355,0.731764555,0.822760522,-0.084096491,0.762893975,0.817620695,-0.076093048 +Right,0.749215782,0.747252703,-4.69E-07,0.739280999,0.61703819,-0.046463802,0.752103806,0.479595959,-0.071365334,0.76106751,0.379743457,-0.087804504,0.778447092,0.283179194,-0.097666591,0.842387974,0.541228771,-0.065417774,0.729001343,0.534744263,-0.100631654,0.725625634,0.562348843,-0.121048681,0.758039713,0.579579532,-0.134637386,0.85104835,0.64580965,-0.060041718,0.712376416,0.642834365,-0.086175084,0.726984859,0.656896114,-0.089336157,0.767494977,0.664151549,-0.093630239,0.838757098,0.749045312,-0.059002373,0.709516406,0.736408949,-0.085213654,0.720740438,0.740880847,-0.070857398,0.755612254,0.743878126,-0.060195558,0.816765606,0.840459764,-0.064126365,0.714975357,0.825040698,-0.091769315,0.72134912,0.819730401,-0.091002204,0.751040578,0.818241298,-0.086348325 +Right,0.75947541,0.733782947,-3.06E-07,0.751039088,0.599261105,-0.041540965,0.754318953,0.471663415,-0.067689493,0.75962311,0.374232948,-0.086449578,0.782410622,0.28311184,-0.100516096,0.832804441,0.543895245,-0.067102715,0.714040875,0.510427415,-0.101336941,0.714758158,0.536504984,-0.118914977,0.748430371,0.55622673,-0.129397735,0.828005254,0.6432423,-0.0653807,0.688681662,0.605795443,-0.091691904,0.706997752,0.626461923,-0.094562121,0.746325016,0.643668711,-0.099538386,0.809967279,0.738813937,-0.067563057,0.67764467,0.698026717,-0.093010083,0.698604822,0.708141685,-0.081949949,0.735874712,0.718704998,-0.074978203,0.78565979,0.824678361,-0.074840799,0.680077732,0.788338482,-0.100810587,0.697080493,0.789997816,-0.101734586,0.733886421,0.799427867,-0.09983664 +Right,0.757034421,0.750811994,-3.21E-07,0.752230048,0.611247063,-0.043264408,0.759269297,0.48042798,-0.069036968,0.767087579,0.379516065,-0.087175466,0.792457581,0.286605686,-0.100323446,0.835207283,0.564811945,-0.067293935,0.71502471,0.520108879,-0.103506669,0.717287242,0.547761679,-0.123472013,0.75355947,0.570748508,-0.135525599,0.828287959,0.666983604,-0.064901881,0.687428236,0.615996063,-0.09253116,0.706907451,0.63960743,-0.096957423,0.747889519,0.65935266,-0.103177093,0.807602644,0.762368321,-0.06673073,0.673734307,0.70997858,-0.093540564,0.694720328,0.725865364,-0.083567612,0.73275733,0.741883695,-0.07729204,0.780553818,0.846693456,-0.073847972,0.672309518,0.803339362,-0.100411713,0.689084709,0.81110096,-0.101949319,0.72654146,0.827042699,-0.100620657 +Right,0.752983928,0.750169158,-3.03E-07,0.748658836,0.610562503,-0.045774683,0.757556736,0.478622615,-0.072738744,0.766682863,0.377393663,-0.09142863,0.793232083,0.286327004,-0.104437307,0.836738229,0.563420117,-0.070528768,0.717381716,0.519124269,-0.10706035,0.718939066,0.548647463,-0.126518279,0.755063117,0.572844982,-0.138338134,0.830780447,0.666142941,-0.067062967,0.688170671,0.61703068,-0.095888004,0.70751971,0.640545547,-0.100317292,0.748500109,0.661007762,-0.106315434,0.809688509,0.762164056,-0.067956604,0.674696326,0.713055611,-0.094905332,0.69588089,0.726868331,-0.084060751,0.734324753,0.741557598,-0.077180691,0.782268584,0.847925007,-0.074458092,0.674530029,0.804621816,-0.100236289,0.691974401,0.808519185,-0.101276867,0.73024404,0.820365012,-0.099781282 +Right,0.74648416,0.769297659,-5.79E-07,0.7249825,0.641319394,-0.052190617,0.728164852,0.495456934,-0.082087837,0.729922891,0.385218501,-0.102659129,0.739138305,0.274895221,-0.115475267,0.835747838,0.521909237,-0.073577598,0.719003677,0.561579525,-0.112424605,0.709857225,0.594139636,-0.132700488,0.745689213,0.59839803,-0.146631435,0.859157324,0.633572638,-0.067641445,0.710990846,0.67962873,-0.096457101,0.71780467,0.688539267,-0.098253332,0.763483405,0.674680531,-0.101697154,0.858216822,0.748801172,-0.066542991,0.716440916,0.774862289,-0.095233746,0.717589498,0.775990903,-0.076423757,0.753159881,0.764979422,-0.062977731,0.845291376,0.851485014,-0.072353028,0.730774701,0.857812941,-0.102255821,0.725067973,0.843230426,-0.099757574,0.749157071,0.825035393,-0.093555249 +Right,0.750934601,0.772704959,-7.59E-07,0.714764178,0.65051198,-0.055789925,0.713424861,0.495076567,-0.084265389,0.714064479,0.381202877,-0.102571145,0.714168072,0.273352772,-0.113330789,0.83406806,0.511405826,-0.075492047,0.739934623,0.589887679,-0.108282864,0.71938926,0.606074154,-0.120421484,0.740624726,0.586635768,-0.129337326,0.872579575,0.622417688,-0.066197835,0.741176546,0.712867498,-0.092666738,0.726559937,0.696302891,-0.091894709,0.75442791,0.655352592,-0.092811674,0.882476747,0.740049899,-0.061278041,0.758238733,0.801936507,-0.093600333,0.738275826,0.781857669,-0.077347971,0.761786222,0.747677505,-0.063934691,0.877269864,0.843599975,-0.062534101,0.782402933,0.880573511,-0.095966995,0.759572327,0.861956,-0.094127893,0.770336092,0.831944764,-0.08706373 +Right,0.758358896,0.757155597,-7.91E-07,0.710796058,0.642652154,-0.057912767,0.705348969,0.472559273,-0.081750013,0.709330976,0.344744861,-0.094937794,0.711418986,0.241803348,-0.100368232,0.829498827,0.46796757,-0.065087855,0.743259966,0.537266016,-0.096788421,0.717624962,0.575803578,-0.11076533,0.732323527,0.576618731,-0.120378368,0.872772098,0.572506785,-0.052846156,0.747221351,0.660306513,-0.077042967,0.730769217,0.658862174,-0.077643,0.754799128,0.630255818,-0.078714505,0.884680986,0.686529934,-0.046154957,0.766059995,0.751489758,-0.078926556,0.74304688,0.745216727,-0.064783007,0.762905359,0.723149836,-0.051155221,0.882451534,0.787804961,-0.045551442,0.789764881,0.832508981,-0.080248162,0.765323818,0.826295555,-0.079563051,0.773788512,0.807692885,-0.072013937 +Right,0.747596383,0.750797391,-8.24E-07,0.692785442,0.633340836,-0.061082862,0.686625957,0.461632192,-0.084731884,0.687098861,0.334574521,-0.097342297,0.684806705,0.221629679,-0.102151491,0.809703529,0.426254302,-0.059605286,0.72748524,0.515262485,-0.09107779,0.697365105,0.57082361,-0.107191406,0.716415584,0.567311585,-0.119835846,0.858243763,0.526897132,-0.047277238,0.737926483,0.638995588,-0.072837032,0.713276863,0.649156868,-0.077860907,0.739427328,0.612644255,-0.082859851,0.875597119,0.642428756,-0.041304592,0.758526087,0.730641723,-0.070092,0.730797112,0.728506804,-0.058202751,0.754119337,0.69636488,-0.049009539,0.876231611,0.744201243,-0.042125616,0.779250503,0.80205524,-0.070287079,0.7539801,0.80037868,-0.069706529,0.767157197,0.781768501,-0.065216288 +Right,0.761397898,0.817014933,-9.79E-07,0.693635702,0.717000842,-0.063910514,0.669995487,0.533947051,-0.08665023,0.655720294,0.405940115,-0.09777496,0.636597872,0.29065311,-0.100740157,0.792843878,0.465620965,-0.066067554,0.725184679,0.585963666,-0.100752674,0.696255267,0.646933734,-0.116915658,0.707593799,0.634274602,-0.128698274,0.856042266,0.547852635,-0.052687615,0.752767682,0.710925519,-0.082576156,0.724650025,0.732659101,-0.087978452,0.739834189,0.692231834,-0.092314392,0.889990807,0.655537069,-0.045882177,0.786375463,0.796122134,-0.080818266,0.75934279,0.810847819,-0.07187371,0.776939869,0.776011288,-0.06332022,0.906584263,0.755686164,-0.045646559,0.823863029,0.856305599,-0.078417078,0.795336604,0.870646417,-0.080245838,0.803024173,0.849928379,-0.076746643 +Right,0.765771925,0.853164792,-1.03E-06,0.699312806,0.741949618,-0.060499333,0.67573607,0.564218283,-0.084874682,0.660286546,0.439188838,-0.099155918,0.63941896,0.324052483,-0.105311327,0.806148767,0.492197514,-0.062924996,0.738001227,0.611644804,-0.098232463,0.704406857,0.672017157,-0.114415005,0.716886044,0.653392434,-0.126659408,0.866531312,0.57419914,-0.053596172,0.763337076,0.732091844,-0.087163366,0.727735162,0.752256274,-0.094846338,0.742204428,0.702968895,-0.100571312,0.900072157,0.680937886,-0.05049891,0.794323027,0.813575149,-0.088740565,0.759748101,0.833494902,-0.081121489,0.773776352,0.797504246,-0.073506653,0.917656302,0.781695187,-0.053727709,0.832717359,0.880511701,-0.087959126,0.796922386,0.897412777,-0.08930245,0.79819876,0.873387218,-0.085574277 +Right,0.760250628,0.795293808,-5.76E-07,0.709076405,0.684742153,-0.058132745,0.680239379,0.548834622,-0.092352569,0.660481513,0.453724802,-0.116202101,0.646747351,0.335715443,-0.133248746,0.792467892,0.530466199,-0.088448353,0.681304634,0.657003522,-0.131130189,0.680950999,0.67647326,-0.154879674,0.717361689,0.650964677,-0.171042219,0.83877784,0.637562215,-0.081316262,0.695299983,0.780270457,-0.112431787,0.704220057,0.758712769,-0.114912622,0.744179785,0.705108285,-0.119030066,0.861795723,0.755528569,-0.078338914,0.71976155,0.866024733,-0.109152988,0.723803282,0.842236042,-0.085290149,0.758983791,0.794437706,-0.067678101,0.86980176,0.864032984,-0.08320412,0.755331159,0.934239447,-0.115025789,0.754680753,0.910139084,-0.107749231,0.782269835,0.869278789,-0.097053319 +Right,0.783413589,0.827040792,-2.89E-07,0.740993142,0.697976649,-0.049029779,0.704053104,0.564528644,-0.081812859,0.6743294,0.458009571,-0.106186591,0.662387609,0.340674102,-0.124773227,0.796888232,0.57570225,-0.083747901,0.661089957,0.646352947,-0.131310329,0.677824378,0.668659806,-0.15949738,0.724854648,0.66073513,-0.17572467,0.823382258,0.684662759,-0.082060978,0.663303614,0.766960919,-0.117182173,0.69364655,0.761239707,-0.122123718,0.741932333,0.741088033,-0.127711669,0.833114386,0.802535117,-0.084852725,0.679321468,0.869834065,-0.117435686,0.707700133,0.850466847,-0.100665569,0.752230763,0.823788524,-0.087628171,0.831818998,0.915972114,-0.094143756,0.707201064,0.960207701,-0.124419659,0.726153374,0.933917403,-0.121813186,0.767278969,0.905747592,-0.115650669 +Right,0.881720006,0.907804966,-5.82E-07,0.829702735,0.740255594,-0.015817896,0.746111095,0.585408092,-0.035810489,0.680693328,0.472183734,-0.053869408,0.670645237,0.34889999,-0.070301689,0.777345836,0.559488177,-0.061522264,0.644683897,0.611063063,-0.094569586,0.665765524,0.665851772,-0.100860827,0.708678246,0.666409492,-0.101742022,0.787872016,0.681833982,-0.071094885,0.642094374,0.733389497,-0.100954711,0.677999794,0.762592733,-0.093336277,0.721153021,0.755310595,-0.089567557,0.791609347,0.803339958,-0.081096508,0.654533088,0.838938773,-0.111440435,0.692513824,0.859671712,-0.092132173,0.736394167,0.849931538,-0.078369357,0.792313039,0.917732477,-0.091252089,0.680989981,0.932976007,-0.114385821,0.712820292,0.94203198,-0.103267103,0.756645143,0.937238574,-0.09235017 +Right,0.882059693,0.852880538,-6.00E-07,0.848260224,0.693964243,-0.000435009,0.765513539,0.536846876,-0.015772149,0.703021586,0.42291683,-0.030977122,0.68799746,0.300784826,-0.045976814,0.778954506,0.49433589,-0.058135033,0.645574927,0.536073446,-0.090174459,0.669330299,0.586904526,-0.097008578,0.71226275,0.589719534,-0.097578861,0.784568906,0.610017478,-0.073399991,0.637611985,0.651572108,-0.101346835,0.671695113,0.683887184,-0.091703512,0.717692792,0.677778304,-0.086013891,0.784579098,0.7327227,-0.087162293,0.648802102,0.753081381,-0.11629793,0.684920788,0.778624594,-0.093113549,0.729410887,0.773297489,-0.076033808,0.780045748,0.850644529,-0.099268876,0.669881225,0.845632136,-0.12351805,0.700533271,0.86169827,-0.109055869,0.741347492,0.863830209,-0.095294125 +Right,0.890756726,0.850129604,-6.18E-07,0.857502282,0.682319343,-0.002470788,0.773721874,0.515406966,-0.017095508,0.708289504,0.393280566,-0.031374387,0.694809794,0.266462237,-0.044464484,0.786479235,0.461726576,-0.051147129,0.650682986,0.509485841,-0.083844863,0.676924706,0.565037489,-0.090453669,0.718641639,0.562417686,-0.090596609,0.790207326,0.57673192,-0.064705275,0.642193854,0.623639762,-0.094094872,0.678479373,0.659111857,-0.084447511,0.722110331,0.65130192,-0.078003265,0.787232101,0.69894135,-0.077665098,0.65186137,0.721518159,-0.109593734,0.689346969,0.752620757,-0.086405762,0.732116163,0.747521102,-0.068052143,0.780466378,0.817488968,-0.089162409,0.672393739,0.811822772,-0.114715531,0.704428196,0.833871543,-0.10062895,0.74388212,0.837290645,-0.086038865 +Right,0.90473783,0.828018486,-5.99E-07,0.880990088,0.66184479,0.003003513,0.804352462,0.48427546,-0.009466204,0.745602727,0.349328369,-0.022001846,0.738709569,0.225811005,-0.034607161,0.805384457,0.459853649,-0.052121524,0.67435956,0.492696166,-0.080980338,0.70085156,0.537180662,-0.08738853,0.742949069,0.539011061,-0.087226734,0.801253378,0.577282071,-0.066161424,0.658076167,0.601558447,-0.089169435,0.691862822,0.636506498,-0.07800097,0.736617863,0.638169169,-0.071404502,0.792546451,0.696939886,-0.078271322,0.661866963,0.697737336,-0.101856813,0.696419716,0.729067445,-0.078323863,0.74010396,0.731876671,-0.061695885,0.780510306,0.810113966,-0.088638291,0.674985647,0.788181245,-0.107310958,0.705250323,0.810440242,-0.091245979,0.745102584,0.820100546,-0.076910488 +Right,0.908650041,0.790513396,-3.55E-07,0.888909101,0.615653992,0.0074625,0.824762344,0.442422539,-0.004488064,0.769944787,0.316179991,-0.016563639,0.768917203,0.194214672,-0.029064298,0.800705671,0.451942682,-0.051526185,0.674473345,0.462031662,-0.069181442,0.698934078,0.490793616,-0.068100654,0.738097668,0.491223097,-0.064050414,0.786630034,0.569763899,-0.06463407,0.656529188,0.562625289,-0.076367453,0.687869072,0.584768295,-0.062332053,0.731071293,0.590453506,-0.054989517,0.772656202,0.685554385,-0.073996194,0.654739976,0.658494949,-0.082162678,0.687832832,0.676162779,-0.056530271,0.730129719,0.681667268,-0.041616317,0.759907961,0.794457495,-0.081562832,0.662345648,0.749184251,-0.087283775,0.690299749,0.755702138,-0.067612462,0.727501571,0.762619376,-0.052994374 +Right,0.866467357,0.752274513,-1.87E-07,0.847473025,0.575355351,-1.52E-05,0.791845381,0.418149233,-0.0154855,0.748035669,0.302187651,-0.030507399,0.749052763,0.188046843,-0.046311598,0.755299687,0.462908983,-0.058423787,0.645300686,0.456949949,-0.076733895,0.672558784,0.471618891,-0.078442112,0.712225556,0.474002123,-0.076312274,0.739101171,0.576585174,-0.067423224,0.629234493,0.545144558,-0.077483065,0.660183549,0.553923726,-0.06634941,0.698383033,0.564879775,-0.060541872,0.726720572,0.685136795,-0.072989717,0.624638498,0.635201216,-0.07822226,0.653755903,0.6375314,-0.055896439,0.69107306,0.648739994,-0.042716414,0.718469977,0.785059333,-0.077698074,0.630496562,0.728916168,-0.078730948,0.646867514,0.71707654,-0.059362881,0.674265444,0.721826673,-0.045606121 +Right,0.797661245,0.724496186,-1.21E-07,0.79258877,0.552083015,-0.000686094,0.75411135,0.405724257,-0.010821789,0.715557635,0.298860669,-0.021081593,0.72161901,0.200811028,-0.032357533,0.68913883,0.44774121,-0.03197265,0.60551852,0.431644529,-0.042707842,0.625905573,0.457203269,-0.046022024,0.658892512,0.473260969,-0.046094641,0.665783465,0.547783673,-0.037266053,0.585930645,0.512333333,-0.040994305,0.613109529,0.530771971,-0.0354787,0.64610225,0.547012985,-0.032723919,0.649907172,0.643261492,-0.040044926,0.57616502,0.593844712,-0.040981013,0.601433754,0.603412151,-0.026480297,0.632242978,0.618748665,-0.018275429,0.640084326,0.732523084,-0.042128991,0.576590478,0.675637126,-0.041139875,0.596740842,0.676562667,-0.024936911,0.621281803,0.687359095,-0.012461658 +Right,0.735554814,0.711107612,-3.49E-08,0.73649323,0.552703857,-0.006379929,0.704740644,0.421046436,-0.01716684,0.66915375,0.318603933,-0.026408494,0.681770861,0.225623459,-0.035504259,0.632397354,0.447771072,-0.028460348,0.565345407,0.430049419,-0.03426601,0.588290393,0.452744097,-0.03512435,0.617217362,0.467927933,-0.03486412,0.605598569,0.538749337,-0.029268568,0.543565214,0.498668969,-0.029602028,0.569896817,0.516972363,-0.024513151,0.597932696,0.535410225,-0.02217607,0.588085294,0.625518084,-0.028032085,0.534065723,0.573863089,-0.026065838,0.557752669,0.585419416,-0.015047536,0.584008694,0.60303396,-0.009466194,0.577899039,0.703817964,-0.026740713,0.530644536,0.64799881,-0.02360164,0.551199853,0.652682126,-0.010263755,0.572414637,0.665078878,-0.00014542 +Right,0.709374189,0.711307347,-1.91E-08,0.707424402,0.566420794,-0.005763472,0.678056955,0.446536779,-0.017270949,0.649867773,0.347585082,-0.027607031,0.661427855,0.26263541,-0.03808064,0.613387644,0.480237097,-0.029854145,0.550041854,0.462427109,-0.036164131,0.573276639,0.480777472,-0.037061278,0.600799441,0.494545013,-0.036649145,0.591149747,0.561926961,-0.030999634,0.532889664,0.525391102,-0.030130174,0.556549251,0.536255956,-0.023973096,0.581915617,0.550569952,-0.02172083,0.576653123,0.640868902,-0.03019822,0.524733424,0.592496276,-0.027378706,0.546320856,0.598156035,-0.016099088,0.570481718,0.612241805,-0.010932353,0.568017125,0.712312579,-0.029349599,0.522780776,0.661453187,-0.025488781,0.541348577,0.660589457,-0.012164582,0.561749041,0.670915902,-0.002667397 +Right,0.700312734,0.704502463,1.59E-09,0.694840074,0.57168752,-0.00646496,0.667294681,0.465839475,-0.018642338,0.639609218,0.376230717,-0.029287413,0.646506906,0.296065062,-0.039793957,0.605309963,0.50589776,-0.031812258,0.543254972,0.494007558,-0.035762075,0.563648224,0.505957901,-0.033030655,0.589332938,0.518352687,-0.030064499,0.587855935,0.582535863,-0.032112714,0.529524684,0.551107287,-0.030313214,0.550872266,0.553837419,-0.023056231,0.574608743,0.56527102,-0.01996164,0.577463388,0.655714929,-0.030244745,0.523955107,0.614933848,-0.026785012,0.54361707,0.611617088,-0.016402354,0.566582322,0.621852934,-0.011991321,0.571836054,0.721253991,-0.028321799,0.526039541,0.678372502,-0.025301348,0.5423581,0.670163214,-0.014120009,0.561021924,0.675965667,-0.006287294 +Right,0.692641735,0.701257467,-1.05E-08,0.68604809,0.578636885,-0.004666256,0.662860334,0.484350473,-0.014683238,0.63981837,0.401245415,-0.023731166,0.64696312,0.328727782,-0.032367129,0.602439344,0.519606709,-0.024233734,0.545747042,0.502899766,-0.028666234,0.56344986,0.513259292,-0.028749127,0.585996449,0.524099827,-0.027829075,0.584686697,0.589276671,-0.024637509,0.534438014,0.556657851,-0.023215534,0.553860962,0.559532762,-0.018812416,0.57560879,0.570456266,-0.017442027,0.574341238,0.654834747,-0.023266364,0.529952765,0.615931571,-0.019462036,0.546648204,0.612111151,-0.011394866,0.567517042,0.622040212,-0.008236852,0.568414629,0.711845517,-0.021943174,0.530696452,0.672410369,-0.018262709,0.544729054,0.663994074,-0.008472427,0.56102556,0.668523848,-0.0014265 +Right,0.679302633,0.691955507,-4.20E-08,0.681379199,0.581908226,-0.003267273,0.663456678,0.489673138,-0.009910983,0.645107925,0.414271981,-0.016305078,0.652237236,0.353393972,-0.02269054,0.607230484,0.510310411,-0.015734762,0.561129212,0.49635011,-0.020337541,0.575157464,0.514054954,-0.022560878,0.594042301,0.52737987,-0.023416754,0.587885797,0.568987012,-0.016887691,0.546888292,0.542532206,-0.016278945,0.56269145,0.554978967,-0.013773892,0.580996633,0.568003356,-0.01330451,0.575019598,0.626474679,-0.016904999,0.539529324,0.593167126,-0.014693586,0.553903818,0.600355864,-0.007557834,0.571088552,0.612610102,-0.004322239,0.566591561,0.678871393,-0.017017109,0.536743701,0.64425385,-0.01404406,0.550269127,0.646850467,-0.004737604,0.564882994,0.65603894,0.002187539 +Right,0.678480983,0.651672065,-9.62E-08,0.683618367,0.546703577,-1.78E-05,0.668537498,0.46135208,-0.004146819,0.651052475,0.392225027,-0.008622638,0.659822702,0.337648094,-0.013212414,0.616845071,0.471232623,-0.01208796,0.57369107,0.455586553,-0.015107053,0.588493288,0.475710392,-0.015870446,0.607443631,0.489170223,-0.015922969,0.597509921,0.523633063,-0.01442943,0.559291244,0.501275897,-0.011748004,0.574341834,0.5184412,-0.007763507,0.591191709,0.531197608,-0.006772348,0.584554136,0.57725364,-0.015541804,0.552384019,0.549941421,-0.012780596,0.566632688,0.561575651,-0.005045956,0.582692504,0.57311511,-0.001663278,0.576489806,0.628365636,-0.016393485,0.546895921,0.596916914,-0.013358941,0.560277879,0.603700638,-0.003537823,0.574834883,0.61349076,0.003603182 +Right,0.676296949,0.671737909,-5.70E-08,0.681268871,0.573702633,-0.002033097,0.66656208,0.490400314,-0.007586568,0.650655448,0.422834039,-0.012938531,0.659610152,0.368835747,-0.018288856,0.619386911,0.500831008,-0.014663287,0.578876615,0.480255544,-0.018790426,0.591122866,0.497410685,-0.020019816,0.608356953,0.511158228,-0.020290051,0.60065496,0.550512671,-0.016273538,0.56378442,0.522928298,-0.015352841,0.577795625,0.537217855,-0.012002093,0.593771696,0.550454676,-0.011034806,0.58745271,0.60093087,-0.016814416,0.555660188,0.56932795,-0.015215065,0.569210827,0.578412473,-0.007963262,0.584589601,0.590622365,-0.004551696,0.578773975,0.648475766,-0.017253056,0.550644398,0.6149261,-0.015076867,0.563281178,0.618223548,-0.006250332,0.576646149,0.627225876,0.000235869 +Right,0.682074666,0.680299163,-7.79E-08,0.685112,0.588555276,-0.002832627,0.670355856,0.508879542,-0.009241236,0.653757513,0.445082635,-0.015248092,0.66025883,0.391374886,-0.021116961,0.626538932,0.520943165,-0.017254595,0.584213376,0.50506705,-0.02137777,0.595893443,0.523590565,-0.021025134,0.613231719,0.536048532,-0.020014282,0.610246837,0.569585323,-0.018767865,0.570057511,0.545762062,-0.018672297,0.583361208,0.560280979,-0.01407848,0.599308133,0.571473837,-0.012007569,0.598873854,0.618384719,-0.019218337,0.563522875,0.589903891,-0.018885801,0.576866686,0.599796176,-0.011086838,0.592368305,0.610001564,-0.007038139,0.591214895,0.664059997,-0.019525815,0.559987843,0.632987499,-0.018645264,0.572470486,0.637891054,-0.010103336,0.586213589,0.646483064,-0.003756043 +Right,0.696720481,0.684241772,-1.12E-07,0.693684638,0.599883854,-0.00133155,0.673902094,0.518645465,-0.009343866,0.659264266,0.454703003,-0.017006792,0.66947782,0.40228802,-0.025081782,0.648389459,0.533169806,-0.029919401,0.595887721,0.522195041,-0.039529502,0.607760608,0.538302302,-0.040697966,0.62792331,0.544276416,-0.040098559,0.636999249,0.586281538,-0.033929083,0.583601415,0.564381778,-0.040101025,0.596990705,0.577738702,-0.034478124,0.615638435,0.58612448,-0.031281114,0.627253056,0.637801051,-0.036394697,0.579781115,0.61095202,-0.04009293,0.592545331,0.618166089,-0.029549669,0.610324442,0.625385702,-0.023125043,0.61911118,0.685946941,-0.038541123,0.57904613,0.655840456,-0.039413955,0.588887572,0.656470239,-0.030000063,0.603376806,0.662309229,-0.02333406 +Right,0.705497086,0.677901089,-1.42E-07,0.699066341,0.596329153,-0.000942057,0.6775015,0.512075782,-0.010338716,0.663863659,0.447654665,-0.019385973,0.67271179,0.393372118,-0.029057305,0.664318562,0.529765368,-0.035892561,0.606811047,0.528735697,-0.047299132,0.619862199,0.545347571,-0.047648106,0.640296876,0.547098815,-0.046278916,0.656081915,0.585148633,-0.041478202,0.59639281,0.575276136,-0.050269753,0.611617923,0.589144349,-0.043439459,0.632157862,0.593634546,-0.039424226,0.648317575,0.638859391,-0.045384247,0.593827665,0.624048173,-0.051095136,0.60858959,0.632452905,-0.038922962,0.628489614,0.636268556,-0.031514883,0.641353846,0.689097285,-0.048910584,0.59567529,0.670185149,-0.05184241,0.607108116,0.671254635,-0.042598572,0.624924719,0.67444092,-0.036019381 +Right,0.715799034,0.677761078,-1.32E-07,0.703673542,0.599058926,-0.003023215,0.680012345,0.513666868,-0.015040547,0.664425254,0.453499466,-0.025887255,0.668993473,0.397729933,-0.037165076,0.676894248,0.539749563,-0.044620816,0.613382161,0.545528054,-0.059275068,0.629407167,0.554977953,-0.061067738,0.650824249,0.55474031,-0.06039371,0.672433019,0.600261092,-0.050438061,0.605503857,0.599663198,-0.062251166,0.623574555,0.603578627,-0.056062672,0.645522594,0.606535435,-0.053094655,0.666918516,0.656657517,-0.054420881,0.605604231,0.650133252,-0.063099839,0.622523129,0.65201807,-0.050374724,0.64348948,0.65432936,-0.042849828,0.660369992,0.708098769,-0.05803578,0.608819008,0.696084321,-0.064123921,0.623078167,0.693988383,-0.05494694,0.642370403,0.696668625,-0.048404202 +Right,0.716102242,0.677820683,-1.34E-07,0.702592492,0.599436283,-0.002730539,0.676511467,0.515977979,-0.014644377,0.660327852,0.455428451,-0.025526177,0.664430201,0.397868574,-0.036901992,0.674520314,0.540233135,-0.043270178,0.610845745,0.551565707,-0.058485527,0.62529093,0.561457396,-0.060822029,0.646195829,0.559592485,-0.060274288,0.671668947,0.600417614,-0.049025498,0.604113996,0.605301738,-0.061427139,0.621837378,0.609641612,-0.055163987,0.643558621,0.609629869,-0.051715601,0.667349219,0.656915784,-0.053072795,0.605127871,0.655955791,-0.062114775,0.622199535,0.657543242,-0.049188845,0.642757893,0.657251418,-0.041186187,0.661704719,0.708379686,-0.0567174,0.610237479,0.700319886,-0.062553681,0.624831021,0.697854042,-0.053107802,0.643966138,0.698159277,-0.046271965 +Right,0.723550022,0.67896384,-1.37E-07,0.704599798,0.602546811,-0.006093237,0.674381554,0.517891884,-0.020213965,0.658104062,0.458370566,-0.032717634,0.660255075,0.399759531,-0.045600243,0.685274839,0.544254959,-0.051485505,0.615317106,0.563238382,-0.070214607,0.631301343,0.572018445,-0.074102119,0.653817296,0.56865263,-0.074362434,0.685928285,0.608210862,-0.057172392,0.611088216,0.618152022,-0.073817842,0.630306721,0.622075319,-0.069076791,0.655023277,0.622950256,-0.066368967,0.683804274,0.667937338,-0.061204799,0.615228772,0.670837224,-0.073943965,0.632471085,0.672410369,-0.060920056,0.655589223,0.672038496,-0.052299287,0.678793907,0.722756267,-0.065120503,0.623949647,0.716721177,-0.074407563,0.638098955,0.712677062,-0.065538526,0.658899128,0.713073671,-0.058781713 +Right,0.724987209,0.676825166,-9.83E-08,0.699057817,0.600430787,-0.011055022,0.674007773,0.520200372,-0.029448783,0.666365981,0.459600508,-0.044793691,0.672466576,0.402454019,-0.060723718,0.701871037,0.561830938,-0.06754639,0.626751661,0.581535578,-0.089375384,0.641269267,0.583667994,-0.093705356,0.663576663,0.579968691,-0.093954623,0.707039118,0.628979802,-0.072110415,0.625068545,0.639804006,-0.091080338,0.641539574,0.635117531,-0.08528547,0.665151358,0.634996653,-0.083291583,0.70560801,0.688395679,-0.074838482,0.628968775,0.690149367,-0.090630688,0.644564748,0.685624421,-0.076613292,0.667738616,0.685344636,-0.067895599,0.698569298,0.739481807,-0.077746056,0.639232397,0.734419107,-0.089891523,0.652076364,0.726739347,-0.081365541,0.672498465,0.727142453,-0.075321689 +Right,0.727639914,0.681281865,-1.40E-07,0.70355463,0.602052152,-0.009127952,0.676218927,0.517933488,-0.025839433,0.665827572,0.454950154,-0.03980542,0.67234081,0.396335781,-0.054221421,0.69761467,0.548666954,-0.061925109,0.624171078,0.56787914,-0.081761695,0.639847279,0.577235043,-0.08484865,0.661871612,0.574812472,-0.084782794,0.701389074,0.614532948,-0.066895954,0.620528758,0.6231516,-0.084848605,0.638584077,0.626998246,-0.078659303,0.663263738,0.630037367,-0.076042928,0.699424326,0.67510128,-0.070013493,0.625233233,0.674279034,-0.084785633,0.6412099,0.675469041,-0.07083372,0.664167464,0.676761746,-0.06210028,0.692502081,0.728765965,-0.073093444,0.634763241,0.720148981,-0.084537469,0.648267746,0.716405571,-0.076004945,0.668673694,0.718530953,-0.069824502 +Right,0.72208935,0.674021423,-1.66E-07,0.705058932,0.593389392,-0.006699375,0.680088878,0.505538404,-0.021515906,0.668548465,0.440545917,-0.034387399,0.676667809,0.381657511,-0.047894392,0.691991806,0.529705405,-0.053814068,0.620340526,0.536051929,-0.072966546,0.635024369,0.551558077,-0.076938495,0.657306314,0.553135574,-0.077542655,0.690927148,0.594171286,-0.059567649,0.613323092,0.592204034,-0.076453492,0.631160438,0.602163315,-0.07082998,0.655910492,0.607675314,-0.068232797,0.686219335,0.654767752,-0.063741773,0.615297139,0.643828034,-0.077559307,0.631481886,0.650457382,-0.064211704,0.654543579,0.654185236,-0.055697072,0.678422391,0.708944738,-0.067711562,0.62249887,0.69361645,-0.078240119,0.636251032,0.693282008,-0.069854468,0.656613946,0.696473122,-0.063557371 +Right,0.716661811,0.674297273,-1.53E-07,0.70573169,0.593601882,-0.003527252,0.682463109,0.50260824,-0.016861094,0.667906106,0.439192742,-0.029119965,0.673543155,0.380048513,-0.041661307,0.681800425,0.523134768,-0.04608817,0.612436295,0.527126491,-0.064631924,0.629062831,0.541949272,-0.068322271,0.65223515,0.541693807,-0.06825085,0.676939964,0.585477769,-0.052632913,0.603540897,0.582067132,-0.067767881,0.623498976,0.592080116,-0.061596692,0.647117257,0.595845282,-0.057920847,0.670636117,0.645733774,-0.057769258,0.604629397,0.637262225,-0.069164298,0.623301804,0.643613935,-0.055611886,0.645796359,0.64561218,-0.04684554,0.663216054,0.701285183,-0.062541783,0.608526051,0.686493516,-0.070098206,0.624302804,0.685929596,-0.060717195,0.645313144,0.688191354,-0.053633198 +Right,0.713207841,0.688685656,-1.55E-07,0.704160929,0.602203667,-0.000816078,0.678461075,0.512504578,-0.010564715,0.659707904,0.446729213,-0.019838441,0.664610207,0.386449933,-0.029619599,0.661484003,0.527997017,-0.035634499,0.601207852,0.536966264,-0.047247939,0.61593461,0.555741131,-0.047436956,0.637441516,0.555880904,-0.046025973,0.65473491,0.588046908,-0.042060725,0.590976715,0.585929334,-0.051031955,0.608700752,0.601439893,-0.043824472,0.631156027,0.604826689,-0.039641295,0.649294972,0.647390962,-0.046810597,0.59058398,0.638414025,-0.053820662,0.60871911,0.64926976,-0.040638838,0.63084203,0.651835442,-0.032510199,0.645165443,0.703312337,-0.051010001,0.596228957,0.688436925,-0.055774834,0.610752344,0.693049014,-0.046025231,0.630243063,0.696139932,-0.038750675 +Right,0.708085418,0.689331532,-1.15E-07,0.700792849,0.595203042,0.000188428,0.676962256,0.506226659,-0.007601029,0.659160435,0.440741777,-0.014860524,0.665043533,0.382876277,-0.022833858,0.646189928,0.527667403,-0.032113042,0.591448426,0.538157582,-0.037398223,0.603724718,0.557326734,-0.033558503,0.623295188,0.560810864,-0.030212203,0.636115611,0.585529506,-0.037011109,0.581047297,0.58004266,-0.03998521,0.59580487,0.595146239,-0.031760864,0.615781009,0.601471722,-0.027672969,0.629177272,0.642834663,-0.039458953,0.578922629,0.628248155,-0.040630493,0.594126225,0.639469445,-0.027568873,0.613416255,0.644905567,-0.020691605,0.624981403,0.69828999,-0.04131113,0.581705809,0.677370608,-0.041302655,0.594135702,0.682164252,-0.0300503,0.610094786,0.687397301,-0.022377115 +Right,0.709930599,0.713487804,-5.01E-08,0.705030501,0.612193227,-0.003550312,0.680663288,0.527071834,-0.012607595,0.662813723,0.456004083,-0.020880371,0.671273351,0.39255619,-0.029397339,0.640019238,0.549977839,-0.02741134,0.590230525,0.545021176,-0.033576474,0.605302751,0.558258533,-0.033532429,0.625194252,0.565234423,-0.032581203,0.625976264,0.610082626,-0.029506888,0.576611221,0.588243842,-0.031074904,0.59288615,0.595633447,-0.025615809,0.611746073,0.605694711,-0.023163984,0.61661917,0.668590307,-0.029843254,0.572323263,0.638840854,-0.029790098,0.588212788,0.641308844,-0.020014163,0.606501222,0.649967015,-0.014929616,0.611111522,0.722286761,-0.030021152,0.57187593,0.690348506,-0.029101858,0.585161209,0.687890172,-0.019079069,0.600679636,0.693917215,-0.01187897 +Right,0.697112262,0.745849133,2.04E-08,0.695399821,0.640447676,-0.006844726,0.678408742,0.557975292,-0.016262339,0.661270738,0.487720728,-0.024743678,0.667406619,0.427705765,-0.032449957,0.618259668,0.588773489,-0.017948959,0.579349577,0.56819427,-0.022288479,0.598318338,0.578296423,-0.02446918,0.617405176,0.590599537,-0.025315614,0.602235675,0.647726476,-0.017380534,0.566981852,0.6169824,-0.015692873,0.585620463,0.62122035,-0.012657223,0.602719128,0.634026468,-0.012233607,0.593153238,0.703788757,-0.01599011,0.563393891,0.667063773,-0.012355428,0.579148293,0.667178988,-0.005586889,0.595368147,0.6801368,-0.00304974,0.58814764,0.752500534,-0.015067631,0.561343551,0.716501236,-0.010887843,0.575194001,0.714899659,-0.001742942,0.588969171,0.724916935,0.00475098 +Right,0.682781219,0.792791784,7.35E-08,0.678558886,0.679908752,-0.004756113,0.659265757,0.594522834,-0.011160511,0.637587011,0.526575506,-0.017124446,0.641361177,0.464978039,-0.022094455,0.587352693,0.63643682,-0.005475501,0.56202817,0.614426076,-0.003081275,0.582557678,0.620760918,-0.003057488,0.60068959,0.632342041,-0.00345469,0.572733998,0.696664512,-0.00408344,0.553916693,0.662598848,0.00413579,0.572704434,0.662574708,0.007123164,0.588990808,0.674257517,0.0066313,0.567358911,0.751592875,-0.001938329,0.552903771,0.711914241,0.007402742,0.567842126,0.711989582,0.011863604,0.583335221,0.724825263,0.011644129,0.565844953,0.798459172,-0.000399191,0.554507434,0.759963572,0.007728172,0.567871749,0.758588791,0.015097125,0.580401361,0.768469393,0.019846657 +Right,0.697846174,0.786282122,2.13E-08,0.68247664,0.676195979,-0.004746053,0.654932976,0.599970996,-0.011230556,0.628080845,0.536361098,-0.017270016,0.625523269,0.475457639,-0.022102887,0.587650299,0.656232536,-0.008816971,0.55857873,0.640804529,-0.009445073,0.579835355,0.640397489,-0.011154952,0.599124908,0.646199465,-0.012627031,0.578193784,0.722538173,-0.008000281,0.55370003,0.692686915,-0.001995678,0.572537899,0.688372791,0.000825944,0.590022445,0.695871532,-0.000162029,0.57831049,0.780324519,-0.006464582,0.557370543,0.743735552,0.000449138,0.572182655,0.738601565,0.00610218,0.589699805,0.746758223,0.006794936,0.582049608,0.82666254,-0.00553122,0.56378293,0.793593228,0.000990756,0.576070845,0.785091162,0.009362953,0.589670181,0.788302004,0.014852697 +Right,0.709843457,0.76276207,2.83E-08,0.685459554,0.655967891,-0.003812102,0.652697086,0.583583653,-0.010763091,0.623058319,0.524361908,-0.017498042,0.620166838,0.46683377,-0.023251414,0.593993485,0.655022621,-0.010237799,0.56048125,0.647344053,-0.011711626,0.582084537,0.643082023,-0.013940961,0.602401316,0.644586504,-0.01551709,0.589795947,0.724815547,-0.010051369,0.558980763,0.701919854,-0.004481406,0.577587903,0.693553686,-0.001416743,0.596243441,0.697132409,-0.002086408,0.593482792,0.783810556,-0.008934769,0.566605389,0.753842115,-0.001630872,0.581216991,0.745002627,0.004556006,0.599531651,0.748858571,0.005614643,0.599388659,0.830503106,-0.008321126,0.575487673,0.802560806,-0.00088265,0.587467015,0.791286528,0.00843902,0.601934433,0.791388631,0.014499234 +Right,0.721088886,0.747134626,1.19E-08,0.690068603,0.644126952,-0.003411635,0.65220654,0.574610233,-0.010135946,0.619173765,0.520847201,-0.016473876,0.613652468,0.463486612,-0.02168911,0.600465655,0.654379964,-0.011704873,0.564962149,0.651140034,-0.013839209,0.58597827,0.645031333,-0.015946202,0.607270658,0.644689143,-0.017116934,0.599244237,0.72571063,-0.011714515,0.564764261,0.708631456,-0.007166945,0.582775593,0.698758006,-0.004373617,0.602612555,0.700178087,-0.004920997,0.604824603,0.785189986,-0.010620447,0.574794948,0.75969547,-0.003645855,0.589427114,0.749671996,0.002753019,0.608204544,0.75111711,0.004032031,0.612376451,0.831401706,-0.009941318,0.586661041,0.806474924,-0.002271757,0.59918803,0.795208156,0.007410336,0.613956809,0.794156671,0.013642333 +Right,0.726216912,0.730498731,3.85E-09,0.692748785,0.630067706,-0.00327202,0.652502894,0.565188885,-0.00991448,0.61795634,0.514622688,-0.016046571,0.61038214,0.457760513,-0.021378575,0.604239941,0.650501072,-0.01492897,0.56853956,0.656841755,-0.016367843,0.589481235,0.646294653,-0.017006151,0.610419869,0.642680943,-0.017324004,0.607088685,0.72066623,-0.015322354,0.572598994,0.713608623,-0.010960323,0.590718091,0.70027715,-0.007270562,0.610815644,0.698523402,-0.007343656,0.615860581,0.779613912,-0.014333492,0.584950387,0.764132798,-0.007922752,0.599241495,0.752003431,-0.000889845,0.617866337,0.7505458,0.00074957,0.625671566,0.826494396,-0.013623485,0.597152591,0.81002146,-0.007028126,0.609723568,0.797606707,0.002821469,0.62487042,0.794816494,0.009172589 +Right,0.745219171,0.718096554,-2.06E-08,0.708076656,0.625838816,-0.002763359,0.664735377,0.568785727,-0.010654535,0.629009724,0.523513496,-0.018450066,0.614671886,0.467794836,-0.026001411,0.62462163,0.648818195,-0.019639963,0.584898472,0.672178209,-0.025396641,0.605598032,0.661480069,-0.028042756,0.626310229,0.652357817,-0.029190866,0.632175386,0.719705462,-0.021950573,0.593789518,0.728984356,-0.022140183,0.612015784,0.71567452,-0.019391604,0.632561624,0.707773745,-0.019375544,0.64399749,0.780780852,-0.022968046,0.609569848,0.77725625,-0.019887911,0.624016881,0.765937328,-0.011363053,0.642422855,0.759131372,-0.008094836,0.656779528,0.829919517,-0.024212524,0.625274837,0.824255347,-0.019422561,0.638124585,0.811288595,-0.008506499,0.653207719,0.804306448,-0.001134899 +Right,0.781575501,0.699706733,-1.89E-07,0.739543438,0.62005049,-0.000144503,0.686282754,0.570209861,-0.008023719,0.651367426,0.527856827,-0.016765537,0.634746015,0.472461045,-0.026599787,0.669748962,0.630310893,-0.027334495,0.623978376,0.690996051,-0.039443173,0.643058419,0.687495053,-0.043726597,0.663806856,0.666141093,-0.045166973,0.686457157,0.693119049,-0.03369562,0.637408376,0.747030258,-0.041562159,0.657387793,0.7392295,-0.03848061,0.678845108,0.718661487,-0.037323128,0.704055071,0.751235366,-0.038780738,0.657486022,0.793295443,-0.044550095,0.675274372,0.782680929,-0.034315873,0.695375919,0.763788879,-0.028206764,0.721982837,0.804172218,-0.043456867,0.679146409,0.833712518,-0.045955144,0.694041908,0.819743216,-0.034870703,0.71292907,0.802727878,-0.02679616 +Right,0.793669462,0.684144974,-1.37E-07,0.751772761,0.602991045,-0.000263806,0.699304342,0.554336965,-0.009020061,0.665506482,0.506253242,-0.018635459,0.6508919,0.44736886,-0.02939548,0.685529053,0.613691449,-0.030876243,0.637905955,0.671212673,-0.042609163,0.657039225,0.664906383,-0.045764945,0.679046035,0.645121276,-0.046304289,0.700823426,0.678976119,-0.037191164,0.649782598,0.726327837,-0.044325758,0.668991268,0.716696143,-0.040116549,0.69109261,0.698094845,-0.038505536,0.716739655,0.739178956,-0.041934058,0.667885125,0.771359861,-0.046364158,0.685631335,0.759626627,-0.034823187,0.706483841,0.742557287,-0.028379329,0.732590377,0.792165816,-0.046388447,0.687890172,0.812115669,-0.0479597,0.703141034,0.797823668,-0.036064517,0.723044574,0.78360194,-0.027763763 +Right,0.797102332,0.705872834,-1.18E-07,0.760433555,0.611720204,0.002834837,0.713392556,0.552176476,-0.003542487,0.682406187,0.496944845,-0.011222246,0.672375441,0.440042913,-0.019858133,0.690167427,0.611759543,-0.022747423,0.640267074,0.6470595,-0.031362917,0.66017741,0.644285858,-0.034277819,0.683173299,0.631359458,-0.034999698,0.697717965,0.680306494,-0.028893529,0.647035778,0.705017447,-0.031927053,0.66627878,0.698571086,-0.02762579,0.688515007,0.687619388,-0.026204582,0.707576871,0.742978036,-0.033252481,0.660267532,0.755987883,-0.033782564,0.677712739,0.746702671,-0.022779193,0.698171258,0.736037374,-0.017083332,0.719173312,0.797269046,-0.03712599,0.676024973,0.801509976,-0.035601098,0.690488219,0.790693462,-0.023252498,0.709429502,0.782899499,-0.01467781 +Right,0.782995522,0.7488271,-4.58E-08,0.756410837,0.647005677,-0.000702271,0.718765199,0.578487933,-0.0084076,0.691704631,0.518655539,-0.016433649,0.685110509,0.459853679,-0.024772264,0.679377913,0.634442687,-0.022624239,0.630166233,0.648223579,-0.029577684,0.649671137,0.646736622,-0.031726889,0.671031296,0.642868757,-0.032029524,0.679232419,0.704570055,-0.026208466,0.629562676,0.705197096,-0.02763935,0.64732796,0.697887659,-0.023726091,0.66843003,0.696488976,-0.022471273,0.683749855,0.768225074,-0.028162524,0.637080967,0.759426892,-0.027161298,0.651486754,0.748259425,-0.018113488,0.671132147,0.745558023,-0.013672683,0.69018352,0.821606398,-0.029850062,0.647435904,0.809714079,-0.027579114,0.658610463,0.796247363,-0.016660171,0.675049782,0.792397857,-0.008827876 +Right,0.771448731,0.770228565,-3.12E-08,0.753410161,0.663391948,-0.003243832,0.719183743,0.584506929,-0.011635853,0.694731236,0.516696811,-0.01971473,0.694661379,0.45372504,-0.027908409,0.676683307,0.631127775,-0.024124391,0.62557286,0.63378495,-0.031307954,0.646062016,0.637005746,-0.034112822,0.667952538,0.637520611,-0.035065483,0.670175314,0.701500237,-0.026225908,0.620718718,0.689951777,-0.027977632,0.639820278,0.687935412,-0.024469905,0.66120702,0.691646159,-0.023331819,0.6685763,0.765740514,-0.026870176,0.62438798,0.745141506,-0.025794037,0.640183091,0.739251971,-0.017152445,0.660064101,0.741732717,-0.012882399,0.669395208,0.820103049,-0.027538482,0.62937057,0.795766532,-0.025127737,0.64234376,0.788047314,-0.014624302,0.658986807,0.789655268,-0.007031505 +Right,0.758054495,0.779750288,-5.05E-08,0.743998885,0.6711182,-0.002394661,0.713712037,0.587424695,-0.011027274,0.692911029,0.5154562,-0.01954964,0.696572304,0.45105949,-0.028294045,0.667210102,0.623087764,-0.025806367,0.615603566,0.624636829,-0.03291196,0.637001872,0.631238937,-0.034960024,0.659072816,0.633223176,-0.035515066,0.657812178,0.692297518,-0.029039672,0.608689249,0.678419292,-0.031119358,0.628564596,0.67997849,-0.026925012,0.649793625,0.685447335,-0.025409378,0.653778374,0.757670581,-0.030615799,0.609242141,0.733707428,-0.030449158,0.62621206,0.730883598,-0.020948915,0.646458566,0.735323191,-0.015988471,0.653103352,0.81508708,-0.032100473,0.611820757,0.786340117,-0.030823568,0.625825882,0.77996403,-0.019833433,0.643035293,0.78352195,-0.011673552 +Right,0.734236777,0.794663131,-7.71E-08,0.733207166,0.682754934,-0.001457634,0.708952069,0.587829292,-0.00836418,0.690593123,0.507494569,-0.015226302,0.701988995,0.441132635,-0.022516111,0.660461724,0.600519955,-0.02184991,0.603166461,0.590867341,-0.026915597,0.619493723,0.613276184,-0.02748576,0.642025411,0.6233899,-0.027241163,0.644091368,0.664490759,-0.024523238,0.591864407,0.645440876,-0.024772976,0.610458195,0.662890911,-0.019443208,0.631575406,0.672886789,-0.017033698,0.632524431,0.728992164,-0.025557345,0.587790787,0.701650798,-0.024152307,0.604640067,0.713201106,-0.01411174,0.624262631,0.722426772,-0.008955385,0.624890029,0.790401399,-0.026366405,0.58581388,0.75658977,-0.024124816,0.601413786,0.76344651,-0.012987195,0.618818343,0.771970689,-0.004836065 +Right,0.720077932,0.794698656,-1.18E-07,0.722475886,0.683740556,0.002045318,0.70291692,0.58312428,-0.002745715,0.685219049,0.502648175,-0.008011125,0.697957993,0.438865066,-0.014194166,0.652016819,0.583362937,-0.018688511,0.598454773,0.57839483,-0.020600604,0.609617591,0.603255332,-0.017799288,0.629154027,0.615188122,-0.015784752,0.634410203,0.643419385,-0.023433765,0.583272815,0.630023956,-0.021873482,0.598080158,0.652584374,-0.015166459,0.618090689,0.664059877,-0.012408536,0.62120074,0.706455112,-0.026121173,0.578002572,0.685481191,-0.023866117,0.592494428,0.703059614,-0.013245239,0.611102879,0.713364959,-0.0084067,0.612052023,0.769954562,-0.028274043,0.573636293,0.74014622,-0.025944693,0.588158131,0.751888871,-0.01485424,0.605118036,0.761047781,-0.007033269 +Right,0.722266853,0.759286106,-1.62E-07,0.720551431,0.648269713,0.006728566,0.695858121,0.553347409,0.004233914,0.673868895,0.474150479,0.00089502,0.686426342,0.413785934,-0.003925158,0.648810208,0.554019868,-0.016343644,0.59421593,0.55703032,-0.014985116,0.602947712,0.586053252,-0.009051589,0.621889114,0.598391831,-0.005420273,0.63329345,0.611365497,-0.022472017,0.579947174,0.60907656,-0.018415399,0.594189107,0.635126591,-0.009294467,0.615169108,0.645243347,-0.005419612,0.622150004,0.673762441,-0.025784044,0.576144516,0.665623784,-0.021418996,0.59167695,0.686323762,-0.008972896,0.610878289,0.693624556,-0.003758324,0.615275264,0.73867321,-0.028070925,0.574893355,0.717477679,-0.024635538,0.589769185,0.730498374,-0.012619608,0.606746912,0.736601174,-0.004616876 +Right,0.749919236,0.725463748,-1.05E-07,0.728417158,0.62094003,-0.000669326,0.688072324,0.540200233,-0.008908445,0.660463274,0.471716613,-0.017626453,0.661515236,0.404869199,-0.026987707,0.645166874,0.574830413,-0.024459243,0.59114641,0.597492695,-0.033965614,0.611341357,0.60759896,-0.038292494,0.634976387,0.601508975,-0.040361598,0.640827537,0.646295428,-0.029164439,0.589172959,0.657117188,-0.032775216,0.610664308,0.664035618,-0.028373739,0.633648336,0.662147045,-0.026712829,0.64121151,0.715735197,-0.03240367,0.595561624,0.715311289,-0.033842236,0.614736378,0.717610061,-0.022839377,0.636366308,0.714865923,-0.016776197,0.644831061,0.779694855,-0.035442464,0.60295248,0.769856691,-0.034399983,0.619526863,0.767261565,-0.022266861,0.63856411,0.765550017,-0.013355257 +Right,0.761152208,0.702526033,-1.33E-07,0.730487764,0.605964065,-0.000562677,0.683397055,0.535923719,-0.009967981,0.651804209,0.473158509,-0.019945381,0.647562027,0.40453577,-0.030880164,0.652616918,0.582864165,-0.029697478,0.599270344,0.620846927,-0.041096795,0.620441854,0.625577867,-0.045282204,0.64339292,0.613204718,-0.047006588,0.65680325,0.654602408,-0.035500668,0.602558494,0.680814743,-0.041555058,0.6237095,0.681689203,-0.036693569,0.646660745,0.672820747,-0.034715921,0.663239062,0.723068833,-0.039735209,0.613745749,0.736355245,-0.043095838,0.632748544,0.733220398,-0.031114317,0.654216707,0.724485159,-0.024351725,0.671152353,0.785257041,-0.043696482,0.625629842,0.788487434,-0.043763526,0.641813874,0.781663299,-0.031187162,0.661486387,0.775395095,-0.022228373 +Right,0.771743238,0.692757726,-1.45E-07,0.736385405,0.599645674,-0.000287713,0.685038269,0.536510944,-0.00914732,0.650241971,0.479759574,-0.018696714,0.641765475,0.414125741,-0.029184049,0.660349667,0.587763608,-0.030561864,0.605663121,0.633252621,-0.042486344,0.626125813,0.633862495,-0.04614662,0.650169253,0.619113386,-0.047043197,0.668368161,0.65922308,-0.036526371,0.611781359,0.695735693,-0.043335024,0.632197499,0.691678405,-0.038497321,0.655713201,0.678496838,-0.036388185,0.678105652,0.726696014,-0.04092785,0.625224531,0.7487427,-0.044987779,0.643695951,0.741163611,-0.033168748,0.665927291,0.728701234,-0.026371004,0.688643754,0.787595034,-0.045022927,0.641148806,0.799676657,-0.045940287,0.656496167,0.789003849,-0.033972498,0.676819503,0.778812408,-0.025466403 +Right,0.774836004,0.689988554,-1.26E-07,0.742463231,0.595165908,-0.002858607,0.694629312,0.526094198,-0.014624503,0.660860479,0.466863006,-0.026699366,0.656200767,0.395337582,-0.039368402,0.670253038,0.578312695,-0.036179338,0.609160364,0.618113518,-0.05018954,0.62863636,0.620172143,-0.053978283,0.653695762,0.607310891,-0.054482099,0.676952243,0.649658024,-0.041682649,0.613298237,0.680826664,-0.050760362,0.633059084,0.677014649,-0.045617964,0.657191038,0.665475368,-0.042841814,0.684620738,0.716693997,-0.045719802,0.62500596,0.734627128,-0.051408727,0.642395675,0.726819813,-0.039061364,0.665638983,0.715569258,-0.031368285,0.692476571,0.776789188,-0.049644019,0.638853192,0.787291527,-0.051380262,0.651498616,0.776046216,-0.039639086,0.67211163,0.766043246,-0.03116484 +Right,0.769002736,0.705560803,-1.99E-07,0.748950481,0.60467416,0.000604277,0.713737607,0.521019161,-0.008243938,0.684784174,0.459127367,-0.017526917,0.666046143,0.404521286,-0.02722921,0.680725217,0.546987772,-0.034017541,0.614958584,0.578430653,-0.046008453,0.632066011,0.598003924,-0.046240445,0.656791568,0.59350878,-0.044366121,0.677696884,0.616089642,-0.041002985,0.610267341,0.639702737,-0.050391316,0.628963649,0.6534127,-0.043590933,0.653934479,0.646907568,-0.039482445,0.677383244,0.684737206,-0.046197575,0.615197182,0.699187934,-0.0534802,0.633356929,0.707694471,-0.039632652,0.657790601,0.700675905,-0.030834094,0.679874241,0.74972862,-0.050690591,0.625448227,0.75628233,-0.055487923,0.639910281,0.756628275,-0.044280279,0.662774801,0.750500917,-0.035341755 +Right,0.750154793,0.758897483,-1.76E-07,0.732010067,0.65842545,-0.001321027,0.685128152,0.581848681,-0.010433521,0.64539814,0.530562282,-0.019031242,0.631211042,0.465823978,-0.028126238,0.674101293,0.599012792,-0.038218565,0.603167057,0.611628175,-0.053871434,0.618195057,0.625290573,-0.057450574,0.644935846,0.62627095,-0.056920998,0.66969049,0.672084332,-0.043558311,0.595731497,0.674538493,-0.054697592,0.61574769,0.682056725,-0.049250036,0.642645001,0.682805121,-0.045661364,0.66661638,0.743577123,-0.047226802,0.599375725,0.73517859,-0.05552699,0.618488967,0.736964583,-0.042701971,0.64399302,0.737575352,-0.034052573,0.66441232,0.80940026,-0.05024451,0.605042279,0.794506431,-0.05599397,0.618284643,0.788499296,-0.046061147,0.640594721,0.788165152,-0.038090028 +Right,0.74523288,0.7718364,-1.34E-07,0.726048708,0.670973837,-0.003911357,0.682335913,0.583379269,-0.014814672,0.645148098,0.524737477,-0.024513358,0.639951587,0.453873605,-0.034533363,0.665765345,0.616541624,-0.041307554,0.597233593,0.625816345,-0.05440636,0.613031805,0.638542235,-0.055574153,0.638493955,0.63790369,-0.054066025,0.662136912,0.690621912,-0.045335539,0.589860022,0.686491787,-0.054397222,0.609103799,0.69268471,-0.047768909,0.634954691,0.693829179,-0.043628778,0.659528196,0.760794997,-0.047534104,0.592913926,0.746264517,-0.053518642,0.611122966,0.74584955,-0.040255904,0.635922015,0.747492373,-0.031722628,0.658107519,0.824926317,-0.049392153,0.598656654,0.807352245,-0.052694283,0.610044301,0.797913909,-0.042095307,0.629928052,0.796127141,-0.034173213 +Right,0.743165255,0.788888156,-1.18E-07,0.728147388,0.682065487,-0.001977097,0.68981725,0.589436889,-0.013200827,0.663765252,0.516971707,-0.023938378,0.665063858,0.446707636,-0.035081599,0.667246521,0.626434267,-0.042445853,0.597285986,0.629358828,-0.056738168,0.616802335,0.63819325,-0.059004925,0.643369257,0.637757778,-0.058037229,0.661788285,0.701651633,-0.047584645,0.59042424,0.689974785,-0.05687467,0.61213851,0.694352865,-0.049760826,0.637596488,0.697284222,-0.045505658,0.657188237,0.771672606,-0.05069989,0.592114091,0.750415981,-0.05605042,0.611579001,0.74987644,-0.041816495,0.636033952,0.752058387,-0.032855604,0.653676212,0.834922314,-0.053437117,0.596616864,0.808664024,-0.054845348,0.611047745,0.802648544,-0.042289186,0.632522702,0.805684507,-0.033342991 +Right,0.750440359,0.802904069,-1.38E-07,0.736363292,0.693576455,-0.000374511,0.699031889,0.598184228,-0.010664841,0.677723944,0.518005133,-0.021207208,0.682880044,0.446468711,-0.032581102,0.671806037,0.625336528,-0.037425142,0.604265749,0.62916708,-0.050394189,0.622781038,0.645895541,-0.052656244,0.649533272,0.646446764,-0.052242961,0.664458454,0.698438704,-0.043566629,0.595873594,0.689186215,-0.051890381,0.617048085,0.701456726,-0.045093756,0.642567456,0.704449773,-0.041113388,0.658664227,0.769591331,-0.047799435,0.596705675,0.749382913,-0.052575424,0.616364419,0.754996955,-0.038698945,0.640972733,0.757694542,-0.030112606,0.654960811,0.835070968,-0.051594347,0.600408614,0.809968472,-0.052808572,0.614693165,0.807827115,-0.040389739,0.635930955,0.810431302,-0.031438626 +Right,0.748818278,0.817528427,-1.69E-07,0.737603545,0.707354486,0.002548345,0.703061104,0.613112986,-0.004506924,0.681340754,0.53587091,-0.012490361,0.690010846,0.468723476,-0.021506649,0.662262022,0.628130794,-0.027986728,0.598154724,0.6397475,-0.037150852,0.616392732,0.661248147,-0.038368035,0.641418457,0.660604358,-0.03833209,0.652708054,0.6974563,-0.034960829,0.589185178,0.697484255,-0.039964024,0.609928966,0.714398861,-0.032812797,0.63452363,0.717147171,-0.02909847,0.647004187,0.767960727,-0.039942894,0.590390205,0.757280886,-0.043204755,0.61065799,0.767761171,-0.029740172,0.634769261,0.770105004,-0.021794977,0.645023584,0.836017609,-0.044280984,0.595191419,0.817321956,-0.045184392,0.611673176,0.820807457,-0.032529086,0.632954419,0.823915899,-0.023183303 +Right,0.743351638,0.834192216,-2.00E-07,0.735445857,0.723774612,0.004226821,0.703456759,0.630409122,0.00053807,0.679091752,0.55583024,-0.004428471,0.68385011,0.493926674,-0.01027239,0.654794812,0.628605723,-0.017901961,0.593579888,0.640260994,-0.022923322,0.605794847,0.669808328,-0.021470819,0.627716839,0.676819861,-0.020009017,0.642219126,0.693879604,-0.024679719,0.582706273,0.697504222,-0.02769557,0.600927651,0.721300066,-0.021318933,0.624708414,0.726703942,-0.017705644,0.634934664,0.763246775,-0.029498927,0.580962598,0.758267999,-0.032358799,0.600723505,0.775858521,-0.020469049,0.624156952,0.77976656,-0.013284461,0.63285327,0.832718015,-0.033490203,0.586058259,0.818528831,-0.035453938,0.602632761,0.828466713,-0.024348209,0.62285912,0.831093252,-0.015521334 +Right,0.734347999,0.853334367,-1.54E-07,0.724431753,0.735125065,0.003196107,0.695441782,0.636907935,-0.001823118,0.67732054,0.556872189,-0.007795187,0.685808778,0.497500956,-0.014424701,0.639317572,0.651838303,-0.019758211,0.579055309,0.663479745,-0.023028865,0.596991122,0.690834582,-0.02104125,0.621315777,0.695826471,-0.019473046,0.626271725,0.720673084,-0.025575863,0.570383728,0.722329378,-0.025793215,0.591233373,0.74450475,-0.018676879,0.61532259,0.748785853,-0.01522065,0.619220078,0.790975928,-0.029136231,0.570207477,0.782771945,-0.028073614,0.589975417,0.797692955,-0.015800063,0.612671852,0.80142957,-0.009345635,0.617643476,0.858601511,-0.032092366,0.574937701,0.840921819,-0.030010922,0.591905236,0.849087834,-0.01707487,0.611393809,0.852558553,-0.007582369 +Right,0.732004821,0.86190033,-1.40E-07,0.724070013,0.741351783,0.002965848,0.696741164,0.639128625,-0.002003885,0.678594112,0.557804465,-0.007594464,0.689212859,0.497026712,-0.013852968,0.639622092,0.654238701,-0.02146419,0.578681707,0.659956217,-0.023637045,0.596313477,0.686566114,-0.020442273,0.62090826,0.693687379,-0.018108221,0.625105321,0.723487139,-0.026798157,0.569209516,0.718533397,-0.025786586,0.589934528,0.740531981,-0.017984655,0.614102721,0.747062981,-0.01426472,0.616955817,0.794080615,-0.029612593,0.567910016,0.779541075,-0.027696854,0.587681174,0.794760227,-0.015249121,0.610455453,0.800613761,-0.008819717,0.614454627,0.863328278,-0.031763665,0.57137078,0.839235544,-0.029329346,0.588277936,0.84728992,-0.016239673,0.607623279,0.852571964,-0.006686544 +Right,0.734434903,0.888814926,-5.77E-08,0.718168736,0.770052016,-0.003213108,0.685981035,0.669263899,-0.01402429,0.668189645,0.585410953,-0.024602709,0.678970397,0.515140414,-0.035305608,0.6340065,0.708258033,-0.032744654,0.571859837,0.70214653,-0.042166803,0.595566571,0.712808192,-0.044430692,0.62295723,0.719140768,-0.044669505,0.623905063,0.78573823,-0.037013751,0.563438535,0.765437186,-0.040368278,0.586082816,0.769055963,-0.034775943,0.611483634,0.776806951,-0.032690611,0.619321644,0.858766496,-0.039436974,0.565967858,0.830652356,-0.040261433,0.585389733,0.828326702,-0.029136403,0.608964503,0.835038841,-0.023362875,0.618454278,0.924795389,-0.041716632,0.569470048,0.890623212,-0.040182941,0.585233867,0.884319544,-0.02722697,0.605852306,0.890161335,-0.018026626 +Right,0.754848123,0.863317907,-1.01E-07,0.730525196,0.745862842,-0.002214178,0.691342711,0.652131855,-0.014042201,0.67067343,0.571794152,-0.026376365,0.677089691,0.49839592,-0.03880455,0.648329735,0.70595926,-0.034297466,0.580524087,0.711696684,-0.048362181,0.607376575,0.715840638,-0.053690962,0.636753261,0.715977669,-0.055131093,0.643607736,0.785319805,-0.03980086,0.576393843,0.77849251,-0.047611661,0.600772619,0.776531577,-0.043798018,0.628652871,0.779562831,-0.041921999,0.64296931,0.85896939,-0.043555789,0.582347393,0.845044315,-0.04702821,0.603449881,0.837670922,-0.035364017,0.629464149,0.838912904,-0.02831631,0.645125628,0.923509777,-0.047218509,0.592194617,0.90453887,-0.046801116,0.609521687,0.894405127,-0.033335831,0.632359624,0.895797253,-0.023495017 +Right,0.772324145,0.783585548,-1.23E-07,0.746373355,0.663487494,-0.000508856,0.701673329,0.568423569,-0.011101299,0.68000108,0.486283422,-0.022872237,0.686814606,0.412511915,-0.035639759,0.664157212,0.621706426,-0.033400685,0.59835124,0.645048916,-0.047991693,0.621963322,0.650869131,-0.053849824,0.650352716,0.643138468,-0.05594385,0.662402928,0.701870978,-0.040303834,0.59632653,0.710209489,-0.048803996,0.618996322,0.711818755,-0.044713583,0.646557212,0.709502637,-0.042928439,0.664108872,0.777662992,-0.045513324,0.604345083,0.775291204,-0.050278187,0.624394715,0.77150619,-0.038143978,0.650409281,0.768496037,-0.030836202,0.66762197,0.845256925,-0.050537791,0.61531657,0.835433722,-0.050836895,0.63177675,0.828221858,-0.037193876,0.655068755,0.826646328,-0.027311593 +Right,0.774769723,0.750243545,-1.18E-07,0.745608985,0.634373665,-0.000420101,0.700867772,0.54495585,-0.011078478,0.678369701,0.466576457,-0.022708284,0.683633924,0.394365013,-0.035294138,0.665444314,0.59642148,-0.03444979,0.599407613,0.626438558,-0.047502052,0.62148279,0.631958544,-0.051676683,0.648594081,0.62230891,-0.052833073,0.665247798,0.675640404,-0.041085679,0.598943591,0.690944731,-0.048590541,0.621286452,0.692268789,-0.043508682,0.648018956,0.687221646,-0.041202221,0.668159485,0.749942064,-0.045796074,0.607420146,0.752154946,-0.049812816,0.627549231,0.748605728,-0.037019793,0.652973711,0.743513703,-0.029444693,0.673074245,0.816577196,-0.050261844,0.619400799,0.810395122,-0.050374348,0.635470271,0.803448677,-0.036535185,0.658117235,0.800573707,-0.026561935 +Right,0.773949325,0.745130062,-1.04E-07,0.747837603,0.631743073,-0.001881126,0.706774473,0.542545676,-0.013434418,0.684451997,0.464426219,-0.025123239,0.689624012,0.391468972,-0.037332032,0.669610441,0.589562178,-0.037934233,0.602244616,0.612206399,-0.050316077,0.625011683,0.618925512,-0.053167716,0.652378619,0.612492979,-0.053313397,0.667147636,0.66890949,-0.043242197,0.599799275,0.676507592,-0.050475158,0.621306956,0.677792966,-0.044683758,0.647751093,0.675085783,-0.041776761,0.667768002,0.74254477,-0.046401985,0.606622338,0.738198936,-0.049626205,0.625773668,0.7342906,-0.036584068,0.650891244,0.731231987,-0.028901491,0.670737803,0.807419896,-0.049349342,0.617282271,0.797056973,-0.048951712,0.632224023,0.78973943,-0.035360958,0.653774858,0.78801924,-0.02559597 +Right,0.766425014,0.78643167,-7.85E-08,0.744350314,0.665771306,-0.002808885,0.705873132,0.57280612,-0.015164844,0.68288964,0.490837634,-0.027325084,0.691851377,0.415134251,-0.039897107,0.661013007,0.620999992,-0.037754182,0.59619242,0.632392466,-0.048460897,0.620191336,0.63704133,-0.050866347,0.647337973,0.635525882,-0.051099785,0.656038344,0.701339185,-0.042477798,0.591352224,0.694758654,-0.047718801,0.614094436,0.693889439,-0.041888352,0.640318274,0.695957959,-0.039258577,0.655026197,0.775224984,-0.044908106,0.596900761,0.758200884,-0.046536639,0.616253138,0.752707958,-0.034359086,0.640938699,0.75379467,-0.027609244,0.657402992,0.840225756,-0.047153339,0.604550183,0.819940805,-0.045760766,0.619500518,0.810954511,-0.03232174,0.641004145,0.811700463,-0.022756537 +Left,0.136322051,0.592465281,-2.43E-07,0.162273526,0.444637686,-0.009749772,0.217159137,0.304764152,-0.025551062,0.240466326,0.1954557,-0.039841875,0.225231051,0.108194321,-0.050185625,0.248032659,0.341286123,-0.043856747,0.339681327,0.37999475,-0.06194758,0.315283269,0.402991205,-0.066236019,0.280812114,0.398035496,-0.067193516,0.254891336,0.442330837,-0.050274882,0.348389298,0.463752449,-0.058337722,0.320830941,0.475107014,-0.050839927,0.284656882,0.470483899,-0.048482805,0.259434462,0.541240513,-0.05563632,0.34426868,0.547381997,-0.058814671,0.318667322,0.557512164,-0.040286884,0.284452766,0.557580411,-0.030878412,0.259864479,0.627815843,-0.061435901,0.332844615,0.620442867,-0.05669621,0.311801434,0.624545395,-0.037194535,0.280928612,0.625504375,-0.025582286 +Left,0.159387916,0.599045336,-2.89E-07,0.18482393,0.449166626,-0.007463234,0.234208345,0.31264168,-0.02143033,0.255146265,0.203206241,-0.03443937,0.237599686,0.119085431,-0.04374307,0.271652222,0.349838018,-0.037378978,0.356330574,0.385131657,-0.052048322,0.331605583,0.405201942,-0.054559179,0.299877405,0.401270539,-0.054686595,0.281668454,0.446809858,-0.043728903,0.366931885,0.465577751,-0.047621585,0.340646237,0.477201134,-0.038575828,0.308116555,0.477451026,-0.03564278,0.288337201,0.541079819,-0.049153976,0.36388731,0.546094954,-0.048692558,0.339468092,0.554249644,-0.030635338,0.30810672,0.556867301,-0.022262713,0.290423781,0.623534501,-0.054989878,0.353733391,0.61250025,-0.047044955,0.332650304,0.616552413,-0.027359618,0.305628031,0.619961977,-0.016187321 +Left,0.197361141,0.636350334,-3.01E-07,0.221331045,0.483944714,-0.005914618,0.262720615,0.349185586,-0.018967096,0.278933764,0.23765938,-0.032024391,0.258338183,0.158210516,-0.04165411,0.309008509,0.394721448,-0.026864801,0.384223104,0.413418621,-0.038383581,0.361909807,0.432890654,-0.041601788,0.333142191,0.434737235,-0.04260204,0.323219776,0.486771524,-0.032871995,0.397076458,0.491124451,-0.032161806,0.374266803,0.502865314,-0.024341354,0.345348656,0.508025765,-0.023032509,0.332811445,0.575663507,-0.038318146,0.400523901,0.566945255,-0.033853617,0.378603548,0.574767768,-0.017934935,0.349058986,0.581657052,-0.011652195,0.337426662,0.654009938,-0.044332534,0.394515395,0.636827648,-0.033892289,0.37636441,0.63953352,-0.015164359,0.351378947,0.643759489,-0.004789873 +Left,0.240064591,0.693160772,-3.28E-07,0.256648213,0.541301489,-0.008844427,0.291047305,0.405800998,-0.023221098,0.302468419,0.29050228,-0.036898151,0.277026325,0.210599571,-0.04746585,0.345750272,0.454377711,-0.027359739,0.418696761,0.453606993,-0.039927956,0.391982436,0.473603457,-0.044689652,0.360429704,0.481206179,-0.046340384,0.365326971,0.545696557,-0.030926652,0.430805385,0.532261789,-0.030532164,0.408337563,0.543580234,-0.02455196,0.380322754,0.555267155,-0.023996864,0.378662616,0.631761193,-0.034151912,0.435026288,0.607153893,-0.029377785,0.415470809,0.614963472,-0.015574413,0.387986094,0.626608968,-0.010522204,0.386787832,0.707289755,-0.0382207,0.432896793,0.674898446,-0.027850118,0.414244175,0.680759609,-0.009892192,0.391179681,0.691821814,0.000277459 +Left,0.264607012,0.743852973,-3.42E-07,0.277541876,0.5873909,-0.006380379,0.308538198,0.454514384,-0.020724479,0.319561273,0.341644466,-0.035353329,0.299474299,0.255469412,-0.047040433,0.373431593,0.509459734,-0.023778848,0.442187548,0.504876614,-0.034688581,0.417363942,0.51900059,-0.039037537,0.388054937,0.530176699,-0.040859494,0.391446531,0.599983931,-0.028439499,0.454471886,0.57515049,-0.028238205,0.431362331,0.577689886,-0.02238404,0.40379253,0.592167497,-0.021972315,0.403019637,0.681947231,-0.032605901,0.459222317,0.645694196,-0.0281091,0.438409537,0.646976769,-0.013878451,0.411935687,0.661398232,-0.008565514,0.410284221,0.751847446,-0.03731342,0.456143856,0.709333718,-0.027802477,0.436528325,0.708812118,-0.009745039,0.414029062,0.721724629,0.0007256 +Left,0.26938042,0.786073267,-4.25E-07,0.302812636,0.635999501,-0.006156065,0.354310751,0.515319705,-0.021583946,0.3799496,0.411239237,-0.037331775,0.371866763,0.317589253,-0.05092264,0.404958427,0.624429584,-0.032785911,0.479372412,0.612908721,-0.046177812,0.449823529,0.608111978,-0.050903905,0.416493326,0.614946246,-0.052232847,0.408476889,0.723443568,-0.038512487,0.482484519,0.697016716,-0.042836569,0.457607627,0.680523872,-0.038965076,0.424825281,0.68947196,-0.038626354,0.407968789,0.808396816,-0.042872366,0.473674536,0.773076594,-0.0402865,0.452466011,0.758295536,-0.027557813,0.42308253,0.766926348,-0.022831703,0.405991793,0.878137827,-0.047648434,0.46373111,0.841509461,-0.039652262,0.444345176,0.826408148,-0.022592954,0.418018222,0.835372984,-0.012811632 +Left,0.262272269,0.789814711,-4.71E-07,0.311830968,0.652962983,-0.00378005,0.369657844,0.553338945,-0.019672727,0.40700075,0.45922941,-0.034516722,0.41282469,0.366550297,-0.047349639,0.405954301,0.684021711,-0.044966675,0.483118027,0.67834866,-0.053357773,0.455555826,0.658368587,-0.04933526,0.422547519,0.657952607,-0.044733472,0.403012365,0.789216936,-0.047941316,0.48150143,0.767237306,-0.048714556,0.458580226,0.735988081,-0.037821516,0.427197665,0.737630129,-0.033750586,0.395985305,0.872411966,-0.047502734,0.46623683,0.840117812,-0.041841164,0.446497798,0.815757573,-0.025109714,0.417405337,0.819872499,-0.018830212,0.389693797,0.935902178,-0.046602383,0.4519279,0.906226456,-0.038214654,0.434843361,0.884335876,-0.02022741,0.408995152,0.888199031,-0.010010876 +Left,0.249269664,0.730348825,-4.58E-07,0.305719376,0.592083454,-0.009147026,0.378576815,0.498849303,-0.025338013,0.42439881,0.411088318,-0.040341057,0.437665224,0.314933538,-0.052379686,0.404208541,0.626050055,-0.041729372,0.485798717,0.651709318,-0.058848839,0.457019836,0.628371179,-0.062770471,0.420791775,0.617291331,-0.062051717,0.39633432,0.735191762,-0.045087241,0.479037106,0.737824023,-0.051965091,0.455444872,0.706922889,-0.045515403,0.422206193,0.703895867,-0.042686593,0.387175977,0.823191166,-0.047185902,0.46152097,0.810357094,-0.047313299,0.441002786,0.78554672,-0.03219901,0.410457194,0.784993291,-0.024904415,0.378618062,0.889465213,-0.049669717,0.44317472,0.871759295,-0.043923438,0.426133305,0.851255298,-0.026576234,0.399092227,0.854155898,-0.015871428 +Left,0.249747291,0.651495457,-3.61E-07,0.30927664,0.523625493,-0.011468704,0.385867268,0.438955963,-0.027994102,0.434881359,0.355268568,-0.042750388,0.453799546,0.263617426,-0.054120328,0.407757133,0.547106802,-0.042505465,0.483179569,0.60537523,-0.059118386,0.45815295,0.582421541,-0.062214993,0.426433623,0.562660456,-0.061486416,0.39387992,0.655786812,-0.045648571,0.473251671,0.689357281,-0.05220009,0.452494949,0.65756011,-0.045096945,0.420055091,0.646858633,-0.042105436,0.379687518,0.745608926,-0.047818135,0.452472985,0.759901345,-0.048510142,0.432749838,0.733409524,-0.032243039,0.401745856,0.726704717,-0.024207138,0.366784543,0.815907836,-0.050570786,0.429391861,0.820232987,-0.045066241,0.411575735,0.800014138,-0.02696454,0.383852273,0.799503982,-0.015829207 +Left,0.246541545,0.611533284,-3.34E-07,0.304380745,0.487223148,-0.009163297,0.377541751,0.399036407,-0.025670229,0.426187605,0.317420959,-0.041284353,0.444417775,0.229532987,-0.053955082,0.406402111,0.503121257,-0.039776914,0.476573467,0.55966109,-0.055286009,0.453111231,0.54793185,-0.058405831,0.424220204,0.532037318,-0.058118302,0.392063081,0.605544448,-0.044754725,0.466442823,0.643637896,-0.050370477,0.446967363,0.620654523,-0.04392501,0.416042417,0.608852088,-0.041553497,0.376358986,0.692890525,-0.048674509,0.444604576,0.712389708,-0.048656967,0.426293463,0.693746269,-0.034028079,0.396373808,0.686714411,-0.02722075,0.361931264,0.765625715,-0.053058583,0.422354907,0.773529589,-0.047537114,0.406560808,0.756432533,-0.030521456,0.38041693,0.753526688,-0.020020733 +Left,0.238017812,0.627854347,-3.42E-07,0.288418174,0.485947639,-0.006340934,0.353797138,0.38861376,-0.019952631,0.397771418,0.298271149,-0.033398982,0.410133243,0.208785266,-0.044052158,0.399031669,0.491808802,-0.027545057,0.46244818,0.528205812,-0.036928546,0.440120161,0.532599926,-0.038919758,0.412725508,0.529864848,-0.039438915,0.392864913,0.594665587,-0.033040408,0.458715737,0.614173651,-0.031713404,0.437018454,0.602196872,-0.024191746,0.407120824,0.597269595,-0.023047021,0.381513923,0.682398319,-0.037699513,0.442718059,0.686727881,-0.032613982,0.422578484,0.674371183,-0.017103827,0.393991917,0.671917319,-0.011590891,0.368529171,0.754333496,-0.042875126,0.422469586,0.750153542,-0.034492977,0.40645504,0.736578226,-0.016654802,0.382915765,0.734469831,-0.006460636 +Left,0.221947342,0.662085533,-3.42E-07,0.256878346,0.507191002,-0.003680434,0.311752617,0.392008424,-0.014274326,0.347443074,0.290166974,-0.024872653,0.343333602,0.199713677,-0.032147095,0.368668705,0.458739936,-0.020178901,0.433878928,0.484788835,-0.023657899,0.406651944,0.494247198,-0.021179408,0.377052486,0.494858593,-0.019403394,0.374700844,0.558171213,-0.025250958,0.438556015,0.564655602,-0.019525824,0.413242996,0.563653409,-0.010319861,0.384086937,0.568175972,-0.008038756,0.373176306,0.648189902,-0.029130811,0.431580633,0.639728189,-0.020969607,0.409460485,0.637252212,-0.00625288,0.380881667,0.642739713,-0.001245014,0.367891967,0.725542307,-0.03320808,0.419225693,0.710338473,-0.022890054,0.40201211,0.703591108,-0.005816834,0.37866357,0.707060933,0.003913681 +Left,0.214962244,0.675296068,-3.14E-07,0.2429934,0.518380344,-0.005353808,0.292654753,0.392175436,-0.016326224,0.32252267,0.283861637,-0.026990619,0.312266797,0.197202474,-0.034242239,0.348659784,0.44590956,-0.019986905,0.415352941,0.472348183,-0.025242554,0.390029222,0.488957345,-0.024962738,0.361508906,0.49027586,-0.024636986,0.359832019,0.541408837,-0.024749087,0.423973739,0.547611654,-0.019480431,0.39966321,0.554808736,-0.010922518,0.371801078,0.560246944,-0.009153866,0.363911837,0.630643129,-0.028772382,0.42194733,0.620047748,-0.021069283,0.400201082,0.624884129,-0.006342573,0.37250945,0.632155657,-0.001209186,0.36326462,0.708387554,-0.03325586,0.41223228,0.687514722,-0.022848513,0.394382656,0.68805033,-0.00540765,0.372183532,0.69534415,0.004580305 +Left,0.218671799,0.675287008,-3.38E-07,0.242480367,0.517763913,-0.003985514,0.285984337,0.391789258,-0.014327347,0.311649621,0.283783764,-0.024194391,0.299572825,0.200894773,-0.0307598,0.343534946,0.438832939,-0.021230152,0.410956115,0.457799852,-0.024724472,0.38555181,0.475922346,-0.023146529,0.357026726,0.477470875,-0.022551451,0.358179778,0.534774244,-0.026001498,0.420208573,0.534089148,-0.01808209,0.395573378,0.54272902,-0.008482727,0.36846143,0.547713101,-0.007409468,0.365184188,0.624611318,-0.029530002,0.421285689,0.607889771,-0.019923275,0.399161488,0.614121079,-0.003981794,0.37167275,0.622272909,0.000800752,0.366589159,0.701580048,-0.033352394,0.414453715,0.67568779,-0.022087296,0.39667654,0.677283168,-0.003897742,0.374607772,0.685415089,0.006071718 +Left,0.216531426,0.69800657,-2.84E-07,0.234762728,0.558020294,-0.00878357,0.27708298,0.421580255,-0.025323633,0.298515797,0.315032542,-0.040126052,0.285926253,0.227062166,-0.051146943,0.299653292,0.443323582,-0.048430264,0.387572169,0.460403562,-0.06747248,0.36607784,0.48263973,-0.070742071,0.334921122,0.483894616,-0.070658088,0.311221808,0.53672123,-0.055169348,0.40437898,0.533934355,-0.065729804,0.379568279,0.55292815,-0.057488266,0.345161349,0.559231162,-0.053579416,0.322204471,0.62835139,-0.060386792,0.406609148,0.61176312,-0.065091483,0.383191586,0.627384961,-0.045392264,0.350064039,0.636729896,-0.034523547,0.330393493,0.709897637,-0.065847717,0.399274588,0.682467818,-0.06217207,0.379708648,0.690537453,-0.042653624,0.351052672,0.698146105,-0.030703433 +Left,0.213645771,0.703271329,-2.53E-07,0.228384927,0.578991473,-0.020806083,0.275807023,0.434711993,-0.044225842,0.297060102,0.33066988,-0.063043669,0.286626607,0.235199898,-0.07793995,0.26821965,0.462417215,-0.082990192,0.373750657,0.481605023,-0.116249196,0.351248443,0.502083778,-0.124061488,0.31507197,0.501091897,-0.125134811,0.268382013,0.562281609,-0.087289087,0.384064674,0.560634851,-0.113348804,0.354469627,0.570679009,-0.104921579,0.316356272,0.574543536,-0.099926986,0.275878489,0.657373786,-0.090511963,0.381724387,0.639051259,-0.106375948,0.353379875,0.643522561,-0.083566993,0.319153547,0.649988174,-0.069755793,0.286402196,0.741792202,-0.094931155,0.372220993,0.709737837,-0.097622931,0.350498706,0.708615541,-0.078619018,0.31754145,0.717948198,-0.067387044 +Left,0.220504209,0.695936024,-3.29E-07,0.258587718,0.568503499,-0.02398053,0.301373303,0.436050206,-0.04544219,0.319029421,0.32533592,-0.063248225,0.311325639,0.227088034,-0.076933101,0.246460289,0.462583005,-0.076862723,0.359575242,0.495320767,-0.115011454,0.33903721,0.525620997,-0.127496511,0.305266261,0.51128453,-0.133686036,0.233856484,0.559161842,-0.08186914,0.360689163,0.577608705,-0.111738905,0.332143426,0.594460309,-0.104005285,0.297845393,0.588196397,-0.10298986,0.23612906,0.649463415,-0.08814761,0.353660762,0.658186495,-0.109907113,0.32489121,0.668767333,-0.089071706,0.294293642,0.66620028,-0.078558616,0.245976418,0.727673173,-0.09693981,0.339930594,0.726314545,-0.103662312,0.317596138,0.729542613,-0.089337558,0.284920335,0.728826523,-0.083413608 +Left,0.198056668,0.745015979,-4.22E-07,0.250795513,0.585648537,-0.020841682,0.294744879,0.424765408,-0.034395043,0.316057056,0.300715238,-0.046393778,0.315113008,0.18832323,-0.054144431,0.239949539,0.423774272,-0.043009624,0.349702358,0.461361796,-0.076081343,0.330873966,0.508585691,-0.092581637,0.294778585,0.497267425,-0.10478054,0.222439155,0.514952779,-0.05057453,0.34921214,0.551688313,-0.079307593,0.321771085,0.577783704,-0.084708415,0.287153214,0.565678298,-0.094210766,0.217226356,0.608255684,-0.060918577,0.337790459,0.633285522,-0.084638417,0.310534954,0.658175468,-0.076131284,0.281119257,0.65011543,-0.074111529,0.223941281,0.69169724,-0.074232943,0.322911501,0.703850508,-0.088590585,0.303504378,0.718677282,-0.085073993,0.270863682,0.712412417,-0.085411824 +Left,0.21416536,0.922920465,-6.04E-07,0.275201917,0.70164603,-0.004796294,0.302076191,0.468164444,-0.009359805,0.308222622,0.304612547,-0.018866507,0.312114209,0.185119927,-0.022238895,0.232448593,0.402496755,-0.007763644,0.331114829,0.41655612,-0.044138454,0.318745434,0.452644229,-0.065963514,0.28239876,0.416579634,-0.08264982,0.197920084,0.476242661,-0.025632659,0.330130905,0.529251516,-0.063110061,0.305925488,0.575188458,-0.073553219,0.259512424,0.563314378,-0.08207722,0.181361929,0.576362848,-0.047796451,0.312111944,0.624632835,-0.083362192,0.289657652,0.659790516,-0.083225943,0.24653247,0.645874858,-0.082493789,0.181147516,0.683992982,-0.071854457,0.290915579,0.722159982,-0.097977832,0.27572462,0.743545115,-0.103858002,0.233561575,0.733718097,-0.106905468 +Left,0.23775205,0.639154792,-2.23E-07,0.27810961,0.53649199,-0.043028262,0.291118652,0.41147849,-0.0679143,0.291939676,0.304345727,-0.086530946,0.282252043,0.204564989,-0.103190415,0.184065819,0.422077537,-0.07609567,0.285527706,0.488797545,-0.109231941,0.285302222,0.508515596,-0.128862485,0.25597775,0.50183028,-0.144364819,0.154507518,0.521672666,-0.071328357,0.280488849,0.582583368,-0.092480816,0.274704129,0.578419089,-0.095101833,0.243207335,0.560352921,-0.105001137,0.149089992,0.618521035,-0.06926097,0.261238813,0.661726475,-0.087293312,0.259128332,0.652244627,-0.075628527,0.2307197,0.632114768,-0.072982818,0.15486981,0.710905194,-0.073159203,0.239524364,0.727246702,-0.091258563,0.242687881,0.71231246,-0.089498378,0.222557515,0.70109868,-0.089338124 +Left,0.23638998,0.672947288,-2.45E-07,0.270487785,0.552172482,-0.046354327,0.268043488,0.422290444,-0.075184703,0.26138708,0.324103594,-0.098034963,0.247549385,0.226964384,-0.117983103,0.143867135,0.454458982,-0.0780515,0.237258881,0.519759655,-0.119084492,0.261256754,0.534268498,-0.142793432,0.242683083,0.526493013,-0.158785462,0.11559359,0.560324371,-0.074022166,0.233030885,0.612271547,-0.102816261,0.256968617,0.601940155,-0.107436128,0.237917081,0.581367791,-0.115731649,0.113220997,0.660984099,-0.073673919,0.220324159,0.698219538,-0.098884366,0.245243549,0.678135157,-0.089297615,0.229289681,0.655113041,-0.0857751,0.123832591,0.752806723,-0.079054751,0.20345445,0.767517686,-0.098154664,0.226988733,0.749829769,-0.094993278,0.219465539,0.735833406,-0.092933588 +Left,0.230172843,0.66063571,-2.71E-07,0.257427156,0.540564775,-0.049631093,0.250042439,0.412481874,-0.078665167,0.242781281,0.317502826,-0.100647882,0.227056324,0.222999811,-0.119643971,0.135815337,0.463059008,-0.082504913,0.228979617,0.514993072,-0.122310333,0.247749835,0.520329475,-0.143893123,0.230189428,0.509699047,-0.158248976,0.111752398,0.567578435,-0.075514369,0.230726436,0.609287143,-0.103156321,0.245422333,0.590844095,-0.10632737,0.223410204,0.572748184,-0.112962924,0.112504974,0.666736603,-0.072228335,0.222539559,0.693502188,-0.097458549,0.239952996,0.668653727,-0.086563833,0.220557123,0.645928621,-0.080995604,0.125580341,0.757561684,-0.075201266,0.207620338,0.765335679,-0.09591236,0.228646994,0.745862603,-0.093135521,0.220977545,0.732666194,-0.090091765 +Left,0.232918069,0.66351825,-2.32E-07,0.259648353,0.54419595,-0.048022863,0.253450304,0.417521119,-0.076038897,0.2471506,0.320355028,-0.097174384,0.227483332,0.228931606,-0.115277462,0.147935241,0.484440595,-0.081769213,0.248039186,0.532566667,-0.121182054,0.261531651,0.527972877,-0.143022239,0.240849346,0.511264026,-0.157907918,0.12708354,0.589564979,-0.07526122,0.256399542,0.623418748,-0.101806574,0.260849148,0.593484819,-0.103605703,0.232735366,0.570159376,-0.109961085,0.130837798,0.685850441,-0.072489664,0.248428285,0.703187823,-0.09582407,0.254498392,0.672517359,-0.081495836,0.227141812,0.648226976,-0.073979944,0.145893753,0.77271843,-0.076336227,0.233107269,0.774481058,-0.096768945,0.243761957,0.751422822,-0.093204662,0.227767542,0.738099337,-0.089625187 +Left,0.246417075,0.649421215,-1.25E-07,0.271677434,0.544258952,-0.043374468,0.272649318,0.418590844,-0.068700209,0.264814228,0.317289293,-0.087365687,0.244483069,0.232110918,-0.103500344,0.175861776,0.49451077,-0.078269057,0.278834403,0.517262101,-0.10667792,0.270028412,0.516896009,-0.120638184,0.244159326,0.508213937,-0.131283745,0.15887329,0.599750638,-0.071061455,0.295649469,0.61154294,-0.086951479,0.271461159,0.592460513,-0.083630301,0.237038791,0.578888476,-0.087260604,0.166160092,0.692698479,-0.065885127,0.287899673,0.690900564,-0.080453686,0.2713103,0.67732203,-0.060155861,0.239067614,0.666698217,-0.048421152,0.183260262,0.780579567,-0.067384578,0.273298085,0.766312897,-0.084927306,0.26392895,0.747976065,-0.079463527,0.237514898,0.741412997,-0.073187947 +Left,0.262343794,0.65480572,-1.33E-07,0.287970155,0.55479151,-0.040279765,0.290035874,0.425038576,-0.062549427,0.281260192,0.313592017,-0.07875549,0.262394339,0.224285752,-0.092444144,0.207943708,0.493538082,-0.075836301,0.304685473,0.512519479,-0.10044793,0.287242234,0.523529768,-0.10992258,0.255384207,0.520530641,-0.117578074,0.185823768,0.59678793,-0.06878607,0.321397752,0.614880979,-0.079746537,0.289682776,0.605203748,-0.072941601,0.250985801,0.59449178,-0.075090222,0.188527897,0.691682756,-0.063336805,0.312318921,0.700244427,-0.075251803,0.290530771,0.699059486,-0.054400139,0.256518871,0.692669988,-0.042893268,0.200935304,0.781091452,-0.064159252,0.295783222,0.779354453,-0.079989493,0.284309685,0.769753993,-0.074373662,0.257963806,0.769257903,-0.068585172 +Left,0.254015684,0.680621743,-1.00E-07,0.27326262,0.570535302,-0.036886252,0.287460029,0.450783193,-0.062592298,0.289884776,0.341130346,-0.082967207,0.277736962,0.237420499,-0.103216343,0.225240469,0.519116104,-0.078741483,0.337412,0.544088662,-0.108232133,0.320360005,0.560165763,-0.129273385,0.283211976,0.563618422,-0.147974253,0.212391883,0.627169907,-0.077349462,0.34723866,0.631469429,-0.09431389,0.317299455,0.629414201,-0.099486746,0.273120075,0.628395617,-0.114789903,0.217140347,0.720613182,-0.076595187,0.342542946,0.716965318,-0.089755766,0.321072519,0.714171469,-0.078766756,0.28377682,0.710435927,-0.079810724,0.229325891,0.803526938,-0.081824377,0.333296001,0.793127418,-0.099008642,0.321324021,0.77656275,-0.098893575,0.290732801,0.773259282,-0.102041155 +Left,0.150397614,0.823850036,-5.80E-07,0.184051231,0.644398808,-0.016633729,0.249079734,0.471935689,-0.027159778,0.290288419,0.335959554,-0.035509862,0.284679502,0.228294522,-0.040479913,0.230016917,0.505525947,-0.035300229,0.355084658,0.53900975,-0.063682094,0.332513928,0.579575002,-0.078444004,0.292276084,0.576393902,-0.08753328,0.231554955,0.616176784,-0.043048963,0.364985287,0.633341432,-0.059827503,0.32681495,0.659840345,-0.059859969,0.287138879,0.6566782,-0.06605605,0.240189716,0.720854878,-0.05289574,0.362118959,0.713635325,-0.066252761,0.322576076,0.732358694,-0.054982297,0.288266629,0.730128884,-0.051834684,0.250885844,0.810275197,-0.064950712,0.343013585,0.792244732,-0.065878563,0.312794626,0.803625524,-0.052846551,0.28112781,0.807530165,-0.047502939 +Left,0.114747807,0.87659508,-5.32E-07,0.147605211,0.695248783,-0.007061762,0.223710611,0.51408428,-0.016393473,0.273567528,0.375958681,-0.024547879,0.274270594,0.261836886,-0.027928004,0.235104099,0.53611505,-0.029930323,0.349496424,0.56701088,-0.053061828,0.321442842,0.593410134,-0.06123028,0.279195309,0.595062315,-0.062738433,0.244230047,0.634120345,-0.036530286,0.357794464,0.64288336,-0.046028335,0.323613048,0.664837182,-0.03711988,0.280150771,0.671527386,-0.03294472,0.255318433,0.732267141,-0.04358343,0.358878165,0.722036302,-0.046132613,0.328649312,0.739459932,-0.024599269,0.28946954,0.747897863,-0.012998686,0.266740263,0.821919978,-0.051359173,0.345428765,0.791240215,-0.041384999,0.316587716,0.808574915,-0.017421035,0.284365594,0.820780694,-0.003040213 +Left,0.138386279,0.803938746,-2.97E-07,0.167197421,0.644794047,-0.012067611,0.229089797,0.495419502,-0.028933832,0.258524954,0.375062168,-0.042612009,0.251464844,0.275365859,-0.052254241,0.248242468,0.573975623,-0.055393383,0.350238085,0.587761462,-0.074403569,0.321377933,0.591071546,-0.075228631,0.284944952,0.58815366,-0.072290957,0.254116148,0.683637023,-0.058637526,0.359119862,0.66698277,-0.067086242,0.331241459,0.663034976,-0.05536592,0.295662314,0.669307172,-0.04928663,0.260274798,0.779108286,-0.060232803,0.354514003,0.747276664,-0.061794635,0.328472972,0.745666683,-0.038921658,0.295233697,0.756568074,-0.026244037,0.265421331,0.857535183,-0.062109619,0.343540072,0.814364731,-0.053207196,0.321451008,0.812890589,-0.029492997,0.291609198,0.829305768,-0.015497828 +Left,0.159845173,0.833996356,-3.74E-07,0.191704303,0.669141054,-0.011999419,0.247754127,0.534541845,-0.027081855,0.277990013,0.417933315,-0.0405096,0.266494989,0.321362495,-0.05045072,0.292943835,0.631946743,-0.036177631,0.378202796,0.620932937,-0.048361924,0.344563127,0.620236754,-0.049785115,0.310049534,0.626457214,-0.049081173,0.304937124,0.739027619,-0.038221791,0.387556225,0.706944287,-0.041471783,0.357062906,0.697286069,-0.033907197,0.324661195,0.710442364,-0.031002577,0.310564041,0.830133438,-0.039512418,0.386634886,0.786925793,-0.037715159,0.360514998,0.777573228,-0.021905921,0.328867644,0.79137069,-0.014703944,0.312463105,0.903738081,-0.041499194,0.374589503,0.859362006,-0.034975734,0.354518056,0.850411832,-0.017741075,0.328432053,0.86395818,-0.007518596 +Left,0.215571612,0.832001269,-4.06E-07,0.257598996,0.670888245,-9.26E-05,0.31857422,0.549852729,-0.007799007,0.359017074,0.440731466,-0.016241586,0.355593979,0.348687202,-0.021708008,0.398178846,0.657152653,-0.00420191,0.45865348,0.649891555,-0.001808869,0.425174326,0.651391983,-0.00067623,0.392644256,0.656363666,-0.000689062,0.406384081,0.761116385,-0.00651704,0.459051788,0.739234626,0.005779347,0.431741834,0.729718089,0.012871011,0.402312875,0.737990439,0.012461035,0.401668578,0.849833012,-0.007473241,0.446661502,0.820120931,0.008942467,0.426825136,0.809285641,0.021140816,0.399294078,0.81494689,0.022444516,0.393235832,0.921591401,-0.008463697,0.432909727,0.890039146,0.009887887,0.415615261,0.876417041,0.027218409,0.393076479,0.881024361,0.035769984 +Left,0.312393308,0.843297303,-4.20E-07,0.363999099,0.67644763,0.010122343,0.418071449,0.572719812,0.006662303,0.455584943,0.482789367,0.001018537,0.46413812,0.400484651,-0.002979496,0.499053091,0.697015226,0.008004604,0.539356709,0.682932079,0.023131356,0.507453382,0.674125016,0.03162403,0.476347059,0.675913572,0.035274565,0.503649473,0.798339009,0.004407392,0.535611212,0.766089261,0.027657062,0.509488523,0.749976516,0.035189841,0.481443912,0.755974829,0.032642327,0.494101018,0.882679045,0.004175608,0.523728251,0.838203847,0.030242614,0.503959298,0.825905144,0.040036496,0.476270914,0.832082391,0.036900911,0.48256129,0.949360371,0.00493868,0.507887244,0.905944049,0.029007688,0.490612835,0.893241525,0.045265764,0.468913406,0.900308669,0.05191993 +Left,0.405752182,0.821389496,-4.45E-07,0.45021379,0.672403216,-0.009479175,0.500805616,0.581647694,-0.025858674,0.541036487,0.494959205,-0.041879106,0.555805802,0.404836595,-0.056883056,0.588926911,0.715500951,-0.014438156,0.606503427,0.676944494,-0.01175193,0.572816133,0.66563338,-0.013628369,0.543803334,0.675054371,-0.016964186,0.58896625,0.814874589,-0.012742323,0.603183866,0.762621403,-0.004956385,0.574971199,0.74524498,-0.00699714,0.547154307,0.75739491,-0.013866224,0.573443294,0.895185411,-0.008482691,0.588959455,0.834378242,0.001836056,0.565625429,0.821496248,0.007665632,0.537724316,0.831479311,0.005857538,0.555621922,0.956972063,-0.004764124,0.572824001,0.907048464,0.005965425,0.551574171,0.891121149,0.019308271,0.528624475,0.89795357,0.026958337 +Left,0.470249891,0.793797314,-4.29E-07,0.505499661,0.644480109,-0.015766554,0.552121103,0.538417459,-0.031609606,0.590046287,0.442352474,-0.044501066,0.605704546,0.357334107,-0.055705812,0.650627434,0.667838633,-0.022002378,0.638478577,0.609703004,-0.01855644,0.602845371,0.613529027,-0.018444926,0.57866329,0.636784077,-0.020470267,0.653001666,0.763610601,-0.016587283,0.645430803,0.695040226,-0.009430842,0.615336239,0.689207733,-0.010072879,0.590806007,0.709718883,-0.016090808,0.638504982,0.840714931,-0.008928479,0.638652921,0.7690956,-0.001130976,0.612412751,0.762096107,0.003691371,0.587502837,0.777498722,0.001738195,0.620753348,0.90106523,-0.002277507,0.626506686,0.842890263,0.005795679,0.602190256,0.832683563,0.016882064,0.58043474,0.84358865,0.023316193 +Left,0.517093182,0.741102338,-5.18E-07,0.546912849,0.583864152,-0.011057967,0.590713978,0.477556646,-0.026776489,0.625620186,0.383706331,-0.04095218,0.6374529,0.294067532,-0.053775202,0.694355428,0.590841234,-0.017944444,0.695686042,0.541230321,-0.018643297,0.659148514,0.550723374,-0.024091924,0.632025301,0.576063216,-0.029385326,0.704049408,0.683180928,-0.014878147,0.697998881,0.622877955,-0.008813311,0.666475058,0.619443417,-0.011964749,0.641510189,0.641347528,-0.019805262,0.694592953,0.763221741,-0.009527935,0.692704022,0.69750762,-0.003074019,0.666723847,0.69252193,0.000781618,0.641005754,0.710644722,-0.001687282,0.681112945,0.825969219,-0.004586311,0.685672939,0.772628605,0.001751797,0.66126436,0.764411747,0.01263986,0.639563262,0.778871179,0.019512089 +Left,0.558996201,0.704666793,-3.73E-07,0.585221946,0.549748123,-0.006746011,0.624148011,0.446802199,-0.019790361,0.658833385,0.354293644,-0.031581979,0.667257488,0.270198911,-0.041795712,0.730237186,0.532472908,-0.014197213,0.735836983,0.522277117,-0.006013722,0.706376314,0.536081314,-0.002330019,0.684511364,0.54875952,-0.002589263,0.741518259,0.624328077,-0.011899092,0.741783559,0.596448421,0.002218669,0.714234829,0.596813142,0.005403097,0.690275252,0.611828089,0.001009686,0.734022439,0.705030441,-0.006709505,0.732863486,0.665099502,0.008004648,0.710803092,0.665304899,0.014310208,0.685925007,0.678683162,0.011784155,0.722581208,0.771201074,-0.001889494,0.725340664,0.735255361,0.011510951,0.703486979,0.731486201,0.023579277,0.681702793,0.740926087,0.029778717 +Left,0.563597083,0.710849285,-4.13E-07,0.588316917,0.555907786,-0.002129351,0.627678156,0.449567854,-0.014320696,0.659367085,0.351061881,-0.026276089,0.66010499,0.265057981,-0.036082339,0.722015619,0.532565057,-0.014752498,0.754500449,0.513905406,-0.005494216,0.7262972,0.517189622,0.002687868,0.701390445,0.525149405,0.005866426,0.734896421,0.624931872,-0.014955361,0.76250124,0.585643828,0.000403042,0.737080216,0.578303099,0.008410281,0.713011205,0.592289686,0.007208993,0.733085334,0.707248211,-0.011848006,0.760814071,0.658540487,0.005457887,0.740270376,0.651771426,0.016438087,0.71441263,0.664242864,0.015974646,0.726302683,0.775562763,-0.008602161,0.75120002,0.731146991,0.005972624,0.733136535,0.722921312,0.020381255,0.712275982,0.73353374,0.02755894 +Left,0.530120432,0.727244079,-3.90E-07,0.55864948,0.57983923,-0.006023196,0.599084139,0.468625337,-0.021510402,0.629591644,0.367398083,-0.03668686,0.627641082,0.282578349,-0.04937141,0.670088768,0.56356883,-0.026299881,0.72658664,0.55094099,-0.030455744,0.696773469,0.55007875,-0.029776178,0.667179465,0.556975842,-0.02940187,0.678770006,0.659954906,-0.028553726,0.730648458,0.63066268,-0.024501087,0.705929995,0.619548261,-0.018011227,0.679341316,0.63072753,-0.018179085,0.677937686,0.741845727,-0.028787768,0.725680292,0.706768751,-0.02016061,0.704845905,0.696161032,-0.006771019,0.678945184,0.706653237,-0.003526544,0.674109042,0.80916965,-0.029345136,0.715825796,0.774879634,-0.019010533,0.695916235,0.76256454,-0.002704915,0.673218131,0.771726727,0.006240691 +Left,0.471745729,0.722305357,-3.46E-07,0.49841243,0.587167025,-0.013156265,0.545880318,0.466981828,-0.033439428,0.576560438,0.367318988,-0.051547892,0.588647127,0.276578158,-0.065627381,0.571295977,0.565763533,-0.05996548,0.660651624,0.561328709,-0.081419304,0.640282094,0.551812649,-0.083705075,0.60842663,0.552590191,-0.080787316,0.574792147,0.666755974,-0.062995903,0.668211222,0.653968334,-0.074521922,0.646585703,0.629973471,-0.063907661,0.613109827,0.633027494,-0.057669211,0.577302516,0.750974178,-0.064729042,0.664796233,0.732165992,-0.067345634,0.644523978,0.709676504,-0.046027035,0.613687813,0.715082467,-0.034298334,0.578986347,0.819626331,-0.06742613,0.652420521,0.805041671,-0.062219437,0.638137221,0.782266855,-0.042537555,0.612117887,0.78078568,-0.030634245 +Left,0.330361784,0.729554415,2.84E-09,0.364393592,0.611747682,-0.034257103,0.429106593,0.476348162,-0.067367017,0.458873987,0.375043929,-0.090124071,0.458277851,0.269893885,-0.108986154,0.391438067,0.5313465,-0.128436595,0.520938218,0.567572534,-0.165552408,0.514015436,0.557848573,-0.170589849,0.477752149,0.540365398,-0.167322621,0.3742733,0.636907458,-0.124148414,0.511404335,0.669556379,-0.151953548,0.499361664,0.643915772,-0.135330439,0.462578833,0.628038704,-0.125105843,0.371061683,0.741567969,-0.116980478,0.494197249,0.752123415,-0.128321767,0.475118876,0.72711283,-0.096093222,0.438136041,0.718197703,-0.077595904,0.37459448,0.83195734,-0.112020694,0.472139567,0.824566662,-0.109694563,0.456633329,0.803196549,-0.083991118,0.422325134,0.800538659,-0.069273263 +Left,0.241686612,0.853429198,-6.48E-07,0.269688129,0.655077815,-0.025210131,0.299201965,0.47812748,-0.038187154,0.308275402,0.348271012,-0.048794832,0.299303949,0.241558194,-0.060204379,0.333745211,0.562523425,-0.034934938,0.239729106,0.541885138,-0.066393085,0.217316419,0.546308517,-0.091372408,0.230603144,0.527979374,-0.108436212,0.329336613,0.689840376,-0.040232413,0.212636426,0.655894816,-0.066336386,0.208320141,0.654016435,-0.079370059,0.233300477,0.64553529,-0.092150055,0.315739095,0.799000323,-0.048536766,0.203265816,0.759333551,-0.078286454,0.200735718,0.761495709,-0.075203843,0.227463335,0.762517393,-0.071947083,0.294394046,0.888943732,-0.059313081,0.213431135,0.857870042,-0.079902515,0.206461415,0.85759443,-0.073846631,0.22598353,0.867392361,-0.067639485 +Left,0.224724501,0.784571528,-3.66E-07,0.241933018,0.628216684,-0.051084332,0.213145122,0.46662727,-0.081843384,0.188007191,0.348519146,-0.106785312,0.159346506,0.239415675,-0.127827883,0.05633349,0.556263506,-0.068823457,0.166690424,0.610774636,-0.110886872,0.214106798,0.614020705,-0.136347458,0.20346725,0.586010098,-0.153322056,0.033438817,0.688058317,-0.064770237,0.170123428,0.723246515,-0.097551934,0.220961869,0.698820472,-0.104850441,0.208088875,0.662880242,-0.112429462,0.037281945,0.807244062,-0.065435782,0.160653561,0.830874562,-0.096459158,0.208770409,0.792297661,-0.0888374,0.200702608,0.753542125,-0.084508546,0.053118251,0.915512621,-0.072316125,0.151026368,0.920478463,-0.094464205,0.196330085,0.8826738,-0.090455882,0.1963415,0.847988844,-0.085462645 +Left,0.16136162,0.792207897,-3.69E-07,0.167283595,0.620490551,-0.054846566,0.126524687,0.462435722,-0.08115384,0.087215021,0.350236803,-0.100763634,0.059320398,0.248568922,-0.116303824,-0.018926769,0.583456874,-0.062397137,0.031824306,0.612243891,-0.101543456,0.087943241,0.620361209,-0.122189865,0.106002852,0.607912064,-0.131600603,-0.033800125,0.715916157,-0.050509367,0.050468896,0.737055659,-0.090302207,0.110955186,0.716178954,-0.103759393,0.127937362,0.690508902,-0.108724371,-0.026183836,0.8255409,-0.042856205,0.05247137,0.84698683,-0.08531411,0.111840934,0.81299454,-0.08690431,0.133405894,0.779678941,-0.079949155,-0.012112394,0.920356095,-0.039593577,0.040599246,0.937604308,-0.069381654,0.093122669,0.910145223,-0.069003977,0.116236642,0.879191458,-0.060738638 +Left,0.168905094,0.792342186,-4.67E-07,0.172589839,0.62121594,-0.062282644,0.125414014,0.458105475,-0.094024971,0.083413094,0.349724203,-0.117562652,0.050766855,0.246513456,-0.135518134,-0.026000869,0.575115919,-0.077861868,0.052506007,0.616184175,-0.127407685,0.108419031,0.618759871,-0.152878433,0.10652937,0.604052961,-0.166600302,-0.038326222,0.710388124,-0.067432575,0.068047285,0.73957479,-0.11122407,0.126042396,0.709003091,-0.119258203,0.122168258,0.676234365,-0.122683205,-0.025049243,0.828022957,-0.062996209,0.075899869,0.849330723,-0.107178368,0.132684708,0.802083611,-0.100274272,0.134536624,0.759698987,-0.090614408,-0.002002824,0.932061553,-0.064849466,0.07528045,0.945049405,-0.093192533,0.126536489,0.899968028,-0.089477986,0.136743605,0.858474493,-0.081530161 +Left,0.184390426,0.737931013,-5.28E-07,0.194121853,0.574098229,-0.057726894,0.158047885,0.417811692,-0.089452423,0.120844349,0.304145306,-0.114151247,0.084175304,0.20181337,-0.1341113,0.012053616,0.527176857,-0.077218652,0.102343634,0.567980826,-0.123578474,0.15728879,0.573032439,-0.149478659,0.152444094,0.561872661,-0.164501742,-0.004659168,0.657283783,-0.068423912,0.118732512,0.68845588,-0.105262406,0.174222827,0.662107527,-0.113066867,0.167127252,0.631660461,-0.118965484,0.003629871,0.771601439,-0.064722225,0.123848557,0.792616785,-0.102217659,0.177120775,0.745522022,-0.096724451,0.176988676,0.702717662,-0.090742037,0.022536788,0.87557435,-0.067045145,0.113735147,0.886315644,-0.092128724,0.164578691,0.837635159,-0.088357098,0.177268416,0.793373287,-0.081746466 +Left,0.218107671,0.676824093,-4.80E-07,0.245630205,0.519163847,-0.053396724,0.228322357,0.352768242,-0.083829857,0.204385966,0.226698309,-0.106253073,0.170789182,0.113756567,-0.125328377,0.100078546,0.438834548,-0.089546219,0.227710649,0.481868863,-0.124585003,0.245304018,0.493917912,-0.143267497,0.21864745,0.488862574,-0.158218488,0.074892223,0.577920735,-0.083216451,0.23762913,0.598662734,-0.103023872,0.240258366,0.584319949,-0.107367545,0.200976759,0.56943953,-0.119919032,0.081527874,0.702540874,-0.079475388,0.225053191,0.703108311,-0.098614603,0.232343972,0.681931198,-0.08781489,0.199201554,0.668183923,-0.086912602,0.102751479,0.820668101,-0.082840271,0.207800567,0.814568996,-0.102493711,0.2246463,0.782501042,-0.09961579,0.210025743,0.76407814,-0.098448314 +Left,0.244203895,0.570104897,-2.59E-07,0.277552396,0.435052812,-0.049765266,0.279039592,0.287000924,-0.076622143,0.263941944,0.164337635,-0.095722839,0.236038879,0.049601704,-0.112432316,0.166845933,0.344517887,-0.092460439,0.289127856,0.400543809,-0.126677394,0.28276217,0.413226634,-0.14494355,0.247891724,0.401815742,-0.160613596,0.144189924,0.470263511,-0.086354285,0.299115926,0.509585738,-0.10512726,0.280383617,0.502145708,-0.105441526,0.234786749,0.483738124,-0.117164038,0.150158748,0.587929606,-0.082612924,0.288924396,0.608883798,-0.101797983,0.275016665,0.600575328,-0.088020742,0.234855816,0.582717419,-0.085824549,0.167371005,0.695658803,-0.085633546,0.272085637,0.696981609,-0.107875682,0.264572561,0.683190465,-0.107362911,0.234983146,0.68188554,-0.108643994 +Left,0.258160323,0.540599406,-2.89E-07,0.298139095,0.428106666,-0.047253642,0.283279359,0.270878136,-0.068055876,0.265077502,0.143669844,-0.081854835,0.246563584,0.044589162,-0.089561909,0.17203784,0.337833643,-0.082645968,0.275157183,0.379791468,-0.119759277,0.278256297,0.382452428,-0.131967068,0.25291568,0.369999141,-0.137424782,0.136185527,0.462344438,-0.073637597,0.299369097,0.509175897,-0.08987309,0.278583348,0.481306553,-0.074240156,0.232675537,0.461318582,-0.066762567,0.144415468,0.579624951,-0.069147952,0.288301528,0.602626562,-0.089384459,0.275971502,0.586294532,-0.055670168,0.238822743,0.578778625,-0.030323893,0.165269569,0.689711452,-0.071951412,0.271825492,0.695337296,-0.096300222,0.267086208,0.680484831,-0.086146705,0.239031866,0.680420995,-0.071852386 +Left,0.26172021,0.560639381,-2.39E-07,0.299432427,0.445629507,-0.046824791,0.292678654,0.283009499,-0.070738152,0.277228326,0.151711792,-0.087245785,0.254159689,0.053240299,-0.100020207,0.188436657,0.348366231,-0.085379228,0.301298499,0.38876605,-0.122487329,0.29078719,0.396959543,-0.141677678,0.263665795,0.390795529,-0.153316721,0.155468717,0.473828048,-0.075726673,0.319080979,0.519751847,-0.088844024,0.282349467,0.496492863,-0.078487813,0.238719925,0.478406191,-0.07700862,0.162452668,0.592800558,-0.069290675,0.306322455,0.614668667,-0.085345469,0.280287683,0.604440153,-0.053653639,0.242730469,0.600613058,-0.031308282,0.182402939,0.704567373,-0.070204936,0.289662361,0.708681166,-0.091777675,0.272796035,0.693078399,-0.081335597,0.23764959,0.692277133,-0.067770891 +Left,0.297004014,0.633244574,-1.97E-07,0.321476907,0.514609754,-0.047219492,0.318902612,0.369941771,-0.074864022,0.305240214,0.2417669,-0.09519577,0.281489581,0.136674851,-0.11348623,0.237095028,0.453611374,-0.098907828,0.354315281,0.471363902,-0.132294014,0.338241845,0.478272855,-0.146091238,0.301630288,0.474304289,-0.156817436,0.217271686,0.585710227,-0.092294879,0.373475909,0.592663884,-0.109749109,0.339382291,0.578719378,-0.102915563,0.290575564,0.572106659,-0.107009083,0.22512117,0.698440015,-0.087006494,0.364680171,0.694432557,-0.102228999,0.340912879,0.684975922,-0.075874418,0.29956454,0.680702806,-0.062146977,0.243524745,0.799648345,-0.089182466,0.347880602,0.786625981,-0.109008789,0.333281457,0.772020221,-0.101411201,0.300500005,0.776261926,-0.094462089 +Left,0.302405477,0.608928263,-9.26E-08,0.321424901,0.486045897,-0.047852006,0.331377596,0.358083785,-0.077498488,0.327831119,0.241032749,-0.100302003,0.307561934,0.129244775,-0.123297632,0.273286879,0.43371737,-0.09516523,0.39517042,0.461888611,-0.13082774,0.368770778,0.466427267,-0.155352533,0.326791078,0.462361097,-0.175852954,0.260388702,0.554350138,-0.089374512,0.410272896,0.56980902,-0.10907837,0.368668824,0.558583558,-0.113070883,0.316381216,0.552983642,-0.127633438,0.266762733,0.660438776,-0.084770225,0.401236534,0.668789685,-0.101690158,0.370079964,0.65973413,-0.085687153,0.325518727,0.650877595,-0.081647791,0.280438542,0.754482985,-0.087604478,0.381462604,0.749514043,-0.10961888,0.359596729,0.734271944,-0.107301712,0.323671758,0.735851526,-0.106562957 +Left,0.245950267,0.701087832,-3.59E-07,0.272482455,0.53403914,-0.024676258,0.335655749,0.369186223,-0.044706702,0.369220048,0.242499679,-0.058578651,0.357808858,0.138334632,-0.067380592,0.335220188,0.45061478,-0.072388396,0.453632265,0.476553023,-0.103205785,0.429518163,0.481934279,-0.111901291,0.390928239,0.471163422,-0.113607436,0.336868554,0.570258915,-0.071647726,0.462246865,0.571917176,-0.089821659,0.429084688,0.563485503,-0.079274349,0.389651358,0.562416494,-0.075572647,0.344316155,0.673160553,-0.070962042,0.45681563,0.65796262,-0.080636792,0.42740187,0.643160224,-0.059222959,0.393274426,0.643328369,-0.048220839,0.354616433,0.754047334,-0.071976833,0.443532258,0.728442132,-0.067310005,0.418046296,0.712393165,-0.047143232,0.384445965,0.711954594,-0.036635604 +Left,0.244291589,0.688591123,-4.36E-07,0.28339386,0.515924692,-0.005337212,0.348280132,0.389572084,-0.018569404,0.38802579,0.276951343,-0.030971808,0.385223776,0.17330125,-0.04053349,0.406584054,0.496085495,-0.029872116,0.479138643,0.507214963,-0.035365786,0.446166962,0.501228333,-0.034841418,0.414056242,0.502824783,-0.034837358,0.410046369,0.609758198,-0.033695709,0.480236202,0.593082547,-0.028710818,0.452940196,0.575002015,-0.01918656,0.420756459,0.582581639,-0.017933009,0.406603396,0.703916907,-0.03567344,0.466883898,0.66961211,-0.025748136,0.444260597,0.656989396,-0.009186646,0.415319234,0.666583419,-0.004749506,0.401776463,0.776748478,-0.037915803,0.45544681,0.739428401,-0.025639953,0.436548799,0.728275716,-0.006587618,0.412091434,0.737858355,0.003242297 +Left,0.24928844,0.701660573,-4.28E-07,0.292787343,0.531825066,-0.001942861,0.35657233,0.418017596,-0.013367911,0.395668358,0.308913648,-0.024884894,0.396226943,0.205999881,-0.034147251,0.419237703,0.533755004,-0.02152108,0.484967887,0.546842456,-0.022197912,0.455427468,0.541091859,-0.019646766,0.425774395,0.542568505,-0.018546095,0.42122367,0.644090474,-0.024741897,0.483884811,0.626275539,-0.014502614,0.460043728,0.60763216,-0.0048369,0.430979431,0.613547087,-0.004499209,0.415514261,0.734099805,-0.025771108,0.470467389,0.695307791,-0.01182958,0.450817496,0.682806015,0.002754869,0.423321277,0.691266775,0.005082249,0.409084171,0.801236808,-0.026778825,0.459030628,0.760358989,-0.012222972,0.442441136,0.74944222,0.005715569,0.418348104,0.757621348,0.014631425 +Left,0.214774176,0.738185585,-4.92E-07,0.257851541,0.56820333,-1.08E-05,0.327456236,0.444235861,-0.010364284,0.36894691,0.333123654,-0.021099867,0.371005118,0.229374528,-0.029515918,0.382259935,0.552340031,-0.021787148,0.454479098,0.551015079,-0.025177106,0.422596633,0.541510701,-0.024003154,0.390811414,0.544337213,-0.023134844,0.383769244,0.662623465,-0.026378648,0.457110465,0.639982343,-0.021501368,0.429723561,0.619587183,-0.012838957,0.397291541,0.628921449,-0.011132287,0.378432095,0.754728556,-0.028552994,0.447996527,0.721369326,-0.018257769,0.425672561,0.703630328,-0.001999434,0.395374805,0.712830663,0.003189975,0.372149229,0.826330781,-0.030369841,0.432644874,0.792197943,-0.01577878,0.413860172,0.776167452,0.004139274,0.387609094,0.78742528,0.014622965 +Left,0.177501321,0.776452184,-3.95E-07,0.210184187,0.607205808,-0.011861895,0.283205807,0.461245358,-0.026225794,0.324850202,0.340643197,-0.037848979,0.327669799,0.235009938,-0.045312744,0.312234819,0.557793021,-0.046081301,0.410682142,0.56052804,-0.060740475,0.378506988,0.555130303,-0.060920306,0.342224866,0.554555178,-0.058387827,0.315580517,0.667342782,-0.047863942,0.412389934,0.657556593,-0.052243013,0.38275063,0.646140993,-0.041909892,0.34631595,0.650579929,-0.037220977,0.316176891,0.761963785,-0.048342213,0.405535281,0.740570188,-0.045914713,0.379101366,0.730749309,-0.025895571,0.34441489,0.736025155,-0.016312806,0.315288007,0.839274406,-0.049328141,0.388881803,0.808732748,-0.039135758,0.366765529,0.801092505,-0.018066656,0.337162882,0.810075998,-0.006400895 +Left,0.139881402,0.873871446,-5.70E-07,0.171824276,0.693211019,-0.02010628,0.245935142,0.489051402,-0.035594419,0.290786713,0.334959447,-0.047113728,0.286929697,0.209298521,-0.052730341,0.228845,0.504650235,-0.050670553,0.35896787,0.550094485,-0.083976164,0.328609616,0.586338937,-0.095976941,0.284703881,0.582229733,-0.099933594,0.227054358,0.618054986,-0.054656386,0.365698427,0.645581663,-0.074911177,0.326110125,0.663527012,-0.067383423,0.278680623,0.6595909,-0.064985327,0.235406011,0.729268372,-0.060293198,0.361376405,0.734965384,-0.07291425,0.322951555,0.746569395,-0.052920375,0.279795766,0.741798282,-0.042446584,0.250986248,0.827162802,-0.067643061,0.345917463,0.809284091,-0.064479761,0.309806287,0.821741641,-0.043852303,0.269154519,0.818826199,-0.032649904 +Left,0.162745893,0.904465199,-6.38E-07,0.208271772,0.703268766,-0.018205391,0.261026651,0.490184963,-0.031882726,0.287638098,0.326458335,-0.044523254,0.278245926,0.202839583,-0.052122224,0.207261413,0.493772149,-0.0423108,0.337484837,0.516438842,-0.079461753,0.313502371,0.576234996,-0.097511351,0.271370262,0.578967929,-0.107771434,0.191442966,0.620731652,-0.051451311,0.339036882,0.637230873,-0.07523039,0.307737589,0.677868545,-0.072702035,0.2661587,0.676099777,-0.077361204,0.194107145,0.742450774,-0.063756041,0.332061321,0.747595191,-0.083195999,0.299647421,0.781620204,-0.067546852,0.262841851,0.780348539,-0.061865356,0.210082114,0.849069297,-0.078328378,0.322785616,0.839737713,-0.082208157,0.294800818,0.86239022,-0.067021653,0.256094187,0.863532424,-0.060926404 +Left,0.234142438,0.930434883,-6.36E-07,0.292139202,0.668485343,-0.018529601,0.304036975,0.438882351,-0.025306121,0.297908515,0.287855417,-0.033667464,0.285336137,0.162441671,-0.035640277,0.211813986,0.451336622,-0.007793595,0.323103428,0.500241458,-0.044190511,0.318486273,0.565748811,-0.07015232,0.282680571,0.55716598,-0.089803062,0.189904884,0.570009351,-0.01880181,0.327588439,0.623268127,-0.049949244,0.315574229,0.66365546,-0.065151036,0.275052667,0.643841267,-0.080807462,0.186072499,0.692468286,-0.035442848,0.31813693,0.719183028,-0.067401342,0.310267836,0.745015264,-0.070550032,0.274406999,0.722934365,-0.074018016,0.197411478,0.804009616,-0.054963812,0.302095443,0.821739435,-0.077436484,0.30223161,0.82511282,-0.081068471,0.272697061,0.807453871,-0.083955064 +Left,0.272703111,0.673782885,-1.18E-07,0.309441149,0.542600513,-0.047570117,0.316515476,0.403493047,-0.072615154,0.312165618,0.296971381,-0.089932017,0.298799932,0.180773139,-0.104745157,0.21597223,0.456061244,-0.085200138,0.333969951,0.51968962,-0.123755112,0.32818386,0.540088773,-0.147653818,0.292241424,0.533040047,-0.166201413,0.190647691,0.568517089,-0.079808399,0.33717677,0.621819556,-0.105918691,0.322378993,0.616260946,-0.110986896,0.283509374,0.59919554,-0.12349204,0.188694179,0.676021934,-0.077425167,0.323867857,0.714883208,-0.103525966,0.312845975,0.705977976,-0.095499262,0.279289484,0.683509707,-0.094797157,0.196703047,0.770918131,-0.081045359,0.30587545,0.790457726,-0.108256266,0.304063767,0.77634865,-0.111582533,0.28081888,0.767797232,-0.114512205 +Left,0.289255023,0.630673468,-1.39E-07,0.331605077,0.529543161,-0.049616884,0.341083944,0.379206479,-0.075614423,0.333702505,0.255421013,-0.093931861,0.31597662,0.149442673,-0.109627515,0.243841618,0.43471247,-0.089128599,0.350675642,0.480516613,-0.118899919,0.336913347,0.481581211,-0.131377831,0.304545134,0.467785031,-0.140199289,0.207639143,0.54716903,-0.079068497,0.362245113,0.611181736,-0.090623885,0.330292195,0.582221329,-0.081566751,0.285844952,0.557706714,-0.082221642,0.204774112,0.657906771,-0.071097717,0.340898633,0.701113105,-0.082995564,0.320486158,0.683532238,-0.052294146,0.283320427,0.666985393,-0.03309435,0.214241892,0.766381025,-0.070903875,0.315805078,0.788346767,-0.088141821,0.305813789,0.764174223,-0.076513425,0.277518779,0.753323436,-0.064176321 +Left,0.328522861,0.638223469,-2.08E-07,0.373452514,0.532437861,-0.049824793,0.389463872,0.380746186,-0.076290958,0.381961972,0.252441496,-0.094532251,0.359958887,0.144237608,-0.110330701,0.284660578,0.425673068,-0.091251716,0.389437526,0.487056077,-0.123594008,0.374224514,0.483516067,-0.141008288,0.341017187,0.462781668,-0.155153736,0.245566711,0.5359115,-0.082493797,0.395929903,0.617856503,-0.098443866,0.364955306,0.584553063,-0.096981399,0.317881405,0.551355004,-0.105564788,0.239277825,0.647886992,-0.075747021,0.376334965,0.709118068,-0.090447418,0.353340179,0.687963605,-0.070671976,0.312261254,0.665597439,-0.062229659,0.245797753,0.754814804,-0.076312318,0.350422084,0.791385055,-0.095967814,0.336980373,0.764451325,-0.092597276,0.303408772,0.749295354,-0.089385733 +Left,0.356786788,0.631618083,-1.44E-07,0.392791808,0.528048992,-0.045479409,0.409664631,0.386788726,-0.072312772,0.411697865,0.254840523,-0.092189357,0.400587022,0.139434993,-0.110853277,0.317772895,0.426601619,-0.087401368,0.425040841,0.492007077,-0.12058074,0.406811565,0.485991895,-0.141165718,0.372541666,0.464953512,-0.157618895,0.284412384,0.539422452,-0.080896921,0.429460138,0.615408897,-0.096940808,0.394093543,0.58384645,-0.097374156,0.347904027,0.554848075,-0.107935287,0.277954906,0.650851965,-0.076141313,0.411245435,0.709383249,-0.090549745,0.385372579,0.690264821,-0.072106458,0.345436156,0.665924549,-0.064954653,0.282493591,0.75875783,-0.078463748,0.383895069,0.791709423,-0.097098961,0.367358714,0.767691493,-0.093445517,0.333485126,0.753163576,-0.090762816 +Left,0.438075036,0.626133144,-1.55E-07,0.466491759,0.518568575,-0.040273767,0.476459026,0.379359901,-0.065353073,0.472847164,0.253665775,-0.084337376,0.457283169,0.148711175,-0.102146037,0.390064865,0.436489731,-0.083342738,0.498405546,0.490551293,-0.11269284,0.481009394,0.489423692,-0.128895938,0.449270457,0.477149308,-0.141866088,0.359979391,0.552221954,-0.078119382,0.502540171,0.610209107,-0.091745295,0.469367951,0.584240675,-0.089567982,0.427628398,0.564575493,-0.097768426,0.357309699,0.661671638,-0.073851503,0.48585701,0.703432262,-0.086735561,0.463145345,0.686143935,-0.067768268,0.425449431,0.6694839,-0.059956722,0.366200894,0.764714122,-0.075956933,0.46385029,0.788917661,-0.092380881,0.450211495,0.765632749,-0.087454073,0.41723153,0.752465487,-0.084048182 +Left,0.464419961,0.612837732,-9.93E-08,0.487721622,0.489344865,-0.041496832,0.504883766,0.357141286,-0.06936378,0.514701545,0.244177014,-0.091527097,0.509627163,0.126388818,-0.113474369,0.437752724,0.419430852,-0.082039759,0.556720197,0.478821993,-0.116820842,0.538104534,0.49104172,-0.143455058,0.499741644,0.483544141,-0.166177601,0.417277426,0.535079598,-0.080488078,0.556900978,0.576745033,-0.101509698,0.523516476,0.566738129,-0.109517477,0.478100955,0.556507349,-0.126877025,0.414090633,0.638443768,-0.080318227,0.543772578,0.66854161,-0.096630402,0.516532958,0.657387614,-0.085989796,0.4757469,0.64050436,-0.087044083,0.42051512,0.727242172,-0.086698636,0.524658024,0.740338802,-0.105641887,0.506022871,0.720441163,-0.105287015,0.470606446,0.712814927,-0.108217455 +Left,0.391805351,0.600726128,-4.54E-07,0.439846069,0.452810675,-0.023433611,0.494444847,0.327503026,-0.042563733,0.525754511,0.212058976,-0.057681616,0.529145658,0.101781368,-0.068242744,0.452026218,0.413189799,-0.066118374,0.574179173,0.453012109,-0.098975211,0.549528718,0.471755415,-0.109704562,0.508822799,0.45872432,-0.115442567,0.440692842,0.530918658,-0.07105501,0.574416637,0.550312817,-0.094821878,0.540188372,0.549248397,-0.088193417,0.503763497,0.53735137,-0.090665169,0.441810042,0.62856108,-0.077257827,0.567717969,0.633496881,-0.093660884,0.535070062,0.626887918,-0.072723955,0.505356431,0.613581419,-0.064122021,0.448385805,0.709505677,-0.086386926,0.547488749,0.702966154,-0.088261902,0.525299191,0.689908564,-0.071477331,0.496736705,0.67909652,-0.065283306 +Left,0.371934831,0.610672414,-3.14E-07,0.411149889,0.462811321,-0.021518862,0.47827661,0.331697732,-0.04356911,0.51110816,0.217170358,-0.060593992,0.513132274,0.110259533,-0.072506301,0.477067947,0.422755331,-0.077814467,0.583585799,0.449249119,-0.105029076,0.557612777,0.44114235,-0.106810801,0.521321416,0.428596437,-0.103165194,0.473640412,0.542438388,-0.078195587,0.586003244,0.548017859,-0.096990064,0.556609333,0.525005043,-0.084484316,0.518112242,0.520183444,-0.07608626,0.473005414,0.64323318,-0.077284105,0.576123595,0.62972188,-0.087166369,0.54840976,0.609535813,-0.061080679,0.512730777,0.611209214,-0.044521831,0.47323221,0.72053802,-0.077518798,0.556468308,0.70057255,-0.07402309,0.535218775,0.683846116,-0.049962752,0.505236447,0.689451635,-0.035030771 +Left,0.328647047,0.624516964,-3.47E-07,0.365460992,0.470263571,-0.01865628,0.426529199,0.335445344,-0.040640119,0.460631967,0.217800587,-0.058718849,0.458087116,0.111611128,-0.072985359,0.443215817,0.438080043,-0.062675416,0.539540648,0.450979918,-0.084700696,0.514464796,0.44932133,-0.088254437,0.481496632,0.450390607,-0.086854115,0.44602412,0.558375955,-0.062968932,0.546166301,0.540726781,-0.07532537,0.521972656,0.525602281,-0.06719736,0.486414075,0.531579733,-0.062789544,0.448682457,0.655130386,-0.06190991,0.539193511,0.621903658,-0.065313771,0.516488492,0.606932938,-0.044789739,0.483620286,0.612814188,-0.033477642,0.451917917,0.7273314,-0.061825659,0.521640599,0.68913877,-0.054762986,0.503604293,0.678053617,-0.03300748,0.47819531,0.687791824,-0.020264655 +Left,0.284063876,0.633902192,-4.32E-07,0.319310129,0.470836341,-0.01045707,0.373664737,0.337800443,-0.028851084,0.401823223,0.220389426,-0.045908447,0.395920634,0.116824329,-0.059982151,0.412630737,0.430169374,-0.044832643,0.49345535,0.434768885,-0.062069386,0.462833643,0.434060872,-0.066319041,0.429371476,0.43756488,-0.066699408,0.418029577,0.545200348,-0.048591606,0.49895525,0.524996519,-0.054711949,0.470854908,0.512438536,-0.046922591,0.437623203,0.523267388,-0.044339016,0.419301927,0.641399324,-0.051111463,0.494435459,0.609295547,-0.051027309,0.470303565,0.595470548,-0.032723397,0.438205481,0.605043888,-0.023802068,0.418994784,0.717142224,-0.053946737,0.483284116,0.67731607,-0.045130402,0.464580029,0.666340113,-0.0236047,0.438699365,0.678574502,-0.010912963 +Left,0.250837237,0.637520194,-3.75E-07,0.282847673,0.474193722,-0.009956915,0.340499282,0.341744393,-0.025629571,0.36879158,0.229251653,-0.040284071,0.361554205,0.130292177,-0.051495172,0.378987342,0.43643716,-0.039910819,0.463638574,0.43932566,-0.056475904,0.432438254,0.435516536,-0.060506929,0.399106503,0.436846018,-0.060710628,0.382786691,0.544715643,-0.044429686,0.468964517,0.532337666,-0.050549958,0.441624641,0.517697036,-0.042973332,0.408056051,0.524802625,-0.039965499,0.38319999,0.636293411,-0.048172098,0.463251203,0.614277542,-0.047240674,0.439165771,0.598849475,-0.029079566,0.407059968,0.604653835,-0.020104343,0.382053465,0.709099054,-0.052697703,0.451369286,0.683259487,-0.042496119,0.432939589,0.668857038,-0.021420442,0.405270875,0.674897254,-0.009370999 +Left,0.185428947,0.685778737,-3.04E-07,0.220160574,0.528822482,-0.019391578,0.288581282,0.378971696,-0.039758299,0.318989098,0.256702274,-0.054911777,0.309686542,0.153458863,-0.065115273,0.284521699,0.458584964,-0.073018774,0.39510861,0.474741161,-0.098475873,0.371496111,0.474612415,-0.101131767,0.335167319,0.465307206,-0.098217696,0.286013097,0.575083435,-0.073272116,0.400120974,0.570526958,-0.087937787,0.373909682,0.561955988,-0.075569607,0.33566314,0.561903059,-0.068220302,0.291087121,0.676062047,-0.072115548,0.393626988,0.65511471,-0.077917881,0.369456232,0.645447016,-0.053848688,0.333360463,0.649086177,-0.039579403,0.29742837,0.755812168,-0.071869723,0.382339001,0.720138907,-0.063597508,0.361219704,0.712857068,-0.039576814,0.329123616,0.722664595,-0.025761371 +Left,0.151288167,0.832295656,-5.21E-07,0.177784592,0.663971663,-0.014481854,0.253093421,0.465270549,-0.026993895,0.298742294,0.319009393,-0.036386002,0.29654184,0.201327354,-0.040486626,0.249706119,0.478890449,-0.04651149,0.373215079,0.513840258,-0.075427078,0.345241576,0.542272866,-0.083970897,0.30076617,0.537636161,-0.085192397,0.253482938,0.582308352,-0.05114761,0.379658848,0.596231401,-0.069921277,0.344214618,0.615497947,-0.062595591,0.297641963,0.617705584,-0.057773113,0.263848454,0.686634064,-0.056296524,0.376728356,0.680111647,-0.065988004,0.344396204,0.696460843,-0.045421347,0.30334273,0.702099085,-0.033164036,0.279362828,0.782202661,-0.062432721,0.363018066,0.748885572,-0.058265127,0.332298785,0.767331898,-0.036808357,0.298518687,0.778291821,-0.023600956 +Left,0.132154897,0.875770748,-6.04E-07,0.181855485,0.68993479,-0.014380487,0.250627935,0.49172008,-0.023708686,0.290065497,0.330446392,-0.032085065,0.283379108,0.208125234,-0.035275239,0.223992988,0.462528229,-0.023263223,0.343504429,0.517232001,-0.05416033,0.311706662,0.563799798,-0.070605598,0.267792761,0.555578053,-0.079779267,0.211219996,0.555952311,-0.03088158,0.34772107,0.604510784,-0.049941737,0.309433103,0.637346089,-0.04886993,0.267798305,0.633105338,-0.051753219,0.210662782,0.65759176,-0.04146022,0.338927984,0.691245496,-0.055633154,0.30329749,0.715584517,-0.042399168,0.267198712,0.712157369,-0.036385685,0.219328821,0.755630732,-0.054095458,0.317608386,0.772289872,-0.053561158,0.2855483,0.792431712,-0.038706873,0.250754148,0.78584671,-0.031356402 +Left,0.143541008,0.918270588,-6.95E-07,0.200763226,0.719397306,-0.017783683,0.26700297,0.505041063,-0.025599077,0.306028247,0.339647233,-0.03272099,0.30193609,0.211960107,-0.034123048,0.223934814,0.468067527,-0.019744938,0.345554441,0.513680041,-0.053450923,0.315812856,0.576007485,-0.073125556,0.272725999,0.568060696,-0.085419722,0.205720171,0.56930387,-0.027325435,0.343040466,0.62013644,-0.049889043,0.306210279,0.663347542,-0.052468102,0.26638329,0.652524948,-0.058809832,0.201535821,0.677699625,-0.039372839,0.33146584,0.715929687,-0.06006261,0.295896918,0.746030688,-0.05246282,0.260536492,0.733487964,-0.05018606,0.208749473,0.781686306,-0.053798318,0.311784476,0.80310607,-0.060790796,0.282583863,0.825244188,-0.052059483,0.246825099,0.817152381,-0.048574124 +Left,0.15970026,0.946834803,-7.29E-07,0.238109976,0.729089797,-0.016582556,0.30395022,0.509222031,-0.024299135,0.334230334,0.340691298,-0.032340631,0.328898877,0.211947769,-0.034613341,0.250870526,0.46077612,-0.015271214,0.367632151,0.533116579,-0.05069695,0.335049212,0.593522668,-0.072846666,0.292209506,0.575967848,-0.087899067,0.225339219,0.561844707,-0.024697231,0.364649683,0.643887162,-0.051373538,0.323233008,0.6828264,-0.056582272,0.27999559,0.665757656,-0.064566068,0.213748097,0.67332828,-0.039153971,0.347662777,0.740662694,-0.063119389,0.3069911,0.769000173,-0.057557076,0.269248068,0.752496183,-0.056057688,0.214782715,0.783863068,-0.056253035,0.317943007,0.830820084,-0.066917874,0.286779106,0.847327173,-0.061969567,0.248960912,0.830509484,-0.060563013 +Left,0.189238191,0.954983711,-7.73E-07,0.277598947,0.729130864,-0.012159186,0.3334876,0.501339674,-0.019195776,0.350803673,0.339169443,-0.028104197,0.347443104,0.211448938,-0.031320915,0.26909548,0.455877185,-0.015192954,0.379613996,0.53025955,-0.050758868,0.354141116,0.597184002,-0.073250338,0.312599927,0.58736068,-0.08979322,0.238897771,0.553317845,-0.029244279,0.378006876,0.634481907,-0.059193585,0.34326759,0.678326666,-0.067920022,0.298287362,0.659774363,-0.07814233,0.224377751,0.668174684,-0.047475938,0.359640807,0.734460115,-0.074476026,0.327230483,0.767048717,-0.072201297,0.289473951,0.745449424,-0.073053077,0.225016907,0.786832571,-0.067964561,0.329752088,0.83846283,-0.083473533,0.304822892,0.856282711,-0.082827516,0.267067373,0.836519122,-0.084351778 +Left,0.241593167,0.919184685,-6.45E-07,0.316390783,0.690638244,-0.019883541,0.358330637,0.486690819,-0.030330129,0.365950882,0.337702334,-0.042071756,0.354601622,0.212854087,-0.048268154,0.280458182,0.482902408,-0.022737995,0.380007118,0.53923732,-0.060250446,0.361973852,0.592882097,-0.086011916,0.32800436,0.577086568,-0.105748385,0.248434693,0.587648273,-0.034323249,0.38702637,0.668753684,-0.067174472,0.35405159,0.692463875,-0.080549821,0.311115056,0.663272262,-0.095587775,0.23493436,0.701895893,-0.050583392,0.376435459,0.771654725,-0.080686301,0.342732519,0.782098532,-0.081504166,0.30452168,0.747821033,-0.085130125,0.237741247,0.813812494,-0.07025522,0.353403389,0.865737855,-0.090088069,0.326776385,0.869677484,-0.092783898,0.286185086,0.850337148,-0.096725598 +Left,0.273328245,0.835902452,-4.72E-07,0.337406158,0.652205944,-0.033804726,0.377475619,0.469303548,-0.047316972,0.388044477,0.337599695,-0.056960151,0.38145113,0.224832565,-0.06185773,0.293076694,0.522170663,-0.052285317,0.406196773,0.568500519,-0.090782724,0.385962069,0.595177889,-0.115769021,0.346338183,0.574584186,-0.134790614,0.265111715,0.633993387,-0.0547974,0.407094717,0.685890615,-0.085517205,0.376267433,0.694686949,-0.095389359,0.336950034,0.676346421,-0.110593773,0.258280009,0.74518311,-0.061376557,0.396018207,0.792546511,-0.088440284,0.362596989,0.797641158,-0.085047588,0.327729225,0.777868867,-0.088036165,0.266447246,0.843073249,-0.072574764,0.373902231,0.876222014,-0.091384284,0.34858337,0.872601986,-0.093001604,0.312248766,0.86118263,-0.098207995 +Left,0.281531423,0.797240615,-5.62E-07,0.35094595,0.620803416,-0.030027391,0.405333281,0.442270011,-0.042955209,0.427967787,0.306251884,-0.053406779,0.428810596,0.186975032,-0.058803767,0.333269507,0.489033043,-0.042056836,0.454005033,0.54623872,-0.078451566,0.429149121,0.578852236,-0.100289859,0.385456443,0.554908097,-0.116770655,0.308445036,0.602964759,-0.047198974,0.450970232,0.665978789,-0.075505197,0.414652169,0.675732017,-0.084261633,0.372547328,0.649941087,-0.098573454,0.301117241,0.714661956,-0.056806743,0.436081678,0.770176053,-0.081836671,0.397313684,0.778242707,-0.077294439,0.361156285,0.754871249,-0.079923041,0.306097835,0.811492026,-0.070607424,0.411637306,0.852272213,-0.085978925,0.380180985,0.852372825,-0.085078925,0.340425521,0.835253239,-0.089186303 +Left,0.263656616,0.84542799,-6.10E-07,0.335734844,0.665943503,-0.015076788,0.419393659,0.483906955,-0.028252237,0.469085902,0.332337677,-0.041298453,0.475764036,0.203451842,-0.049350761,0.378081024,0.477719247,-0.038756836,0.502417684,0.545534372,-0.074231185,0.476753384,0.587358177,-0.092752971,0.435937554,0.574431002,-0.104090631,0.351317763,0.58859086,-0.048965976,0.494405508,0.661163628,-0.071342126,0.462438792,0.681609154,-0.070660584,0.423187882,0.662017226,-0.077125132,0.338764131,0.698998868,-0.061982751,0.479176313,0.762916207,-0.080484279,0.448250055,0.776492417,-0.06748157,0.412853122,0.757544935,-0.063605793,0.337729216,0.802227855,-0.077103078,0.460556388,0.848040223,-0.081205003,0.434526145,0.855308175,-0.068210721,0.394120812,0.839321315,-0.063616157 +Left,0.298949182,0.827084064,-5.99E-07,0.376193583,0.65141809,-0.016647901,0.463841856,0.478094161,-0.029829618,0.51275903,0.331572831,-0.042285055,0.521243274,0.204539299,-0.049378254,0.425539732,0.487369388,-0.039610166,0.549368262,0.544532955,-0.075071819,0.517580271,0.572072983,-0.092174478,0.474220216,0.553133726,-0.101503141,0.402286649,0.58990711,-0.048066601,0.547604918,0.651563346,-0.070422441,0.506021917,0.662824094,-0.066972435,0.463465899,0.646202207,-0.069848746,0.392109871,0.695502222,-0.05937434,0.531251192,0.750890255,-0.074114665,0.492117405,0.751636744,-0.057927053,0.454858869,0.733294129,-0.051858932,0.390534401,0.794837654,-0.073273137,0.507629812,0.835190892,-0.071056731,0.476303637,0.8337605,-0.054871053,0.437389761,0.818572462,-0.04866324 +Left,0.373440713,0.71829474,-5.01E-07,0.43559736,0.575661242,-0.025268881,0.506979227,0.433510363,-0.046543125,0.543779492,0.300540358,-0.06423983,0.538026929,0.184230715,-0.076137818,0.444761246,0.492498457,-0.068205856,0.569222152,0.552524507,-0.10797359,0.544370115,0.56511724,-0.123668827,0.501599193,0.545368016,-0.130774066,0.42318812,0.605972528,-0.072740875,0.566074014,0.657833815,-0.100977361,0.532014728,0.657178462,-0.09460713,0.488297641,0.643757403,-0.095113255,0.419299424,0.706961036,-0.079271302,0.556013167,0.75102073,-0.098562025,0.524545252,0.741784632,-0.07792443,0.48792848,0.726839364,-0.068154268,0.425022483,0.793135226,-0.088566124,0.537380219,0.825002372,-0.088691868,0.510670841,0.817551911,-0.070363022,0.472278655,0.804657102,-0.063312866 +Left,0.409323245,0.675145566,-2.75E-07,0.458676696,0.541203797,-0.03498425,0.528802037,0.398059636,-0.067676432,0.557853639,0.281358808,-0.090928219,0.553207457,0.168453246,-0.106594071,0.475472361,0.48576045,-0.127245605,0.605726957,0.53059411,-0.170813993,0.581245184,0.529582441,-0.175712436,0.533905387,0.511568069,-0.172263056,0.456253558,0.606739223,-0.124989539,0.604745448,0.638250649,-0.163616225,0.571098208,0.615814447,-0.14786166,0.522148192,0.598989904,-0.137479156,0.455851704,0.713166237,-0.120950438,0.589951634,0.726029396,-0.142652139,0.560133874,0.698836207,-0.110865146,0.51975733,0.687041819,-0.091144376,0.462439656,0.798901737,-0.119181775,0.571990788,0.797945082,-0.120317042,0.549153566,0.76898545,-0.095827483,0.50965786,0.757021904,-0.082513846 +Left,0.399641752,0.640680075,-2.35E-07,0.442117602,0.502002835,-0.02885871,0.513581812,0.365316927,-0.055935912,0.547036171,0.260496169,-0.075658664,0.548871577,0.15411526,-0.088629499,0.485205948,0.443524182,-0.101591617,0.604295015,0.491538316,-0.14038223,0.581502318,0.485267043,-0.147096604,0.538427055,0.466521561,-0.144425154,0.473094404,0.559987664,-0.100626417,0.60776329,0.593717694,-0.132893398,0.57840693,0.569625914,-0.120542973,0.532554746,0.558247626,-0.110682331,0.472239971,0.667485714,-0.098453477,0.591622949,0.6851601,-0.115487508,0.564511657,0.656623363,-0.087021977,0.525717497,0.65053612,-0.067838408,0.474984616,0.75655216,-0.098211981,0.574916601,0.756862223,-0.09627194,0.553536296,0.727005541,-0.071468242,0.51598382,0.72027874,-0.056323539 +Left,0.350603759,0.6080755,-3.34E-07,0.393510163,0.467959911,-0.018104933,0.464119107,0.336621523,-0.038911521,0.500515521,0.228110015,-0.056039244,0.507612526,0.122999132,-0.068162844,0.465908319,0.409529865,-0.069848508,0.566044569,0.455360591,-0.0985066,0.540208697,0.453590155,-0.103601843,0.5022614,0.438343525,-0.102274641,0.459136039,0.52440542,-0.073418394,0.567152739,0.55535996,-0.09311723,0.537822187,0.540533125,-0.083053708,0.497436613,0.530264437,-0.076418877,0.454213858,0.627469718,-0.076081231,0.552962244,0.640232086,-0.086946718,0.526058495,0.625564873,-0.062745124,0.489207894,0.621561766,-0.047422715,0.449824154,0.712767184,-0.079760827,0.532919168,0.712269783,-0.077361271,0.511952519,0.696816683,-0.054475717,0.479331493,0.695104718,-0.040140733 +Left,0.301521659,0.65188086,-3.68E-07,0.342732906,0.507851601,-0.014663224,0.412293494,0.377425909,-0.034420438,0.449661642,0.266887695,-0.050891872,0.457987338,0.166020155,-0.062937699,0.423040301,0.459250927,-0.063693918,0.518831432,0.489771456,-0.087425955,0.493554503,0.487695247,-0.090192363,0.456516981,0.483630359,-0.087506309,0.418982089,0.57587719,-0.067343406,0.518735886,0.582856357,-0.081131943,0.493902802,0.566632867,-0.071219578,0.45459488,0.568879008,-0.064927898,0.41536963,0.677247763,-0.069541313,0.506403983,0.668138385,-0.075045243,0.483242303,0.653955221,-0.053139631,0.448051274,0.658123851,-0.040233169,0.412374467,0.760178745,-0.072318368,0.487513036,0.742467582,-0.06752003,0.46759069,0.729158401,-0.045694299,0.438020438,0.735496044,-0.032174718 +Left,0.260632694,0.656541884,-3.69E-07,0.306141376,0.508951485,-0.009926029,0.376845986,0.393919885,-0.025044901,0.417088181,0.291934788,-0.039134424,0.420055896,0.195532024,-0.050027583,0.406365186,0.496477455,-0.038642738,0.484650671,0.51981461,-0.054941308,0.456752598,0.508743107,-0.059403565,0.424066305,0.506811738,-0.059906762,0.401438355,0.60361743,-0.043188244,0.483734906,0.61180377,-0.049432788,0.459741235,0.588908613,-0.042814754,0.425665081,0.592118323,-0.040066414,0.39429754,0.695303261,-0.046979196,0.470704794,0.690087259,-0.046977665,0.449610978,0.67002809,-0.030955881,0.417899251,0.674422503,-0.022955196,0.387117356,0.770655036,-0.051410448,0.454807431,0.760023832,-0.043846611,0.437462538,0.742153347,-0.025014199,0.409529895,0.746551752,-0.013799995 +Left,0.224112883,0.633174837,-4.02E-07,0.281826377,0.488406509,-0.009871426,0.359407604,0.389711767,-0.025476389,0.407029629,0.29594481,-0.039312325,0.419198781,0.197472662,-0.049880709,0.378895253,0.505951345,-0.046257559,0.462619305,0.54537636,-0.060194857,0.432427675,0.528967321,-0.060649116,0.399508148,0.515736938,-0.058838133,0.368714869,0.616705418,-0.049288161,0.453541696,0.637672782,-0.052311979,0.43008697,0.610061169,-0.042053025,0.39742288,0.602592111,-0.03830434,0.356810123,0.708488286,-0.050713398,0.434430391,0.712689519,-0.047552653,0.414367437,0.689001083,-0.029191673,0.38342759,0.685085058,-0.021251887,0.345897794,0.780271053,-0.052588787,0.413123161,0.777285814,-0.043310348,0.396988928,0.757648528,-0.023431247,0.370643258,0.756916523,-0.012361892 +Left,0.21471186,0.59886086,-3.75E-07,0.278689861,0.465299994,-0.009830431,0.359627068,0.377308309,-0.025296357,0.412315071,0.291395694,-0.038954146,0.426951498,0.198178291,-0.049299743,0.380384237,0.48767373,-0.044421889,0.456894457,0.539839625,-0.05736272,0.428219378,0.527575254,-0.057793316,0.396260977,0.510131955,-0.056475539,0.366136461,0.596939802,-0.04814551,0.44427067,0.632453978,-0.04959872,0.420768589,0.609724998,-0.039560579,0.388642728,0.595555007,-0.036520988,0.349553525,0.689585745,-0.050346322,0.421923101,0.706754386,-0.046631243,0.401391774,0.686524928,-0.028640734,0.370660007,0.676397443,-0.021322072,0.33357361,0.763041854,-0.053021964,0.397376984,0.770058215,-0.044350676,0.381079108,0.752030373,-0.0248485,0.355311692,0.746256351,-0.013942559 +Left,0.20694527,0.588350296,-4.03E-07,0.278747767,0.470273197,-0.014045905,0.369644135,0.393528283,-0.030332586,0.427020192,0.314221203,-0.043917105,0.445205301,0.217860132,-0.05387453,0.371754527,0.505380392,-0.047872469,0.449451447,0.577714384,-0.065822057,0.421439797,0.551501215,-0.070127375,0.389789551,0.524337709,-0.070479132,0.348884553,0.617704451,-0.050425284,0.432082534,0.668372869,-0.057032373,0.412427425,0.638528287,-0.049959738,0.378619134,0.619101882,-0.047653858,0.327721834,0.71010834,-0.052026287,0.404768765,0.737656653,-0.052143749,0.387411445,0.71225965,-0.034708094,0.355979621,0.69646132,-0.026427008,0.309842169,0.782456279,-0.054469846,0.378532678,0.797230184,-0.046527237,0.363339812,0.775867343,-0.026526034,0.335603744,0.766530871,-0.015163617 +Left,0.199690506,0.624063015,-4.22E-07,0.273177028,0.503176391,-0.012067238,0.361354947,0.430139303,-0.027753567,0.420595467,0.357228994,-0.041237097,0.444471061,0.268134594,-0.051120415,0.364507914,0.556233048,-0.04644784,0.445428699,0.622432828,-0.06125281,0.416972965,0.594210148,-0.062680051,0.384792954,0.570605338,-0.061444733,0.343126237,0.663528979,-0.048879098,0.425507277,0.70762378,-0.052734323,0.405800194,0.672159612,-0.043788504,0.374276221,0.65483129,-0.040814236,0.323284179,0.750646174,-0.050073657,0.400253356,0.776429176,-0.048309095,0.382830143,0.745844483,-0.03096238,0.352187693,0.73180902,-0.023364022,0.306779474,0.817296267,-0.051939823,0.373257726,0.831959844,-0.044846982,0.357976586,0.807862341,-0.026264425,0.330995709,0.800423861,-0.015719932 +Left,0.212670878,0.684327781,-4.05E-07,0.278224498,0.546612918,-0.006482855,0.356552988,0.460017323,-0.019168291,0.409700245,0.377135098,-0.030627292,0.423389107,0.284630388,-0.039367877,0.374743015,0.5855425,-0.033694509,0.450814068,0.623889387,-0.042645931,0.42413041,0.602439642,-0.042824585,0.393069357,0.587922215,-0.041816548,0.362939268,0.694278777,-0.036511276,0.439838111,0.711591601,-0.034599755,0.419188976,0.6821509,-0.025628092,0.388376713,0.673251331,-0.023760309,0.348997772,0.781214118,-0.037607022,0.420549214,0.783222318,-0.030383186,0.402282089,0.759906471,-0.014400054,0.372446716,0.753798664,-0.009119467,0.335961699,0.846596122,-0.03891461,0.395156801,0.842350006,-0.028209496,0.379612565,0.823139727,-0.010250493,0.355057895,0.821507454,-0.00079666 +Left,0.234102815,0.716552556,-4.05E-07,0.288929075,0.574481726,-0.00740105,0.360363275,0.481149733,-0.021774197,0.407610774,0.39394471,-0.035149876,0.420939803,0.298680782,-0.04576065,0.387508988,0.59326452,-0.034798402,0.462525427,0.625349939,-0.046314113,0.43534565,0.608863413,-0.048000745,0.402996331,0.599062085,-0.04751692,0.379656315,0.701161087,-0.038506798,0.456601679,0.709602475,-0.040957861,0.435196221,0.685112953,-0.034484703,0.402073979,0.680784822,-0.032950837,0.370265514,0.79042685,-0.040752262,0.439427912,0.781778932,-0.037373997,0.421056151,0.762801051,-0.022990141,0.390621752,0.761791945,-0.017432909,0.361757129,0.86010325,-0.04326551,0.421756715,0.844287753,-0.03577758,0.405346841,0.829207778,-0.019106306,0.379355609,0.833271801,-0.009603621 +Left,0.239204049,0.696969271,-3.23E-07,0.274332941,0.549786389,-0.007574622,0.334722251,0.432346076,-0.020155875,0.370233983,0.335760146,-0.032421835,0.374911785,0.245441824,-0.041694771,0.377028823,0.502190888,-0.030686961,0.450281769,0.535087168,-0.044379987,0.424864292,0.537947834,-0.048057076,0.393483818,0.534832537,-0.048412696,0.378665864,0.605262756,-0.036315341,0.452852279,0.617927134,-0.040638659,0.427731693,0.613094151,-0.034904484,0.395733654,0.614272952,-0.033080596,0.376740307,0.697054029,-0.041410141,0.445773274,0.695277452,-0.040984262,0.422880501,0.689601839,-0.025915332,0.3922548,0.691241145,-0.018754844,0.37325874,0.773809433,-0.047059145,0.435049564,0.764675081,-0.040841494,0.4160541,0.757477403,-0.023338813,0.389495611,0.760159135,-0.012662218 +Left,0.246552229,0.703463078,-3.18E-07,0.270380259,0.548253953,-0.010977618,0.318606853,0.409834146,-0.027542343,0.346490145,0.29476583,-0.041954696,0.339289367,0.200254023,-0.052286368,0.357066125,0.465877771,-0.043568149,0.437521219,0.481011987,-0.057401594,0.409780949,0.491305739,-0.057538327,0.377107769,0.494074702,-0.055690646,0.369333863,0.569231689,-0.047711086,0.451070756,0.563237786,-0.051373567,0.424498975,0.567275763,-0.041678194,0.392112672,0.575932324,-0.038082995,0.377768129,0.662843287,-0.050706439,0.453530371,0.64234674,-0.04989066,0.429163486,0.643998861,-0.031149596,0.396995991,0.653666615,-0.022216467,0.383004636,0.741423547,-0.054241013,0.447087169,0.712557137,-0.047303353,0.426820397,0.712172151,-0.027777117,0.399609745,0.721755624,-0.016367983 +Left,0.276951611,0.722830176,-1.70E-07,0.287887663,0.582749367,-0.024302021,0.322476357,0.423825324,-0.052541379,0.333564341,0.305787444,-0.075011164,0.313851506,0.206182837,-0.091815315,0.303904206,0.496828437,-0.098893188,0.420185328,0.472672999,-0.133271188,0.401442766,0.48210156,-0.13808848,0.365707427,0.485416621,-0.135701492,0.310010105,0.60651195,-0.100675009,0.436532319,0.560535848,-0.12820375,0.410272121,0.557705224,-0.114640236,0.371385336,0.56906718,-0.105337776,0.326639414,0.700861454,-0.100774214,0.441757679,0.643885374,-0.115361772,0.417544544,0.638992786,-0.086642779,0.382217377,0.653057516,-0.068540886,0.347272754,0.77766788,-0.1025135,0.440218031,0.725095034,-0.101285048,0.42351827,0.712708294,-0.078204431,0.391567945,0.719668746,-0.064823285 +Left,0.281560421,0.781037927,-4.54E-07,0.323652297,0.615329385,-0.027839627,0.350387812,0.450891584,-0.045800276,0.356606156,0.325634837,-0.061077587,0.344278514,0.213263333,-0.071751155,0.294603556,0.487494826,-0.056038484,0.409943938,0.481169641,-0.094784677,0.397067487,0.539318442,-0.113416493,0.358085275,0.546036482,-0.125816375,0.287544966,0.589558482,-0.061308209,0.419249475,0.578149855,-0.093235761,0.395752043,0.619715154,-0.097001731,0.358629495,0.624507248,-0.10502287,0.2938824,0.685135603,-0.070044003,0.417147309,0.668603837,-0.095787264,0.395179182,0.704215407,-0.085183412,0.364913523,0.707577884,-0.081916198,0.31082353,0.765494227,-0.082307495,0.410347253,0.748802185,-0.096932136,0.393069595,0.769598544,-0.091782145,0.360604733,0.774547279,-0.091579646 +Left,0.242467836,0.92230773,-5.53E-07,0.31077528,0.700138509,-0.008304657,0.364085466,0.498807788,-0.014528764,0.38782993,0.341055304,-0.024006262,0.387973875,0.221455485,-0.028515903,0.308362186,0.4439165,-0.006106098,0.411563128,0.479967326,-0.039313275,0.384435058,0.520249903,-0.062880747,0.340928167,0.497388661,-0.079708114,0.285007775,0.530800223,-0.020125454,0.41444838,0.585521996,-0.049334932,0.374949962,0.613177896,-0.059765633,0.325852185,0.598912537,-0.069918811,0.276163399,0.634610593,-0.038148757,0.407417953,0.67228806,-0.065846868,0.3688972,0.692078829,-0.062993824,0.325407416,0.681652069,-0.06121023,0.278246135,0.747869015,-0.05815883,0.389968097,0.768964052,-0.074321702,0.372063577,0.774989784,-0.072087809,0.339959621,0.763993979,-0.070219398 +Left,0.239465684,0.966880798,-3.37E-07,0.279601544,0.757627606,-0.001914101,0.32397455,0.564362526,-0.003549949,0.347521037,0.421592563,-0.011378378,0.354196548,0.322836965,-0.018386837,0.365825117,0.514786005,-0.001240834,0.401216745,0.406774282,-0.032303315,0.394040227,0.30488801,-0.05648559,0.386649758,0.221523643,-0.074268989,0.355281144,0.57727015,-0.02012952,0.382095575,0.500873625,-0.061740398,0.323240817,0.458907902,-0.078774191,0.274509579,0.452668726,-0.084891617,0.333356231,0.666939259,-0.042196125,0.362010688,0.605169773,-0.082291454,0.310392827,0.563832521,-0.089310847,0.271289021,0.550816655,-0.08706671,0.307986826,0.776945889,-0.065222837,0.33128342,0.746967435,-0.093738064,0.30320558,0.708084106,-0.10018678,0.276632726,0.689638853,-0.099743634 +Left,0.303865433,0.784267068,-6.00E-07,0.36426127,0.586550117,-0.028484935,0.386888385,0.389679909,-0.041871704,0.386624634,0.244061351,-0.052734915,0.391320288,0.123767763,-0.057065926,0.289638668,0.32935673,-0.046614699,0.38030076,0.425721437,-0.084195703,0.355150908,0.464485914,-0.102186501,0.314994842,0.423657238,-0.116621733,0.258682519,0.427844584,-0.052559249,0.376961023,0.532292128,-0.089231789,0.341290385,0.550802648,-0.096567392,0.291465938,0.520054698,-0.105269767,0.2460697,0.535986483,-0.062429015,0.354964197,0.621996105,-0.100115642,0.320542663,0.629067719,-0.097359337,0.273761272,0.594400883,-0.095441937,0.243240371,0.643356204,-0.075903185,0.314424932,0.702447772,-0.107910335,0.290276885,0.695358455,-0.115085252,0.249291092,0.669031143,-0.118154913 +Left,0.333928853,0.618032694,-3.30E-07,0.378703117,0.477315396,-0.044409007,0.380460769,0.329642296,-0.06963978,0.372086883,0.221709475,-0.090185396,0.36273104,0.113973171,-0.107511424,0.252815396,0.337930262,-0.05939059,0.329668194,0.392039269,-0.100501783,0.361745924,0.43446368,-0.126068592,0.3497082,0.441201299,-0.142191976,0.222476527,0.434194267,-0.056150045,0.328100026,0.485739172,-0.085354172,0.359123051,0.507653475,-0.096033096,0.344579607,0.499306023,-0.107229814,0.215890944,0.535710156,-0.057463661,0.315944642,0.574290872,-0.087444067,0.347069979,0.582518101,-0.084786281,0.336098313,0.569950998,-0.084267057,0.221513093,0.632479548,-0.063565798,0.29870066,0.653294504,-0.087111972,0.332344115,0.644021392,-0.08688689,0.334362745,0.629681468,-0.085543677 +Left,0.319700509,0.613413215,-3.46E-07,0.354979426,0.476707608,-0.046113256,0.349426687,0.332112432,-0.072203003,0.335701495,0.228605837,-0.093526781,0.321326673,0.126591295,-0.111776724,0.218591392,0.353491694,-0.059422988,0.295373589,0.399648845,-0.101315424,0.32849142,0.433542818,-0.127300039,0.316948712,0.436370164,-0.144117191,0.19067809,0.451970726,-0.056113943,0.292563617,0.491920978,-0.087806053,0.327546954,0.506398618,-0.098323241,0.314103156,0.498065025,-0.108445421,0.186819702,0.551805735,-0.057765946,0.284114242,0.585655749,-0.088230006,0.318509698,0.588300645,-0.084367983,0.306747854,0.575494289,-0.082663327,0.194656044,0.6455369,-0.064776927,0.27004391,0.666463375,-0.08681716,0.301989466,0.658247054,-0.085799411,0.298741102,0.647060812,-0.084003285 +Left,0.315147787,0.617519021,-3.31E-07,0.346123636,0.477598637,-0.043980025,0.336694241,0.330883443,-0.06980931,0.32215786,0.225096509,-0.090975493,0.305150181,0.120954007,-0.109221183,0.208242744,0.362979949,-0.060680669,0.291275531,0.408000588,-0.101911008,0.323187828,0.437678188,-0.127292514,0.309710413,0.439614594,-0.144141972,0.184224606,0.466196656,-0.058451459,0.2924335,0.498744994,-0.089176707,0.324404091,0.509628475,-0.099505566,0.306585491,0.500828445,-0.110502005,0.18485564,0.567677557,-0.060763404,0.287236661,0.587585688,-0.089943022,0.316848993,0.58655262,-0.086320139,0.29933995,0.574652076,-0.085895054,0.197137132,0.662430167,-0.06820038,0.277043164,0.666327357,-0.08975485,0.305929691,0.651380718,-0.089222245,0.298848987,0.63818717,-0.088477962 +Left,0.305782557,0.621107817,-3.60E-07,0.336111426,0.491574615,-0.045911364,0.325440764,0.35000062,-0.072209865,0.313861132,0.239494964,-0.092799038,0.298217595,0.135269582,-0.110087767,0.207111478,0.387319654,-0.070515543,0.301398009,0.432642817,-0.107409157,0.32404381,0.459682733,-0.127065703,0.302848697,0.459901571,-0.141237721,0.184662133,0.492641956,-0.066795051,0.307244062,0.526735544,-0.092344917,0.324519455,0.533103645,-0.096750751,0.293824136,0.520870507,-0.105282716,0.188414261,0.594044983,-0.067034796,0.298683763,0.613824844,-0.09038984,0.317415327,0.608688772,-0.080118552,0.293443292,0.594420195,-0.076784305,0.202226356,0.691040397,-0.07322634,0.284666419,0.702515006,-0.092575163,0.304977357,0.684911013,-0.090003788,0.292597711,0.668034077,-0.088354908 +Left,0.292900294,0.594460845,-9.18E-08,0.321121514,0.483760387,-0.047632035,0.326862723,0.360987365,-0.076240636,0.322108656,0.250262976,-0.097658612,0.304996401,0.145797879,-0.116966963,0.224024191,0.405661106,-0.081738263,0.331219614,0.449067801,-0.108251616,0.325089812,0.453386396,-0.121093139,0.295368582,0.443797737,-0.133151397,0.202960119,0.509695768,-0.074780464,0.336441606,0.544937253,-0.089787953,0.319352716,0.530816734,-0.088305689,0.28025803,0.513195336,-0.095872283,0.204578713,0.608127475,-0.069998562,0.325208515,0.62811631,-0.084651358,0.313827306,0.614673674,-0.067769535,0.276839256,0.595895767,-0.061664328,0.217765525,0.703199625,-0.071962215,0.309164286,0.708988547,-0.090907335,0.305029333,0.694717526,-0.087307177,0.278517216,0.689303041,-0.084818728 +Left,0.293001264,0.603619039,-1.61E-07,0.316063076,0.4975335,-0.037080616,0.330926567,0.375625908,-0.061400902,0.336722612,0.260578513,-0.08098457,0.329125196,0.152050406,-0.101188228,0.262594759,0.424115539,-0.075905696,0.373747796,0.461426228,-0.104905307,0.350883663,0.471800178,-0.126493871,0.313658178,0.468529671,-0.146285146,0.243336886,0.531226933,-0.074307799,0.380059689,0.562219739,-0.090812445,0.347515851,0.556358576,-0.096708775,0.305162758,0.548636198,-0.112799093,0.243078217,0.630446196,-0.073585466,0.368865967,0.653185129,-0.087173976,0.345466793,0.650412798,-0.076742046,0.307924807,0.640822053,-0.078049503,0.251240611,0.722616196,-0.078978799,0.350342005,0.734902799,-0.096857473,0.336377054,0.72409296,-0.097252332,0.304467529,0.7203812,-0.100652441 +Left,0.286861897,0.608887136,-3.63E-08,0.309076965,0.494678289,-0.042046305,0.327879399,0.36458838,-0.066925719,0.341211945,0.258125186,-0.085669257,0.339745373,0.148043007,-0.103538886,0.26526919,0.424985409,-0.076441206,0.382978857,0.472563952,-0.110650524,0.367682248,0.482790411,-0.135841653,0.330912411,0.478046477,-0.15651533,0.246997058,0.529048026,-0.073517635,0.385713071,0.565918088,-0.094770141,0.356800079,0.557761848,-0.102435246,0.314743429,0.545068681,-0.118121319,0.245852113,0.624640644,-0.072744854,0.373533279,0.652339637,-0.091674834,0.34847337,0.647363901,-0.082611747,0.312471211,0.631325245,-0.082752652,0.251648843,0.708988667,-0.078193679,0.353571594,0.720875978,-0.099557713,0.33561635,0.709362268,-0.1005328,0.303673387,0.703585029,-0.103060007 +Left,0.175966918,0.797945142,-5.08E-07,0.209353179,0.623374045,-0.01451346,0.290360272,0.433814496,-0.024164638,0.340778053,0.292645961,-0.031333491,0.344646424,0.175862819,-0.033189304,0.29418391,0.437415361,-0.032077648,0.409126133,0.483869702,-0.057377186,0.384586811,0.51832068,-0.067161143,0.344085127,0.514156938,-0.070529081,0.297924042,0.532870591,-0.036470409,0.415307939,0.566289127,-0.050055321,0.383361578,0.591832995,-0.044625651,0.342148185,0.593426228,-0.042663258,0.304259747,0.634623349,-0.042359151,0.412486434,0.648109198,-0.05010011,0.382630527,0.666182816,-0.033055551,0.345667869,0.670221031,-0.023659434,0.31356287,0.728842854,-0.049713183,0.39637208,0.718142688,-0.045214329,0.370199412,0.734687269,-0.026542213,0.340827405,0.741638601,-0.015147846 +Left,0.180864051,0.826191485,-5.12E-07,0.202139869,0.636458993,-0.005551698,0.283555925,0.45471853,-0.01189244,0.341129601,0.313298911,-0.018499354,0.349385321,0.19124186,-0.02017737,0.315323114,0.439139605,-0.017530147,0.42650643,0.491220713,-0.038806554,0.396977574,0.530742168,-0.048861369,0.351986974,0.531711102,-0.052986823,0.321778953,0.527568877,-0.02599076,0.438800901,0.561068058,-0.033743087,0.40392828,0.591966331,-0.026660174,0.362669289,0.593942523,-0.024505105,0.327967972,0.625800431,-0.03568938,0.43493706,0.641924977,-0.038691387,0.403610855,0.666768014,-0.019097432,0.366600662,0.672106028,-0.009070655,0.333855957,0.719583929,-0.046649642,0.422293246,0.718754828,-0.038134336,0.392491519,0.736308396,-0.016072914,0.359283507,0.741337001,-0.002644796 +Left,0.229116693,0.696190298,-4.09E-07,0.269450009,0.530942976,-0.006508496,0.332913518,0.410030007,-0.017720597,0.372139156,0.304965705,-0.027661595,0.373506278,0.209982574,-0.034606293,0.379062325,0.517744243,-0.03057776,0.453480959,0.528627813,-0.037412945,0.424420655,0.519421697,-0.036701787,0.393305689,0.519482791,-0.035644606,0.381884396,0.629415095,-0.033228081,0.456005305,0.617667377,-0.029647719,0.430668384,0.596729577,-0.019776203,0.399584889,0.601476312,-0.017529791,0.379155487,0.720810652,-0.034363221,0.448303759,0.697840273,-0.027154027,0.426411569,0.679245293,-0.010430188,0.396366566,0.683790267,-0.004532731,0.374064773,0.791109681,-0.035734084,0.433953911,0.765229821,-0.02527155,0.416230857,0.749340177,-0.006763135,0.391105324,0.754165769,0.003307171 +Left,0.23589088,0.698151469,-4.12E-07,0.279440612,0.527245581,-0.001362965,0.341979623,0.41464752,-0.010908809,0.383677125,0.308275223,-0.019918948,0.390598446,0.209973812,-0.026083311,0.405455023,0.519908726,-0.019962167,0.469644725,0.536230564,-0.015173377,0.442536473,0.533492148,-0.007517601,0.415737808,0.532290995,-0.003756167,0.408878893,0.632208109,-0.022067206,0.468520522,0.62037462,-0.008309232,0.443153679,0.603539586,0.003205058,0.414172739,0.607725382,0.004589061,0.403144181,0.724811792,-0.021457762,0.45574677,0.694295585,-0.005482138,0.43607229,0.682442367,0.009122898,0.407654047,0.689058661,0.011281571,0.396117657,0.795328379,-0.020514265,0.445005864,0.762911439,-0.005445129,0.430037141,0.751121461,0.011870512,0.406661898,0.756648064,0.020474875 +Left,0.245108813,0.696578503,-3.88E-07,0.285060734,0.522138238,2.37E-06,0.347558677,0.410685599,-0.009178173,0.389546633,0.303702205,-0.018580474,0.39526698,0.20347172,-0.025328435,0.420219272,0.514387846,-0.010160874,0.479197919,0.524945736,-0.002346825,0.449426532,0.519526601,0.004047411,0.421924531,0.519217372,0.006134399,0.424240232,0.624309659,-0.01219498,0.478047401,0.606546879,0.003822748,0.452086091,0.588534236,0.013143813,0.422915518,0.595037639,0.012753564,0.417293698,0.71479094,-0.011569767,0.466546625,0.680901647,0.007204449,0.446997643,0.667703152,0.021074565,0.418227017,0.673890233,0.022239378,0.40896827,0.784132123,-0.010719208,0.454264969,0.751106381,0.007654377,0.438452184,0.739130616,0.025974292,0.414325118,0.745101988,0.03482537 +Left,0.249579206,0.708585203,-4.32E-07,0.289570034,0.537682354,-0.002133261,0.349848509,0.419083953,-0.013457946,0.388526261,0.30977127,-0.024862215,0.390460849,0.208983839,-0.033557054,0.410164952,0.523406506,-0.023135887,0.477429301,0.524942636,-0.023852415,0.4473975,0.52222991,-0.019994898,0.417675972,0.526891708,-0.017939376,0.415163159,0.63109827,-0.026491802,0.478948295,0.610532939,-0.018240772,0.452766567,0.596365809,-0.008592417,0.424330026,0.606327951,-0.007611074,0.411980331,0.721762121,-0.027454676,0.471327186,0.688735247,-0.015596028,0.450731218,0.67610693,-0.000702373,0.422689527,0.685418725,0.002638394,0.407202184,0.793162704,-0.028258974,0.461303771,0.760553718,-0.015033622,0.445342273,0.746216595,0.002734094,0.421552271,0.752703965,0.011961181 +Left,0.264278233,0.702132761,-3.01E-07,0.293057829,0.5516361,-0.013336752,0.353350788,0.417411864,-0.032646392,0.38594383,0.307505906,-0.049704708,0.384942591,0.206709951,-0.063073114,0.364240676,0.503340065,-0.062964492,0.46403572,0.524619997,-0.085804217,0.440321326,0.52317071,-0.087716632,0.407827944,0.520505309,-0.084510759,0.364163369,0.615657449,-0.067518212,0.472647905,0.616497278,-0.081033766,0.448053658,0.601996779,-0.069536619,0.411466211,0.603201389,-0.062417362,0.36632821,0.710418284,-0.070746198,0.467538387,0.695486963,-0.075981781,0.442965925,0.680969596,-0.052800592,0.407518923,0.684032381,-0.039026253,0.369887203,0.787023842,-0.074747361,0.45448789,0.767833114,-0.069044225,0.435571313,0.754468918,-0.046817489,0.404405028,0.75616765,-0.033653736 +Left,0.276907802,0.71628201,-3.32E-07,0.316668332,0.576852202,-0.027677337,0.366714656,0.417831123,-0.052412845,0.384063631,0.296060443,-0.071467012,0.369803488,0.189657182,-0.084734946,0.313091636,0.478513986,-0.09184099,0.437839746,0.50772512,-0.133284464,0.414636672,0.522416472,-0.144470438,0.370138973,0.512195051,-0.146997586,0.300006628,0.588000476,-0.094477534,0.441547364,0.598631024,-0.127595499,0.409746647,0.605540276,-0.116882719,0.365895718,0.604222119,-0.111514196,0.304896772,0.689774394,-0.097533278,0.435953677,0.687221944,-0.118450485,0.405342847,0.69008708,-0.092317022,0.366612822,0.691590667,-0.076958932,0.317868412,0.776562929,-0.103068806,0.422813714,0.760297179,-0.105047762,0.396669984,0.758926749,-0.083813913,0.357221723,0.761577606,-0.072863467 +Left,0.225254476,0.90152359,-6.77E-07,0.28750965,0.704716563,-0.017695701,0.343893558,0.488483995,-0.030888956,0.370212704,0.32371664,-0.043270014,0.363292933,0.194789171,-0.050031025,0.285676569,0.464198023,-0.040406883,0.408334672,0.496013105,-0.079271063,0.379869759,0.546903133,-0.10014464,0.33580333,0.534256399,-0.114052691,0.263634533,0.568624854,-0.050482098,0.406345129,0.613626301,-0.079943933,0.371121407,0.646362841,-0.082238153,0.329136491,0.634232581,-0.089176938,0.258680761,0.677310169,-0.063859522,0.397292435,0.710067213,-0.088554315,0.363492191,0.737772048,-0.077779174,0.32657209,0.728073537,-0.073960595,0.267548203,0.781138241,-0.079704933,0.383013368,0.795040607,-0.091142744,0.355190128,0.812791824,-0.083833136,0.315621167,0.805906892,-0.081666827 +Left,0.230960578,0.963476837,-7.03E-07,0.306498379,0.709013224,-0.012964691,0.352046579,0.474548191,-0.023809504,0.363699496,0.301936895,-0.037333295,0.352031291,0.164442271,-0.044575755,0.283884674,0.443695575,-0.017232955,0.391381741,0.497133613,-0.057685323,0.375450969,0.555915296,-0.084438302,0.335836351,0.543651462,-0.103292741,0.252877861,0.545686007,-0.03235241,0.398974597,0.613037407,-0.068806857,0.369048744,0.651349962,-0.079578154,0.321412176,0.63445586,-0.090173922,0.238856822,0.659325719,-0.052352622,0.386211842,0.708749115,-0.086154632,0.358938843,0.733458698,-0.083715379,0.319356799,0.714519382,-0.081998289,0.240299061,0.778236806,-0.074898481,0.362292439,0.806515396,-0.096374296,0.345034897,0.81194824,-0.097165495,0.308026642,0.794858217,-0.097529903 +Left,0.29398936,0.910480142,-5.51E-07,0.357809544,0.665307045,-0.026002953,0.358503848,0.440005362,-0.037445262,0.339820087,0.284572273,-0.048213333,0.323872417,0.144732088,-0.053055525,0.24597317,0.442108929,-0.031098174,0.367130429,0.496006608,-0.071141444,0.364205211,0.56022954,-0.096725591,0.324450195,0.55248493,-0.117422886,0.21476528,0.556534231,-0.038564164,0.371260762,0.609695494,-0.073584616,0.362097025,0.644429862,-0.089205191,0.319747299,0.622736156,-0.107035093,0.208498865,0.675776303,-0.050825287,0.360958904,0.706035018,-0.087018885,0.353514582,0.729981661,-0.090542592,0.31286177,0.709246874,-0.095894411,0.218883798,0.785038471,-0.066572875,0.346349895,0.80888629,-0.098374449,0.3501499,0.816543043,-0.108161665,0.318078339,0.802212834,-0.115314104 +Left,0.324001193,0.740113258,-3.96E-07,0.362231106,0.58814472,-0.040658258,0.359352499,0.423827201,-0.063312925,0.349695951,0.299752831,-0.081053786,0.332102835,0.187278062,-0.096843749,0.233511403,0.451330006,-0.068046644,0.32932812,0.506384313,-0.102240004,0.357940733,0.54195559,-0.121258222,0.340444297,0.543522179,-0.135211572,0.204152673,0.562340319,-0.067002967,0.329192221,0.602771997,-0.09007401,0.355529904,0.614446104,-0.096796811,0.333230078,0.603482425,-0.108052216,0.201542944,0.672266304,-0.068652809,0.318535239,0.6950019,-0.093082309,0.347405583,0.693441749,-0.087593302,0.331859946,0.677089334,-0.08787366,0.210993797,0.779691815,-0.075241432,0.303975701,0.78266418,-0.097457968,0.34221524,0.753809452,-0.09682969,0.348032832,0.722774267,-0.096258648 +Left,0.30597657,0.680880129,-3.00E-07,0.357975096,0.557056963,-0.053708032,0.373471767,0.407997072,-0.085244521,0.377916664,0.291024327,-0.110360086,0.371562779,0.175949812,-0.131714225,0.23164013,0.389481008,-0.072277389,0.311753303,0.489022762,-0.114112437,0.339784741,0.507944822,-0.138150349,0.327158928,0.481622219,-0.153752357,0.193642259,0.486398757,-0.064982407,0.298723489,0.587034285,-0.095668785,0.329045802,0.587244511,-0.103134006,0.312574089,0.555841923,-0.112093188,0.178450257,0.590860605,-0.062792055,0.274885446,0.67921114,-0.090153947,0.307877719,0.671600461,-0.083683148,0.295632511,0.640837908,-0.08121331,0.173583969,0.69212997,-0.066930115,0.251041919,0.751427352,-0.084427722,0.279931694,0.744050503,-0.081946075,0.273439586,0.726555526,-0.080041982 +Left,0.304039031,0.676329553,-2.97E-07,0.36256212,0.556181431,-0.046917897,0.385083437,0.409294844,-0.074094124,0.396028042,0.291192144,-0.095452048,0.399241567,0.175211966,-0.113517791,0.253786474,0.364614218,-0.06616509,0.330428898,0.481125891,-0.102567822,0.350985497,0.503516436,-0.124606073,0.336604029,0.477112442,-0.140816242,0.210461751,0.45609653,-0.061849792,0.313946337,0.568491399,-0.0873193,0.334725559,0.568605423,-0.094881624,0.316125512,0.532871783,-0.106639236,0.191068396,0.558026612,-0.061760921,0.286494464,0.653577566,-0.084812209,0.310127676,0.651016474,-0.078734055,0.294633657,0.617919862,-0.079043142,0.183633074,0.659798563,-0.067604259,0.259525329,0.725435495,-0.085440785,0.280972481,0.722318053,-0.08464469,0.269394845,0.703449309,-0.085391618 +Left,0.31338948,0.678326964,-3.09E-07,0.368329883,0.563759029,-0.041502066,0.393903375,0.421344817,-0.065611966,0.409492701,0.301618218,-0.084451817,0.417104185,0.190057009,-0.100885034,0.270707488,0.377491981,-0.067563549,0.349689722,0.497635007,-0.099093281,0.365364432,0.513725936,-0.117183425,0.350140363,0.486490905,-0.13138631,0.224128336,0.47309199,-0.064989164,0.332429469,0.594432771,-0.086322583,0.345747471,0.585425436,-0.091285102,0.325174242,0.548653781,-0.102524653,0.202569008,0.578608274,-0.065390073,0.301194429,0.678194046,-0.083742365,0.317150027,0.670837045,-0.075429462,0.299356729,0.639416933,-0.075429656,0.193369299,0.68607986,-0.071626045,0.27101481,0.753617167,-0.087555751,0.287442029,0.741825104,-0.086348586,0.273803115,0.717607737,-0.08736302 +Left,0.325688332,0.645096123,-1.88E-07,0.369648486,0.544891834,-0.043251693,0.39276889,0.416001081,-0.069770448,0.404797137,0.299999058,-0.090510756,0.407373458,0.190517187,-0.110392883,0.277577072,0.4103809,-0.079420485,0.36646542,0.516070127,-0.110158794,0.368368387,0.509598255,-0.128838822,0.349176675,0.477297306,-0.143662199,0.236321837,0.512339175,-0.075102188,0.357630283,0.621788621,-0.092221193,0.35514313,0.591419876,-0.093431234,0.331846148,0.555209756,-0.102911696,0.220478773,0.617306352,-0.072841644,0.332702428,0.708257794,-0.086912267,0.33375451,0.684338272,-0.072684415,0.311177582,0.649852276,-0.068587467,0.216347635,0.722420752,-0.077273726,0.303967416,0.778764725,-0.091907948,0.312764317,0.749843299,-0.087777823,0.298656613,0.718862653,-0.085921496 +Left,0.329957902,0.638997138,-1.49E-07,0.369938195,0.542903483,-0.041021887,0.387326896,0.406520754,-0.064156741,0.396460116,0.28628847,-0.081985541,0.389243454,0.185476661,-0.097926363,0.289710522,0.433061779,-0.070957974,0.380349129,0.490241647,-0.098312855,0.365325779,0.49616009,-0.113419831,0.336442769,0.483115077,-0.124673218,0.255133122,0.530361831,-0.064966604,0.386986673,0.603060901,-0.076304704,0.361876577,0.581074834,-0.071237221,0.327899665,0.557717621,-0.074704155,0.248765141,0.629784822,-0.061285764,0.367868066,0.685966849,-0.0728506,0.348858744,0.677036762,-0.048789799,0.317649871,0.663264573,-0.034782335,0.252860516,0.726854205,-0.064403951,0.34204483,0.754985392,-0.079954445,0.333277047,0.730405927,-0.070816107,0.308196783,0.712039113,-0.061871778 +Left,0.341100603,0.591016114,-1.12E-07,0.375852227,0.497613728,-0.041411556,0.381657124,0.364549994,-0.06486883,0.377802104,0.254375577,-0.082576156,0.365607232,0.161891937,-0.097098961,0.291294336,0.424514383,-0.079553798,0.373604506,0.455949128,-0.109331146,0.361772031,0.455061287,-0.119727008,0.335985154,0.444724113,-0.125418171,0.25888741,0.523899794,-0.072407879,0.391852289,0.570570469,-0.086504884,0.365456045,0.545291305,-0.07579805,0.330087632,0.526474655,-0.072662748,0.258853018,0.621133685,-0.067583062,0.37868157,0.65195024,-0.084298305,0.360131502,0.642372608,-0.057921451,0.327873826,0.634942889,-0.039246343,0.270971239,0.712056816,-0.068982072,0.362440586,0.725626469,-0.088504784,0.351934016,0.714153767,-0.079641148,0.32475096,0.714733005,-0.068613753 +Left,0.323690772,0.615053535,-6.00E-08,0.347206533,0.51278317,-0.040371697,0.363742292,0.399261892,-0.06942302,0.368823618,0.285273194,-0.092706963,0.360162854,0.17687577,-0.115657352,0.289981842,0.447212666,-0.084652796,0.40005666,0.492681742,-0.112142883,0.383015364,0.499267995,-0.127997994,0.348136544,0.492484987,-0.142897815,0.271480531,0.557087481,-0.081407741,0.402971983,0.590747237,-0.097066328,0.37620765,0.578167677,-0.096949615,0.33578071,0.564314723,-0.107619189,0.271459222,0.655471623,-0.078885742,0.390528947,0.680752516,-0.08927834,0.372052372,0.667092025,-0.071431167,0.336265832,0.651143193,-0.06735193,0.281610668,0.743783712,-0.083092518,0.374389797,0.758150458,-0.097497225,0.362014353,0.7388134,-0.093339272,0.331190318,0.729871392,-0.092913449 +Left,0.198788166,0.778034031,-5.36E-07,0.234122992,0.60112381,-0.017334139,0.286144167,0.434876561,-0.028165355,0.31752497,0.304720223,-0.037904486,0.317095757,0.196445853,-0.04444056,0.262804687,0.467168123,-0.031448603,0.384260982,0.496036053,-0.061547317,0.359314203,0.538634717,-0.079183899,0.315323234,0.533181071,-0.091574982,0.255690783,0.574890137,-0.040973637,0.386152327,0.587370276,-0.059551105,0.351955086,0.616860509,-0.063641809,0.317350388,0.615270257,-0.073565446,0.257404596,0.678135097,-0.053506453,0.380427092,0.674179673,-0.069451861,0.345988363,0.701765358,-0.062154297,0.315225244,0.698369384,-0.062361494,0.266107708,0.768004298,-0.068776071,0.363467366,0.764220476,-0.074494541,0.337242156,0.782146215,-0.067133933,0.305439919,0.782175899,-0.066250302 +Left,0.147396833,0.894197524,-6.33E-07,0.167468011,0.70255208,-0.010285243,0.232646406,0.495588183,-0.018562788,0.274714738,0.339663029,-0.024806358,0.265972584,0.223548144,-0.026177738,0.236308217,0.491901636,-0.028695589,0.350887865,0.519891739,-0.05224501,0.325777262,0.56612587,-0.062086701,0.283700794,0.571320593,-0.06652724,0.246880829,0.594074011,-0.035363782,0.365290761,0.60040468,-0.046657011,0.330179751,0.635715485,-0.040421683,0.286410779,0.64442718,-0.039446391,0.262181193,0.69843626,-0.042979717,0.364525467,0.686881721,-0.048675995,0.332250088,0.714729548,-0.030498138,0.294864386,0.723398507,-0.021873213,0.280246258,0.794207156,-0.051767327,0.354251921,0.767168701,-0.044776492,0.322728336,0.791242361,-0.023901053,0.290964931,0.798166215,-0.01217326 +Left,0.120330542,0.803491473,-4.46E-07,0.14495486,0.625273585,-0.008337283,0.212217331,0.463193238,-0.016818643,0.250856191,0.338752151,-0.023123588,0.241998598,0.237329185,-0.025562223,0.244322985,0.507830858,-0.030946372,0.351314634,0.541196167,-0.047048151,0.319090992,0.557820082,-0.051747184,0.278762162,0.555714011,-0.051761858,0.255861253,0.615442812,-0.033553299,0.355989337,0.618933022,-0.035263512,0.323459387,0.623461843,-0.026156314,0.284880817,0.62716502,-0.023402993,0.265088916,0.716510773,-0.035632845,0.349012792,0.697920203,-0.031851206,0.321316183,0.701961637,-0.012544074,0.287669808,0.710243523,-0.00357275,0.272313714,0.799407363,-0.038167316,0.335499942,0.762101948,-0.024708856,0.309984863,0.766159058,-0.001782978,0.283138037,0.778481841,0.011430458 +Left,0.102097541,0.74279654,-3.99E-07,0.135841697,0.569924057,-0.000754482,0.200450256,0.43956238,-0.007656649,0.239859745,0.3274602,-0.014613057,0.234820396,0.233386308,-0.018034317,0.263145328,0.50334692,-0.010910243,0.335925311,0.536724687,-0.009903627,0.305540502,0.551957786,-0.007166165,0.274012744,0.547754645,-0.006403114,0.273411334,0.610730529,-0.015720511,0.338995993,0.618236184,-0.003378223,0.311894238,0.624169409,0.00629521,0.281798929,0.625654638,0.00701297,0.274784803,0.709919333,-0.01915155,0.330297261,0.697081923,-0.00449064,0.307562351,0.701839089,0.011512786,0.27858007,0.706984401,0.015449514,0.270962268,0.793367565,-0.022672756,0.317743093,0.763827682,-0.005738746,0.29883337,0.763893783,0.014283186,0.276027679,0.773393929,0.024642343 +Left,0.087741703,0.727408648,-3.88E-07,0.127589375,0.55482769,0.001108348,0.194897532,0.426954985,-0.005911626,0.235008657,0.31568408,-0.013711231,0.227881566,0.220098704,-0.018319912,0.260989577,0.492291331,-0.009211523,0.334431618,0.528363943,-0.008032111,0.304740578,0.545492649,-0.006176023,0.274042547,0.540786684,-0.00626799,0.269538075,0.601317883,-0.015570172,0.33541438,0.611822546,-0.002295047,0.309066653,0.619671166,0.0069866,0.278376073,0.619660616,0.00725031,0.269209802,0.702576697,-0.020435095,0.32405445,0.690221786,-0.004679557,0.3019512,0.696389258,0.010469703,0.272609502,0.69988358,0.013555318,0.264203101,0.787839115,-0.025361067,0.311427206,0.758970439,-0.008019048,0.293074012,0.76044488,0.011794983,0.26936996,0.768943548,0.022040356 +Left,0.1139514,0.723257542,-3.38E-07,0.149256855,0.545544565,-0.002023653,0.21128349,0.415123075,-0.009971941,0.248312131,0.300040513,-0.018052854,0.237922192,0.203395277,-0.022699829,0.280831218,0.485900849,-0.009301092,0.350401759,0.506701469,-0.005651169,0.320421129,0.521834314,-0.002438417,0.290561944,0.521272063,-0.001873337,0.29095006,0.595656753,-0.012583271,0.352840424,0.592690051,0.001708311,0.325911611,0.595604479,0.011093771,0.296158731,0.599430978,0.01149157,0.29083088,0.693569899,-0.014383251,0.344497353,0.672110379,0.001957171,0.324068725,0.673754275,0.015954999,0.295008838,0.679624796,0.018436994,0.28637445,0.773594379,-0.016354108,0.335594893,0.743348479,0.000567012,0.319397062,0.740650117,0.019571619,0.294571161,0.748415351,0.029607311 +Left,0.145457968,0.737038255,-3.26E-07,0.177150816,0.573124111,-0.008677976,0.235537767,0.43019107,-0.023182001,0.26341182,0.311850905,-0.03642603,0.249691531,0.217847168,-0.045919597,0.272404134,0.495674253,-0.039682847,0.362680435,0.518795609,-0.054967117,0.332199097,0.528736413,-0.057714436,0.29879871,0.524744093,-0.057645746,0.280309647,0.605177701,-0.045021303,0.368824959,0.603715658,-0.047820281,0.341128469,0.60336405,-0.037970513,0.308553994,0.606443584,-0.034816217,0.284908891,0.703172743,-0.049521316,0.3637335,0.685868204,-0.046732415,0.338914901,0.685822964,-0.027249027,0.307145357,0.691607714,-0.018364808,0.28653571,0.783676445,-0.054659951,0.354470611,0.755998254,-0.043953821,0.335618377,0.755387664,-0.022506416,0.308552384,0.764047384,-0.010532453 +Left,0.163642853,0.726304591,-2.28E-07,0.190677226,0.577350795,-0.019805087,0.248261213,0.428027481,-0.042411391,0.271952391,0.311620533,-0.059640035,0.259346098,0.214283079,-0.072025545,0.250705838,0.499962717,-0.079849288,0.36229831,0.514509797,-0.105789088,0.336137354,0.521706939,-0.107421495,0.299171269,0.518322229,-0.104031727,0.256309092,0.610558391,-0.081186585,0.371673822,0.605644703,-0.098189503,0.342398673,0.60032177,-0.084880471,0.302865446,0.600252807,-0.076754436,0.264520437,0.707194507,-0.080631271,0.366363704,0.685007572,-0.088030756,0.339469701,0.680668592,-0.06209296,0.303688705,0.68713671,-0.04655347,0.272437334,0.785052776,-0.080937393,0.356405884,0.753384709,-0.07483612,0.334974945,0.748413086,-0.050396856,0.302865148,0.757860243,-0.035870358 +Left,0.176084936,0.726715803,-2.85E-07,0.200783104,0.58673197,-0.024383692,0.257491618,0.425465703,-0.049029253,0.281588256,0.310908347,-0.067609765,0.271319747,0.209344059,-0.081519328,0.246270463,0.486552268,-0.08961992,0.362740338,0.515543044,-0.125003517,0.335717589,0.525406837,-0.133129895,0.29630512,0.516572475,-0.13326478,0.244139105,0.593920588,-0.091103159,0.369241595,0.604303598,-0.117465429,0.33778125,0.60063988,-0.107672751,0.296551794,0.597316802,-0.101802155,0.251315951,0.692441761,-0.091413602,0.362648398,0.687413394,-0.104942769,0.333363175,0.680920601,-0.079582989,0.297083378,0.683181703,-0.064505972,0.262238324,0.776733398,-0.093206517,0.352718979,0.750191748,-0.090336576,0.328266323,0.744893909,-0.067220703,0.294147581,0.753375411,-0.054147549 +Left,0.164324507,0.79849565,-4.81E-07,0.201189667,0.656751931,-0.022960495,0.262996972,0.479748935,-0.039625071,0.295676053,0.338424861,-0.052495215,0.287574559,0.225886047,-0.060373664,0.231298566,0.480359346,-0.056088638,0.348925829,0.524407268,-0.092642725,0.322812736,0.562588096,-0.106669873,0.282758534,0.549300671,-0.113017589,0.22013469,0.574673295,-0.060258068,0.350746483,0.609719336,-0.086254209,0.31782636,0.63537991,-0.081297196,0.27783516,0.627598047,-0.080415286,0.222045392,0.67217958,-0.066601433,0.340606689,0.695065975,-0.085693747,0.308052272,0.714636445,-0.068331957,0.273790807,0.706511736,-0.059091512,0.233704954,0.763673067,-0.07501737,0.328977138,0.766116679,-0.079223029,0.299626052,0.782340527,-0.063966021,0.265404969,0.777619958,-0.056217689 +Left,0.158177912,0.918400764,-7.21E-07,0.229704291,0.710316837,-0.014521359,0.276236385,0.483630657,-0.018936379,0.287835181,0.321655571,-0.025099665,0.275790393,0.192391872,-0.024395205,0.216258377,0.412501156,0.001920799,0.332922548,0.462331682,-0.033651099,0.302621216,0.525684953,-0.05766996,0.259021074,0.508092821,-0.074952699,0.193340972,0.495241463,-0.009164128,0.331289053,0.559660316,-0.039945334,0.293338507,0.606499791,-0.050288811,0.253677577,0.593825698,-0.059657108,0.186156631,0.597574592,-0.026490251,0.318257928,0.651044965,-0.054411005,0.283942074,0.692492783,-0.053192049,0.251248717,0.684166312,-0.05312575,0.195897445,0.705324292,-0.04683717,0.295738041,0.75157994,-0.063142873,0.264681637,0.779435813,-0.065239877,0.226640046,0.767364621,-0.067602381 +Left,0.127367586,0.912768841,-8.17E-07,0.228239268,0.712188244,-0.005238344,0.295400679,0.488558441,-0.006476956,0.318739176,0.327708185,-0.012714348,0.333204597,0.204904348,-0.013146344,0.251148641,0.386482924,0.007054006,0.357250452,0.457327783,-0.027864188,0.326013356,0.523302376,-0.051385637,0.286504805,0.502247334,-0.068479158,0.216418475,0.47100237,-0.009454189,0.347256005,0.571758568,-0.041957166,0.307964444,0.622138441,-0.055448458,0.266146839,0.599237084,-0.066490598,0.192878276,0.57691294,-0.030881157,0.319272816,0.664072037,-0.062211722,0.282259375,0.704158366,-0.065431058,0.243707076,0.683313727,-0.067278765,0.181431174,0.690844059,-0.053987507,0.284296572,0.754650712,-0.074111059,0.256978571,0.777976811,-0.077828608,0.217605948,0.75845176,-0.079780713 +Left,0.111400664,0.786087573,-7.19E-07,0.222514451,0.610511482,-0.014105569,0.304736316,0.433567524,-0.024547732,0.345142692,0.291501999,-0.037300494,0.363558829,0.171049267,-0.044586468,0.250394076,0.377054572,-0.022823704,0.342108518,0.504469812,-0.061932161,0.311187804,0.553836823,-0.085714586,0.279437929,0.523485005,-0.102863081,0.202371001,0.458384424,-0.037724685,0.324967593,0.618186772,-0.071429878,0.285584718,0.638257563,-0.082586437,0.250260055,0.594147682,-0.094902888,0.168071955,0.55543834,-0.056536846,0.294856608,0.702280581,-0.089263894,0.258371562,0.709978402,-0.088998288,0.227157652,0.665885985,-0.090034835,0.147714108,0.659602046,-0.077651948,0.25444454,0.770838916,-0.099337593,0.227562666,0.770993173,-0.100483797,0.191217899,0.733224213,-0.101895675 +Left,0.084888116,0.686878681,-6.53E-07,0.187967479,0.559245586,-0.012114125,0.295764744,0.447843254,-0.025639895,0.36654368,0.340833157,-0.039346665,0.386634052,0.229110479,-0.048291758,0.254208654,0.420446575,-0.039580438,0.354644209,0.552972555,-0.075265862,0.31934455,0.581479609,-0.093702026,0.283346087,0.551270247,-0.104782127,0.210034415,0.504418492,-0.051075544,0.327384055,0.658439994,-0.074490838,0.289901078,0.657775164,-0.073230304,0.25484699,0.619823098,-0.078845389,0.178859711,0.5921157,-0.064970851,0.29185757,0.736360669,-0.082429327,0.258140504,0.723619699,-0.069053642,0.229149669,0.685811162,-0.065001324,0.158279523,0.677064121,-0.080955677,0.255956531,0.788935542,-0.083931565,0.230765983,0.776345849,-0.071472034,0.198345691,0.738340855,-0.06734214 +Left,0.105809703,0.649144709,-4.69E-07,0.196366131,0.551692009,-0.02266773,0.312106937,0.46891427,-0.046398468,0.382956207,0.387748986,-0.063872613,0.40556097,0.279745281,-0.0747822,0.255294979,0.493803322,-0.09205813,0.36182946,0.628064632,-0.128761187,0.335722536,0.616064668,-0.134900376,0.302083135,0.567532837,-0.134291306,0.211932585,0.585613608,-0.095493309,0.335144818,0.720340133,-0.119832203,0.304573476,0.685617864,-0.103043526,0.265482515,0.641745389,-0.095559649,0.185503542,0.676081419,-0.098532207,0.30062288,0.790998936,-0.109990977,0.275825292,0.751182735,-0.082174167,0.241782933,0.709543228,-0.068671204,0.170491785,0.758874893,-0.103548691,0.266384929,0.839912832,-0.09788464,0.244947404,0.804480255,-0.075622573,0.211132765,0.760191977,-0.065960482 +Left,0.114732146,0.647935867,-4.03E-07,0.200133324,0.548859656,-0.024105636,0.315718174,0.464482009,-0.048782129,0.382820308,0.381797761,-0.068029702,0.404840529,0.272242397,-0.080932572,0.258517295,0.497565269,-0.091012873,0.371583462,0.626614332,-0.131474972,0.349097759,0.609617352,-0.142289087,0.313899457,0.563131452,-0.143326327,0.21751897,0.591134131,-0.094242848,0.347504109,0.716961384,-0.124780595,0.31678471,0.676056206,-0.113411739,0.273624718,0.633441567,-0.106516562,0.193879396,0.684041202,-0.097239397,0.316385925,0.788848817,-0.1121132,0.289838642,0.745536804,-0.085454971,0.251358867,0.70846355,-0.069949672,0.182069749,0.767513394,-0.102374919,0.286088675,0.838943958,-0.097653031,0.264927357,0.801715314,-0.074276142,0.227867007,0.763798594,-0.062341608 +Left,0.144478023,0.745047808,-3.19E-07,0.205410346,0.616556942,-0.026279034,0.299330503,0.496250093,-0.052462973,0.35076496,0.392018139,-0.071717478,0.359553814,0.278279185,-0.084738851,0.251354456,0.563177109,-0.095597275,0.376523167,0.647224426,-0.135932758,0.358059496,0.624829829,-0.146741554,0.318134248,0.590669394,-0.146368146,0.226009533,0.673105657,-0.095071033,0.365688831,0.738936007,-0.123998202,0.338112742,0.697651267,-0.111759171,0.293856233,0.674147248,-0.103283845,0.216679901,0.771012306,-0.093840078,0.343839645,0.816426814,-0.106467515,0.31952408,0.771634877,-0.079614624,0.281460762,0.750464022,-0.063228123,0.217185989,0.850834489,-0.094629787,0.324034959,0.873204112,-0.087146051,0.304845333,0.835157335,-0.062633045,0.267645836,0.81439966,-0.049366731 +Left,0.15819858,0.83331728,-3.65E-07,0.203366846,0.679151416,-0.022806741,0.28642866,0.514307618,-0.045170821,0.327564538,0.389391333,-0.062403794,0.322714776,0.275889426,-0.07338199,0.250086606,0.579796433,-0.080569066,0.378533959,0.61497879,-0.119544588,0.355431825,0.612115026,-0.130956501,0.314791173,0.598723471,-0.132200345,0.23725462,0.695740402,-0.083140239,0.382067651,0.703325987,-0.112411089,0.346488923,0.687851191,-0.102238432,0.301879436,0.685350657,-0.09502124,0.238812834,0.796640635,-0.085856013,0.372532278,0.788325906,-0.100747973,0.338904381,0.765402913,-0.076444112,0.299380213,0.759889543,-0.061127231,0.248462915,0.880385339,-0.090349518,0.356500983,0.852209389,-0.083793454,0.329195797,0.831332207,-0.060338419,0.289256871,0.827063918,-0.047668688 +Left,0.196963102,0.894063175,-5.27E-07,0.234115392,0.722029746,-0.014657082,0.296001315,0.530178607,-0.028975409,0.330269247,0.379983693,-0.040879965,0.317617506,0.265825182,-0.046841819,0.270763516,0.532399952,-0.045613941,0.389857858,0.55793035,-0.076688945,0.3624883,0.597848952,-0.087125145,0.324888289,0.595573843,-0.091315202,0.265288889,0.630396724,-0.052426126,0.398845941,0.649063587,-0.0726927,0.363339365,0.67621088,-0.064707972,0.324388653,0.678895772,-0.062012684,0.27158162,0.728209794,-0.060544632,0.39241305,0.737990975,-0.071896344,0.360136539,0.758046865,-0.051337324,0.32680878,0.758704841,-0.040955387,0.285998642,0.817896426,-0.070555925,0.379877388,0.813373864,-0.065716229,0.351511687,0.828365028,-0.04644325,0.319324464,0.825952709,-0.036945775 +Left,0.221940756,0.935948968,-5.96E-07,0.264903933,0.749963343,-0.017398359,0.314096063,0.550259709,-0.026575694,0.34119451,0.39087519,-0.034941617,0.331145853,0.268916488,-0.038232189,0.26950568,0.511387646,-0.025507694,0.388557673,0.5348472,-0.057877246,0.364031821,0.595589519,-0.075842455,0.322783887,0.596187234,-0.087301843,0.258045435,0.605149806,-0.032797836,0.391391426,0.633663595,-0.05435222,0.35906601,0.67786479,-0.055288974,0.322685242,0.677519917,-0.060598627,0.258489251,0.705406666,-0.044104602,0.384204596,0.721480668,-0.064360961,0.35313344,0.7601493,-0.055573832,0.32313031,0.758779049,-0.052220799,0.270426035,0.800351143,-0.05781785,0.373903602,0.803394675,-0.06573651,0.347148806,0.831605136,-0.057834152,0.313102543,0.833051205,-0.054677311 +Left,0.241360486,1.004147768,-6.78E-07,0.311325192,0.763071716,-0.010330305,0.345755786,0.541754425,-0.01821446,0.348499537,0.383941859,-0.029160028,0.335554302,0.262298882,-0.034547977,0.282236695,0.510103405,-0.01129638,0.385414273,0.538594902,-0.045161705,0.371910721,0.612688482,-0.066093296,0.338619351,0.618876874,-0.081044786,0.255938292,0.602124691,-0.024712546,0.392860681,0.653544784,-0.053865563,0.365851074,0.706906438,-0.062585205,0.324659437,0.704008162,-0.072301865,0.24558562,0.706517518,-0.042383291,0.383899331,0.75057292,-0.06867785,0.356305629,0.78823328,-0.065995418,0.319794148,0.778946757,-0.065798394,0.248875886,0.81453681,-0.062289629,0.361201972,0.843311429,-0.077125013,0.341437668,0.864118755,-0.07590016,0.303735048,0.855912805,-0.076259367 +Left,0.215463042,0.947243571,-6.82E-07,0.287200242,0.75292486,-0.010918794,0.344252169,0.562861264,-0.019696429,0.371675134,0.415948689,-0.03027395,0.374624133,0.292738199,-0.036616612,0.292327136,0.544951797,-0.023197316,0.402736634,0.599050403,-0.055931497,0.377079993,0.650395155,-0.076881103,0.340373814,0.637844324,-0.092495784,0.265929937,0.642363906,-0.036700159,0.399110019,0.708258629,-0.0608766,0.363856286,0.73363179,-0.066844687,0.323602498,0.712742865,-0.077841602,0.253023833,0.746801138,-0.053327352,0.385252595,0.796106458,-0.074328244,0.3508147,0.81408149,-0.067522541,0.315707743,0.794634461,-0.067493737,0.25309217,0.847267985,-0.072188489,0.3631832,0.875644803,-0.082839288,0.33861047,0.883849323,-0.077369563,0.302328467,0.870842278,-0.076905236 +Left,0.192627192,0.886023283,-5.87E-07,0.249569952,0.717892468,-0.013187966,0.322558254,0.556696534,-0.02522153,0.369691521,0.421651214,-0.036839671,0.374804944,0.306720883,-0.043801002,0.289748967,0.555590689,-0.034334492,0.400127321,0.60862416,-0.066266075,0.370097131,0.643431008,-0.082900614,0.330611259,0.630723715,-0.092715494,0.269555211,0.656524122,-0.043488085,0.396795988,0.705279171,-0.062765025,0.361547023,0.721861362,-0.061021835,0.325402439,0.710041165,-0.0656747,0.261332512,0.757211566,-0.054951221,0.383037955,0.796626627,-0.06950368,0.349374205,0.804640651,-0.055548873,0.317440897,0.791689813,-0.050820533,0.262443244,0.85006094,-0.068402439,0.366330564,0.87201333,-0.06928657,0.33969754,0.873589456,-0.055257805,0.305153251,0.861922503,-0.049720511 +Left,0.161082879,0.834211946,-5.30E-07,0.226591155,0.675171852,-0.013704129,0.3177073,0.524379075,-0.030468978,0.373067915,0.403257102,-0.044001468,0.379288226,0.288281769,-0.051768575,0.289608717,0.564815581,-0.062693231,0.407013685,0.63771081,-0.094570115,0.376648366,0.645198524,-0.102219053,0.339592695,0.619431436,-0.103825875,0.270668954,0.67162776,-0.069806412,0.405192524,0.726289451,-0.089954339,0.365689307,0.716596186,-0.076647826,0.327129513,0.703158975,-0.071049884,0.26281631,0.768848777,-0.077092946,0.389781415,0.809815586,-0.086728655,0.354016364,0.793660462,-0.062358901,0.318525583,0.780587077,-0.050100967,0.261447966,0.854091823,-0.085921235,0.363484949,0.874990642,-0.078505725,0.334346622,0.860437512,-0.057273589,0.299236983,0.844226241,-0.047352441 diff --git a/gesturai.py b/gesturai.py new file mode 100644 index 0000000..0595d69 --- /dev/null +++ b/gesturai.py @@ -0,0 +1,139 @@ +import cv2 +import mediapipe as mp +import numpy as np +import torch +import pickle +import time +import os +import json +import sys +import src.gesture_model as gm +import src.actions as actions +import src.crud as crud +from dotenv import load_dotenv + + +# Load environment variables +# These should be set in the environment or a .env file +load_dotenv() +GESTURE_INDEX_MAP_PATH = os.environ["GESTURAI_GESTURE_INDEX_MAP_PATH"] +GESTURE_ACTION_MAP_PATH = os.environ["GESTURAI_GESTURE_ACTION_MAP_PATH"] +GESTURE_MODEL_PATH = os.environ["GESTURAI_GESTURE_MODEL_PATH"] + +# Load label map +gesture_index_map = crud.load_json_mapping(GESTURE_INDEX_MAP_PATH) +index_gesture_map = {v: k for k, v in gesture_index_map.items()} + +# Load gesture recognition model +# gesture_model = GestureClassifier(input_size=64, num_classes=len(gesture_index_map.keys())) +# gesture_model.load_state_dict(torch.load(GESTURE_MODEL_PATH)) +# gesture_model.eval() + +# TODO change this to load model weights only when the model is trained with weights_only = True +#load gesture model including structure from pth file +gesture_model = torch.load(GESTURE_MODEL_PATH, map_location=torch.device('cpu'), weights_only = False) + +# Load gesture-action mapping +gesture_action_map = crud.load_json_mapping(GESTURE_ACTION_MAP_PATH) + +# Initialize MediaPipe +mp_hands = mp.solutions.hands +hands = mp_hands.Hands(static_image_mode=False, max_num_hands=1, min_detection_confidence=0.3) +mp_draw = mp.solutions.drawing_utils + +# Prep main loop +active_context = "mode_context_selection" +cap = cv2.VideoCapture(0) +cooldown = 2.5 # seconds +last_trigger_time = time.time() +gesture_display = "Waiting..." + +# main loop +while cap.isOpened(): + ret, frame = cap.read() + if not ret: + break + + frame_rgb = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) + result = hands.process(frame_rgb) + + if result.multi_hand_landmarks: + for i in range(len(result.multi_hand_landmarks)): + + # Get the hand landmarks and handedness + hand_landmarks = result.multi_hand_landmarks[i] + handedness = 1 if result.multi_handedness[i].classification[0].label == "Right" else -1 + + # Draw hand landmarks on the frame + mp_draw.draw_landmarks(frame, hand_landmarks, mp_hands.HAND_CONNECTIONS) + + # Extract landmarks and convert to 3D coordinates for normalization + hand_landmarks = [[landmark.x, landmark.y, landmark.z] for landmark in hand_landmarks.landmark] + + # Normalize the landmarks, returning a 1D numpy array + hand_landmarks = gm.normalize_landmarks(hand_landmarks) + + # Flatten the array to 1D + np.array(hand_landmarks).flatten() + + # Append handedness as a numeric feature for the model + features = np.append(handedness, hand_landmarks) + + # Convert to tensor & predict gesture + features = torch.tensor(features, dtype=torch.float32) + with torch.no_grad(): + gesture_output = gesture_model(features) + predicted_gesture = index_gesture_map[torch.argmax(gesture_output).item()] + print(f"Predicted gesture: {predicted_gesture}") + + try: + + # Set display text to current gesture and context + gesture_display = f"{predicted_gesture} ({active_context})" + + # Check if the gesture maps to an action in the active context + action_name = "None" + try: + action_name = gesture_action_map[active_context][predicted_gesture] + except KeyError: + print(f"āš ļø No action found for gesture '{predicted_gesture}' in '{active_context}'") + + if time.time() - last_trigger_time > cooldown and action_name != "None": + + # If the first 5 letters of the action name are "mode_" + # And the action name is one of the keys in the gesture_map (a valid context) + # Then switch the active context to the action name + if action_name[:5] == "mode_" and action_name in gesture_action_map.keys(): + print(f"šŸ”„ Context switched to: {active_context}") + active_context = gesture_action_map[active_context][predicted_gesture] + last_trigger_time = time.time() + + # Map gesture to action, and execute if applicable + else: + + try: + print(f"[ACTION] {predicted_gesture} in {active_context}") + action = getattr(actions, action_name) + action() + last_trigger_time = time.time() + except AttributeError: + print(f"āš ļø Action function '{action_name}' not found in actions.py") + + except Exception as e: + print(f"[ERROR] {e}") + else: + gesture_display = f"No hand detected ({active_context})" + + # Display gesture and context + cv2.putText(frame, f"Gesture: {gesture_display}", (20, 40), + cv2.FONT_HERSHEY_SIMPLEX, 1, (0, 255, 0), 2) + cv2.putText(frame, f"Mode: {active_context}", (20, 80), + cv2.FONT_HERSHEY_SIMPLEX, 0.8, (255, 255, 0), 2) + + cv2.imshow("GesturAI", frame) + + if cv2.waitKey(1) & 0xFF == ord('q'): + break + +cap.release() +cv2.destroyAllWindows() diff --git a/gesture_mapping.py b/gesture_mapping.py deleted file mode 100644 index 9ad2045..0000000 --- a/gesture_mapping.py +++ /dev/null @@ -1,32 +0,0 @@ -import json -import os -import actions # your existing actions.py module - -CONFIG_PATH = "gesture_config.json" - -def load_gesture_mapping(): - if not os.path.exists(CONFIG_PATH): - print("āš ļø No config file found, using default empty mapping.") - return {} - - with open(CONFIG_PATH, "r") as f: - return json.load(f) - -def get_action_from_gesture(gesture, mode, mapping): - """Returns the callable action function for a given gesture and mode.""" - try: - action_name = mapping[mode][gesture] - return getattr(actions, action_name) - except KeyError: - print(f"āš ļø No action found for gesture '{gesture}' in mode '{mode}'") - return None - except AttributeError: - print(f"āš ļø Action function '{action_name}' not found in actions.py") - return None - -# Example usage: -if __name__ == "__main__": - gesture_map = load_gesture_mapping() - action = get_action_from_gesture("fist", "default", gesture_map) - if action: - action() diff --git a/gesture_ui_mapper.py b/gesture_ui_mapper.py deleted file mode 100644 index a031bac..0000000 --- a/gesture_ui_mapper.py +++ /dev/null @@ -1,108 +0,0 @@ -import streamlit as st -import json -import os -import inspect -import actions - -CONFIG_PATH = "gesture_config.json" -DEFAULT_MAPPING = { - "default": { - "open_palm": "paste", - "fist": "open_terminal", - "thumbs_up": "open_browser", - "ok_sign": "lock_computer", - "thumbs_down": "open_file_explorer", - "three_fingers": "None", - "rock_on": "None", - "pinch": "pause_video", - "swipe_left": "swipe_left_tab", - "swipe_right": "swipe_right_tab" - }, - "word_mode": { - "pointing_finger": "select_all", - "open_palm": "paste", - "peace_sign": "copy", - "fist": "cut", - "thumbs_up": "undo", - "thumbs_down": "redo", - "three_fingers": "None", - "rock_on": "None" - }, - "media_mode": { - "swipe_left": "decrease_volume", - "swipe_right": "increase_volume", - "three_fingers": "None", - "rock_on": "None", - "pinch": "pause_video", - "open_palm": "pause_video" - }, - "presentation_mode": { - "open_palm": "start_presentation", - "swipe_right": "next_slide", - "swipe_left": "previous_slide", - "three_fingers": "exit_presentation" - } -} - -# Utility to load and save mapping -def load_mapping(): - if os.path.exists(CONFIG_PATH): - with open(CONFIG_PATH, "r") as f: - return json.load(f) - return DEFAULT_MAPPING.copy() - -def save_mapping(mapping): - with open(CONFIG_PATH, "w") as f: - json.dump(mapping, f, indent=2) - -# List available action functions -def list_actions(): - return [name for name, obj in inspect.getmembers(actions, inspect.isfunction) - if not name.startswith("_")] - -# UI starts here -st.set_page_config(page_title="Gesture Mapper UI", layout="centered") -st.title("šŸ–ļø Gesture-to-Action Mapper") - -mapping = load_mapping() -modes = list(mapping.keys()) -actions_list = list_actions() - -st.sidebar.header("Select Mode") -selected_mode = st.sidebar.selectbox("Context Mode", modes) - -st.subheader(f"Mappings in `{selected_mode}` mode") -if mapping[selected_mode]: - for gesture, action in list(mapping[selected_mode].items()): - col1, col2, col3 = st.columns([3, 3, 1]) - with col1: - st.text(gesture) - with col2: - st.text(action) - with col3: - if st.button("āŒ", key=f"del-{selected_mode}-{gesture}"): - del mapping[selected_mode][gesture] - save_mapping(mapping) - st.rerun() -else: - st.info("No gestures mapped yet in this mode.") - -st.markdown("---") -st.subheader("āž• Add / Update Mapping") -gesture_input = st.text_input("Gesture Name (e.g., fist, peace_sign)") -action_input = st.selectbox("Select Action", actions_list) - -if st.button("Save Mapping"): - if gesture_input: - mapping[selected_mode][gesture_input.strip()] = action_input - save_mapping(mapping) - st.success(f"Mapped '{gesture_input}' → '{action_input}' in {selected_mode} mode") - st.rerun() - else: - st.warning("Please enter a gesture name.") - -st.markdown("---") -if st.button("šŸ” Reset to Default Mappings"): - save_mapping(DEFAULT_MAPPING.copy()) - st.success("Mappings reset to default.") - st.rerun() \ No newline at end of file diff --git a/model.py b/model.py deleted file mode 100644 index 9554940..0000000 --- a/model.py +++ /dev/null @@ -1,15 +0,0 @@ -import torch.nn as nn - -class GestureClassifier(nn.Module): - def __init__(self, input_size, num_classes): - super(GestureClassifier, self).__init__() - self.fc1 = nn.Linear(input_size, 128) - self.fc2 = nn.Linear(128, 64) - self.fc3 = nn.Linear(64, num_classes) - self.relu = nn.ReLU() - - def forward(self, x): - x = self.relu(self.fc1(x)) - x = self.relu(self.fc2(x)) - x = self.fc3(x) - return x diff --git a/models/archive/gesture_model_lasya.pth b/models/archive/gesture_model_lasya.pth new file mode 100644 index 0000000..fbe368c Binary files /dev/null and b/models/archive/gesture_model_lasya.pth differ diff --git a/models/archive/gesture_model_neal.pth b/models/archive/gesture_model_neal.pth new file mode 100644 index 0000000..34ce075 Binary files /dev/null and b/models/archive/gesture_model_neal.pth differ diff --git a/notebook.ipynb b/notebook.ipynb new file mode 100644 index 0000000..39f0bc4 --- /dev/null +++ b/notebook.ipynb @@ -0,0 +1,1662 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Test Load Gesture Data\n", + "import src.crud as crud\n", + "\n", + "data_path = \"data/\"\n", + "\n", + "df = crud.load_gesture_data(\n", + " data_path = data_path,\n", + " gesture_name = 'other_gesture',\n", + " suffix = '.csv')\n", + "\n", + "print(str(df.shape))\n", + "\n", + "df.head()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Test Data Capture" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Test gesture data capture\n", + "import gesture_data as gdc\n", + "data_path = \"data/\"\n", + "gesture_name = \"other_gesture\"\n", + "df = gdc.gather_gesture_data(\n", + " gesture_name=gesture_name,\n", + ")\n", + "df.to_csv(data_path+gesture_name+'.csv', index=False)\n", + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Test Model Training" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Train a model\n", + "import gesture_model as gm\n", + "import pandas as pd\n", + "import src.crud as crud\n", + "import pickle\n", + "\n", + "data_path = \"data/\"\n", + "model_path = \"models/\"\n", + "\n", + "# load the data and gesture-index map\n", + "df = crud.load_concat_csvs(data_path = data_path)\n", + "gesture_index_map, success = crud.load_json_mapping(\n", + " \"configs/gesture_index_map.json\"\n", + ")\n", + "\n", + "# Drop all rows with any nulls - shouldn't be any\n", + "df = df.dropna()\n", + "\n", + "# Create new feature y based on gesture index map\n", + "df['y'] = df['gesture_name'].map(gesture_index_map)\n", + "df = df.drop(columns=[\"gesture_name\", \"capture_number\",\"score\"])\n", + "\n", + "# Get a balanced sample of the data\n", + "df = gm.get_balanced_sample(\n", + " df,\n", + " 100, \n", + " 300)[0]\n", + "\n", + "\n", + "\n", + "# Normalize hand landmarks\n", + "df = gm.normalize_landmarks_df(df)\n", + "\n", + "print(df.columns)\n", + "\n", + "# train the model\n", + "model = gm.model_training_pipeline(df)\n", + "\n", + "import torch\n", + "# Save the model using PyTorch's save function\n", + "torch.save(model, model_path + \"gesture_model.pth\")\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Test Add/Remove/Rename Contexts" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Test crud - add context\n", + "import src.crud as crud\n", + "crud.create_context(\n", + " 'mode_TEST',\n", + " 'configs/gesture_action_map.json')\n", + "\n", + "gesture_action_map = crud.load_json_mapping(\n", + " \"configs/gesture_action_map.json\"\n", + ")\n", + "print(gesture_action_map)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Test crud - remove context\n", + "import src.crud as crud\n", + "crud.delete_context(\n", + " 'mode_TEST',\n", + " 'configs/gesture_action_map.json')\n", + "\n", + "gesture_action_map = crud.load_json_mapping(\n", + " \"configs/gesture_action_map.json\"\n", + ")\n", + "print(gesture_action_map)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Test crud - rename context\n", + "import src.crud as crud\n", + "crud.rename_context(\n", + " 'mode_presentation',\n", + " 'mode_presentation_renamed',\n", + " 'configs/gesture_action_map.json'\n", + ")\n", + "\n", + "gesture_action_map = crud.load_json_mapping(\n", + " \"configs/gesture_action_map.json\"\n", + ")\n", + "print(gesture_action_map)\n", + "\n", + "# Clean up the name\n", + "crud.rename_context(\n", + " 'mode_presentation_renamed',\n", + " 'mode_presentation',\n", + " 'configs/gesture_action_map.json'\n", + ")\n", + "\n", + "gesture_action_map = crud.load_json_mapping(\n", + " \"configs/gesture_action_map.json\"\n", + ")\n", + "print(gesture_action_map)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Test Create/Delete Gesture-Action Mapping" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Test crud - create gesture-action mapping\n", + "import src.crud as crud\n", + "import src.actions as actions\n", + "import random\n", + "\n", + "actions_list = actions.get_actions_list()\n", + "\n", + "gesture_list = list(crud.load_json_mapping(\n", + " \"configs/gesture_index_map.json\"\n", + ").keys())\n", + "\n", + "random_action = random.choice(actions_list)\n", + "random_gesture = random.choice(gesture_list)\n", + "\n", + "crud.create_context(\n", + " 'mode_TEST', # test context\n", + " 'configs/gesture_action_map.json')\n", + "print(crud.load_json_mapping(\"configs/gesture_action_map.json\"))\n", + "\n", + "\n", + "crud.create_gesture_action_mapping(\n", + " random_gesture,\n", + " random_action,\n", + " 'mode_TEST',\n", + " 'configs/gesture_action_map.json'\n", + ")\n", + "print(crud.load_json_mapping(\"configs/gesture_action_map.json\"))\n", + "\n", + "crud.delete_gesture_action_mapping(\n", + " random_gesture,\n", + " random_action,\n", + " 'mode_TEST',\n", + " 'configs/gesture_action_map.json'\n", + ")\n", + "print(crud.load_json_mapping(\"configs/gesture_action_map.json\"))\n", + "\n", + "\n", + "crud.delete_context(\n", + " 'mode_TEST',\n", + " 'configs/gesture_action_map.json'\n", + ")\n", + "print(crud.load_json_mapping(\"configs/gesture_action_map.json\"))\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Test Add/Retrain/Rename/Delete Gesture" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Press 'c' to capture current landmarks\n", + "Press 'r' reset captured landmarks\n", + "Press 's' to save the captured landmarks\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\haits\\projects\\GesturAI\\src\\gesture_data.py:109: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " landmarks_df = pd.concat([landmarks_df, pd.DataFrame([current_item])], ignore_index=True)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\haits\\projects\\GesturAI\\src\\gesture_model.py:128: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " df_balanced = pd.concat([df_balanced, subsample], ignore_index=True)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Epoch 1/57, Training Loss: 2.2130\n", + "\n", + "āœ… Test Accuracy: 14.72%\n", + "Epoch 2/57, Training Loss: 2.1762\n", + "\n", + "āœ… Test Accuracy: 29.72%\n", + "Epoch 3/57, Training Loss: 2.1432\n", + "\n", + "āœ… Test Accuracy: 46.39%\n", + "Epoch 4/57, Training Loss: 2.1078\n", + "\n", + "āœ… Test Accuracy: 60.56%\n", + "Epoch 5/57, Training Loss: 2.0691\n", + "\n", + "āœ… Test Accuracy: 69.72%\n", + "Epoch 6/57, Training Loss: 2.0269\n", + "\n", + "āœ… Test Accuracy: 73.33%\n", + "Epoch 7/57, Training Loss: 1.9802\n", + "\n", + "āœ… Test Accuracy: 73.06%\n", + "Epoch 8/57, Training Loss: 1.9279\n", + "\n", + "āœ… Test Accuracy: 72.22%\n", + "Epoch 9/57, Training Loss: 1.8696\n", + "\n", + "āœ… Test Accuracy: 72.22%\n", + "Epoch 10/57, Training Loss: 1.8056\n", + "\n", + "āœ… Test Accuracy: 72.22%\n", + "Epoch 11/57, Training Loss: 1.7358\n", + "\n", + "āœ… Test Accuracy: 71.39%\n", + "Epoch 12/57, Training Loss: 1.6605\n", + "\n", + "āœ… Test Accuracy: 72.78%\n", + "Epoch 13/57, Training Loss: 1.5804\n", + "\n", + "āœ… Test Accuracy: 73.61%\n", + "Epoch 14/57, Training Loss: 1.4963\n", + "\n", + "āœ… Test Accuracy: 77.22%\n", + "Epoch 15/57, Training Loss: 1.4096\n", + "\n", + "āœ… Test Accuracy: 79.17%\n", + "Epoch 16/57, Training Loss: 1.3219\n", + "\n", + "āœ… Test Accuracy: 81.39%\n", + "Epoch 17/57, Training Loss: 1.2343\n", + "\n", + "āœ… Test Accuracy: 82.50%\n", + "Epoch 18/57, Training Loss: 1.1473\n", + "\n", + "āœ… Test Accuracy: 84.17%\n", + "Epoch 19/57, Training Loss: 1.0618\n", + "\n", + "āœ… Test Accuracy: 85.56%\n", + "Epoch 20/57, Training Loss: 0.9782\n", + "\n", + "āœ… Test Accuracy: 87.78%\n", + "Epoch 21/57, Training Loss: 0.8975\n", + "\n", + "āœ… Test Accuracy: 89.44%\n", + "Epoch 22/57, Training Loss: 0.8201\n", + "\n", + "āœ… Test Accuracy: 91.39%\n", + "Epoch 23/57, Training Loss: 0.7467\n", + "\n", + "āœ… Test Accuracy: 91.94%\n", + "Epoch 24/57, Training Loss: 0.6779\n", + "\n", + "āœ… Test Accuracy: 93.33%\n", + "Epoch 25/57, Training Loss: 0.6141\n", + "\n", + "āœ… Test Accuracy: 95.00%\n", + "Epoch 26/57, Training Loss: 0.5558\n", + "\n", + "āœ… Test Accuracy: 96.39%\n", + "Epoch 27/57, Training Loss: 0.5028\n", + "\n", + "āœ… Test Accuracy: 96.67%\n", + "Epoch 28/57, Training Loss: 0.4551\n", + "\n", + "āœ… Test Accuracy: 97.22%\n", + "Epoch 29/57, Training Loss: 0.4125\n", + "\n", + "āœ… Test Accuracy: 97.50%\n", + "Epoch 30/57, Training Loss: 0.3747\n", + "\n", + "āœ… Test Accuracy: 97.50%\n", + "Epoch 31/57, Training Loss: 0.3409\n", + "\n", + "āœ… Test Accuracy: 97.50%\n", + "Epoch 32/57, Training Loss: 0.3106\n", + "\n", + "āœ… Test Accuracy: 97.50%\n", + "Epoch 33/57, Training Loss: 0.2834\n", + "\n", + "āœ… Test Accuracy: 97.50%\n", + "Epoch 34/57, Training Loss: 0.2589\n", + "\n", + "āœ… Test Accuracy: 97.78%\n", + "Epoch 35/57, Training Loss: 0.2368\n", + "\n", + "āœ… Test Accuracy: 97.78%\n", + "Epoch 36/57, Training Loss: 0.2167\n", + "\n", + "āœ… Test Accuracy: 97.78%\n", + "Epoch 37/57, Training Loss: 0.1983\n", + "\n", + "āœ… Test Accuracy: 98.06%\n", + "Epoch 38/57, Training Loss: 0.1817\n", + "\n", + "āœ… Test Accuracy: 98.06%\n", + "Epoch 39/57, Training Loss: 0.1665\n", + "\n", + "āœ… Test Accuracy: 98.06%\n", + "Epoch 40/57, Training Loss: 0.1529\n", + "\n", + "āœ… Test Accuracy: 98.33%\n", + "Epoch 41/57, Training Loss: 0.1406\n", + "\n", + "āœ… Test Accuracy: 98.33%\n", + "Epoch 42/57, Training Loss: 0.1295\n", + "\n", + "āœ… Test Accuracy: 98.33%\n", + "Epoch 43/57, Training Loss: 0.1196\n", + "\n", + "āœ… Test Accuracy: 98.33%\n", + "Epoch 44/57, Training Loss: 0.1106\n", + "\n", + "āœ… Test Accuracy: 98.61%\n", + "Epoch 45/57, Training Loss: 0.1024\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 46/57, Training Loss: 0.0952\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 47/57, Training Loss: 0.0886\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 48/57, Training Loss: 0.0828\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 49/57, Training Loss: 0.0774\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 50/57, Training Loss: 0.0726\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 51/57, Training Loss: 0.0682\n", + "\n", + "āœ… Test Accuracy: 99.17%\n", + "Epoch 52/57, Training Loss: 0.0642\n", + "\n", + "āœ… Test Accuracy: 99.17%\n", + "Epoch 53/57, Training Loss: 0.0605\n", + "\n", + "āœ… Test Accuracy: 99.17%\n", + "Epoch 54/57, Training Loss: 0.0572\n", + "\n", + "āœ… Test Accuracy: 99.17%\n", + "Epoch 55/57, Training Loss: 0.0541\n", + "\n", + "āœ… Test Accuracy: 99.17%\n", + "Epoch 56/57, Training Loss: 0.0513\n", + "\n", + "āœ… Test Accuracy: 99.17%\n", + "Epoch 57/57, Training Loss: 0.0487\n", + "\n", + "āœ… Test Accuracy: 99.17%\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "import src.crud as crud\n", + "import os\n", + "from dotenv import load_dotenv\n", + "load_dotenv()\n", + "\n", + "crud.create_gesture(\n", + " 'three_fingers',\n", + " os.getenv('GESTURAI_GESTURE_INDEX_MAP_PATH'),\n", + " os.getenv('GESTURAI_GESTURE_DATA_PATH'),\n", + " os.getenv('GESTURAI_GESTURE_MODEL_PATH'),\n", + ")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Press 'c' to capture current landmarks\n", + "Press 'r' reset captured landmarks\n", + "Press 's' to save the captured landmarks\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\haits\\projects\\GesturAI\\src\\gesture_data.py:109: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " landmarks_df = pd.concat([landmarks_df, pd.DataFrame([current_item])], ignore_index=True)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n", + "Frame captured with hand landmarks\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\haits\\projects\\GesturAI\\src\\gesture_model.py:128: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " df_balanced = pd.concat([df_balanced, subsample], ignore_index=True)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Epoch 1/57, Training Loss: 2.2029\n", + "\n", + "āœ… Test Accuracy: 30.28%\n", + "Epoch 2/57, Training Loss: 2.1629\n", + "\n", + "āœ… Test Accuracy: 46.39%\n", + "Epoch 3/57, Training Loss: 2.1257\n", + "\n", + "āœ… Test Accuracy: 49.44%\n", + "Epoch 4/57, Training Loss: 2.0863\n", + "\n", + "āœ… Test Accuracy: 60.28%\n", + "Epoch 5/57, Training Loss: 2.0441\n", + "\n", + "āœ… Test Accuracy: 66.11%\n", + "Epoch 6/57, Training Loss: 1.9980\n", + "\n", + "āœ… Test Accuracy: 65.83%\n", + "Epoch 7/57, Training Loss: 1.9473\n", + "\n", + "āœ… Test Accuracy: 66.39%\n", + "Epoch 8/57, Training Loss: 1.8910\n", + "\n", + "āœ… Test Accuracy: 65.56%\n", + "Epoch 9/57, Training Loss: 1.8287\n", + "\n", + "āœ… Test Accuracy: 68.89%\n", + "Epoch 10/57, Training Loss: 1.7611\n", + "\n", + "āœ… Test Accuracy: 69.44%\n", + "Epoch 11/57, Training Loss: 1.6885\n", + "\n", + "āœ… Test Accuracy: 70.83%\n", + "Epoch 12/57, Training Loss: 1.6116\n", + "\n", + "āœ… Test Accuracy: 70.00%\n", + "Epoch 13/57, Training Loss: 1.5310\n", + "\n", + "āœ… Test Accuracy: 70.28%\n", + "Epoch 14/57, Training Loss: 1.4479\n", + "\n", + "āœ… Test Accuracy: 71.94%\n", + "Epoch 15/57, Training Loss: 1.3636\n", + "\n", + "āœ… Test Accuracy: 75.00%\n", + "Epoch 16/57, Training Loss: 1.2793\n", + "\n", + "āœ… Test Accuracy: 77.22%\n", + "Epoch 17/57, Training Loss: 1.1957\n", + "\n", + "āœ… Test Accuracy: 80.83%\n", + "Epoch 18/57, Training Loss: 1.1135\n", + "\n", + "āœ… Test Accuracy: 83.06%\n", + "Epoch 19/57, Training Loss: 1.0329\n", + "\n", + "āœ… Test Accuracy: 85.00%\n", + "Epoch 20/57, Training Loss: 0.9539\n", + "\n", + "āœ… Test Accuracy: 86.94%\n", + "Epoch 21/57, Training Loss: 0.8774\n", + "\n", + "āœ… Test Accuracy: 88.61%\n", + "Epoch 22/57, Training Loss: 0.8043\n", + "\n", + "āœ… Test Accuracy: 90.56%\n", + "Epoch 23/57, Training Loss: 0.7350\n", + "\n", + "āœ… Test Accuracy: 91.11%\n", + "Epoch 24/57, Training Loss: 0.6700\n", + "\n", + "āœ… Test Accuracy: 92.22%\n", + "Epoch 25/57, Training Loss: 0.6094\n", + "\n", + "āœ… Test Accuracy: 93.89%\n", + "Epoch 26/57, Training Loss: 0.5534\n", + "\n", + "āœ… Test Accuracy: 94.44%\n", + "Epoch 27/57, Training Loss: 0.5017\n", + "\n", + "āœ… Test Accuracy: 95.00%\n", + "Epoch 28/57, Training Loss: 0.4545\n", + "\n", + "āœ… Test Accuracy: 94.72%\n", + "Epoch 29/57, Training Loss: 0.4116\n", + "\n", + "āœ… Test Accuracy: 95.00%\n", + "Epoch 30/57, Training Loss: 0.3725\n", + "\n", + "āœ… Test Accuracy: 95.00%\n", + "Epoch 31/57, Training Loss: 0.3370\n", + "\n", + "āœ… Test Accuracy: 96.11%\n", + "Epoch 32/57, Training Loss: 0.3048\n", + "\n", + "āœ… Test Accuracy: 96.94%\n", + "Epoch 33/57, Training Loss: 0.2760\n", + "\n", + "āœ… Test Accuracy: 96.94%\n", + "Epoch 34/57, Training Loss: 0.2501\n", + "\n", + "āœ… Test Accuracy: 97.22%\n", + "Epoch 35/57, Training Loss: 0.2269\n", + "\n", + "āœ… Test Accuracy: 97.22%\n", + "Epoch 36/57, Training Loss: 0.2061\n", + "\n", + "āœ… Test Accuracy: 97.50%\n", + "Epoch 37/57, Training Loss: 0.1877\n", + "\n", + "āœ… Test Accuracy: 97.78%\n", + "Epoch 38/57, Training Loss: 0.1713\n", + "\n", + "āœ… Test Accuracy: 98.06%\n", + "Epoch 39/57, Training Loss: 0.1568\n", + "\n", + "āœ… Test Accuracy: 98.33%\n", + "Epoch 40/57, Training Loss: 0.1437\n", + "\n", + "āœ… Test Accuracy: 98.06%\n", + "Epoch 41/57, Training Loss: 0.1321\n", + "\n", + "āœ… Test Accuracy: 98.06%\n", + "Epoch 42/57, Training Loss: 0.1217\n", + "\n", + "āœ… Test Accuracy: 98.06%\n", + "Epoch 43/57, Training Loss: 0.1125\n", + "\n", + "āœ… Test Accuracy: 98.06%\n", + "Epoch 44/57, Training Loss: 0.1043\n", + "\n", + "āœ… Test Accuracy: 98.33%\n", + "Epoch 45/57, Training Loss: 0.0969\n", + "\n", + "āœ… Test Accuracy: 98.61%\n", + "Epoch 46/57, Training Loss: 0.0902\n", + "\n", + "āœ… Test Accuracy: 98.61%\n", + "Epoch 47/57, Training Loss: 0.0842\n", + "\n", + "āœ… Test Accuracy: 98.61%\n", + "Epoch 48/57, Training Loss: 0.0788\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 49/57, Training Loss: 0.0739\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 50/57, Training Loss: 0.0694\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 51/57, Training Loss: 0.0653\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 52/57, Training Loss: 0.0615\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 53/57, Training Loss: 0.0581\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 54/57, Training Loss: 0.0549\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 55/57, Training Loss: 0.0520\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 56/57, Training Loss: 0.0494\n", + "\n", + "āœ… Test Accuracy: 98.89%\n", + "Epoch 57/57, Training Loss: 0.0470\n", + "\n", + "āœ… Test Accuracy: 98.89%\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "import src.crud as crud\n", + "import os\n", + "from dotenv import load_dotenv\n", + "load_dotenv()\n", + "\n", + "crud.retrain_gesture(\n", + " 'three_fingers',\n", + " os.getenv('GESTURAI_GESTURE_INDEX_MAP_PATH'),\n", + " os.getenv('GESTURAI_GESTURE_DATA_PATH'),\n", + " os.getenv('GESTURAI_GESTURE_MODEL_PATH'),\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "import src.crud as crud\n", + "import os\n", + "from dotenv import load_dotenv\n", + "load_dotenv()\n", + "\n", + "# TODO problem - doesn't rename the gesture within the data file - but this is extraneous\n", + "crud.rename_gesture(\n", + " current_gesture_name = 'three_fingers',\n", + " new_gesture_name = 'thumbs_down',\n", + " gesture_index_map_path = os.getenv('GESTURAI_GESTURE_INDEX_MAP_PATH'),\n", + " gesture_action_map_path= os.getenv('GESTURAI_GESTURE_ACTION_MAP_PATH'),\n", + " gesture_data_path = os.getenv('GESTURAI_GESTURE_DATA_PATH'),\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Gesture index map: {'other_gesture': 0, 'fist': 1, 'peace_sign': 2, 'thumbs_up': 3, 'ok_sign': 4, 'pointing': 5, 'open_palm': 6, 'rock_on': 7}\n", + "Gesture action map: {'mode_context_selection': {'fist': 'mode_word', 'peace_sign': 'mode_media', 'ok_sign': 'mode_presentation', 'pointing': 'mode_default'}, 'mode_default': {'pointing': 'mode_context_selection', 'open_palm': 'paste', 'fist': 'open_terminal', 'thumbs_up': 'open_browser', 'ok_sign': 'lock_computer'}, 'mode_word': {'pointing': 'mode_context_selection', 'open_palm': 'paste', 'peace_sign': 'copy', 'fist': 'cut', 'thumbs_up': 'undo'}, 'mode_media': {'pointing': 'mode_context_selection', 'open_palm': 'pause_video'}, 'mode_presentation': {'pointing': 'mode_context_selection', 'open_palm': 'start_presentation'}}\n", + "Training data: handedness 0_x 0_y 0_z 1_x 1_y \\\n", + "0 Right 0.742718 0.951670 -3.220000e-07 0.703873 0.903941 \n", + "1 Right 0.747208 0.937961 -3.160000e-07 0.708615 0.891739 \n", + "2 Right 0.761541 0.919692 -2.140000e-07 0.720827 0.872689 \n", + "3 Right 0.770514 0.904924 -1.790000e-07 0.727406 0.864357 \n", + "4 Right 0.772167 0.889240 -2.020000e-07 0.728882 0.857308 \n", + "... ... ... ... ... ... ... \n", + "2464 Left 0.266856 0.893311 4.040000e-09 0.307233 0.854793 \n", + "2465 Left 0.277808 0.867316 2.320000e-08 0.320736 0.825004 \n", + "2466 Left 0.292914 0.846023 5.480000e-08 0.334654 0.802904 \n", + "2467 Left 0.279110 0.844525 2.210000e-08 0.321710 0.806802 \n", + "2468 Left 0.245450 0.856683 3.440000e-08 0.289460 0.820132 \n", + "\n", + " 1_z 2_x 2_y 2_z ... 18_x 18_y \\\n", + "0 -0.014537 0.673273 0.844208 -0.029780 ... 0.766893 0.806165 \n", + "1 -0.014757 0.678166 0.829213 -0.028881 ... 0.776387 0.791887 \n", + "2 -0.015426 0.691903 0.800460 -0.030212 ... 0.806679 0.762213 \n", + "3 -0.015827 0.695139 0.793421 -0.032589 ... 0.813394 0.745947 \n", + "4 -0.017244 0.696078 0.789550 -0.035743 ... 0.814799 0.729928 \n", + "... ... ... ... ... ... ... ... \n", + "2464 -0.011469 0.345622 0.791331 -0.020277 ... 0.226607 0.653423 \n", + "2465 -0.009469 0.355241 0.764126 -0.016632 ... 0.245711 0.625392 \n", + "2466 -0.010484 0.366856 0.744563 -0.018489 ... 0.264412 0.606877 \n", + "2467 -0.009264 0.353951 0.747012 -0.014485 ... 0.257546 0.601410 \n", + "2468 -0.013066 0.325620 0.761909 -0.022335 ... 0.210299 0.620495 \n", + "\n", + " 18_z 19_x 19_y 19_z 20_x 20_y 20_z \\\n", + "0 -0.069204 0.733184 0.827431 -0.071471 0.711158 0.851519 -0.067495 \n", + "1 -0.064201 0.743184 0.810745 -0.066286 0.721078 0.832622 -0.062334 \n", + "2 -0.078503 0.780875 0.770459 -0.082011 0.760476 0.787182 -0.079727 \n", + "3 -0.094691 0.788426 0.752001 -0.100521 0.767376 0.769264 -0.100117 \n", + "4 -0.102500 0.789841 0.736884 -0.109664 0.769487 0.754254 -0.110459 \n", + "... ... ... ... ... ... ... ... \n", + "2464 -0.057529 0.225012 0.647324 -0.060284 0.220523 0.626176 -0.057653 \n", + "2465 -0.045784 0.246681 0.604318 -0.048279 0.245944 0.572319 -0.045884 \n", + "2466 -0.039980 0.266382 0.582442 -0.042004 0.268287 0.545699 -0.039941 \n", + "2467 -0.034726 0.261288 0.575935 -0.036343 0.265848 0.543503 -0.034311 \n", + "2468 -0.051035 0.207812 0.593747 -0.053267 0.206530 0.565609 -0.050378 \n", + "\n", + " gesture_name \n", + "0 other_gesture \n", + "1 other_gesture \n", + "2 other_gesture \n", + "3 other_gesture \n", + "4 other_gesture \n", + "... ... \n", + "2464 rock_on \n", + "2465 rock_on \n", + "2466 rock_on \n", + "2467 rock_on \n", + "2468 rock_on \n", + "\n", + "[2469 rows x 65 columns]\n", + "Training data shape: (2469, 65)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\haits\\projects\\GesturAI\\src\\gesture_model.py:128: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.\n", + " df_balanced = pd.concat([df_balanced, subsample], ignore_index=True)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Epoch 1/54, Training Loss: 2.0677\n", + "\n", + "āœ… Test Accuracy: 22.50%\n", + "Epoch 2/54, Training Loss: 2.0288\n", + "\n", + "āœ… Test Accuracy: 35.31%\n", + "Epoch 3/54, Training Loss: 1.9916\n", + "\n", + "āœ… Test Accuracy: 53.75%\n", + "Epoch 4/54, Training Loss: 1.9518\n", + "\n", + "āœ… Test Accuracy: 60.00%\n", + "Epoch 5/54, Training Loss: 1.9083\n", + "\n", + "āœ… Test Accuracy: 65.94%\n", + "Epoch 6/54, Training Loss: 1.8603\n", + "\n", + "āœ… Test Accuracy: 71.25%\n", + "Epoch 7/54, Training Loss: 1.8070\n", + "\n", + "āœ… Test Accuracy: 74.69%\n", + "Epoch 8/54, Training Loss: 1.7479\n", + "\n", + "āœ… Test Accuracy: 75.94%\n", + "Epoch 9/54, Training Loss: 1.6829\n", + "\n", + "āœ… Test Accuracy: 78.75%\n", + "Epoch 10/54, Training Loss: 1.6125\n", + "\n", + "āœ… Test Accuracy: 78.75%\n", + "Epoch 11/54, Training Loss: 1.5377\n", + "\n", + "āœ… Test Accuracy: 79.69%\n", + "Epoch 12/54, Training Loss: 1.4591\n", + "\n", + "āœ… Test Accuracy: 80.00%\n", + "Epoch 13/54, Training Loss: 1.3769\n", + "\n", + "āœ… Test Accuracy: 80.62%\n", + "Epoch 14/54, Training Loss: 1.2922\n", + "\n", + "āœ… Test Accuracy: 82.50%\n", + "Epoch 15/54, Training Loss: 1.2061\n", + "\n", + "āœ… Test Accuracy: 85.00%\n", + "Epoch 16/54, Training Loss: 1.1200\n", + "\n", + "āœ… Test Accuracy: 87.50%\n", + "Epoch 17/54, Training Loss: 1.0350\n", + "\n", + "āœ… Test Accuracy: 90.31%\n", + "Epoch 18/54, Training Loss: 0.9523\n", + "\n", + "āœ… Test Accuracy: 90.94%\n", + "Epoch 19/54, Training Loss: 0.8729\n", + "\n", + "āœ… Test Accuracy: 91.25%\n", + "Epoch 20/54, Training Loss: 0.7978\n", + "\n", + "āœ… Test Accuracy: 92.81%\n", + "Epoch 21/54, Training Loss: 0.7270\n", + "\n", + "āœ… Test Accuracy: 93.75%\n", + "Epoch 22/54, Training Loss: 0.6611\n", + "\n", + "āœ… Test Accuracy: 94.06%\n", + "Epoch 23/54, Training Loss: 0.6003\n", + "\n", + "āœ… Test Accuracy: 95.00%\n", + "Epoch 24/54, Training Loss: 0.5446\n", + "\n", + "āœ… Test Accuracy: 95.62%\n", + "Epoch 25/54, Training Loss: 0.4939\n", + "\n", + "āœ… Test Accuracy: 95.62%\n", + "Epoch 26/54, Training Loss: 0.4479\n", + "\n", + "āœ… Test Accuracy: 96.25%\n", + "Epoch 27/54, Training Loss: 0.4064\n", + "\n", + "āœ… Test Accuracy: 96.88%\n", + "Epoch 28/54, Training Loss: 0.3690\n", + "\n", + "āœ… Test Accuracy: 96.88%\n", + "Epoch 29/54, Training Loss: 0.3354\n", + "\n", + "āœ… Test Accuracy: 96.88%\n", + "Epoch 30/54, Training Loss: 0.3051\n", + "\n", + "āœ… Test Accuracy: 96.88%\n", + "Epoch 31/54, Training Loss: 0.2779\n", + "\n", + "āœ… Test Accuracy: 97.50%\n", + "Epoch 32/54, Training Loss: 0.2533\n", + "\n", + "āœ… Test Accuracy: 97.81%\n", + "Epoch 33/54, Training Loss: 0.2309\n", + "\n", + "āœ… Test Accuracy: 98.12%\n", + "Epoch 34/54, Training Loss: 0.2105\n", + "\n", + "āœ… Test Accuracy: 98.44%\n", + "Epoch 35/54, Training Loss: 0.1920\n", + "\n", + "āœ… Test Accuracy: 98.44%\n", + "Epoch 36/54, Training Loss: 0.1752\n", + "\n", + "āœ… Test Accuracy: 98.44%\n", + "Epoch 37/54, Training Loss: 0.1600\n", + "\n", + "āœ… Test Accuracy: 98.44%\n", + "Epoch 38/54, Training Loss: 0.1463\n", + "\n", + "āœ… Test Accuracy: 98.44%\n", + "Epoch 39/54, Training Loss: 0.1340\n", + "\n", + "āœ… Test Accuracy: 98.44%\n", + "Epoch 40/54, Training Loss: 0.1230\n", + "\n", + "āœ… Test Accuracy: 98.44%\n", + "Epoch 41/54, Training Loss: 0.1131\n", + "\n", + "āœ… Test Accuracy: 98.44%\n", + "Epoch 42/54, Training Loss: 0.1043\n", + "\n", + "āœ… Test Accuracy: 98.75%\n", + "Epoch 43/54, Training Loss: 0.0965\n", + "\n", + "āœ… Test Accuracy: 98.75%\n", + "Epoch 44/54, Training Loss: 0.0894\n", + "\n", + "āœ… Test Accuracy: 98.75%\n", + "Epoch 45/54, Training Loss: 0.0830\n", + "\n", + "āœ… Test Accuracy: 98.75%\n", + "Epoch 46/54, Training Loss: 0.0772\n", + "\n", + "āœ… Test Accuracy: 98.75%\n", + "Epoch 47/54, Training Loss: 0.0720\n", + "\n", + "āœ… Test Accuracy: 98.75%\n", + "Epoch 48/54, Training Loss: 0.0672\n", + "\n", + "āœ… Test Accuracy: 99.06%\n", + "Epoch 49/54, Training Loss: 0.0628\n", + "\n", + "āœ… Test Accuracy: 99.06%\n", + "Epoch 50/54, Training Loss: 0.0587\n", + "\n", + "āœ… Test Accuracy: 99.06%\n", + "Epoch 51/54, Training Loss: 0.0550\n", + "\n", + "āœ… Test Accuracy: 99.06%\n", + "Epoch 52/54, Training Loss: 0.0516\n", + "\n", + "āœ… Test Accuracy: 99.06%\n", + "Epoch 53/54, Training Loss: 0.0485\n", + "\n", + "āœ… Test Accuracy: 99.06%\n", + "Epoch 54/54, Training Loss: 0.0456\n", + "\n", + "āœ… Test Accuracy: 99.06%\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "import src.crud as crud\n", + "import os\n", + "from dotenv import load_dotenv\n", + "load_dotenv()\n", + "\n", + "crud.delete_gesture(\n", + " deleted_gesture_name = 'thumbs_down',\n", + " gesture_index_map_path = os.getenv('GESTURAI_GESTURE_INDEX_MAP_PATH'),\n", + " gesture_action_map_path= os.getenv('GESTURAI_GESTURE_ACTION_MAP_PATH'),\n", + " gesture_data_path = os.getenv('GESTURAI_GESTURE_DATA_PATH'),\n", + " gesture_model_path = os.getenv('GESTURAI_GESTURE_MODEL_PATH'),\n", + ")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.9" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/requirements.txt b/requirements.txt index 5085fc1..41eec94 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,79 +1,15 @@ -absl-py==2.1.0 -altair==5.5.0 -attrs==25.1.0 -blinker==1.9.0 -cachetools==5.5.2 -certifi==2025.1.31 -cffi==1.17.1 -charset-normalizer==3.4.1 -click==8.1.8 -contourpy==1.3.1 -cycler==0.12.1 -filelock==3.18.0 -flatbuffers==25.1.24 -fonttools==4.56.0 -fsspec==2025.3.2 -gitdb==4.0.12 -GitPython==3.1.44 -idna==3.10 -jax==0.4.38 -jaxlib==0.4.38 -Jinja2==3.1.6 -joblib==1.4.2 jsonschema==4.23.0 jsonschema-specifications==2024.10.1 -kiwisolver==1.4.8 -MarkupSafe==3.0.2 matplotlib==3.10.0 mediapipe==0.10.21 -ml_dtypes==0.5.1 -MouseInfo==0.1.3 -mpmath==1.3.0 -narwhals==1.34.1 -networkx==3.4.2 numpy==1.26.4 opencv-contrib-python==4.11.0.86 opencv-python==4.11.0.86 -opt_einsum==3.4.0 -packaging==24.2 pandas==2.2.3 -pillow==11.1.0 -protobuf==4.25.6 -pyarrow==19.0.1 PyAutoGUI==0.9.54 -pycparser==2.22 -pydeck==0.9.1 -PyGetWindow==0.0.9 -PyMsgBox==1.0.9 -pyobjc-core==11.0 -pyobjc-framework-Cocoa==11.0 -pyobjc-framework-Quartz==11.0 -pyparsing==3.2.1 -pyperclip==1.9.0 -PyRect==0.2.0 -PyScreeze==1.0.1 -python-dateutil==2.9.0.post0 -pytweening==1.2.0 -pytz==2025.2 -referencing==0.36.2 -requests==2.32.3 -rpds-py==0.24.0 -rubicon-objc==0.5.0 scikit-learn==1.6.1 scipy==1.15.1 -sentencepiece==0.2.0 -six==1.17.0 -smmap==5.0.2 -sounddevice==0.5.1 streamlit==1.44.1 -sympy==1.13.3 -tenacity==9.1.2 -threadpoolctl==3.6.0 -toml==0.10.2 torch==2.2.2 torchaudio==2.2.2 -torchvision==0.17.2 -tornado==6.4.2 -typing_extensions==4.13.1 -tzdata==2025.2 -urllib3==2.3.0 +torchvision==0.17.2 \ No newline at end of file diff --git a/run_gesture_control.py b/run_gesture_control.py deleted file mode 100644 index 6becb41..0000000 --- a/run_gesture_control.py +++ /dev/null @@ -1,103 +0,0 @@ -import cv2 -import mediapipe as mp -import numpy as np -import torch -import pickle -import time -from model import GestureClassifier -from gesture_mapping import load_gesture_mapping, get_action_from_gesture - -# Load model -with open("label_map.pkl", "rb") as f: - label_map = pickle.load(f) # e.g., {0: 'open_palm', 1: 'fist', ...} - -model = GestureClassifier(input_size=63, num_classes=len(label_map)) -model.load_state_dict(torch.load("gesture_model.pth")) -model.eval() - -# Context switching triggers -context_triggers = { - "three_fingers": "word_mode", - "peace_sign": "media_mode", - "ok_sign": "presentation_mode", - "rock_on": "default" -} -active_context = "default" - -# Load gesture-action mapping -gesture_map = load_gesture_mapping() - -# Initialize MediaPipe -mp_hands = mp.solutions.hands -hands = mp_hands.Hands(static_image_mode=False, max_num_hands=1, min_detection_confidence=0.3) -mp_draw = mp.solutions.drawing_utils - -def normalize_keypoints(landmarks): - keypoints = np.array([(lm.x, lm.y, lm.z) for lm in landmarks]) - keypoints -= np.mean(keypoints, axis=0) - keypoints /= np.std(keypoints, axis=0) - return keypoints.flatten() - -# Webcam loop -cap = cv2.VideoCapture(0) -cooldown = 3 -last_trigger_time = 0 -gesture_display = "Waiting..." - -while cap.isOpened(): - ret, frame = cap.read() - if not ret: - break - - frame_rgb = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) - result = hands.process(frame_rgb) - - if result.multi_hand_landmarks: - for hand_landmarks in result.multi_hand_landmarks: - mp_draw.draw_landmarks(frame, hand_landmarks, mp_hands.HAND_CONNECTIONS) - - try: - keypoints = normalize_keypoints(hand_landmarks.landmark) - input_tensor = torch.tensor(keypoints, dtype=torch.float32).unsqueeze(0) - output = model(input_tensor) - predicted_idx = torch.argmax(output, dim=1).item() - gesture = label_map.get(predicted_idx, "unknown") - - current_time = time.time() - gesture_display = f"{gesture} ({active_context})" - - # Handle mode switching gestures - if current_time - last_trigger_time > cooldown: - if gesture in context_triggers: - new_context = context_triggers[gesture] - if new_context != active_context: - active_context = new_context - print(f"šŸ”„ Context switched to: {active_context}") - last_trigger_time = current_time - continue - - # Use user-defined mapping - action = get_action_from_gesture(gesture, active_context, gesture_map) - if action: - print(f"[ACTION] {gesture} in {active_context}") - action() - last_trigger_time = current_time - - except Exception as e: - print(f"[ERROR] {e}") - else: - gesture_display = f"No hand detected ({active_context})" - - # Display gesture and context - cv2.putText(frame, f"Gesture: {gesture_display}", (20, 40), - cv2.FONT_HERSHEY_SIMPLEX, 1, (0, 255, 0), 2) - cv2.putText(frame, f"Mode: {active_context}", (20, 80), - cv2.FONT_HERSHEY_SIMPLEX, 0.8, (255, 255, 0), 2) - - cv2.imshow("GesturAI", frame) - - if cv2.waitKey(1) & 0xFF == ord('q'): - break - -cap.release() -cv2.destroyAllWindows() diff --git a/src/actions.py b/src/actions.py new file mode 100644 index 0000000..d85d131 --- /dev/null +++ b/src/actions.py @@ -0,0 +1,217 @@ +import os +import webbrowser +import platform +import subprocess +from datetime import datetime +import time +import pyautogui +import inspect + +OS = platform.system() + +def get_actions_list(): + return [name for name, obj in inspect.getmembers(action_functions) if inspect.isfunction(obj) and not name.startswith('__')] + + +class action_functions: + # -------------------------------------------- + # System Control Functions + # -------------------------------------------- + + def open_terminal(): + """Opens the terminal window based on OS.""" + try: + if OS == "Darwin": + os.system("open -a Terminal") # macOS + elif OS == "Linux": + os.system("gnome-terminal") # Linux (change if needed) + elif OS == "Windows": + os.system("start cmd") + except Exception as e: + print(f"Error opening terminal: {e}") + + def open_browser(): + """Opens the default web browser.""" + try: + webbrowser.open("https://www.google.com") + except Exception as e: + print(f"Error opening browser: {e}") + + def increase_volume(): + """Increases system volume based on OS.""" + try: + if OS == "Darwin": + os.system("osascript -e 'set volume output volume (output volume of (get volume settings) + 10)'") + elif OS == "Linux": + os.system("pactl set-sink-volume @DEFAULT_SINK@ +10%") + except Exception as e: + print(f"Error increasing volume: {e}") + + def decrease_volume(): + """Decreases system volume based on OS.""" + try: + if OS == "Darwin": + os.system("osascript -e 'set volume output volume (output volume of (get volume settings) - 10)'") + elif OS == "Linux": + os.system("pactl set-sink-volume @DEFAULT_SINK@ -10%") + except Exception as e: + print(f"Error decreasing volume: {e}") + + def take_screenshot(): + """Takes a screenshot with timestamped filename.""" + filename = f"screenshot_{datetime.now().strftime('%Y%m%d_%H%M%S')}.png" + try: + if OS == "Darwin": + os.system(f"screencapture {filename}") + elif OS == "Linux": + os.system(f"gnome-screenshot -f {filename}") + elif OS == "Windows": + os.system(f"nircmd.exe savescreenshot {filename}") # Requires nircmd.exe in PATH + except Exception as e: + print(f"Error taking screenshot: {e}") + + def lock_computer(): + """Locks the computer.""" + try: + if OS == "Windows": + os.system("rundll32.exe user32.dll,LockWorkStation") + elif OS == "Darwin": + os.system("/System/Library/CoreServices/Menu\\ Extras/User.menu/Contents/Resources/CGSession -suspend") + except Exception as e: + print(f"Error locking computer: {e}") + + def open_file_explorer(): + """Opens the file explorer.""" + try: + if OS == "Windows": + os.system("explorer") + elif OS == "Darwin": + os.system("open .") + except Exception as e: + print(f"Error opening file explorer: {e}") + + def minimize_all_windows(): + """Minimizes all windows.""" + _send_keyboard_shortcut(["win", "d"] if OS == "Windows" else ["fn", "f11"]) + + # -------------------------------------------- + # Clipboard & Editing Functions + # -------------------------------------------- + + def copy(): + _send_keyboard_shortcut(["ctrl", "c"] if OS == "Windows" else ["cmd", "c"]) + + def paste(): + _send_keyboard_shortcut(["ctrl", "v"] if OS == "Windows" else ["cmd", "v"]) + + def cut(): + _send_keyboard_shortcut(["ctrl", "x"] if OS == "Windows" else ["cmd", "x"]) + + def undo(): + _send_keyboard_shortcut(["ctrl", "z"] if OS == "Windows" else ["cmd", "z"]) + + def redo(): + _send_keyboard_shortcut(["ctrl", "y"] if OS == "Windows" else ["cmd", "shift", "z"]) + + def select_all(): + _send_keyboard_shortcut(["ctrl", "a"] if OS == "Windows" else ["cmd", "a"]) + + def save(): + _send_keyboard_shortcut(["ctrl", "s"] if OS == "Windows" else ["cmd", "s"]) + + def print_file(): + _send_keyboard_shortcut(["ctrl", "p"] if OS == "Windows" else ["cmd", "p"]) + + def find(): + _send_keyboard_shortcut(["ctrl", "f"] if OS == "Windows" else ["cmd", "f"]) + + # -------------------------------------------- + # Helper Function for Simulating Keypresses + # -------------------------------------------- + + def _send_keyboard_shortcut(keys): + try: + # macOS fix: replace 'cmd' with 'command' for pyautogui + fixed_keys = ['command' if k == 'cmd' else k for k in keys] + pyautogui.hotkey(*fixed_keys) + + except ImportError: + print("pyautogui not installed. Run: pip install pyautogui") + except Exception as e: + print(f"Error sending keyboard shortcut {keys}: {e}") + + def pause_video(): + """Click center and press Space to pause/play video.""" + try: + + screen_width, screen_height = pyautogui.size() + x = screen_width // 2 + y = screen_height // 2 + pyautogui.moveTo(x, y, duration=0.3) + pyautogui.click() # Focus player + time.sleep(0.2) + pyautogui.press("space") # Use spacebar instead of 'k' + print("āÆļø Sent 'space' to pause/play video") + except Exception as e: + print(f"āš ļø pause_video error: {e}") + + + def _send_single_key(key): + try: + pyautogui.press(key) + except ImportError: + print("pyautogui not installed. Run: pip install pyautogui") + except Exception as e: + print(f"Error sending key '{key}': {e}") + + def swipe_left_tab(): + """Three-finger swipe left = switch to previous tab (Mac).""" + if OS == "Darwin": + os.system("""osascript -e 'tell application "System Events" to key code 123 using control down'""") # Left arrow + + def swipe_right_tab(): + """Three-finger swipe right = switch to next tab (Mac).""" + if OS == "Darwin": + os.system("""osascript -e 'tell application "System Events" to key code 124 using control down'""") # Right arrow + + + def start_presentation(): + """Start PowerPoint presentation (equivalent to pressing F5).""" + try: + pyautogui.press("f5") + print("šŸ“½ Started presentation") + except Exception as e: + print(f"āš ļø Error starting presentation: {e}") + + def next_slide(): + """Go to the next PowerPoint slide.""" + try: + pyautogui.press("right") + print("āž”ļø Next slide") + except Exception as e: + print(f"āš ļø Error moving to next slide: {e}") + + def previous_slide(): + """Go to the previous PowerPoint slide.""" + try: + pyautogui.press("left") + print("ā¬…ļø Previous slide") + except Exception as e: + print(f"āš ļø Error moving to previous slide: {e}") + + def exit_presentation(): + """Exits PowerPoint slideshow by bringing it to front and sending ESC.""" + try: + + + # Step 1: Bring PowerPoint to the foreground + os.system('osascript -e \'tell application "Microsoft PowerPoint" to activate\'') + time.sleep(0.5) # Let the window come to front + + # Step 2: Send ESC key to exit slideshow + pyautogui.press("esc") + print("šŸ›‘ Exited PowerPoint presentation") + + except Exception as e: + print(f"āš ļø Error exiting PowerPoint: {e}") + diff --git a/archive/collect_data.py b/src/archive/collect_data.py similarity index 100% rename from archive/collect_data.py rename to src/archive/collect_data.py diff --git a/gesture_cli_mapper.py b/src/archive/gesture_cli_mapper.py similarity index 92% rename from gesture_cli_mapper.py rename to src/archive/gesture_cli_mapper.py index 8a4d7ec..70e7ee4 100644 --- a/gesture_cli_mapper.py +++ b/src/archive/gesture_cli_mapper.py @@ -3,19 +3,22 @@ import inspect import actions -CONFIG_PATH = "gesture_config.json" + +CONFIG_PATH = os.getenv("GESTURAI_GESTURE_MAP") +DEFAULT_CONFIG_PATH = os.getenv("GESTURAI_GESTURE_MAP_DEFAULT") + # Load or create default mapping def load_mapping(): if os.path.exists(CONFIG_PATH): with open(CONFIG_PATH, "r") as f: return json.load(f) - return {"default": {}, "media_mode": {}, "presentation_mode": {}, "word_mode": {}} + def save_mapping(mapping): with open(CONFIG_PATH, "w") as f: json.dump(mapping, f, indent=2) - print("āœ… Mapping saved to gesture_config.json\n") + print("āœ… Mapping saved\n") def list_modes(mapping): print("\nAvailable modes:") diff --git a/gesture_utils.py b/src/archive/gesture_utils.py similarity index 100% rename from gesture_utils.py rename to src/archive/gesture_utils.py diff --git a/hand_tracker.py b/src/archive/hand_tracker.py similarity index 96% rename from hand_tracker.py rename to src/archive/hand_tracker.py index a789958..8da9c5f 100644 --- a/hand_tracker.py +++ b/src/archive/hand_tracker.py @@ -1,7 +1,12 @@ import cv2 # type: ignore import mediapipe as mp # type: ignore +import numpy as np + + + class HandTracker: + def __init__(self, detection_conf=0.5, tracking_conf=0.5): self.mp_hands = mp.solutions.hands self.hands = self.mp_hands.Hands(min_detection_confidence=detection_conf, diff --git a/archive/main.py b/src/archive/main.py similarity index 92% rename from archive/main.py rename to src/archive/main.py index d5f1495..61e1e72 100644 --- a/archive/main.py +++ b/src/archive/main.py @@ -1,7 +1,7 @@ import cv2 import time -from hand_tracker import HandTracker -from gesture_utils import detect_gesture # central detection logic +from archive.hand_tracker import HandTracker +from archive.gesture_utils import detect_gesture # central detection logic from actions import gesture_action_map # maps gestures to functions # Initialize HandTracker diff --git a/archive/test_actions.py b/src/archive/test_actions.py similarity index 100% rename from archive/test_actions.py rename to src/archive/test_actions.py diff --git a/archive/test_pause.py b/src/archive/test_pause.py similarity index 100% rename from archive/test_pause.py rename to src/archive/test_pause.py diff --git a/src/crud.py b/src/crud.py new file mode 100644 index 0000000..fe80d8e --- /dev/null +++ b/src/crud.py @@ -0,0 +1,458 @@ +import json +import os +import src.gesture_data as gd +import src.gesture_model as gm +import pandas as pd +import torch + +# SUPPORT FUNCTIONS - +# TODO consider removing these and using a library like `jsonschema` for validation + +def save_json_mapping(path, mapping): + try: + with open(path, "w") as f: + json.dump(mapping, f, indent=2) + except Exception as e: + print(f"Error saving file: {e}") + return False + # cleanup - close file if it was opened + finally: + try: + f.close() + except NameError: + pass + except Exception as e: + print(f"Error closing file: {e}") + +def load_json_mapping(path): + try: + with open(path, "r") as f: + mapping = json.load(f) + f.close() + return mapping + except FileNotFoundError: + print(f"File not found: {path}") + return {} + except json.JSONDecodeError: + print(f"Error decoding JSON from file: {path}") + return {} + except Exception as e: + print(f"Unexpected error: {e}") + return {} + # cleanup - close file if it was opened + finally: + f.close() + +def load_gesture_data( + data_path, + gesture_name, + suffix = ".csv"): + """ + Load training data from a CSV file. + + Args: + data_path (str): Path to the CSV file containing gesture data. + + Returns: + pd.DataFrame: DataFrame containing the gesture data. + """ + file_path = os.path.join(data_path, gesture_name + suffix) + try: + gesture_data = pd.read_csv(file_path) + # add a column 'gesture_name' to the data + gesture_data['gesture_name'] = gesture_name + return gesture_data + except FileNotFoundError: + print(f"File not found: {file_path}") + return pd.DataFrame() + except pd.errors.EmptyDataError: + print(f"Empty CSV file: {file_path}") + return pd.DataFrame() + except Exception as e: + print(f"Unexpected error: {e}") + return pd.DataFrame() + + +# CONTEXT CRUD OPERATIONS + +def create_context( + context_name, + gesture_action_map_path): + """ + Add a new context/mode to the gesture map. + + Args: + context_name (str): Name of the new context to add + gesture_map (dict): The current gesture action map + + Returns: + bool: True if successful, False if the context already exists or if the name is invalid + """ + if context_name[:5] != "mode_": + print(f"Context name '{context_name}' must start with 'mode_'.") + return False + + # Load current gesture-action map + gesture_action_map = load_json_mapping(gesture_action_map_path) + + if context_name in gesture_action_map: + return False + + # Add empty context to the map + gesture_action_map[context_name] = {} + + # Save the updated map + save_json_mapping(gesture_action_map_path, gesture_action_map) + return True + + +def delete_context( + context_name, + gesture_action_map_path): + """ + Remove a context/mode from the gesture map. + + Args: + context_name (str): Name of the context to remove + gesture_map (dict): The current gesture action map + + Returns: + bool: True if successful, False if the context doesn't exist or is protected + """ + # Load current gesture-action map + gesture_action_map = load_json_mapping(gesture_action_map_path) + + # Protect essential contexts from being removed + protected_contexts = ["mode_context_selection", "mode_default"] + + if context_name not in gesture_action_map: + return False + + if context_name in protected_contexts: + return False + + # Remove the context + del gesture_action_map[context_name] + + # Also remove references to this context from mode_context_selection + if "mode_context_selection" in gesture_action_map: + context_selection = gesture_action_map["mode_context_selection"] + # Find and remove any gesture that points to the removed context + for gesture, action in list(context_selection.items()): + if action == context_name: + del context_selection[gesture] + + # Save the updated map + save_json_mapping(gesture_action_map_path, gesture_action_map) + return True + +def rename_context( + current_context_name, + new_context_name, + gesture_action_map_path): + """ + Rename a context/mode in the gesture map. + + Args: + current_context_name (str): Current name of the context + new_context_name (str): New name for the context + gesture_map (dict): The current gesture action map + + Returns: + bool: True if successful, False if the context doesn't exist, is protected, + or the new name already exists + """ + # Load current gesture-action map + gesture_action_map = load_json_mapping(gesture_action_map_path) + + # Protect essential contexts from being renamed + protected_contexts = ["mode_context_selection"] + if current_context_name in protected_contexts: + print(f"Cannot rename protected context: {current_context_name}") + return False + + if current_context_name not in gesture_action_map.keys(): + print(f"Context '{current_context_name}' does not exist.") + return False + if new_context_name in gesture_action_map.keys(): + print(f"Context '{new_context_name}' already exists.") + return False + + # Create new entry with the same mappings + gesture_action_map[new_context_name] = gesture_action_map[current_context_name] + + # Remove the old entry + del gesture_action_map[current_context_name] + + # Update references in mode_context_selection + if "mode_context_selection" in gesture_action_map: + context_selection = gesture_action_map["mode_context_selection"] + # Find and update any gesture that points to the renamed context + for gesture, action in list(context_selection.items()): + if action == current_context_name: + context_selection[gesture] = new_context_name + + # Save the updated map + save_json_mapping(gesture_action_map_path, gesture_action_map) + return True + + + +# GESTURE-ACTION CRUD OPERATIONS + +def create_gesture_action_mapping( + gesture_name, + action_name, + context_name, + gesture_action_map_path): + + gesture_action_map = load_json_mapping(gesture_action_map_path) + + # Check if the context exists + if context_name not in gesture_action_map: + print(f"Context '{context_name}' does not exist.") + return False + + # Check if the gesture already exists in the context + if gesture_name in gesture_action_map[context_name]: + print(f"Gesture '{gesture_name}' already exists in context '{context_name}'.") + return False + + # Check if the action already exists in the context + if action_name in gesture_action_map[context_name].values(): + print(f"Action '{action_name}' already exists in context '{context_name}'.") + return False + + # Add the new gesture-action mapping to the context + gesture_action_map[context_name][gesture_name] = action_name + + # Save the updated gesture-action map + save_json_mapping(gesture_action_map_path, gesture_action_map) + return True + +def delete_gesture_action_mapping( + gesture_name, + action_name, + context_name, + gesture_action_map_path): + + gesture_action_map = load_json_mapping(gesture_action_map_path) + + # Check if the context exists + if context_name not in gesture_action_map: + print(f"Context '{context_name}' does not exist.") + return False + + # Check if the gesture exists in the context + if gesture_name not in gesture_action_map[context_name]: + print(f"Gesture '{gesture_name}' does not exist in context '{context_name}'.") + return False + + # Check if the gesture-action mapping exists + if gesture_action_map[context_name][gesture_name] != action_name: + print(f"Action '{action_name}' does not exist for gesture '{gesture_name}' in context '{context_name}'.") + return False + + # Remove the gesture-action mapping from the context + del gesture_action_map[context_name][gesture_name] + + # Save the updated gesture-action map + save_json_mapping(gesture_action_map_path, gesture_action_map) + return True + + +# GESTURE CRUD OPERATIONS + +def create_gesture( + created_gesture_name, + gesture_index_map_path, + gesture_data_path, + gesture_model_path): + + # LOAD GESTURE INDEX MAP AND ADD NEW GESTURE-INDEX ITEM + gesture_index_map = load_json_mapping(gesture_index_map_path) + gesture_index_map[created_gesture_name] = len(gesture_index_map) + + # LOAD EXISTING GESTURE DATA + training_dfs = [] + + for gesture_name in gesture_index_map.keys(): + # Load the gesture data and add a column for the gesture name + if gesture_name != created_gesture_name: + gesture_data = load_gesture_data( + gesture_data_path, + gesture_name, + ".csv") + training_dfs.append(gesture_data) + + # GATHER NEW GESTURE DATA + new_data = gd.gather_gesture_data(created_gesture_name) + training_dfs.append(new_data) + + # CONCATENATE ALL TRAINING DATA + training_data = pd.concat(training_dfs, ignore_index=True) + + # TRAIN NEW MODEL + model = gm.model_training_pipeline( + training_data, + gesture_index_map) + + # SAVE UPDATED MAPS AND MODEL + # TODO LATER: Add a check to see if the model training was successful; if not, revert + # TODO LATER: Make this an atomic operation - if any part fails, revert all changes + + # Save the new gesture-index map, overwriting the old index map + save_json_mapping(gesture_index_map_path, gesture_index_map) + + # Save the data for the new gesture + new_data = new_data.drop(columns=['gesture_name']) + new_data.to_csv(gesture_data_path + created_gesture_name + ".csv", index=False) + + #Save the new model, overwriting the old model + torch.save(model, gesture_model_path) + + return True + + + + +# Add function to alter a gesture - capturing new data +# and retraining the gesture recognition model without altering +# the gesture-action map +def retrain_gesture( + retrained_gesture_name, + gesture_index_map_path, + gesture_data_path, + gesture_model_path): + + # LOAD GESTURE INDEX MAP (READ-ONLY) + gesture_index_map = load_json_mapping(gesture_index_map_path) + + # LOAD TRAINING DATA, REPLACING OLD GESTURE DATA WITH NEW GESTURE DATA + training_dfs = [] + + for gesture_name in gesture_index_map.keys(): + if gesture_name != retrained_gesture_name: + # Load the gesture data and add a column for the gesture name + gesture_data = load_gesture_data( + gesture_data_path, + gesture_name, + ".csv") + training_dfs.append(gesture_data) + else: + # GATHER NEW GESTURE DATA + new_gesture_data = gd.gather_gesture_data(retrained_gesture_name) + training_dfs.append(new_gesture_data) + + # CONCATENATE ALL TRAINING DATA + training_data = pd.concat(training_dfs, ignore_index=True) + + # TRAIN NEW MODEL + model = gm.model_training_pipeline(training_data, gesture_index_map) + + # SAVE NEW DATA AND MODEL + # TODO LATER make this an atomic operation - if any part fails, revert all changes + # replace old gesture data with new gesture data + new_gesture_data = new_gesture_data.drop(columns=['gesture_name']) + new_gesture_data.to_csv(gesture_data_path + "/" + retrained_gesture_name + ".csv", index=False) + + #Save the new model, overwriting the old model + torch.save(model, gesture_model_path) + + return True + +# TODO problem - doesn't rename the gesture within the data file - but this is extraneous +# TODO refactor project to exclude score, capture_number, and gesture_name from the data file +def rename_gesture( + current_gesture_name, + new_gesture_name, + gesture_index_map_path, + gesture_action_map_path, + gesture_data_path): + # CREATE NEW MAPS + # Update the gesture name in the gesture-index map + gesture_index_map = load_json_mapping(gesture_index_map_path) + gesture_index_map[new_gesture_name] = gesture_index_map[current_gesture_name] + del gesture_index_map[current_gesture_name] + + # Update the gesture name in each context of the gesture-action map + gesture_action_map = load_json_mapping(gesture_action_map_path) + for context in gesture_action_map.keys(): + if current_gesture_name in gesture_action_map[context]: + gesture_action_map[context][new_gesture_name] = gesture_action_map[context][current_gesture_name] + del gesture_action_map[context][current_gesture_name] + + # SAVE NEW MAPS & UPDATE GESTURE DATA FILE NAME + # TODO LATER make this an atomic operation - if any part fails, revert all changes + save_json_mapping(gesture_index_map_path, gesture_index_map) + save_json_mapping(gesture_action_map_path, gesture_action_map) + os.rename(gesture_data_path + "/" + current_gesture_name + ".csv", gesture_data_path + "/" + new_gesture_name + ".csv") + return True + + + +def delete_gesture( + deleted_gesture_name, + gesture_index_map_path, + gesture_action_map_path, + gesture_data_path, + gesture_model_path): + + # LOAD AND UPDATE MAPS TO EXCLUDE TARGET GESTURE + gesture_index_map = load_json_mapping(gesture_index_map_path) + # Remove the gesture from the index map + del gesture_index_map[deleted_gesture_name] + # Renumber the indices of the remaining gestures + i = 0 + new_gesture_index_map = {} + for k in gesture_index_map.keys(): + new_gesture_index_map[k] = i + i += 1 + gesture_index_map = new_gesture_index_map + + print(f"Gesture index map: {gesture_index_map}") + + # Remove the gesture from each context of the gesture-action map + gesture_action_map = load_json_mapping(gesture_action_map_path) + for v in gesture_action_map.values(): + if deleted_gesture_name in v.keys(): + del v[deleted_gesture_name] + + print (f"Gesture action map: {gesture_action_map}") + + # LOAD TRAINING DATA - EXCLUDES TARGET GESTURE DATA + training_dfs = [] + + for gesture_name in gesture_index_map.keys(): + # Load the gesture data and add a column for the gesture name + gesture_data = load_gesture_data( + gesture_data_path, + gesture_name, + ".csv") + training_dfs.append(gesture_data) + + # CONCATENATE ALL TRAINING DATA + training_data = pd.concat(training_dfs, ignore_index=True) + + print(f"Training data: {training_data}") + print(f"Training data shape: {training_data.shape}") + + # TRAIN NEW MODEL + model = gm.model_training_pipeline( + training_data, + gesture_index_map) + + # SAVE MAPS AND MODEL; DELETE OLD DATA + # TODO LATER: Add a check to see if the model training was successful; if not, revert + # TODO LATER: Make this an atomic operation - if any part fails, revert all changes + + # Save the new mappigns, overwriting the old mappings + save_json_mapping(gesture_index_map_path, gesture_index_map) + save_json_mapping(gesture_action_map_path, gesture_action_map) + + #Save the new model, overwriting the old model + torch.save(model, gesture_model_path) + + #Delete the old gesture data file + os.remove(gesture_data_path + "/" + deleted_gesture_name + ".csv") + return True \ No newline at end of file diff --git a/src/gesture_data.py b/src/gesture_data.py new file mode 100644 index 0000000..55318b9 --- /dev/null +++ b/src/gesture_data.py @@ -0,0 +1,137 @@ +import cv2 +import mediapipe as mp +import pandas as pd + + + +def gather_gesture_data(gesture_name): + + # Initialize MediaPipe Hands + mp_hands = mp.solutions.hands + mp_drawing = mp.solutions.drawing_utils + mp_drawing_styles = mp.solutions.drawing_styles + + # Configure MediaPipe Hands with default settings + hands = mp_hands.Hands( + static_image_mode=False, + max_num_hands=1, + min_detection_confidence=0.5, + min_tracking_confidence=0.5 + ) + num_landmarks = 21 + + # Initialize the webcam (0 is usually the default camera) + cap = cv2.VideoCapture(0) + + # Set camera resolution to HD (1280x720) for better quality + cap.set(cv2.CAP_PROP_FRAME_WIDTH, 1280) + cap.set(cv2.CAP_PROP_FRAME_HEIGHT, 720) + + print("Press 'c' to capture current landmarks") + print ("Press 'r' reset captured landmarks") + print("Press 's' to save the captured landmarks") + + # Data collection application + capture_number = 0 + + # Create landmarks header + landmarks_header = [ + 'handedness'] + for landmark_id in range(num_landmarks): + for point_id in ['x', 'y', 'z']: + landmarks_header.append(f'{landmark_id}_{point_id}') + + landmarks_df = pd.DataFrame(columns=landmarks_header) + + # Main loop to process video frames and capture landmarks + while cap.isOpened(): + # Read frame from webcam + success, frame = cap.read() + if not success: + print("Failed to read from webcam") + break + + # Flip the frame horizontally for a more intuitive mirror view + frame = cv2.flip(frame, 1) + + # Convert BGR image to RGB (CV2 uses BGR but MediaPipe requires RGB) + rgb_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) + + # Process the frame with MediaPipe Hands + landmarks = hands.process(rgb_frame) + + # Create a copy of the frame to draw on + display_frame = frame.copy() + + + # Draw hand landmarks if detected + if landmarks.multi_hand_landmarks: + for hand_landmarks in landmarks.multi_hand_landmarks: + mp_drawing.draw_landmarks( + display_frame, + hand_landmarks, + mp_hands.HAND_CONNECTIONS, + mp_drawing_styles.get_default_hand_landmarks_style(), + mp_drawing_styles.get_default_hand_connections_style() + ) + + cv2.putText( + display_frame, + f'Capturing {gesture_name} #{capture_number}', + (10, 30), + cv2.FONT_HERSHEY_SIMPLEX, + 0.7, + (255, 255, 255), + 2) + + cv2.imshow("MediaPipe Hands Capture", display_frame) + + + # Handle keyboard input + # masking to capture only the lower 8 bits to help with cross-platform compatibility + key = cv2.waitKey(1) & 0xFF + + # 'c' key to capture current frame and landmarks + # TODO add a check to see if all landmarks are present - don't capture bad data + if key == ord('c'): + if landmarks.multi_hand_world_landmarks: + + current_item = { + 'handedness': landmarks.multi_handedness[0].classification[0].label + } + for landmark_id in range(num_landmarks): + landmark = landmarks.multi_hand_landmarks[0].landmark[landmark_id] + current_item[f'{landmark_id}_x'] = landmark.x + current_item[f'{landmark_id}_y'] = landmark.y + current_item[f'{landmark_id}_z'] = landmark.z + + # Append landmarks data to dataframe + landmarks_df = pd.concat([landmarks_df, pd.DataFrame([current_item])], ignore_index=True) + + capture_number += 1 + print("Frame captured with hand landmarks") + else: + print("No hands detected. Position your hand in the frame.") + + elif key == ord('r'): + # Reset captured landmarks + landmarks_df = pd.DataFrame(columns=landmarks_header) + capture_number = 0 + print("Reset captured landmarks") + + # 's' key to stop and return captured landmarks + elif key == ord('s'): + + landmarks_df['gesture_name'] = gesture_name + + # Release resources + cap.release() + cv2.destroyAllWindows() + hands.close() + + # Return the captured landmarks DataFrame + return landmarks_df + + + + \ No newline at end of file diff --git a/src/gesture_model.py b/src/gesture_model.py new file mode 100644 index 0000000..9da6c1c --- /dev/null +++ b/src/gesture_model.py @@ -0,0 +1,228 @@ +import torch.nn as nn +import numpy as np +import numpy as np +import torch +import torch.nn as nn +import torch.optim as optim +from sklearn.model_selection import train_test_split +from sklearn.metrics import confusion_matrix, ConfusionMatrixDisplay +import matplotlib.pyplot as plt +import pandas as pd +import mediapipe as mp +import src.gesture_model as gm + +# TODO add dropout layers to the model to prevent overfitting +# TODO add batch normalization to the model to improve training speed and stability +# TODO turn this into a simple sequential model to simplify the code? +# TODO switch to leaky relu? +class GestureClassifier(nn.Module): + def __init__(self, input_features, output_classes): + super(GestureClassifier, self).__init__() + self.fc1 = nn.Linear(input_features, 256) + self.fc2 = nn.Linear(256, 64) + self.fc3 = nn.Linear(64, output_classes) + self.relu = nn.ReLU() + + def forward(self, x): + x = self.relu(self.fc1(x)) + x = self.relu(self.fc2(x)) + x = self.fc3(x) + return x + + +def model_training_pipeline( + df : pd.DataFrame, + gesture_index_map : dict, + sample_size_per_gesture : int = 100, + sample_size_other_gesture : int = 250): + + # Drop rows with NaN values + df = df.dropna() + + # Convert handedness to numeric values + df['handedness'] = df['handedness'].map({'Left': -1, 'Right': 1}) + + # Convert gesture labels to numeric values + df['y'] = df['gesture_name'].map(gesture_index_map) + df = df.drop(columns=['gesture_name']) + + # Balance the sample + df = gm.get_balanced_sample( + df, + sample_size_per_gesture = sample_size_per_gesture, + sample_size_other_gesture = sample_size_other_gesture + ) + + # Normalize the landmarks + df = normalize_landmarks_df(df) + + # X,y split + X = df.drop(columns=["y"]) + y = df["y"] + + # Train and return the model + return train_model(X,y) + + +def normalize_landmarks(hand_landmarks): + """ + Args: + hand_landmarks: List of landmarks, each landmark is a list of [x, y, z] coordinates. + + Returns: + List of lists of normalized landmarks, where each landmark is a list of [x, y, z] coordinates. + """ + + # Get the average landmark coordinates and center the hand coordinates + hand_landmarks_centers = [] + for dim in range(3): + hand_landmarks_centers.append(np.mean([landmark[dim] for landmark in hand_landmarks])) + + for lm_id in range(len(hand_landmarks)): + for dim in range(3): + hand_landmarks[lm_id][dim] -= hand_landmarks_centers[dim] + + # Get center, min and max for each dimension + hand_landmarks_centers = [] + hand_landmarks_mins = [] + hand_landmarks_maxs = [] + for dim in range(3): + hand_landmarks_centers.append(np.mean([landmark[dim] for landmark in hand_landmarks])) + hand_landmarks_mins.append(np.min([landmark[dim] for landmark in hand_landmarks])) + hand_landmarks_maxs.append(np.max([landmark[dim] for landmark in hand_landmarks])) + + # Then, scale them to fit within the range of -1 to 1 + for lm_id in range(len(hand_landmarks)): + for dim in range(3): + # First, center the landmarks around the mean + hand_landmarks[lm_id][dim] -= hand_landmarks_centers[dim] + # Then, scale them to fit within the range of -1 to 1 + # based on the distance of the max and min values from the mean + denom = max(abs(hand_landmarks_maxs[dim]-hand_landmarks_centers[dim]), + abs(hand_landmarks_mins[dim]-hand_landmarks_centers[dim])) + if denom > 0: + hand_landmarks[lm_id][dim] /= denom + else: + hand_landmarks[lm_id][dim] = 0 + + return hand_landmarks + + +def get_balanced_sample( + df : pd.DataFrame, + sample_size_per_gesture : int = 100, + sample_size_other_gesture : int = 250): + + # Create an empty dataframe to store selected samples + df_balanced = pd.DataFrame(columns=df.columns) + + # For each handedness and gesture, select observations and add to df_sampled + for handedness in [-1, 1]: + for gesture in df['y'].unique(): + sample_size = sample_size_other_gesture if gesture == 'other_gesture' else sample_size_per_gesture + df_temp = df[(df['handedness'] == handedness) & (df['y'] == gesture)] + + # Check if we have enough samples + if len(df_temp) >= sample_size: + subsample = df_temp.sample(n=sample_size, random_state=42) + df_balanced = pd.concat([df_balanced, subsample], ignore_index=True) + else: + print(f"Not enough samples for gesture {gesture} with handedness = {handedness}.") + return None + + df_balanced = df_balanced.reset_index(drop=True) + + + return df_balanced + +# Wrapper function to normalize each set of landmarks in a dataframe +# using the normalize_landmarks function +def normalize_landmarks_df(df): + + df = df.copy() + + # For each row of the dataframe, normalize the landmarks + for index, row in df.iterrows(): + # Extract landmarks from the row + hand_landmarks = [] + for i in range(21): + hand_landmarks.append([row[f'{i}_x'], row[f'{i}_y'], row[f'{i}_z']]) + + # Normalize the landmarks + normalized_landmarks = normalize_landmarks(hand_landmarks) + + # Update the dataframe with normalized landmarks + for i in range(21): + df.at[index, f'{i}_x'] = normalized_landmarks[i][0] + df.at[index, f'{i}_y'] = normalized_landmarks[i][1] + df.at[index, f'{i}_z'] = normalized_landmarks[i][2] + + return df + + +# Takes a dataframe with columns ['x', 'y', 'z'] for each landmark +# A numeric column 'handedness' indicating the handedness of the gesture (1 for right, -1 for left) +# and a numeric label column 'y' +# Returns a newly trained model +def train_model(X: pd.DataFrame, y: pd.DataFrame): + + # Split data (stratified ensures class balance in both sets) + X_train, X_test, y_train, y_test = train_test_split( + X, y, test_size=0.2, random_state=42, stratify=y + ) + + # Initialize model + input_size = X.shape[1] + num_classes = len(set(y)) + model = GestureClassifier(input_size, num_classes) + + # Training config + criterion = nn.CrossEntropyLoss() + optimizer = optim.Adam(model.parameters(), lr=0.002) + epochs = 30 + num_classes * 3 + + # Convert to tensors + X_train_tensor = torch.tensor(X_train.values.astype(np.float32), dtype=torch.float32) + y_train_tensor = torch.tensor(y_train.values.astype(np.int64), dtype=torch.int64) + X_test_tensor = torch.tensor(X_test.values.astype(np.float32), dtype=torch.float32) + y_test_tensor = torch.tensor(y_test.values.astype(np.int64), dtype=torch.int64) + + # Train model + + for epoch in range(epochs): + model.train() + optimizer.zero_grad() + outputs = model(X_train_tensor) + loss = criterion(outputs, y_train_tensor) + loss.backward() + optimizer.step() + print(f"Epoch {epoch+1}/{epochs}, Training Loss: {loss.item():.4f}") + + + # Evaluate on test set + model.eval() + with torch.no_grad(): + test_outputs = model(X_test_tensor) + predicted = torch.argmax(test_outputs, dim=1) + accuracy = (predicted == y_test_tensor).sum().item() / len(y_test_tensor) + print(f"\nāœ… Test Accuracy: {accuracy * 100:.2f}%") + + # # Confusion matrix + # cm = confusion_matrix(y_test, predicted) + # disp = ConfusionMatrixDisplay(confusion_matrix=cm) + # disp.plot(cmap="Blues") + # plt.title("Confusion Matrix") + # plt.xlabel("Predicted") + # plt.ylabel("True") + # plt.show() + + + return model + + + + + + + + diff --git a/training.py b/training.py deleted file mode 100644 index a288771..0000000 --- a/training.py +++ /dev/null @@ -1,102 +0,0 @@ -import pickle -import numpy as np -import torch -import torch.nn as nn -import torch.optim as optim -from sklearn.model_selection import train_test_split -from sklearn.metrics import confusion_matrix, ConfusionMatrixDisplay -import matplotlib.pyplot as plt - -# Load dataset -with open("gesture_data.pkl", "rb") as f: - dataset = pickle.load(f) - -X = np.array([item[0] for item in dataset]) # Normalized keypoints -y = np.array([item[1] for item in dataset]) # Gesture labels - -# Split data (stratified ensures class balance in both sets) -X_train, X_test, y_train, y_test = train_test_split( - X, y, test_size=0.2, random_state=42, stratify=y -) - -# Define model architecture -class GestureClassifier(nn.Module): - def __init__(self, input_size, num_classes): - super(GestureClassifier, self).__init__() - self.fc1 = nn.Linear(input_size, 128) - self.fc2 = nn.Linear(128, 64) - self.fc3 = nn.Linear(64, num_classes) - self.relu = nn.ReLU() - - def forward(self, x): - x = self.relu(self.fc1(x)) - x = self.relu(self.fc2(x)) - x = self.fc3(x) - return x - -# Initialize model -input_size = X.shape[1] -num_classes = len(set(y)) -model = GestureClassifier(input_size, num_classes) - -# Training config -criterion = nn.CrossEntropyLoss() -optimizer = optim.Adam(model.parameters(), lr=0.001) -epochs = 65 - -# Convert to tensors -X_train_tensor = torch.tensor(X_train, dtype=torch.float32) -y_train_tensor = torch.tensor(y_train, dtype=torch.long) -X_test_tensor = torch.tensor(X_test, dtype=torch.float32) -y_test_tensor = torch.tensor(y_test, dtype=torch.long) - -# Train model -model.train() -for epoch in range(epochs): - optimizer.zero_grad() - outputs = model(X_train_tensor) - loss = criterion(outputs, y_train_tensor) - loss.backward() - optimizer.step() - print(f"Epoch {epoch+1}/{epochs}, Loss: {loss.item():.4f}") - -# Evaluate on test set -model.eval() -with torch.no_grad(): - test_outputs = model(X_test_tensor) - predicted = torch.argmax(test_outputs, dim=1) - accuracy = (predicted == y_test_tensor).sum().item() / len(y_test_tensor) - print(f"\nāœ… Test Accuracy: {accuracy * 100:.2f}%") - - # Confusion matrix - cm = confusion_matrix(y_test, predicted) - disp = ConfusionMatrixDisplay(confusion_matrix=cm) - disp.plot(cmap="Blues") - plt.title("Confusion Matrix") - plt.xlabel("Predicted") - plt.ylabel("True") - plt.show() - -# Save model -torch.save(model.state_dict(), "gesture_model.pth") -print("šŸŽ‰ Model saved to gesture_model.pth") - -# Save label map -GESTURE_LABELS = { - 'open_palm': 0, - 'fist': 1, - 'peace_sign': 2, - 'thumbs_up': 3, - 'pointing_finger': 4, - 'ok_sign': 5, - 'thumbs_down': 6, - 'three_fingers': 7, - 'rock_on': 8, - 'pinch': 9, - 'swipe_left': 10, - 'swipe_right': 11 -} -label_map = {v: k for k, v in GESTURE_LABELS.items()} -with open("label_map.pkl", "wb") as f: - pickle.dump(label_map, f) -print("šŸ“Œ Label map saved to label_map.pkl")